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.9.1 |
Comparing to | |
See all releases |
Code changes from version 5.9 to 5.9.1
- adrotate-bootstrap.php +30 -0
- adrotate-functions.php +14 -7
- adrotate-setup.php +0 -70
- adrotate-statistics.php +2 -7
- adrotate.php +19 -7
- dashboard/publisher/adverts-main.php +1 -1
- dashboard/publisher/statistics-advert.php +6 -6
- dashboard/publisher/statistics-group.php +1 -1
- dashboard/publisher/statistics-main.php +1 -1
- dashboard/settings/maintenance.php +11 -24
- dashboard/settings/misc.php +106 -0
- language/adrotate-de_DE.mo +0 -0
- language/adrotate-de_DE.po +243 -234
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +246 -238
- language/adrotate-it_IT.mo +0 -0
- language/adrotate-it_IT.po +239 -231
- language/adrotate-nl_NL.mo +0 -0
- language/adrotate-nl_NL.po +239 -231
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +240 -232
- language/adrotate-pt_BR.mo +0 -0
- language/adrotate-pt_BR.po +244 -232
- language/adrotate.pot +144 -189
- readme.txt +9 -2
adrotate-bootstrap.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
8 |
+
* By using this code you agree to indemnify Arnan de Gans from any
|
9 |
+
* liability that might arise from its use.
|
10 |
+
------------------------------------------------------------------------------------ */
|
11 |
+
|
12 |
+
/*-------------------------------------------------------------
|
13 |
+
Name: adrotate_get_plugin_information
|
14 |
+
Purpose: Grab plugin_information from transient data
|
15 |
+
-------------------------------------------------------------*/
|
16 |
+
function adrotate_get_plugin_information() {
|
17 |
+
$result = new stdClass();
|
18 |
+
$result->name = 'AdRotate Bootstrap';
|
19 |
+
$result->slug = 'adrotate-bootstrap';
|
20 |
+
$result->version = '1.0';
|
21 |
+
$result->tested = '6.0';
|
22 |
+
$result->requires = '4.9';
|
23 |
+
$result->requires_php = '5.4';
|
24 |
+
$result->download_link = 'https://ajdg.solutions/api/updates/files/adrotate-bootstrap.zip';
|
25 |
+
$result->author = 'Arnan de Gans';
|
26 |
+
$result->homepage = 'https://ajdg.solutions';
|
27 |
+
$result->sections = array('description' => stripslashes('A plugin to migrate from AdRotate Banner Manager to AdRotate Professional.'));
|
28 |
+
|
29 |
+
return $result;
|
30 |
+
}
|
adrotate-functions.php
CHANGED
@@ -269,10 +269,7 @@ function adrotate_select_pages($savedpages, $count = 2, $child_of = 0, $parent =
|
|
269 |
|
270 |
/*-------------------------------------------------------------
|
271 |
Name: adrotate_prepare_evaluate_ads
|
272 |
-
|
273 |
Purpose: Initiate evaluations for errors and determine the advert status
|
274 |
-
Receive: $return, $id
|
275 |
-
Return:
|
276 |
Since: 3.6.5
|
277 |
-------------------------------------------------------------*/
|
278 |
function adrotate_prepare_evaluate_ads($return = true) {
|
@@ -322,10 +319,7 @@ function adrotate_prepare_evaluate_ads($return = true) {
|
|
322 |
|
323 |
/*-------------------------------------------------------------
|
324 |
Name: adrotate_evaluate_ads
|
325 |
-
|
326 |
Purpose: Initiate automated evaluations for errors and determine the advert status
|
327 |
-
Receive: -None-
|
328 |
-
Return: -None-
|
329 |
Since: 3.8.5.1
|
330 |
-------------------------------------------------------------*/
|
331 |
function adrotate_evaluate_ads() {
|
@@ -771,12 +765,13 @@ function adrotate_return($page, $status, $args = null) {
|
|
771 |
$defaults = array(
|
772 |
'status' => $status
|
773 |
);
|
|
|
774 |
$arguments = wp_parse_args($args, $defaults);
|
775 |
$redirect = 'admin.php?page=' . $page . '&'.http_build_query($arguments);
|
776 |
} else {
|
777 |
$redirect = 'admin.php?page=adrotate&status=1'; // Unexpected error
|
778 |
}
|
779 |
-
|
780 |
wp_redirect($redirect);
|
781 |
}
|
782 |
|
@@ -873,6 +868,18 @@ function adrotate_status($status, $args = null) {
|
|
873 |
echo '<div id="message" class="updated"><p>'. __('Cleanup complete', 'adrotate') .'</p></div>';
|
874 |
break;
|
875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
// (all) Error messages
|
877 |
case '500' :
|
878 |
echo '<div id="message" class="error"><p>'. __('Action prohibited', 'adrotate') .'</p></div>';
|
269 |
|
270 |
/*-------------------------------------------------------------
|
271 |
Name: adrotate_prepare_evaluate_ads
|
|
|
272 |
Purpose: Initiate evaluations for errors and determine the advert status
|
|
|
|
|
273 |
Since: 3.6.5
|
274 |
-------------------------------------------------------------*/
|
275 |
function adrotate_prepare_evaluate_ads($return = true) {
|
319 |
|
320 |
/*-------------------------------------------------------------
|
321 |
Name: adrotate_evaluate_ads
|
|
|
322 |
Purpose: Initiate automated evaluations for errors and determine the advert status
|
|
|
|
|
323 |
Since: 3.8.5.1
|
324 |
-------------------------------------------------------------*/
|
325 |
function adrotate_evaluate_ads() {
|
765 |
$defaults = array(
|
766 |
'status' => $status
|
767 |
);
|
768 |
+
|
769 |
$arguments = wp_parse_args($args, $defaults);
|
770 |
$redirect = 'admin.php?page=' . $page . '&'.http_build_query($arguments);
|
771 |
} else {
|
772 |
$redirect = 'admin.php?page=adrotate&status=1'; // Unexpected error
|
773 |
}
|
774 |
+
echo $redirect;
|
775 |
wp_redirect($redirect);
|
776 |
}
|
777 |
|
868 |
echo '<div id="message" class="updated"><p>'. __('Cleanup complete', 'adrotate') .'</p></div>';
|
869 |
break;
|
870 |
|
871 |
+
case '407' :
|
872 |
+
echo '<div id="message" class="updated"><p>'. __('Scheduled tasks reset', 'adrotate') .'</p></div>';
|
873 |
+
break;
|
874 |
+
|
875 |
+
case '408' :
|
876 |
+
echo '<div id="message" class="updated"><p>'. __('If there were any 3rd party plugins interfering with AdRotate they have been disabled', 'adrotate') .'</p></div>';
|
877 |
+
break;
|
878 |
+
|
879 |
+
case '409' :
|
880 |
+
echo '<div id="message" class="updated"><p>'. __('Database updated', 'adrotate') .'</p></div>';
|
881 |
+
break;
|
882 |
+
|
883 |
// (all) Error messages
|
884 |
case '500' :
|
885 |
echo '<div id="message" class="error"><p>'. __('Action prohibited', 'adrotate') .'</p></div>';
|
adrotate-setup.php
CHANGED
@@ -758,76 +758,6 @@ function adrotate_core_upgrade() {
|
|
758 |
update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
|
759 |
}
|
760 |
|
761 |
-
/*-------------------------------------------------------------
|
762 |
-
Name: adrotate_clean_setup
|
763 |
-
Purpose: Clean AdRotate tables
|
764 |
-
Clean/delete AdRotate assets
|
765 |
-
Since: 5.8
|
766 |
-
-------------------------------------------------------------*/
|
767 |
-
function adrotate_clean_setup() {
|
768 |
-
global $wpdb, $adrotate_config;
|
769 |
-
|
770 |
-
$now = current_time('timestamp');
|
771 |
-
|
772 |
-
// Clean up Tracker data
|
773 |
-
$yesterday = $now - DAY_IN_SECONDS;
|
774 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_tracker` WHERE `timer` < $yesterday;");
|
775 |
-
|
776 |
-
// Delete empty ads, groups and schedules
|
777 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' OR `type` = 'a_empty';");
|
778 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` = '';");
|
779 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_schedule` WHERE `name` = '';");
|
780 |
-
|
781 |
-
// Remove CSS from deleted groups
|
782 |
-
$groups = $wpdb->get_col("SELECT `id` FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
|
783 |
-
$group_css = get_option('adrotate_group_css');
|
784 |
-
foreach($group_css as $group_id => $css) {
|
785 |
-
if(!array_key_exists($group_id, $groups)) {
|
786 |
-
unset($group_css[$group_id]);
|
787 |
-
}
|
788 |
-
}
|
789 |
-
update_option('adrotate_group_css', $group_css);
|
790 |
-
unset($groups, $group_css);
|
791 |
-
|
792 |
-
// Clean up meta data
|
793 |
-
$ads = $wpdb->get_results("SELECT `id` FROM `{$wpdb->prefix}adrotate` ORDER BY `id`;");
|
794 |
-
$metas = $wpdb->get_results("SELECT `id`, `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` ORDER BY `id`;");
|
795 |
-
|
796 |
-
$adverts = $linkmeta = array();
|
797 |
-
foreach($ads as $ad) {
|
798 |
-
$adverts[$ad->id] = $ad->id;
|
799 |
-
}
|
800 |
-
foreach($metas as $meta) {
|
801 |
-
$linkmeta[$meta->id] = $meta->ad;
|
802 |
-
}
|
803 |
-
|
804 |
-
$delete_meta = array_diff($linkmeta, $adverts);
|
805 |
-
foreach($delete_meta as $meta => $advert) {
|
806 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `id` = {$meta};");
|
807 |
-
unset($delete_meta[$meta], $meta, $advert);
|
808 |
-
}
|
809 |
-
unset($ads, $metas, $adverts, $linkmeta, $delete_meta);
|
810 |
-
|
811 |
-
// Clean up stray linkmeta
|
812 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = 0 OR `ad` = '';");
|
813 |
-
|
814 |
-
// (Optionally) Delete old stats
|
815 |
-
if(isset($_POST['adrotate_db_cleanup_statistics'])) {
|
816 |
-
$lastyear = $now - (DAY_IN_SECONDS * 365);
|
817 |
-
$wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` < $lastyear;");
|
818 |
-
}
|
819 |
-
|
820 |
-
// (Optionally) Delete export files
|
821 |
-
if(isset($_POST['adrotate_asset_cleanup_exportfiles'])) {
|
822 |
-
array_map('unlink', glob(WP_CONTENT_DIR.'/reports/AdRotate_export_*.csv'));
|
823 |
-
}
|
824 |
-
|
825 |
-
// Get rid of unsupported 3rd party extensions
|
826 |
-
adrotate_disable_thirdparty();
|
827 |
-
|
828 |
-
adrotate_return('adrotate-settings', 406, array('tab' => 'maintenance'));
|
829 |
-
}
|
830 |
-
|
831 |
/*-------------------------------------------------------------
|
832 |
Name: adrotate_disable_thirdparty
|
833 |
Purpose: Disable 3rd party plugins that interfere with AdRotate functions or alter its dashboard
|
758 |
update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
|
759 |
}
|
760 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
761 |
/*-------------------------------------------------------------
|
762 |
Name: adrotate_disable_thirdparty
|
763 |
Purpose: Disable 3rd party plugins that interfere with AdRotate functions or alter its dashboard
|
adrotate-statistics.php
CHANGED
@@ -84,7 +84,6 @@ function adrotate_draw_graph($id = 0, $labels = 0, $clicks = 0, $impressions = 0
|
|
84 |
</script>
|
85 |
';
|
86 |
}
|
87 |
-
|
88 |
}
|
89 |
|
90 |
/*-------------------------------------------------------------
|
@@ -92,7 +91,7 @@ function adrotate_draw_graph($id = 0, $labels = 0, $clicks = 0, $impressions = 0
|
|
92 |
Purpose: Generate latest number of clicks and impressions
|
93 |
Since: 3.8
|
94 |
-------------------------------------------------------------*/
|
95 |
-
function adrotate_stats($ad, $
|
96 |
global $wpdb;
|
97 |
|
98 |
if($when > 0 AND is_numeric($when) AND $until > 0 AND is_numeric($until)) { // date range
|
@@ -177,14 +176,10 @@ function adrotate_stats_nav($type, $id, $month, $year) {
|
|
177 |
Return: $output
|
178 |
Since: 3.8
|
179 |
-------------------------------------------------------------*/
|
180 |
-
function adrotate_stats_graph($type, $
|
181 |
global $wpdb;
|
182 |
|
183 |
$table = 'adrotate_stats';
|
184 |
-
if($archive) {
|
185 |
-
$table = 'adrotate_stats_archive';
|
186 |
-
}
|
187 |
-
|
188 |
if($type == 'ads' OR $type == 'advertiser') {
|
189 |
$stats = $wpdb->get_results($wpdb->prepare("SELECT `thetime`, SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}{$table}` WHERE `ad` = %d AND `thetime` >= %d AND `thetime` <= %d GROUP BY `thetime` ORDER BY `thetime` ASC;", $id, $start, $end), ARRAY_A);
|
190 |
}
|
84 |
</script>
|
85 |
';
|
86 |
}
|
|
|
87 |
}
|
88 |
|
89 |
/*-------------------------------------------------------------
|
91 |
Purpose: Generate latest number of clicks and impressions
|
92 |
Since: 3.8
|
93 |
-------------------------------------------------------------*/
|
94 |
+
function adrotate_stats($ad, $when = 0, $until = 0) {
|
95 |
global $wpdb;
|
96 |
|
97 |
if($when > 0 AND is_numeric($when) AND $until > 0 AND is_numeric($until)) { // date range
|
176 |
Return: $output
|
177 |
Since: 3.8
|
178 |
-------------------------------------------------------------*/
|
179 |
+
function adrotate_stats_graph($type, $id, $chartid, $start, $end) {
|
180 |
global $wpdb;
|
181 |
|
182 |
$table = 'adrotate_stats';
|
|
|
|
|
|
|
|
|
183 |
if($type == 'ads' OR $type == 'advertiser') {
|
184 |
$stats = $wpdb->get_results($wpdb->prepare("SELECT `thetime`, SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}{$table}` WHERE `ad` = %d AND `thetime` >= %d AND `thetime` <= %d GROUP BY `thetime` ORDER BY `thetime` ASC;", $id, $start, $end), ARRAY_A);
|
185 |
}
|
adrotate.php
CHANGED
@@ -6,7 +6,7 @@ Author: Arnan de Gans
|
|
6 |
Author URI: https://www.arnan.me/?mtm_campaign=adrotatefree&mtm_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.9
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
@@ -91,8 +91,6 @@ if(is_admin()) {
|
|
91 |
if(isset($_POST['adrotate_error_action_submit'])) add_action('init', 'adrotate_request_action');
|
92 |
if(isset($_POST['adrotate_save_options'])) add_action('init', 'adrotate_options_submit');
|
93 |
if(isset($_POST['adrotate_request_submit'])) add_action('init', 'adrotate_mail_message');
|
94 |
-
if(isset($_POST['adrotate_cleanup_submit'])) add_action('init', 'adrotate_clean_setup');
|
95 |
-
if(isset($_POST['adrotate_evaluate_submit'])) add_action('init', 'adrotate_prepare_evaluate_ads');
|
96 |
}
|
97 |
|
98 |
/*-------------------------------------------------------------
|
@@ -484,14 +482,28 @@ function adrotate_options() {
|
|
484 |
|
485 |
$active_tab = (isset($_GET['tab'])) ? sanitize_key($_GET['tab']) : 'general';
|
486 |
$status = (isset($_GET['status'])) ? sanitize_key($_GET['status']) : '';
|
487 |
-
$noncense = (isset($_GET['_wpnonce'])) ? sanitize_key($_GET['_wpnonce']) : false;
|
488 |
|
489 |
if(!is_numeric($status)) $status = 0;
|
490 |
|
491 |
$action = (isset($_GET['action'])) ? sanitize_key($_GET['action']) : '';
|
492 |
-
if($
|
493 |
-
|
494 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
?>
|
496 |
|
497 |
<div class="wrap">
|
6 |
Author URI: https://www.arnan.me/?mtm_campaign=adrotatefree&mtm_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.9.1
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
91 |
if(isset($_POST['adrotate_error_action_submit'])) add_action('init', 'adrotate_request_action');
|
92 |
if(isset($_POST['adrotate_save_options'])) add_action('init', 'adrotate_options_submit');
|
93 |
if(isset($_POST['adrotate_request_submit'])) add_action('init', 'adrotate_mail_message');
|
|
|
|
|
94 |
}
|
95 |
|
96 |
/*-------------------------------------------------------------
|
482 |
|
483 |
$active_tab = (isset($_GET['tab'])) ? sanitize_key($_GET['tab']) : 'general';
|
484 |
$status = (isset($_GET['status'])) ? sanitize_key($_GET['status']) : '';
|
|
|
485 |
|
486 |
if(!is_numeric($status)) $status = 0;
|
487 |
|
488 |
$action = (isset($_GET['action'])) ? sanitize_key($_GET['action']) : '';
|
489 |
+
if(isset($_GET['adrotate-nonce']) AND wp_verify_nonce($_GET['adrotate-nonce'], 'nonce')) {
|
490 |
+
if($action == 'check-ads') {
|
491 |
+
adrotate_prepare_evaluate_ads(false);
|
492 |
+
$status = 405;
|
493 |
+
}
|
494 |
+
if($action == 'reset-tasks') {
|
495 |
+
adrotate_check_schedules();
|
496 |
+
$status = 407;
|
497 |
+
}
|
498 |
+
if($action == 'disable-3rdparty') {
|
499 |
+
adrotate_disable_thirdparty();
|
500 |
+
$status = 408;
|
501 |
+
}
|
502 |
+
if($action == 'update-db') {
|
503 |
+
adrotate_check_upgrade();
|
504 |
+
$status = 409;
|
505 |
+
}
|
506 |
+
}
|
507 |
?>
|
508 |
|
509 |
<div class="wrap">
|
dashboard/publisher/adverts-main.php
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
foreach($active as $banner) {
|
56 |
if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') {
|
57 |
$stats = adrotate_stats($banner['id']);
|
58 |
-
$stats_today = adrotate_stats($banner['id'],
|
59 |
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
60 |
}
|
61 |
|
55 |
foreach($active as $banner) {
|
56 |
if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') {
|
57 |
$stats = adrotate_stats($banner['id']);
|
58 |
+
$stats_today = adrotate_stats($banner['id'], $today);
|
59 |
$ctr = adrotate_ctr($stats['clicks'], $stats['impressions']);
|
60 |
}
|
61 |
|
dashboard/publisher/statistics-advert.php
CHANGED
@@ -11,11 +11,11 @@
|
|
11 |
|
12 |
$banner = $wpdb->get_row("SELECT `title`, `tracker`, `type` FROM `{$wpdb->prefix}adrotate` WHERE `id` = '{$id}';");
|
13 |
|
14 |
-
$stats = adrotate_stats($id
|
15 |
-
$stats_today = adrotate_stats($id,
|
16 |
-
$stats_last_month = adrotate_stats($id,
|
17 |
-
$stats_this_month = adrotate_stats($id,
|
18 |
-
$stats_graph_month = adrotate_stats($id,
|
19 |
|
20 |
// Prevent gaps in display
|
21 |
if(empty($stats['impressions'])) $stats['impressions'] = 0;
|
@@ -90,7 +90,7 @@ $ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month
|
|
90 |
<th colspan="3">
|
91 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('ads', $id, $month, $year); ?></div>
|
92 |
<?php
|
93 |
-
echo adrotate_stats_graph('ads',
|
94 |
?>
|
95 |
</th>
|
96 |
</tr>
|
11 |
|
12 |
$banner = $wpdb->get_row("SELECT `title`, `tracker`, `type` FROM `{$wpdb->prefix}adrotate` WHERE `id` = '{$id}';");
|
13 |
|
14 |
+
$stats = adrotate_stats($id);
|
15 |
+
$stats_today = adrotate_stats($id, adrotate_date_start('day'));
|
16 |
+
$stats_last_month = adrotate_stats($id, gmmktime(0, 0, 0, gmdate("m")-1, 1, gmdate("Y")), gmmktime(0, 0, 0, gmdate("m"), 0, gmdate("Y")));
|
17 |
+
$stats_this_month = adrotate_stats($id, gmmktime(0, 0, 0, gmdate("m"), 1, gmdate("Y")), gmmktime(0, 0, 0, gmdate("m"), gmdate("t"), gmdate("Y")));
|
18 |
+
$stats_graph_month = adrotate_stats($id, $monthstart, $monthend);
|
19 |
|
20 |
// Prevent gaps in display
|
21 |
if(empty($stats['impressions'])) $stats['impressions'] = 0;
|
90 |
<th colspan="3">
|
91 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('ads', $id, $month, $year); ?></div>
|
92 |
<?php
|
93 |
+
echo adrotate_stats_graph('ads', $id, 1, $monthstart, $monthend);
|
94 |
?>
|
95 |
</th>
|
96 |
</tr>
|
dashboard/publisher/statistics-group.php
CHANGED
@@ -96,7 +96,7 @@ $ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month
|
|
96 |
<tr>
|
97 |
<th colspan="3">
|
98 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('groups', $id, $month, $year); ?></div>
|
99 |
-
<?php echo adrotate_stats_graph('groups',
|
100 |
</th>
|
101 |
</tr>
|
102 |
<tr>
|
96 |
<tr>
|
97 |
<th colspan="3">
|
98 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('groups', $id, $month, $year); ?></div>
|
99 |
+
<?php echo adrotate_stats_graph('groups', $id, 1, $monthstart, $monthend); ?>
|
100 |
</th>
|
101 |
</tr>
|
102 |
<tr>
|
dashboard/publisher/statistics-main.php
CHANGED
@@ -67,7 +67,7 @@ $ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month
|
|
67 |
<tr>
|
68 |
<th colspan="3">
|
69 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('fullreport', 0, $month, $year); ?></div>
|
70 |
-
<?php echo adrotate_stats_graph('fullreport',
|
71 |
</th>
|
72 |
</tr>
|
73 |
<tr>
|
67 |
<tr>
|
68 |
<th colspan="3">
|
69 |
<div style="text-align:center;"><?php echo adrotate_stats_nav('fullreport', 0, $month, $year); ?></div>
|
70 |
+
<?php echo adrotate_stats_graph('fullreport', 0, 1, $monthstart, $monthend); ?>
|
71 |
</th>
|
72 |
</tr>
|
73 |
<tr>
|
dashboard/settings/maintenance.php
CHANGED
@@ -9,34 +9,19 @@
|
|
9 |
* liability that might arise from its use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
-
<form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=maintenance">
|
13 |
-
<?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
|
14 |
-
<input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
|
15 |
|
16 |
<h2><?php _e('Maintenance', 'adrotate'); ?></h2>
|
17 |
-
<span class="description"><?php _e('Use these functions when you notice your database is slow, unresponsive and sluggish.', 'adrotate'); ?></span>
|
18 |
<table class="form-table">
|
19 |
<tr>
|
20 |
<th valign="top"><?php _e('Check adverts', 'adrotate'); ?></th>
|
21 |
<td>
|
22 |
-
<
|
23 |
-
|
24 |
-
<span class="description"><?php _e('Apply all evaluation rules to all adverts to see if any error slipped in.', 'adrotate'); ?></span>
|
25 |
-
</td>
|
26 |
-
</tr>
|
27 |
-
<tr>
|
28 |
-
<th valign="top"><?php _e('Clean-up Database and Files', 'adrotate'); ?></th>
|
29 |
-
<td>
|
30 |
-
<input type="submit" id="post-role-submit" name="adrotate_cleanup_submit" value="<?php _e('Run Clean-up', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to do maintenance on your setup of AdRotate.', 'adrotate'); ?>\n\n<?php _e('This optionally may delete old statistics and tries to delete old export files.', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n<?php _e('THIS ACTION CAN NOT BE UNDONE!', 'adrotate'); ?>')" />
|
31 |
<br /><br />
|
32 |
-
<
|
33 |
-
<label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" id="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 365 days.', 'adrotate'); ?></label><br />
|
34 |
-
<label for="adrotate_db_cleanup_exportfiles"><input type="checkbox" name="adrotate_db_cleanup_exportfiles" id="adrotate_db_cleanup_exportfiles" value="1" /> <?php _e('Delete leftover export files.', 'adrotate'); ?></label><br />
|
35 |
-
<span class="description"><?php _e('For when you create an advert, group or schedule and it does not save or keep changes you make.', 'adrotate'); ?><br /><?php _e('Additionally you can delete statistics and/or unused export files. This will improve the speed of your site.', 'adrotate'); ?></span>
|
36 |
</td>
|
37 |
</tr>
|
38 |
</table>
|
39 |
-
<span class="description"><?php _e('DISCLAIMER: The above functions are intented to be used to OPTIMIZE your database or clean up overhead data. They only apply to your ads/groups and stats. Not to other settings or other parts of WordPress! Always always make a backup! If for any reason your data is lost, damaged or otherwise becomes unusable in any way or by any means in whichever way I will not take responsibility. You should always have a backup of your database. These functions do NOT destroy data. If data is lost, damaged or unusable in any way, your database likely was beyond repair already. Claiming it worked before clicking these buttons is not a valid point in any case.', 'adrotate'); ?></span>
|
40 |
|
41 |
<h3><?php _e('Status and Versions', 'adrotate'); ?></h3>
|
42 |
<table class="form-table">
|
@@ -71,17 +56,20 @@
|
|
71 |
<tr>
|
72 |
<th valign="top"><?php _e('Background tasks', 'adrotate'); ?></th>
|
73 |
<td colspan="3">
|
74 |
-
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=reset-tasks', '
|
|
|
|
|
|
|
75 |
</td>
|
76 |
</tr>
|
77 |
<tr>
|
78 |
<th valign="top"><?php _e('Unsupported plugins', 'adrotate'); ?></th>
|
79 |
<td colspan="3">
|
80 |
-
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=disable-3rdparty', '
|
81 |
<?php if(is_plugin_active('adrotate-extra-settings/adrotate-extra-settings.php') OR is_plugin_active('adrotate-email-add-on/adrotate-email-add-on.php') OR is_plugin_active('ad-builder-for-adrotate/ad-builder-for-adrotate.php') OR is_plugin_active('extended-adrotate-ad-placements/index.php')) { ?>
|
82 |
<span style="color:#CC2900;"><?php _e('One or more unsupported 3rd party plugins detected.', 'adrotate'); ?></span><br />
|
83 |
<?php } ?>
|
84 |
-
<span class="description"><?php _e('These are plugins that alter functions of AdRotate or highjack parts of the dashboard which may affect security and/or stability.', 'adrotate'); ?></span>
|
85 |
</td>
|
86 |
</tr>
|
87 |
</table>
|
@@ -98,8 +86,7 @@
|
|
98 |
<tr>
|
99 |
<th valign="top"><?php _e('Manual upgrade', 'adrotate'); ?></th>
|
100 |
<td colspan="3">
|
101 |
-
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=update-db', '
|
102 |
</td>
|
103 |
</tr>
|
104 |
-
</table>
|
105 |
-
</form>
|
9 |
* liability that might arise from its use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
|
|
|
|
|
|
12 |
|
13 |
<h2><?php _e('Maintenance', 'adrotate'); ?></h2>
|
|
|
14 |
<table class="form-table">
|
15 |
<tr>
|
16 |
<th valign="top"><?php _e('Check adverts', 'adrotate'); ?></th>
|
17 |
<td>
|
18 |
+
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=check-ads', 'nonce', 'adrotate-nonce'); ?>"><?php _e('Check ads for errors', 'adrotate'); ?></a>
|
19 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
<br /><br />
|
21 |
+
<span class="description"><em><?php _e('Apply all evaluation rules to all adverts to see if any error slipped in. This may take a few seconds.', 'adrotate'); ?></em></span>
|
|
|
|
|
|
|
22 |
</td>
|
23 |
</tr>
|
24 |
</table>
|
|
|
25 |
|
26 |
<h3><?php _e('Status and Versions', 'adrotate'); ?></h3>
|
27 |
<table class="form-table">
|
56 |
<tr>
|
57 |
<th valign="top"><?php _e('Background tasks', 'adrotate'); ?></th>
|
58 |
<td colspan="3">
|
59 |
+
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=reset-tasks', 'nonce', 'adrotate-nonce'); ?>"><?php _e('Reset background tasks', 'adrotate'); ?></a>
|
60 |
+
|
61 |
+
<br /><br />
|
62 |
+
<span class="description"><em><?php _e('If automated tasks such as expiring adverts does not work reliable or one of the above schedules is missing use this button to reset the tasks.', 'adrotate'); ?></em></span>
|
63 |
</td>
|
64 |
</tr>
|
65 |
<tr>
|
66 |
<th valign="top"><?php _e('Unsupported plugins', 'adrotate'); ?></th>
|
67 |
<td colspan="3">
|
68 |
+
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=disable-3rdparty', 'nonce', 'adrotate-nonce'); ?>"><?php _e('Disable 3rd party plugins', 'adrotate'); ?></a><br /><br />
|
69 |
<?php if(is_plugin_active('adrotate-extra-settings/adrotate-extra-settings.php') OR is_plugin_active('adrotate-email-add-on/adrotate-email-add-on.php') OR is_plugin_active('ad-builder-for-adrotate/ad-builder-for-adrotate.php') OR is_plugin_active('extended-adrotate-ad-placements/index.php')) { ?>
|
70 |
<span style="color:#CC2900;"><?php _e('One or more unsupported 3rd party plugins detected.', 'adrotate'); ?></span><br />
|
71 |
<?php } ?>
|
72 |
+
<span class="description"><em><?php _e('These are plugins that alter functions of AdRotate or highjack parts of the dashboard which may affect security and/or stability.', 'adrotate'); ?></em></span>
|
73 |
</td>
|
74 |
</tr>
|
75 |
</table>
|
86 |
<tr>
|
87 |
<th valign="top"><?php _e('Manual upgrade', 'adrotate'); ?></th>
|
88 |
<td colspan="3">
|
89 |
+
<a class="button" href="<?php echo wp_nonce_url('admin.php?page=adrotate-settings&tab=maintenance&action=update-db', 'nonce', 'adrotate-nonce'); ?>" onclick="return confirm('<?php _e('YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE.', 'adrotate'); ?>\n<?php _e('Make sure you have a database backup!', 'adrotate'); ?>\n\n<?php _e('This might take a while and may slow down your site during this action!', 'adrotate'); ?>\n\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')"><?php _e('Run updater', 'adrotate'); ?></a>
|
90 |
</td>
|
91 |
</tr>
|
92 |
+
</table>
|
|
dashboard/settings/misc.php
CHANGED
@@ -8,6 +8,109 @@
|
|
8 |
* By using this code you agree to indemnify Arnan de Gans from any
|
9 |
* liability that might arise from its use.
|
10 |
------------------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
?>
|
12 |
<form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=misc">
|
13 |
<?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
|
@@ -43,6 +146,9 @@
|
|
43 |
</tr>
|
44 |
</table>
|
45 |
|
|
|
|
|
|
|
46 |
<p class="submit">
|
47 |
<input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
|
48 |
</p>
|
8 |
* By using this code you agree to indemnify Arnan de Gans from any
|
9 |
* liability that might arise from its use.
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
+
|
12 |
+
/*
|
13 |
+
if($_GET['install-adrotate']) {
|
14 |
+
|
15 |
+
if(!current_user_can( 'install_plugins')) {
|
16 |
+
wp_die(__('Sorry, you are not allowed to install plugins on this site.'));
|
17 |
+
}
|
18 |
+
|
19 |
+
// WordPress Administration Bootstrap
|
20 |
+
require_once ABSPATH . 'wp-admin/admin.php';
|
21 |
+
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
22 |
+
require_once(plugin_dir_path(__FILE__).'/adrotate-bootstrap.php');
|
23 |
+
|
24 |
+
/// INVULLEN MET DATA VAN FORMULIER
|
25 |
+
|
26 |
+
EMAIL VERIFIEREN
|
27 |
+
BASIS ACTIVATIE OPSLAAN MET EMAIL, KEY, TYPE, PLATFORM
|
28 |
+
LATER (IN BOOTSTRAP) AANVULLEN MET INSTANCE EN DATUMS ENZO
|
29 |
+
|
30 |
+
$a = get_option('adrotate_activate');
|
31 |
+
|
32 |
+
$a['key'] = (isset($_POST['adrotate_license_key'])) ? trim(strip_tags($_POST['adrotate_license_key'], "\t\n ")) : '';
|
33 |
+
$a['email'] = (isset($_POST['adrotate_license_email'])) ? trim(strip_tags($_POST['adrotate_license_email'], "\t\n ")) : '';
|
34 |
+
|
35 |
+
if(!empty($a['key']) AND !empty($a['email'])) {
|
36 |
+
list($a['version'], $a['type'], $serial) = explode("-", $a['key'], 3);
|
37 |
+
if(!is_email($a['email'])) {
|
38 |
+
wp_die('Please enter a valid Email address - The one that you used for your account on ajdg.solutions when you bought AdRotate pro. You can find your license details in the order email you have received and in your account on ajdg.solutions', 'Invalid Email for license', array('link_url' => 'https://ajdg.solutions/my-account/', 'link_text' => 'Go to AJdG Solutions Account', 'back_link' => admin_url('admin.php?page=adrotate')));
|
39 |
+
}
|
40 |
+
$a['platform'] = strtolower(get_option('siteurl'));
|
41 |
+
|
42 |
+
// New Licenses
|
43 |
+
if(strtolower($a['type']) == "s") $a['type'] = "Single";
|
44 |
+
if(strtolower($a['type']) == "d") $a['type'] = "Duo";
|
45 |
+
if(strtolower($a['type']) == "m") $a['type'] = "Multi";
|
46 |
+
if(strtolower($a['type']) == "u") $a['type'] = "Developer";
|
47 |
+
|
48 |
+
if($a) adrotate_license_response('activation', $a);
|
49 |
+
} else {
|
50 |
+
wp_die('Please enter a valid Email address and license key - can find your license details in the order email you have received and in your account on ajdg.solutions', 'Invalid or missing license', array('link_url' => 'https://ajdg.solutions/my-account/', 'link_text' => 'Go to AJdG Solutions Account', 'back_link' => admin_url('admin.php?page=adrotate')));
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
/// DOWNLOAD THE FILE
|
55 |
+
|
56 |
+
//The resource that we want to download.
|
57 |
+
$fileUrl = 'https://ajdg.solutions/api/updates/files/adrotate-bootstrap.zip';
|
58 |
+
//The path & filename to save to.
|
59 |
+
$saveTo = 'path/to/wp-content/plugins/logo.png';
|
60 |
+
|
61 |
+
//Open file handler.
|
62 |
+
$fp = fopen($saveTo, 'w+');
|
63 |
+
|
64 |
+
//If $fp is FALSE, something went wrong.
|
65 |
+
if($fp === false){
|
66 |
+
throw new Exception('Could not open: ' . $saveTo);
|
67 |
+
}
|
68 |
+
|
69 |
+
//Create a cURL handle.
|
70 |
+
$ch = curl_init($fileUrl);
|
71 |
+
curl_setopt($ch, CURLOPT_FILE, $fp);
|
72 |
+
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
|
73 |
+
curl_exec($ch);
|
74 |
+
|
75 |
+
//If there was an error, throw an Exception
|
76 |
+
if(curl_errno($ch)){
|
77 |
+
throw new Exception(curl_error($ch));
|
78 |
+
}
|
79 |
+
|
80 |
+
$statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
81 |
+
|
82 |
+
//Close the cURL handler.
|
83 |
+
curl_close($ch);
|
84 |
+
|
85 |
+
//Close the file handler.
|
86 |
+
fclose($fp);
|
87 |
+
|
88 |
+
if($statusCode == 200){
|
89 |
+
|
90 |
+
require_once(ABSPATH .'/wp-admin/includes/file.php');
|
91 |
+
|
92 |
+
$creds = request_filesystem_credentials(wp_nonce_url('admin.php?page=adrotate-media'), '', false, $saveTo, null);
|
93 |
+
if(!WP_Filesystem($creds)) {
|
94 |
+
request_filesystem_credentials(wp_nonce_url('admin.php?page=adrotate-media'), '', true, $saveTo, null);
|
95 |
+
}
|
96 |
+
|
97 |
+
$unzipfile = unzip_file($saveTo, 'path/to/wp-content/');
|
98 |
+
if(is_wp_error($unzipfile)) {
|
99 |
+
adrotate_return('adrotate-media', 512); // Can not unzip file
|
100 |
+
}
|
101 |
+
|
102 |
+
// Delete the uploaded zip
|
103 |
+
adrotate_unlink($saveTo);
|
104 |
+
|
105 |
+
} else{
|
106 |
+
echo "Status Code: " . $statusCode;
|
107 |
+
}
|
108 |
+
|
109 |
+
|
110 |
+
activate_plugin( 'adrotate-bootstrap/adrotate-bootstrap.php' );
|
111 |
+
}
|
112 |
+
*/
|
113 |
+
|
114 |
?>
|
115 |
<form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=misc">
|
116 |
<?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
|
146 |
</tr>
|
147 |
</table>
|
148 |
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
<p class="submit">
|
153 |
<input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
|
154 |
</p>
|
language/adrotate-de_DE.mo
CHANGED
Binary file
|
language/adrotate-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -21,31 +21,31 @@ msgstr ""
|
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Anzeigen"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Werbeanzeige gespeichert"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Group saved"
|
30 |
msgstr "Gruppe gespeichert"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Banner-Bild gespeichert"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Anzeige (n) gelöscht"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Gruppe gelöscht"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Assets gelöscht"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
@@ -53,31 +53,31 @@ msgstr ""
|
|
53 |
"Beim Löschen der Datei oder des Ordners ist etwas schief gelaufen. Stellen "
|
54 |
"Sie sicher, dass Ihre Berechtigungen in Ordnung sind."
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Anzeige(n) Statistik-Reset"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Anzeige(e) erneuert"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Anzeigen deaktiviert"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Anzeige(n) aktiviert"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Gruppe einschließlich der darin gelöschten Anzeigen"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Export created"
|
78 |
msgstr "Export erstellt"
|
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,48 @@ msgstr ""
|
|
86 |
"Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und die "
|
87 |
"Anzeige zu planen."
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Einstellungen gespeichert"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Datenbank optimiert"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Datenbank repariert"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr ""
|
104 |
"Anzeigen wurden überprüft und Zustände korrigiert, wo es erforderlich war"
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Cleanup complete"
|
108 |
msgstr "Bereinigung abgeschlossen"
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgid "Action prohibited"
|
112 |
msgstr "Aktion nicht zulässig"
|
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."
|
@@ -120,41 +136,41 @@ msgstr ""
|
|
120 |
"möglicherweise nicht ordnungsgemäß funktionieren könnte. Überprüfen Sie die "
|
121 |
"farbige Anzeige."
|
122 |
|
123 |
-
#: adrotate-functions.php:
|
124 |
msgid "No data found in selected time period"
|
125 |
msgstr "Keine Daten im ausgewählten Zeitraum gefunden"
|
126 |
|
127 |
-
#: adrotate-functions.php:
|
128 |
msgid "Database can only be optimized or cleaned once every hour"
|
129 |
msgstr "Datenbank kann nur einmal pro Stunde optimiert oder gereinigt werden"
|
130 |
|
131 |
-
#: adrotate-functions.php:
|
132 |
msgid "Form can not be (partially) empty!"
|
133 |
msgstr "Formular kann nicht (teilweise) leer sein!"
|
134 |
|
135 |
-
#: adrotate-functions.php:
|
136 |
msgid "No file uploaded."
|
137 |
msgstr "Keine Datei hochgeladen."
|
138 |
|
139 |
-
#: adrotate-functions.php:
|
140 |
msgid "No adverts found."
|
141 |
msgstr "Keine Anzeigen gefunden."
|
142 |
|
143 |
-
#: adrotate-functions.php:
|
144 |
msgid "Wrong file type. No file uploaded."
|
145 |
msgstr "Falsche Dateityp. Keine Datei hochgeladen."
|
146 |
|
147 |
-
#: adrotate-functions.php:
|
148 |
msgid "No file selected or file is too large."
|
149 |
msgstr "Keine ausgewählte Datei oder Datei ist zu groß."
|
150 |
|
151 |
-
#: adrotate-functions.php:
|
152 |
msgid "There was an error unzipping the file. Please try again later."
|
153 |
msgstr ""
|
154 |
"Beim Entpacken der Datei ist ein Fehler aufgetreten. Versuchen Sie es später "
|
155 |
"erneut."
|
156 |
|
157 |
-
#: adrotate-functions.php:
|
158 |
msgid ""
|
159 |
"The advert hash is not usable or is missing required data. Please copy the "
|
160 |
"hash correctly and try again."
|
@@ -162,7 +178,7 @@ msgstr ""
|
|
162 |
"Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
|
163 |
"Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
|
164 |
|
165 |
-
#: adrotate-functions.php:
|
166 |
msgid ""
|
167 |
"The advert hash can not be used on the same site as it originated from or is "
|
168 |
"not a valid hash for importing."
|
@@ -170,7 +186,7 @@ msgstr ""
|
|
170 |
"Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
|
171 |
"er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
|
172 |
|
173 |
-
#: adrotate-functions.php:
|
174 |
msgid "Unexpected error"
|
175 |
msgstr "Unerwarteter Fehler"
|
176 |
|
@@ -261,7 +277,7 @@ msgid "An unknown error occured."
|
|
261 |
msgstr "Ein unbekannter Fehler ist aufgetreten."
|
262 |
|
263 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
264 |
-
#: dashboard/settings/maintenance.php:
|
265 |
msgid "Check adverts"
|
266 |
msgstr "Anzeigen überprüfen"
|
267 |
|
@@ -483,73 +499,73 @@ msgstr "Multi-Lizenz"
|
|
483 |
msgid "Use on up to FIVE WordPress installations."
|
484 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
485 |
|
486 |
-
#: adrotate-statistics.php:
|
487 |
msgid "January"
|
488 |
msgstr "Januar"
|
489 |
|
490 |
-
#: adrotate-statistics.php:
|
491 |
msgid "February"
|
492 |
msgstr "Februar"
|
493 |
|
494 |
-
#: adrotate-statistics.php:
|
495 |
msgid "March"
|
496 |
msgstr "März"
|
497 |
|
498 |
-
#: adrotate-statistics.php:
|
499 |
msgid "April"
|
500 |
msgstr "April"
|
501 |
|
502 |
-
#: adrotate-statistics.php:
|
503 |
msgid "May"
|
504 |
msgstr "Mai"
|
505 |
|
506 |
-
#: adrotate-statistics.php:
|
507 |
msgid "June"
|
508 |
msgstr "Juni"
|
509 |
|
510 |
-
#: adrotate-statistics.php:
|
511 |
msgid "July"
|
512 |
msgstr "Juli"
|
513 |
|
514 |
-
#: adrotate-statistics.php:
|
515 |
msgid "August"
|
516 |
msgstr "August"
|
517 |
|
518 |
-
#: adrotate-statistics.php:
|
519 |
msgid "September"
|
520 |
msgstr "September"
|
521 |
|
522 |
-
#: adrotate-statistics.php:
|
523 |
msgid "October"
|
524 |
msgstr "Oktober"
|
525 |
|
526 |
-
#: adrotate-statistics.php:
|
527 |
msgid "November"
|
528 |
msgstr "November"
|
529 |
|
530 |
-
#: adrotate-statistics.php:
|
531 |
msgid "December"
|
532 |
msgstr "Dezember"
|
533 |
|
534 |
-
#: adrotate-statistics.php:
|
535 |
msgid "Previous"
|
536 |
msgstr "Zurück"
|
537 |
|
538 |
-
#: adrotate-statistics.php:
|
539 |
#: dashboard/publisher/statistics-group.php:73
|
540 |
#: dashboard/publisher/statistics-main.php:48
|
541 |
msgid "This month"
|
542 |
msgstr "Dieser Monat"
|
543 |
|
544 |
-
#: adrotate-statistics.php:
|
545 |
msgid "Next"
|
546 |
msgstr "Nächste"
|
547 |
|
548 |
-
#: adrotate-statistics.php:
|
549 |
msgid "No data to show!"
|
550 |
msgstr "Keine Daten vorhanden, um diese zu zeigen!"
|
551 |
|
552 |
-
#: adrotate-statistics.php:
|
553 |
msgid "Not found"
|
554 |
msgstr "Nicht gefunden"
|
555 |
|
@@ -593,66 +609,66 @@ msgstr "ID:"
|
|
593 |
msgid "Fill in the ID of the type you want to display!"
|
594 |
msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
msgid "Manage Adverts"
|
598 |
msgstr "Anzeigen verwalten"
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
msgid "Manage Groups"
|
602 |
msgstr "Gruppen verwalten"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
msgid "Manage Schedules"
|
606 |
msgstr "Zeiträume verwalten"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
msgid "Manage Media"
|
610 |
msgstr "Medien verwalten"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#: dashboard/publisher/adverts-edit.php:178
|
614 |
#: dashboard/publisher/statistics-main.php:23
|
615 |
#: dashboard/settings/statistics.php:17
|
616 |
msgid "Statistics"
|
617 |
msgstr "Auswertungen"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
msgid "Get AdRotate Pro"
|
621 |
msgstr "AdRotate Pro"
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
msgid "Support"
|
625 |
msgstr "Support"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
msgid "Settings"
|
629 |
msgstr "Einstellungen"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
msgid "Get AdRotate Professional"
|
633 |
msgstr "AdRotate Professional kaufen"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "Manage"
|
637 |
msgstr "Verwalten"
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid "Advert Generator"
|
641 |
msgstr "Anzeige generator"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid "New Advert"
|
645 |
msgstr "Neue Anzeige"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid "Add New"
|
649 |
msgstr "Neu hinzufügen"
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Manage Media and Assets"
|
653 |
msgstr "Verwalten von Medien und Ressourcen"
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid ""
|
657 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
658 |
"if you have HTML5 adverts containing multiple files."
|
@@ -661,39 +677,39 @@ msgstr ""
|
|
661 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
662 |
"mehrere Dateien enthalten."
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "Advert Statistics"
|
666 |
msgstr "Statistiken zur Anzeige"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "AdRotate Support"
|
670 |
msgstr "AdRotate-Unterstützung"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "AdRotate Settings"
|
674 |
msgstr "AdRotate Einstellungen"
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "General"
|
678 |
msgstr "Allgemein"
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid "Notifications"
|
682 |
msgstr "Benachrichtigungen"
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid "Geo Targeting"
|
686 |
msgstr "Geo Targeting"
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid "Access Roles"
|
690 |
msgstr "Zugriffsrollen"
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
msgid "Miscellaneous"
|
694 |
msgstr "Sonstiges"
|
695 |
|
696 |
-
#: adrotate.php:
|
697 |
msgid "Maintenance"
|
698 |
msgstr "Wartung"
|
699 |
|
@@ -1434,7 +1450,7 @@ msgid "Expires soon"
|
|
1434 |
msgstr "Wird bald ablaufen"
|
1435 |
|
1436 |
#: dashboard/publisher/adverts-error.php:67
|
1437 |
-
#: dashboard/settings/maintenance.php:
|
1438 |
msgid "Expired"
|
1439 |
msgstr "Abgelaufen"
|
1440 |
|
@@ -2049,8 +2065,7 @@ msgstr "Sie sind dabei, eine Gruppe löschen"
|
|
2049 |
msgid "This action can not be undone!"
|
2050 |
msgstr "Diese Aktion kann nicht rückgängig gemacht werden!"
|
2051 |
|
2052 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
2053 |
-
#: dashboard/settings/maintenance.php:101
|
2054 |
msgid "OK to continue, CANCEL to stop."
|
2055 |
msgstr "OK um fortzufahren, CANCEL, um zu stoppen."
|
2056 |
|
@@ -2479,7 +2494,7 @@ msgstr "Mehr über"
|
|
2479 |
msgid "user-agents"
|
2480 |
msgstr "Benutzer-agents"
|
2481 |
|
2482 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2483 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2484 |
#: dashboard/settings/statistics.php:85
|
2485 |
msgid "Update Options"
|
@@ -2589,194 +2604,106 @@ msgstr "Benutzer Name / Email"
|
|
2589 |
msgid "Password/License Key"
|
2590 |
msgstr "Passwort/Lizenzschlüssel"
|
2591 |
|
2592 |
-
#: dashboard/settings/maintenance.php:
|
2593 |
-
msgid ""
|
2594 |
-
"
|
2595 |
-
"sluggish."
|
2596 |
-
msgstr ""
|
2597 |
-
"Verwenden Sie diese Funktionen, wenn Sie merken, dass Ihre Datenbank langsam "
|
2598 |
-
"ist, nicht mehr reagiert oder schwerfällig ist."
|
2599 |
-
|
2600 |
-
#: dashboard/settings/maintenance.php:22
|
2601 |
-
msgid "Check for errors"
|
2602 |
-
msgstr "Auf Fehler prüfen"
|
2603 |
-
|
2604 |
-
#: dashboard/settings/maintenance.php:22
|
2605 |
-
msgid "You are about to check all adverts for errors."
|
2606 |
-
msgstr "Sie sind im Begriff, alle Anzeigen auf Fehler zu überprüfen."
|
2607 |
-
|
2608 |
-
#: dashboard/settings/maintenance.php:22
|
2609 |
-
msgid "This might take a few seconds!"
|
2610 |
-
msgstr "Dies kann ein paar Sekunden dauern!"
|
2611 |
-
|
2612 |
-
#: dashboard/settings/maintenance.php:24
|
2613 |
-
msgid ""
|
2614 |
-
"Apply all evaluation rules to all adverts to see if any error slipped in."
|
2615 |
-
msgstr ""
|
2616 |
-
"Wenden Sie alle Bewertungsregeln auf alle Anzeigen an, um festzustellen, ob "
|
2617 |
-
"ein Fehler eingerutscht ist."
|
2618 |
-
|
2619 |
-
#: dashboard/settings/maintenance.php:28
|
2620 |
-
msgid "Clean-up Database and Files"
|
2621 |
-
msgstr "Datenbank aufräumen"
|
2622 |
-
|
2623 |
-
#: dashboard/settings/maintenance.php:30
|
2624 |
-
msgid "Run Clean-up"
|
2625 |
-
msgstr "Bereinigung ausführen"
|
2626 |
-
|
2627 |
-
#: dashboard/settings/maintenance.php:30
|
2628 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2629 |
-
msgstr "Sie sind dabei, die AdRotate Datenbank optimieren."
|
2630 |
-
|
2631 |
-
#: dashboard/settings/maintenance.php:30
|
2632 |
-
msgid ""
|
2633 |
-
"This optionally may delete old statistics and tries to delete old export "
|
2634 |
-
"files."
|
2635 |
-
msgstr ""
|
2636 |
-
"Dies kann optional alte Statistiken löschen und versucht, alte Exportdateien "
|
2637 |
-
"zu löschen."
|
2638 |
-
|
2639 |
-
#: dashboard/settings/maintenance.php:30
|
2640 |
-
msgid "Are you sure you want to continue?"
|
2641 |
-
msgstr "Sind Sie sicher, dass Sie fortfahren möchten?"
|
2642 |
-
|
2643 |
-
#: dashboard/settings/maintenance.php:30
|
2644 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2645 |
-
msgstr "Diese Aktion kann nicht rückgängig gemacht werden!"
|
2646 |
-
|
2647 |
-
#: dashboard/settings/maintenance.php:32
|
2648 |
-
msgid "Basic database maintenance."
|
2649 |
-
msgstr "Grundlegende Datenbankwartung."
|
2650 |
-
|
2651 |
-
#: dashboard/settings/maintenance.php:33
|
2652 |
-
msgid "Delete stats older than 365 days."
|
2653 |
-
msgstr "Löschen Sie Statistiken, die älter als 365 Tage ist."
|
2654 |
|
2655 |
-
#: dashboard/settings/maintenance.php:
|
2656 |
-
msgid "Delete leftover export files."
|
2657 |
-
msgstr "Löschen Sie übrig gebliebene Exportdateien."
|
2658 |
-
|
2659 |
-
#: dashboard/settings/maintenance.php:35
|
2660 |
-
msgid ""
|
2661 |
-
"For when you create an advert, group or schedule and it does not save or "
|
2662 |
-
"keep changes you make."
|
2663 |
-
msgstr ""
|
2664 |
-
"Denn wenn Sie eine Anzeige, Gruppe oder einen Zeitplan erstellen und sie "
|
2665 |
-
"keine Änderungen speichert oder aufnimmt, die Sie vornehmen. Oder Updates "
|
2666 |
-
"werden nicht angezeigt, während Ihre Lizenz aktiv ist."
|
2667 |
-
|
2668 |
-
#: dashboard/settings/maintenance.php:35
|
2669 |
msgid ""
|
2670 |
-
"
|
2671 |
-
"
|
2672 |
msgstr ""
|
2673 |
-
"
|
2674 |
-
"
|
2675 |
|
2676 |
-
#: dashboard/settings/maintenance.php:
|
2677 |
-
msgid ""
|
2678 |
-
"DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
2679 |
-
"database or clean up overhead data. They only apply to your ads/groups and "
|
2680 |
-
"stats. Not to other settings or other parts of WordPress! Always always make "
|
2681 |
-
"a backup! If for any reason your data is lost, damaged or otherwise becomes "
|
2682 |
-
"unusable in any way or by any means in whichever way I will not take "
|
2683 |
-
"responsibility. You should always have a backup of your database. These "
|
2684 |
-
"functions do NOT destroy data. If data is lost, damaged or unusable in any "
|
2685 |
-
"way, your database likely was beyond repair already. Claiming it worked "
|
2686 |
-
"before clicking these buttons is not a valid point in any case."
|
2687 |
-
msgstr ""
|
2688 |
-
"DISCLAIMER: Diese Funktionen sollen verwendet werden, um Ihre Datenbank zu "
|
2689 |
-
"optimieren. Sie gelten nur für Ihre Anzeigen / Gruppen und Statistiken. "
|
2690 |
-
"Nicht auf andere Einstellungen oder andere Teile von Wordpress ! Bitte immer "
|
2691 |
-
"vorher ein Backup machen! Wenn aus irgendeinem Grund Ihre Daten verloren "
|
2692 |
-
"gehen, beschädigt oder anderweitig unbrauchbar werden in irgendeiner Weise "
|
2693 |
-
"oder mit irgendwelchen Mitteln in welcher Art und Weise auch immer, werde "
|
2694 |
-
"ich nicht die Verantwortung übernehmen . Sie sollten immer ein Backup Ihrer "
|
2695 |
-
"Datenbank haben. Diese Funktionen zerstören keine Daten. Wenn Daten verloren "
|
2696 |
-
"gehen, oder in irgendeiner Weise beschädigt oder unbrauchbar werden, war "
|
2697 |
-
"Ihre Datenbank wahrscheinlich bereits nicht mehr zu reparieren. Eine "
|
2698 |
-
"Reklamation mit der Behauptung, dass es funktionierte, bevor Sie diese "
|
2699 |
-
"Schaltflächen klicken, ist auf jeden Fall kein entscheidender Punkt."
|
2700 |
-
|
2701 |
-
#: dashboard/settings/maintenance.php:41
|
2702 |
msgid "Status and Versions"
|
2703 |
msgstr "Status und Versionen"
|
2704 |
|
2705 |
-
#: dashboard/settings/maintenance.php:
|
2706 |
msgid "Current status of adverts"
|
2707 |
msgstr "Aktueller Status der Anzeigen"
|
2708 |
|
2709 |
-
#: dashboard/settings/maintenance.php:
|
2710 |
msgid "Normal"
|
2711 |
msgstr "Normal"
|
2712 |
|
2713 |
-
#: dashboard/settings/maintenance.php:
|
2714 |
msgid "Error"
|
2715 |
msgstr "Fehler"
|
2716 |
|
2717 |
-
#: dashboard/settings/maintenance.php:
|
2718 |
msgid "Expires Soon"
|
2719 |
msgstr "Läuft ab"
|
2720 |
|
2721 |
-
#: dashboard/settings/maintenance.php:
|
2722 |
msgid "Unknown"
|
2723 |
msgstr "Unbekannt"
|
2724 |
|
2725 |
-
#: dashboard/settings/maintenance.php:
|
2726 |
msgid "Banners/assets Folder"
|
2727 |
msgstr "Banner Ordner"
|
2728 |
|
2729 |
-
#: dashboard/settings/maintenance.php:
|
2730 |
msgid "Exists and appears writable"
|
2731 |
msgstr "Existiert und scheint beschreibbar"
|
2732 |
|
2733 |
-
#: dashboard/settings/maintenance.php:
|
2734 |
msgid "Not writable or does not exist"
|
2735 |
msgstr "Nicht beschreibbar oder existiert nicht"
|
2736 |
|
2737 |
-
#: dashboard/settings/maintenance.php:
|
2738 |
msgid "Reports Folder"
|
2739 |
msgstr "Ordner \"Reports\""
|
2740 |
|
2741 |
-
#: dashboard/settings/maintenance.php:
|
2742 |
msgid "Advert evaluation"
|
2743 |
msgstr "Anzeige-Auswertung"
|
2744 |
|
2745 |
-
#: dashboard/settings/maintenance.php:
|
2746 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2747 |
msgstr "Nicht geplant! Reaktivieren Sie das Plugin auf der Plugins Seite."
|
2748 |
|
2749 |
-
#: dashboard/settings/maintenance.php:
|
2750 |
msgid "Clean Trackerdata"
|
2751 |
msgstr "Löschen abgelaufener Trackerdaten"
|
2752 |
|
2753 |
-
#: dashboard/settings/maintenance.php:
|
2754 |
msgid "Not scheduled!"
|
2755 |
msgstr "Zeitplan deaktiviert!"
|
2756 |
|
2757 |
-
#: dashboard/settings/maintenance.php:
|
2758 |
msgid "Background tasks"
|
2759 |
msgstr "Hintergrundaufgaben"
|
2760 |
|
2761 |
-
#: dashboard/settings/maintenance.php:
|
2762 |
msgid "Reset background tasks"
|
2763 |
msgstr "Zurücksetzen von Hintergrundaufgaben"
|
2764 |
|
2765 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2766 |
msgid "Unsupported plugins"
|
2767 |
msgstr "Nicht unterstützte Plugins"
|
2768 |
|
2769 |
-
#: dashboard/settings/maintenance.php:
|
2770 |
msgid "Disable 3rd party plugins"
|
2771 |
msgstr "Deaktivieren von Plugins von Drittanbietern"
|
2772 |
|
2773 |
-
#: dashboard/settings/maintenance.php:
|
2774 |
msgid "One or more unsupported 3rd party plugins detected."
|
2775 |
msgstr ""
|
2776 |
"Ein oder mehrere nicht unterstützte Plugins von Drittanbietern wurden "
|
2777 |
"erkannt."
|
2778 |
|
2779 |
-
#: dashboard/settings/maintenance.php:
|
2780 |
msgid ""
|
2781 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2782 |
"dashboard which may affect security and/or stability."
|
@@ -2785,11 +2712,11 @@ msgstr ""
|
|
2785 |
"Dashboards ändern, die die Sicherheit und/oder Stabilität beeinträchtigen "
|
2786 |
"können."
|
2787 |
|
2788 |
-
#: dashboard/settings/maintenance.php:
|
2789 |
msgid "Internal Versions"
|
2790 |
msgstr "Interne Version"
|
2791 |
|
2792 |
-
#: dashboard/settings/maintenance.php:
|
2793 |
msgid ""
|
2794 |
"Unless you experience database issues or a warning shows below, these "
|
2795 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
@@ -2800,53 +2727,53 @@ msgstr ""
|
|
2800 |
"Support wird Sie möglicherweise darum bitten, um Ihren Datenbankstatus zu "
|
2801 |
"überprüfen."
|
2802 |
|
2803 |
-
#: dashboard/settings/maintenance.php:
|
2804 |
msgid "AdRotate version"
|
2805 |
msgstr "AdRotate version"
|
2806 |
|
2807 |
-
#: dashboard/settings/maintenance.php:
|
2808 |
msgid "Current:"
|
2809 |
msgstr "Aktuell:"
|
2810 |
|
2811 |
-
#: dashboard/settings/maintenance.php:
|
2812 |
msgid "Should be:"
|
2813 |
msgstr "Sollte sein:"
|
2814 |
|
2815 |
-
#: dashboard/settings/maintenance.php:
|
2816 |
msgid "Previous:"
|
2817 |
msgstr "Vorherige(r):"
|
2818 |
|
2819 |
-
#: dashboard/settings/maintenance.php:
|
2820 |
msgid "Database version"
|
2821 |
msgstr "Datenbank Version"
|
2822 |
|
2823 |
-
#: dashboard/settings/maintenance.php:
|
2824 |
msgid "Manual upgrade"
|
2825 |
msgstr "Manuelles Upgrade"
|
2826 |
|
2827 |
-
#: dashboard/settings/maintenance.php:
|
2828 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2829 |
msgstr "SIE SIND ÜBER EIN MANUELLEs UPDATE FÜR ADROTATE ZU TUN."
|
2830 |
|
2831 |
-
#: dashboard/settings/maintenance.php:
|
2832 |
msgid "Make sure you have a database backup!"
|
2833 |
msgstr "Stellen Sie sicher, dass Sie über eine Datenbanksicherung verfügen!"
|
2834 |
|
2835 |
-
#: dashboard/settings/maintenance.php:
|
2836 |
msgid "This might take a while and may slow down your site during this action!"
|
2837 |
msgstr ""
|
2838 |
"Dies kann eine Weile dauern und möglicherweise wird Ihre Website während "
|
2839 |
"dieser Aktion langsamer reagieren!"
|
2840 |
|
2841 |
-
#: dashboard/settings/maintenance.php:
|
2842 |
msgid "Run updater"
|
2843 |
msgstr "Updater starten"
|
2844 |
|
2845 |
-
#: dashboard/settings/misc.php:
|
2846 |
msgid "Widget alignment"
|
2847 |
msgstr "Widget Ausrichtung"
|
2848 |
|
2849 |
-
#: dashboard/settings/misc.php:
|
2850 |
msgid ""
|
2851 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2852 |
"not always help!)"
|
@@ -2854,11 +2781,11 @@ msgstr ""
|
|
2854 |
"Aktivieren Sie dieses Kontrollkästchen, wenn Ihre Widgets in der Sidebar des "
|
2855 |
"themes nicht ausgerichtet wird. (hilft nicht immer !)"
|
2856 |
|
2857 |
-
#: dashboard/settings/misc.php:
|
2858 |
msgid "Widget padding"
|
2859 |
msgstr "Widget Padding"
|
2860 |
|
2861 |
-
#: dashboard/settings/misc.php:
|
2862 |
msgid ""
|
2863 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2864 |
"not always work!)"
|
@@ -2866,18 +2793,18 @@ msgstr ""
|
|
2866 |
"Aktivieren Sie diese Option, um den angegebenen Rahmen um die Anzeigen in "
|
2867 |
"Text-Widgets zu entfernen. (Funktioniert nicht immer!)"
|
2868 |
|
2869 |
-
#: dashboard/settings/misc.php:
|
2870 |
msgid "NOTICE:"
|
2871 |
msgstr "HINWEIS:"
|
2872 |
|
2873 |
-
#: dashboard/settings/misc.php:
|
2874 |
msgid ""
|
2875 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2876 |
msgstr ""
|
2877 |
"Sie haben W3 Total Cache-Unterstützung aktiviert, aber nicht den Sicherheit "
|
2878 |
"Hash definiert."
|
2879 |
|
2880 |
-
#: dashboard/settings/misc.php:
|
2881 |
msgid ""
|
2882 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2883 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
@@ -2887,31 +2814,31 @@ msgstr ""
|
|
2887 |
"52 (unterhalb der WordPress Nonces) generiert. Wenn Sie nicht wissen, wie "
|
2888 |
"diese Zeile hinzufügen, sehen Sie sich die folgende Anleitung an;"
|
2889 |
|
2890 |
-
#: dashboard/settings/misc.php:
|
2891 |
msgid "Set up W3 Total Caching"
|
2892 |
msgstr "Richten Sie W3 Total Cache ein"
|
2893 |
|
2894 |
-
#: dashboard/settings/misc.php:
|
2895 |
msgid "W3 Total Caching"
|
2896 |
msgstr "W3 Total Cache"
|
2897 |
|
2898 |
-
#: dashboard/settings/misc.php:
|
2899 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2900 |
msgstr ""
|
2901 |
"Aktivieren Sie dieses Kontrollkästchen, wenn Sie W3 Total Cache auf Ihrer "
|
2902 |
"Website verwenden."
|
2903 |
|
2904 |
-
#: dashboard/settings/misc.php:
|
2905 |
msgid "Borlabs Cache"
|
2906 |
msgstr "Borlabs Cache"
|
2907 |
|
2908 |
-
#: dashboard/settings/misc.php:
|
2909 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2910 |
msgstr ""
|
2911 |
"Aktivieren Sie dieses Kontrollkästchen, wenn Sie Borlabs Caching auf Ihrer "
|
2912 |
"Website verwenden."
|
2913 |
|
2914 |
-
#: dashboard/settings/misc.php:
|
2915 |
msgid ""
|
2916 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2917 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -2920,7 +2847,7 @@ msgstr ""
|
|
2920 |
"Plugin muss zunächst den Cache aktualisieren. Dies kann bis zu einer Woche "
|
2921 |
"dauern, wenn es nicht manuell vorgenommen wird."
|
2922 |
|
2923 |
-
#: dashboard/settings/misc.php:
|
2924 |
msgid ""
|
2925 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2926 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -3340,6 +3267,91 @@ msgstr ""
|
|
3340 |
"Code- oder Layoutstile können beim Bearbeiten der Gruppe im Gruppenwrapper "
|
3341 |
"angewendet werden."
|
3342 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3343 |
#~ msgid "Check all adverts for configuration errors"
|
3344 |
#~ msgstr "Überprüfen Sie alle Anzeigen auf Konfigurationsfehler"
|
3345 |
|
@@ -3966,9 +3978,6 @@ msgstr ""
|
|
3966 |
#~ msgid "Schedule saved"
|
3967 |
#~ msgstr "Zeitplan gespeichert"
|
3968 |
|
3969 |
-
#~ msgid "Schedule(s) deleted"
|
3970 |
-
#~ msgstr "Zeitplan oder Zeitpläne gelöscht"
|
3971 |
-
|
3972 |
#~ msgid "Advert(s) duplicated"
|
3973 |
#~ msgstr "Anzeige(n) dupliziert"
|
3974 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:26-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-11-14 17:26-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: de\n"
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Anzeigen"
|
23 |
|
24 |
+
#: adrotate-functions.php:795
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Werbeanzeige gespeichert"
|
27 |
|
28 |
+
#: adrotate-functions.php:799
|
29 |
msgid "Group saved"
|
30 |
msgstr "Gruppe gespeichert"
|
31 |
|
32 |
+
#: adrotate-functions.php:803
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Banner-Bild gespeichert"
|
35 |
|
36 |
+
#: adrotate-functions.php:807
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Anzeige (n) gelöscht"
|
39 |
|
40 |
+
#: adrotate-functions.php:811
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Gruppe gelöscht"
|
43 |
|
44 |
+
#: adrotate-functions.php:815
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Assets gelöscht"
|
47 |
|
48 |
+
#: adrotate-functions.php:819
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
53 |
"Beim Löschen der Datei oder des Ordners ist etwas schief gelaufen. Stellen "
|
54 |
"Sie sicher, dass Ihre Berechtigungen in Ordnung sind."
|
55 |
|
56 |
+
#: adrotate-functions.php:823
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Anzeige(n) Statistik-Reset"
|
59 |
|
60 |
+
#: adrotate-functions.php:827
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Anzeige(e) erneuert"
|
63 |
|
64 |
+
#: adrotate-functions.php:831
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Anzeigen deaktiviert"
|
67 |
|
68 |
+
#: adrotate-functions.php:835
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Anzeige(n) aktiviert"
|
71 |
|
72 |
+
#: adrotate-functions.php:839
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Gruppe einschließlich der darin gelöschten Anzeigen"
|
75 |
|
76 |
+
#: adrotate-functions.php:843
|
77 |
msgid "Export created"
|
78 |
msgstr "Export erstellt"
|
79 |
|
80 |
+
#: adrotate-functions.php:847
|
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 |
"Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und die "
|
87 |
"Anzeige zu planen."
|
88 |
|
89 |
+
#: adrotate-functions.php:852
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Einstellungen gespeichert"
|
92 |
|
93 |
+
#: adrotate-functions.php:856
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Datenbank optimiert"
|
96 |
|
97 |
+
#: adrotate-functions.php:860
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Datenbank repariert"
|
100 |
|
101 |
+
#: adrotate-functions.php:864
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr ""
|
104 |
"Anzeigen wurden überprüft und Zustände korrigiert, wo es erforderlich war"
|
105 |
|
106 |
+
#: adrotate-functions.php:868
|
107 |
msgid "Cleanup complete"
|
108 |
msgstr "Bereinigung abgeschlossen"
|
109 |
|
110 |
+
#: adrotate-functions.php:872
|
111 |
+
msgid "Scheduled tasks reset"
|
112 |
+
msgstr "Geplante Aufgaben zurücksetzen"
|
113 |
+
|
114 |
+
#: adrotate-functions.php:876
|
115 |
+
msgid ""
|
116 |
+
"If there were any 3rd party plugins interfering with AdRotate they have been "
|
117 |
+
"disabled"
|
118 |
+
msgstr ""
|
119 |
+
"Wenn es irgendwelche 3rd-Party-Plugins gab, die AdRotate stören, wurden sie "
|
120 |
+
"deaktiviert"
|
121 |
+
|
122 |
+
#: adrotate-functions.php:880
|
123 |
+
msgid "Database updated"
|
124 |
+
msgstr "Datenbank aktualisiert"
|
125 |
+
|
126 |
+
#: adrotate-functions.php:885
|
127 |
msgid "Action prohibited"
|
128 |
msgstr "Aktion nicht zulässig"
|
129 |
|
130 |
+
#: adrotate-functions.php:889
|
131 |
msgid ""
|
132 |
"The advert was saved but has an issue which might prevent it from working "
|
133 |
"properly. Review the colored advert."
|
136 |
"möglicherweise nicht ordnungsgemäß funktionieren könnte. Überprüfen Sie die "
|
137 |
"farbige Anzeige."
|
138 |
|
139 |
+
#: adrotate-functions.php:893
|
140 |
msgid "No data found in selected time period"
|
141 |
msgstr "Keine Daten im ausgewählten Zeitraum gefunden"
|
142 |
|
143 |
+
#: adrotate-functions.php:897
|
144 |
msgid "Database can only be optimized or cleaned once every hour"
|
145 |
msgstr "Datenbank kann nur einmal pro Stunde optimiert oder gereinigt werden"
|
146 |
|
147 |
+
#: adrotate-functions.php:901
|
148 |
msgid "Form can not be (partially) empty!"
|
149 |
msgstr "Formular kann nicht (teilweise) leer sein!"
|
150 |
|
151 |
+
#: adrotate-functions.php:905
|
152 |
msgid "No file uploaded."
|
153 |
msgstr "Keine Datei hochgeladen."
|
154 |
|
155 |
+
#: adrotate-functions.php:909
|
156 |
msgid "No adverts found."
|
157 |
msgstr "Keine Anzeigen gefunden."
|
158 |
|
159 |
+
#: adrotate-functions.php:913
|
160 |
msgid "Wrong file type. No file uploaded."
|
161 |
msgstr "Falsche Dateityp. Keine Datei hochgeladen."
|
162 |
|
163 |
+
#: adrotate-functions.php:917
|
164 |
msgid "No file selected or file is too large."
|
165 |
msgstr "Keine ausgewählte Datei oder Datei ist zu groß."
|
166 |
|
167 |
+
#: adrotate-functions.php:921
|
168 |
msgid "There was an error unzipping the file. Please try again later."
|
169 |
msgstr ""
|
170 |
"Beim Entpacken der Datei ist ein Fehler aufgetreten. Versuchen Sie es später "
|
171 |
"erneut."
|
172 |
|
173 |
+
#: adrotate-functions.php:925
|
174 |
msgid ""
|
175 |
"The advert hash is not usable or is missing required data. Please copy the "
|
176 |
"hash correctly and try again."
|
178 |
"Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
|
179 |
"Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
|
180 |
|
181 |
+
#: adrotate-functions.php:929
|
182 |
msgid ""
|
183 |
"The advert hash can not be used on the same site as it originated from or is "
|
184 |
"not a valid hash for importing."
|
186 |
"Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
|
187 |
"er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
|
188 |
|
189 |
+
#: adrotate-functions.php:933
|
190 |
msgid "Unexpected error"
|
191 |
msgstr "Unerwarteter Fehler"
|
192 |
|
277 |
msgstr "Ein unbekannter Fehler ist aufgetreten."
|
278 |
|
279 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
280 |
+
#: dashboard/settings/maintenance.php:16
|
281 |
msgid "Check adverts"
|
282 |
msgstr "Anzeigen überprüfen"
|
283 |
|
499 |
msgid "Use on up to FIVE WordPress installations."
|
500 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
501 |
|
502 |
+
#: adrotate-statistics.php:154
|
503 |
msgid "January"
|
504 |
msgstr "Januar"
|
505 |
|
506 |
+
#: adrotate-statistics.php:154
|
507 |
msgid "February"
|
508 |
msgstr "Februar"
|
509 |
|
510 |
+
#: adrotate-statistics.php:154
|
511 |
msgid "March"
|
512 |
msgstr "März"
|
513 |
|
514 |
+
#: adrotate-statistics.php:154
|
515 |
msgid "April"
|
516 |
msgstr "April"
|
517 |
|
518 |
+
#: adrotate-statistics.php:154
|
519 |
msgid "May"
|
520 |
msgstr "Mai"
|
521 |
|
522 |
+
#: adrotate-statistics.php:154
|
523 |
msgid "June"
|
524 |
msgstr "Juni"
|
525 |
|
526 |
+
#: adrotate-statistics.php:154
|
527 |
msgid "July"
|
528 |
msgstr "Juli"
|
529 |
|
530 |
+
#: adrotate-statistics.php:154
|
531 |
msgid "August"
|
532 |
msgstr "August"
|
533 |
|
534 |
+
#: adrotate-statistics.php:154
|
535 |
msgid "September"
|
536 |
msgstr "September"
|
537 |
|
538 |
+
#: adrotate-statistics.php:154
|
539 |
msgid "October"
|
540 |
msgstr "Oktober"
|
541 |
|
542 |
+
#: adrotate-statistics.php:154
|
543 |
msgid "November"
|
544 |
msgstr "November"
|
545 |
|
546 |
+
#: adrotate-statistics.php:154
|
547 |
msgid "December"
|
548 |
msgstr "Dezember"
|
549 |
|
550 |
+
#: adrotate-statistics.php:163
|
551 |
msgid "Previous"
|
552 |
msgstr "Zurück"
|
553 |
|
554 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
555 |
#: dashboard/publisher/statistics-group.php:73
|
556 |
#: dashboard/publisher/statistics-main.php:48
|
557 |
msgid "This month"
|
558 |
msgstr "Dieser Monat"
|
559 |
|
560 |
+
#: adrotate-statistics.php:166
|
561 |
msgid "Next"
|
562 |
msgstr "Nächste"
|
563 |
|
564 |
+
#: adrotate-statistics.php:220
|
565 |
msgid "No data to show!"
|
566 |
msgstr "Keine Daten vorhanden, um diese zu zeigen!"
|
567 |
|
568 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
569 |
msgid "Not found"
|
570 |
msgstr "Nicht gefunden"
|
571 |
|
609 |
msgid "Fill in the ID of the type you want to display!"
|
610 |
msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
|
611 |
|
612 |
+
#: adrotate.php:104 adrotate.php:174
|
613 |
msgid "Manage Adverts"
|
614 |
msgstr "Anzeigen verwalten"
|
615 |
|
616 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
617 |
msgid "Manage Groups"
|
618 |
msgstr "Gruppen verwalten"
|
619 |
|
620 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
621 |
msgid "Manage Schedules"
|
622 |
msgstr "Zeiträume verwalten"
|
623 |
|
624 |
+
#: adrotate.php:107
|
625 |
msgid "Manage Media"
|
626 |
msgstr "Medien verwalten"
|
627 |
|
628 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
629 |
#: dashboard/publisher/adverts-edit.php:178
|
630 |
#: dashboard/publisher/statistics-main.php:23
|
631 |
#: dashboard/settings/statistics.php:17
|
632 |
msgid "Statistics"
|
633 |
msgstr "Auswertungen"
|
634 |
|
635 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
636 |
msgid "Get AdRotate Pro"
|
637 |
msgstr "AdRotate Pro"
|
638 |
|
639 |
+
#: adrotate.php:110
|
640 |
msgid "Support"
|
641 |
msgstr "Support"
|
642 |
|
643 |
+
#: adrotate.php:111
|
644 |
msgid "Settings"
|
645 |
msgstr "Einstellungen"
|
646 |
|
647 |
+
#: adrotate.php:130
|
648 |
msgid "Get AdRotate Professional"
|
649 |
msgstr "AdRotate Professional kaufen"
|
650 |
|
651 |
+
#: adrotate.php:234 adrotate.php:306
|
652 |
msgid "Manage"
|
653 |
msgstr "Verwalten"
|
654 |
|
655 |
+
#: adrotate.php:235
|
656 |
msgid "Advert Generator"
|
657 |
msgstr "Anzeige generator"
|
658 |
|
659 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
660 |
msgid "New Advert"
|
661 |
msgstr "Neue Anzeige"
|
662 |
|
663 |
+
#: adrotate.php:307
|
664 |
msgid "Add New"
|
665 |
msgstr "Neu hinzufügen"
|
666 |
|
667 |
+
#: adrotate.php:375
|
668 |
msgid "Manage Media and Assets"
|
669 |
msgstr "Verwalten von Medien und Ressourcen"
|
670 |
|
671 |
+
#: adrotate.php:379
|
672 |
msgid ""
|
673 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
674 |
"if you have HTML5 adverts containing multiple files."
|
677 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
678 |
"mehrere Dateien enthalten."
|
679 |
|
680 |
+
#: adrotate.php:421
|
681 |
msgid "Advert Statistics"
|
682 |
msgstr "Statistiken zur Anzeige"
|
683 |
|
684 |
+
#: adrotate.php:464
|
685 |
msgid "AdRotate Support"
|
686 |
msgstr "AdRotate-Unterstützung"
|
687 |
|
688 |
+
#: adrotate.php:510
|
689 |
msgid "AdRotate Settings"
|
690 |
msgstr "AdRotate Einstellungen"
|
691 |
|
692 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
693 |
msgid "General"
|
694 |
msgstr "Allgemein"
|
695 |
|
696 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
697 |
msgid "Notifications"
|
698 |
msgstr "Benachrichtigungen"
|
699 |
|
700 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
701 |
msgid "Geo Targeting"
|
702 |
msgstr "Geo Targeting"
|
703 |
|
704 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
705 |
msgid "Access Roles"
|
706 |
msgstr "Zugriffsrollen"
|
707 |
|
708 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
709 |
msgid "Miscellaneous"
|
710 |
msgstr "Sonstiges"
|
711 |
|
712 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
713 |
msgid "Maintenance"
|
714 |
msgstr "Wartung"
|
715 |
|
1450 |
msgstr "Wird bald ablaufen"
|
1451 |
|
1452 |
#: dashboard/publisher/adverts-error.php:67
|
1453 |
+
#: dashboard/settings/maintenance.php:30
|
1454 |
msgid "Expired"
|
1455 |
msgstr "Abgelaufen"
|
1456 |
|
2065 |
msgid "This action can not be undone!"
|
2066 |
msgstr "Diese Aktion kann nicht rückgängig gemacht werden!"
|
2067 |
|
2068 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
2069 |
msgid "OK to continue, CANCEL to stop."
|
2070 |
msgstr "OK um fortzufahren, CANCEL, um zu stoppen."
|
2071 |
|
2494 |
msgid "user-agents"
|
2495 |
msgstr "Benutzer-agents"
|
2496 |
|
2497 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2498 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2499 |
#: dashboard/settings/statistics.php:85
|
2500 |
msgid "Update Options"
|
2604 |
msgid "Password/License Key"
|
2605 |
msgstr "Passwort/Lizenzschlüssel"
|
2606 |
|
2607 |
+
#: dashboard/settings/maintenance.php:18
|
2608 |
+
msgid "Check ads for errors"
|
2609 |
+
msgstr "Anzeigen auf Fehler überprüfen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2610 |
|
2611 |
+
#: dashboard/settings/maintenance.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2612 |
msgid ""
|
2613 |
+
"Apply all evaluation rules to all adverts to see if any error slipped in. "
|
2614 |
+
"This may take a few seconds."
|
2615 |
msgstr ""
|
2616 |
+
"Wenden Sie alle Bewertungsregeln auf alle Anzeigen an, um zu sehen, ob sich "
|
2617 |
+
"ein Fehler eingeschlichen hat. Dies kann einige Sekunden dauern."
|
2618 |
|
2619 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2620 |
msgid "Status and Versions"
|
2621 |
msgstr "Status und Versionen"
|
2622 |
|
2623 |
+
#: dashboard/settings/maintenance.php:29
|
2624 |
msgid "Current status of adverts"
|
2625 |
msgstr "Aktueller Status der Anzeigen"
|
2626 |
|
2627 |
+
#: dashboard/settings/maintenance.php:30
|
2628 |
msgid "Normal"
|
2629 |
msgstr "Normal"
|
2630 |
|
2631 |
+
#: dashboard/settings/maintenance.php:30
|
2632 |
msgid "Error"
|
2633 |
msgstr "Fehler"
|
2634 |
|
2635 |
+
#: dashboard/settings/maintenance.php:30
|
2636 |
msgid "Expires Soon"
|
2637 |
msgstr "Läuft ab"
|
2638 |
|
2639 |
+
#: dashboard/settings/maintenance.php:30
|
2640 |
msgid "Unknown"
|
2641 |
msgstr "Unbekannt"
|
2642 |
|
2643 |
+
#: dashboard/settings/maintenance.php:33
|
2644 |
msgid "Banners/assets Folder"
|
2645 |
msgstr "Banner Ordner"
|
2646 |
|
2647 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2648 |
msgid "Exists and appears writable"
|
2649 |
msgstr "Existiert und scheint beschreibbar"
|
2650 |
|
2651 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2652 |
msgid "Not writable or does not exist"
|
2653 |
msgstr "Nicht beschreibbar oder existiert nicht"
|
2654 |
|
2655 |
+
#: dashboard/settings/maintenance.php:42
|
2656 |
msgid "Reports Folder"
|
2657 |
msgstr "Ordner \"Reports\""
|
2658 |
|
2659 |
+
#: dashboard/settings/maintenance.php:51
|
2660 |
msgid "Advert evaluation"
|
2661 |
msgstr "Anzeige-Auswertung"
|
2662 |
|
2663 |
+
#: dashboard/settings/maintenance.php:52
|
2664 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2665 |
msgstr "Nicht geplant! Reaktivieren Sie das Plugin auf der Plugins Seite."
|
2666 |
|
2667 |
+
#: dashboard/settings/maintenance.php:53
|
2668 |
msgid "Clean Trackerdata"
|
2669 |
msgstr "Löschen abgelaufener Trackerdaten"
|
2670 |
|
2671 |
+
#: dashboard/settings/maintenance.php:54
|
2672 |
msgid "Not scheduled!"
|
2673 |
msgstr "Zeitplan deaktiviert!"
|
2674 |
|
2675 |
+
#: dashboard/settings/maintenance.php:57
|
2676 |
msgid "Background tasks"
|
2677 |
msgstr "Hintergrundaufgaben"
|
2678 |
|
2679 |
+
#: dashboard/settings/maintenance.php:59
|
2680 |
msgid "Reset background tasks"
|
2681 |
msgstr "Zurücksetzen von Hintergrundaufgaben"
|
2682 |
|
2683 |
+
#: dashboard/settings/maintenance.php:62
|
2684 |
+
msgid ""
|
2685 |
+
"If automated tasks such as expiring adverts does not work reliable or one of "
|
2686 |
+
"the above schedules is missing use this button to reset the tasks."
|
2687 |
+
msgstr ""
|
2688 |
+
"Wenn automatisierte Aufgaben wie ablaufende Anzeigen nicht zuverlässig "
|
2689 |
+
"funktionieren oder einer der oben genannten Zeitpläne fehlt, verwenden Sie "
|
2690 |
+
"diese Schaltfläche, um die Aufgaben zurückzusetzen."
|
2691 |
+
|
2692 |
+
#: dashboard/settings/maintenance.php:66
|
2693 |
msgid "Unsupported plugins"
|
2694 |
msgstr "Nicht unterstützte Plugins"
|
2695 |
|
2696 |
+
#: dashboard/settings/maintenance.php:68
|
2697 |
msgid "Disable 3rd party plugins"
|
2698 |
msgstr "Deaktivieren von Plugins von Drittanbietern"
|
2699 |
|
2700 |
+
#: dashboard/settings/maintenance.php:70
|
2701 |
msgid "One or more unsupported 3rd party plugins detected."
|
2702 |
msgstr ""
|
2703 |
"Ein oder mehrere nicht unterstützte Plugins von Drittanbietern wurden "
|
2704 |
"erkannt."
|
2705 |
|
2706 |
+
#: dashboard/settings/maintenance.php:72
|
2707 |
msgid ""
|
2708 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2709 |
"dashboard which may affect security and/or stability."
|
2712 |
"Dashboards ändern, die die Sicherheit und/oder Stabilität beeinträchtigen "
|
2713 |
"können."
|
2714 |
|
2715 |
+
#: dashboard/settings/maintenance.php:77
|
2716 |
msgid "Internal Versions"
|
2717 |
msgstr "Interne Version"
|
2718 |
|
2719 |
+
#: dashboard/settings/maintenance.php:78
|
2720 |
msgid ""
|
2721 |
"Unless you experience database issues or a warning shows below, these "
|
2722 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
2727 |
"Support wird Sie möglicherweise darum bitten, um Ihren Datenbankstatus zu "
|
2728 |
"überprüfen."
|
2729 |
|
2730 |
+
#: dashboard/settings/maintenance.php:81
|
2731 |
msgid "AdRotate version"
|
2732 |
msgstr "AdRotate version"
|
2733 |
|
2734 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2735 |
msgid "Current:"
|
2736 |
msgstr "Aktuell:"
|
2737 |
|
2738 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2739 |
msgid "Should be:"
|
2740 |
msgstr "Sollte sein:"
|
2741 |
|
2742 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2743 |
msgid "Previous:"
|
2744 |
msgstr "Vorherige(r):"
|
2745 |
|
2746 |
+
#: dashboard/settings/maintenance.php:83
|
2747 |
msgid "Database version"
|
2748 |
msgstr "Datenbank Version"
|
2749 |
|
2750 |
+
#: dashboard/settings/maintenance.php:87
|
2751 |
msgid "Manual upgrade"
|
2752 |
msgstr "Manuelles Upgrade"
|
2753 |
|
2754 |
+
#: dashboard/settings/maintenance.php:89
|
2755 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2756 |
msgstr "SIE SIND ÜBER EIN MANUELLEs UPDATE FÜR ADROTATE ZU TUN."
|
2757 |
|
2758 |
+
#: dashboard/settings/maintenance.php:89
|
2759 |
msgid "Make sure you have a database backup!"
|
2760 |
msgstr "Stellen Sie sicher, dass Sie über eine Datenbanksicherung verfügen!"
|
2761 |
|
2762 |
+
#: dashboard/settings/maintenance.php:89
|
2763 |
msgid "This might take a while and may slow down your site during this action!"
|
2764 |
msgstr ""
|
2765 |
"Dies kann eine Weile dauern und möglicherweise wird Ihre Website während "
|
2766 |
"dieser Aktion langsamer reagieren!"
|
2767 |
|
2768 |
+
#: dashboard/settings/maintenance.php:89
|
2769 |
msgid "Run updater"
|
2770 |
msgstr "Updater starten"
|
2771 |
|
2772 |
+
#: dashboard/settings/misc.php:122
|
2773 |
msgid "Widget alignment"
|
2774 |
msgstr "Widget Ausrichtung"
|
2775 |
|
2776 |
+
#: dashboard/settings/misc.php:123
|
2777 |
msgid ""
|
2778 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2779 |
"not always help!)"
|
2781 |
"Aktivieren Sie dieses Kontrollkästchen, wenn Ihre Widgets in der Sidebar des "
|
2782 |
"themes nicht ausgerichtet wird. (hilft nicht immer !)"
|
2783 |
|
2784 |
+
#: dashboard/settings/misc.php:126
|
2785 |
msgid "Widget padding"
|
2786 |
msgstr "Widget Padding"
|
2787 |
|
2788 |
+
#: dashboard/settings/misc.php:127
|
2789 |
msgid ""
|
2790 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2791 |
"not always work!)"
|
2793 |
"Aktivieren Sie diese Option, um den angegebenen Rahmen um die Anzeigen in "
|
2794 |
"Text-Widgets zu entfernen. (Funktioniert nicht immer!)"
|
2795 |
|
2796 |
+
#: dashboard/settings/misc.php:131
|
2797 |
msgid "NOTICE:"
|
2798 |
msgstr "HINWEIS:"
|
2799 |
|
2800 |
+
#: dashboard/settings/misc.php:132
|
2801 |
msgid ""
|
2802 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2803 |
msgstr ""
|
2804 |
"Sie haben W3 Total Cache-Unterstützung aktiviert, aber nicht den Sicherheit "
|
2805 |
"Hash definiert."
|
2806 |
|
2807 |
+
#: dashboard/settings/misc.php:132
|
2808 |
msgid ""
|
2809 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2810 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
2814 |
"52 (unterhalb der WordPress Nonces) generiert. Wenn Sie nicht wissen, wie "
|
2815 |
"diese Zeile hinzufügen, sehen Sie sich die folgende Anleitung an;"
|
2816 |
|
2817 |
+
#: dashboard/settings/misc.php:132
|
2818 |
msgid "Set up W3 Total Caching"
|
2819 |
msgstr "Richten Sie W3 Total Cache ein"
|
2820 |
|
2821 |
+
#: dashboard/settings/misc.php:136
|
2822 |
msgid "W3 Total Caching"
|
2823 |
msgstr "W3 Total Cache"
|
2824 |
|
2825 |
+
#: dashboard/settings/misc.php:137
|
2826 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2827 |
msgstr ""
|
2828 |
"Aktivieren Sie dieses Kontrollkästchen, wenn Sie W3 Total Cache auf Ihrer "
|
2829 |
"Website verwenden."
|
2830 |
|
2831 |
+
#: dashboard/settings/misc.php:140
|
2832 |
msgid "Borlabs Cache"
|
2833 |
msgstr "Borlabs Cache"
|
2834 |
|
2835 |
+
#: dashboard/settings/misc.php:141
|
2836 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2837 |
msgstr ""
|
2838 |
"Aktivieren Sie dieses Kontrollkästchen, wenn Sie Borlabs Caching auf Ihrer "
|
2839 |
"Website verwenden."
|
2840 |
|
2841 |
+
#: dashboard/settings/misc.php:145
|
2842 |
msgid ""
|
2843 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2844 |
"to refresh the cache. This can take up to a week if not done manually."
|
2847 |
"Plugin muss zunächst den Cache aktualisieren. Dies kann bis zu einer Woche "
|
2848 |
"dauern, wenn es nicht manuell vorgenommen wird."
|
2849 |
|
2850 |
+
#: dashboard/settings/misc.php:145
|
2851 |
msgid ""
|
2852 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2853 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
3267 |
"Code- oder Layoutstile können beim Bearbeiten der Gruppe im Gruppenwrapper "
|
3268 |
"angewendet werden."
|
3269 |
|
3270 |
+
#~ msgid ""
|
3271 |
+
#~ "Use these functions when you notice your database is slow, unresponsive "
|
3272 |
+
#~ "and sluggish."
|
3273 |
+
#~ msgstr ""
|
3274 |
+
#~ "Verwenden Sie diese Funktionen, wenn Sie merken, dass Ihre Datenbank "
|
3275 |
+
#~ "langsam ist, nicht mehr reagiert oder schwerfällig ist."
|
3276 |
+
|
3277 |
+
#~ msgid "You are about to check all adverts for errors."
|
3278 |
+
#~ msgstr "Sie sind im Begriff, alle Anzeigen auf Fehler zu überprüfen."
|
3279 |
+
|
3280 |
+
#~ msgid "This might take a few seconds!"
|
3281 |
+
#~ msgstr "Dies kann ein paar Sekunden dauern!"
|
3282 |
+
|
3283 |
+
#~ msgid "Clean-up Database and Files"
|
3284 |
+
#~ msgstr "Datenbank aufräumen"
|
3285 |
+
|
3286 |
+
#~ msgid "Run Clean-up"
|
3287 |
+
#~ msgstr "Bereinigung ausführen"
|
3288 |
+
|
3289 |
+
#~ msgid "You are about to do maintenance on your setup of AdRotate."
|
3290 |
+
#~ msgstr "Sie sind dabei, die AdRotate Datenbank optimieren."
|
3291 |
+
|
3292 |
+
#~ msgid ""
|
3293 |
+
#~ "This optionally may delete old statistics and tries to delete old export "
|
3294 |
+
#~ "files."
|
3295 |
+
#~ msgstr ""
|
3296 |
+
#~ "Dies kann optional alte Statistiken löschen und versucht, alte "
|
3297 |
+
#~ "Exportdateien zu löschen."
|
3298 |
+
|
3299 |
+
#~ msgid "Are you sure you want to continue?"
|
3300 |
+
#~ msgstr "Sind Sie sicher, dass Sie fortfahren möchten?"
|
3301 |
+
|
3302 |
+
#~ msgid "THIS ACTION CAN NOT BE UNDONE!"
|
3303 |
+
#~ msgstr "Diese Aktion kann nicht rückgängig gemacht werden!"
|
3304 |
+
|
3305 |
+
#~ msgid "Basic database maintenance."
|
3306 |
+
#~ msgstr "Grundlegende Datenbankwartung."
|
3307 |
+
|
3308 |
+
#~ msgid "Delete stats older than 365 days."
|
3309 |
+
#~ msgstr "Löschen Sie Statistiken, die älter als 365 Tage ist."
|
3310 |
+
|
3311 |
+
#~ msgid "Delete leftover export files."
|
3312 |
+
#~ msgstr "Löschen Sie übrig gebliebene Exportdateien."
|
3313 |
+
|
3314 |
+
#~ msgid ""
|
3315 |
+
#~ "For when you create an advert, group or schedule and it does not save or "
|
3316 |
+
#~ "keep changes you make."
|
3317 |
+
#~ msgstr ""
|
3318 |
+
#~ "Denn wenn Sie eine Anzeige, Gruppe oder einen Zeitplan erstellen und sie "
|
3319 |
+
#~ "keine Änderungen speichert oder aufnimmt, die Sie vornehmen. Oder Updates "
|
3320 |
+
#~ "werden nicht angezeigt, während Ihre Lizenz aktiv ist."
|
3321 |
+
|
3322 |
+
#~ msgid ""
|
3323 |
+
#~ "Additionally you can delete statistics and/or unused export files. This "
|
3324 |
+
#~ "will improve the speed of your site."
|
3325 |
+
#~ msgstr ""
|
3326 |
+
#~ "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
|
3327 |
+
#~ "d'améliorer la vitesse de votre site."
|
3328 |
+
|
3329 |
+
#~ msgid ""
|
3330 |
+
#~ "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
3331 |
+
#~ "database or clean up overhead data. They only apply to your ads/groups "
|
3332 |
+
#~ "and stats. Not to other settings or other parts of WordPress! Always "
|
3333 |
+
#~ "always make a backup! If for any reason your data is lost, damaged or "
|
3334 |
+
#~ "otherwise becomes unusable in any way or by any means in whichever way I "
|
3335 |
+
#~ "will not take responsibility. You should always have a backup of your "
|
3336 |
+
#~ "database. These functions do NOT destroy data. If data is lost, damaged "
|
3337 |
+
#~ "or unusable in any way, your database likely was beyond repair already. "
|
3338 |
+
#~ "Claiming it worked before clicking these buttons is not a valid point in "
|
3339 |
+
#~ "any case."
|
3340 |
+
#~ msgstr ""
|
3341 |
+
#~ "DISCLAIMER: Diese Funktionen sollen verwendet werden, um Ihre Datenbank "
|
3342 |
+
#~ "zu optimieren. Sie gelten nur für Ihre Anzeigen / Gruppen und "
|
3343 |
+
#~ "Statistiken. Nicht auf andere Einstellungen oder andere Teile von "
|
3344 |
+
#~ "Wordpress ! Bitte immer vorher ein Backup machen! Wenn aus irgendeinem "
|
3345 |
+
#~ "Grund Ihre Daten verloren gehen, beschädigt oder anderweitig unbrauchbar "
|
3346 |
+
#~ "werden in irgendeiner Weise oder mit irgendwelchen Mitteln in welcher Art "
|
3347 |
+
#~ "und Weise auch immer, werde ich nicht die Verantwortung übernehmen . Sie "
|
3348 |
+
#~ "sollten immer ein Backup Ihrer Datenbank haben. Diese Funktionen "
|
3349 |
+
#~ "zerstören keine Daten. Wenn Daten verloren gehen, oder in irgendeiner "
|
3350 |
+
#~ "Weise beschädigt oder unbrauchbar werden, war Ihre Datenbank "
|
3351 |
+
#~ "wahrscheinlich bereits nicht mehr zu reparieren. Eine Reklamation mit der "
|
3352 |
+
#~ "Behauptung, dass es funktionierte, bevor Sie diese Schaltflächen klicken, "
|
3353 |
+
#~ "ist auf jeden Fall kein entscheidender Punkt."
|
3354 |
+
|
3355 |
#~ msgid "Check all adverts for configuration errors"
|
3356 |
#~ msgstr "Überprüfen Sie alle Anzeigen auf Konfigurationsfehler"
|
3357 |
|
3978 |
#~ msgid "Schedule saved"
|
3979 |
#~ msgstr "Zeitplan gespeichert"
|
3980 |
|
|
|
|
|
|
|
3981 |
#~ msgid "Advert(s) duplicated"
|
3982 |
#~ msgstr "Anzeige(n) dupliziert"
|
3983 |
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -21,31 +21,31 @@ msgstr ""
|
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Publicités"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Annonce enregistré"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Group saved"
|
30 |
msgstr "Groupe enregistré"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Bannière image sauvegardée"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annonce(s) supprimée"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groupe supprimé"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Actif(s) supprimé"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
@@ -53,31 +53,31 @@ msgstr ""
|
|
53 |
"Quelque chose s’est mal passé en supprimant le fichier ou le dossier. "
|
54 |
"Assurez-vous que vos autorisations sont en ordre."
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Réinitialisation des statistiques publicitaires"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Annonce(s) renouvellée"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Annonce(s) désactivée"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Annonce(s) activée"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Groupe y compris les annonces en elle supprimé"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Export created"
|
78 |
msgstr "Export créé"
|
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,31 +86,47 @@ msgstr ""
|
|
86 |
"annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
|
87 |
"planifier."
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Paramètres sauvegardés"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Base de données optimisée"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Base de données réparée"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Annonces évaluées et statuts corrigés au besoin"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Nettoyage complet"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "Action prohibited"
|
111 |
msgstr "Action interdite"
|
112 |
|
113 |
-
#: adrotate-functions.php:
|
114 |
msgid ""
|
115 |
"The advert was saved but has an issue which might prevent it from working "
|
116 |
"properly. Review the colored advert."
|
@@ -118,42 +134,42 @@ msgstr ""
|
|
118 |
"L’annonce a été enregistrée, mais a un problème qui pourrait l’empêcher de "
|
119 |
"fonctionner correctement. Passez en revue l’annonce colorée."
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "No data found in selected time period"
|
123 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Database can only be optimized or cleaned once every hour"
|
127 |
msgstr ""
|
128 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
129 |
|
130 |
-
#: adrotate-functions.php:
|
131 |
msgid "Form can not be (partially) empty!"
|
132 |
msgstr "Forme ne peut pas être (partiellement) vide !"
|
133 |
|
134 |
-
#: adrotate-functions.php:
|
135 |
msgid "No file uploaded."
|
136 |
msgstr "Pas de fichier téléchargé."
|
137 |
|
138 |
-
#: adrotate-functions.php:
|
139 |
msgid "No adverts found."
|
140 |
msgstr "Aucune annonce trouvée."
|
141 |
|
142 |
-
#: adrotate-functions.php:
|
143 |
msgid "Wrong file type. No file uploaded."
|
144 |
msgstr "Type de fichier incorrect. Aucun fichier ne téléchargé."
|
145 |
|
146 |
-
#: adrotate-functions.php:
|
147 |
msgid "No file selected or file is too large."
|
148 |
msgstr "Aucun fichier sélectionné ou fichier n’est trop grand."
|
149 |
|
150 |
-
#: adrotate-functions.php:
|
151 |
msgid "There was an error unzipping the file. Please try again later."
|
152 |
msgstr ""
|
153 |
"Il y a eu une erreur qui a décompressé le fichier. S’il vous plaît essayer à "
|
154 |
"nouveau plus tard."
|
155 |
|
156 |
-
#: adrotate-functions.php:
|
157 |
msgid ""
|
158 |
"The advert hash is not usable or is missing required data. Please copy the "
|
159 |
"hash correctly and try again."
|
@@ -161,7 +177,7 @@ msgstr ""
|
|
161 |
"Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
|
162 |
"S’il vous plaît copier le hachage correctement et essayer à nouveau."
|
163 |
|
164 |
-
#: adrotate-functions.php:
|
165 |
msgid ""
|
166 |
"The advert hash can not be used on the same site as it originated from or is "
|
167 |
"not a valid hash for importing."
|
@@ -169,7 +185,7 @@ msgstr ""
|
|
169 |
"Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
|
170 |
"provient ou n’est pas un hachage valide pour l’importation."
|
171 |
|
172 |
-
#: adrotate-functions.php:
|
173 |
msgid "Unexpected error"
|
174 |
msgstr "Erreur inattendue"
|
175 |
|
@@ -257,7 +273,7 @@ msgid "An unknown error occured."
|
|
257 |
msgstr "Une erreur inconnue s'est produite."
|
258 |
|
259 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
260 |
-
#: dashboard/settings/maintenance.php:
|
261 |
msgid "Check adverts"
|
262 |
msgstr "Vérifier les annonces"
|
263 |
|
@@ -479,73 +495,73 @@ msgstr "Licence Multiple"
|
|
479 |
msgid "Use on up to FIVE WordPress installations."
|
480 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
481 |
|
482 |
-
#: adrotate-statistics.php:
|
483 |
msgid "January"
|
484 |
msgstr "Janvier"
|
485 |
|
486 |
-
#: adrotate-statistics.php:
|
487 |
msgid "February"
|
488 |
msgstr "Février"
|
489 |
|
490 |
-
#: adrotate-statistics.php:
|
491 |
msgid "March"
|
492 |
msgstr "Mars"
|
493 |
|
494 |
-
#: adrotate-statistics.php:
|
495 |
msgid "April"
|
496 |
msgstr "Avril"
|
497 |
|
498 |
-
#: adrotate-statistics.php:
|
499 |
msgid "May"
|
500 |
msgstr "Mai"
|
501 |
|
502 |
-
#: adrotate-statistics.php:
|
503 |
msgid "June"
|
504 |
msgstr "Juin"
|
505 |
|
506 |
-
#: adrotate-statistics.php:
|
507 |
msgid "July"
|
508 |
msgstr "Juillet"
|
509 |
|
510 |
-
#: adrotate-statistics.php:
|
511 |
msgid "August"
|
512 |
msgstr "Août"
|
513 |
|
514 |
-
#: adrotate-statistics.php:
|
515 |
msgid "September"
|
516 |
msgstr "Septembre"
|
517 |
|
518 |
-
#: adrotate-statistics.php:
|
519 |
msgid "October"
|
520 |
msgstr "Octobre"
|
521 |
|
522 |
-
#: adrotate-statistics.php:
|
523 |
msgid "November"
|
524 |
msgstr "Novembre"
|
525 |
|
526 |
-
#: adrotate-statistics.php:
|
527 |
msgid "December"
|
528 |
msgstr "Décembre"
|
529 |
|
530 |
-
#: adrotate-statistics.php:
|
531 |
msgid "Previous"
|
532 |
msgstr "Précédent"
|
533 |
|
534 |
-
#: adrotate-statistics.php:
|
535 |
#: dashboard/publisher/statistics-group.php:73
|
536 |
#: dashboard/publisher/statistics-main.php:48
|
537 |
msgid "This month"
|
538 |
msgstr "Ce mois-ci"
|
539 |
|
540 |
-
#: adrotate-statistics.php:
|
541 |
msgid "Next"
|
542 |
msgstr "Prochain"
|
543 |
|
544 |
-
#: adrotate-statistics.php:
|
545 |
msgid "No data to show!"
|
546 |
msgstr "Aucune donnée à montrer!"
|
547 |
|
548 |
-
#: adrotate-statistics.php:
|
549 |
msgid "Not found"
|
550 |
msgstr "Non trouvé"
|
551 |
|
@@ -591,66 +607,66 @@ msgstr "ID :"
|
|
591 |
msgid "Fill in the ID of the type you want to display!"
|
592 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
msgid "Manage Adverts"
|
596 |
msgstr "Gérer Annonces"
|
597 |
|
598 |
-
#: adrotate.php:
|
599 |
msgid "Manage Groups"
|
600 |
msgstr "Gérer les groupes"
|
601 |
|
602 |
-
#: adrotate.php:
|
603 |
msgid "Manage Schedules"
|
604 |
msgstr "Gérer les horaires"
|
605 |
|
606 |
-
#: adrotate.php:
|
607 |
msgid "Manage Media"
|
608 |
msgstr "Gérer les médias"
|
609 |
|
610 |
-
#: adrotate.php:
|
611 |
#: dashboard/publisher/adverts-edit.php:178
|
612 |
#: dashboard/publisher/statistics-main.php:23
|
613 |
#: dashboard/settings/statistics.php:17
|
614 |
msgid "Statistics"
|
615 |
msgstr "Statistiques"
|
616 |
|
617 |
-
#: adrotate.php:
|
618 |
msgid "Get AdRotate Pro"
|
619 |
msgstr "Obtenez AdRotate Pro"
|
620 |
|
621 |
-
#: adrotate.php:
|
622 |
msgid "Support"
|
623 |
msgstr "Support"
|
624 |
|
625 |
-
#: adrotate.php:
|
626 |
msgid "Settings"
|
627 |
msgstr "Paramètres"
|
628 |
|
629 |
-
#: adrotate.php:
|
630 |
msgid "Get AdRotate Professional"
|
631 |
msgstr "Obtenez AdRotate Professional"
|
632 |
|
633 |
-
#: adrotate.php:
|
634 |
msgid "Manage"
|
635 |
msgstr "Gérer"
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
msgid "Advert Generator"
|
639 |
msgstr "Générateur d’annonces"
|
640 |
|
641 |
-
#: adrotate.php:
|
642 |
msgid "New Advert"
|
643 |
msgstr "Nouvelle Annonce"
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
msgid "Add New"
|
647 |
msgstr "Ajouter"
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
msgid "Manage Media and Assets"
|
651 |
msgstr "Gérer les médias et les actifs"
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
msgid ""
|
655 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
656 |
"if you have HTML5 adverts containing multiple files."
|
@@ -659,39 +675,39 @@ msgstr ""
|
|
659 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
660 |
"fichiers."
|
661 |
|
662 |
-
#: adrotate.php:
|
663 |
msgid "Advert Statistics"
|
664 |
msgstr "Statistiques de publicité"
|
665 |
|
666 |
-
#: adrotate.php:
|
667 |
msgid "AdRotate Support"
|
668 |
msgstr "Assistance AdRotate"
|
669 |
|
670 |
-
#: adrotate.php:
|
671 |
msgid "AdRotate Settings"
|
672 |
msgstr "Paramètres de AdRotate"
|
673 |
|
674 |
-
#: adrotate.php:
|
675 |
msgid "General"
|
676 |
msgstr "Général"
|
677 |
|
678 |
-
#: adrotate.php:
|
679 |
msgid "Notifications"
|
680 |
msgstr "Notifications"
|
681 |
|
682 |
-
#: adrotate.php:
|
683 |
msgid "Geo Targeting"
|
684 |
msgstr "Ciblage géo"
|
685 |
|
686 |
-
#: adrotate.php:
|
687 |
msgid "Access Roles"
|
688 |
msgstr "Niveaux d’accès"
|
689 |
|
690 |
-
#: adrotate.php:
|
691 |
msgid "Miscellaneous"
|
692 |
msgstr "Divers"
|
693 |
|
694 |
-
#: adrotate.php:
|
695 |
msgid "Maintenance"
|
696 |
msgstr "Maintenance"
|
697 |
|
@@ -1433,7 +1449,7 @@ msgid "Expires soon"
|
|
1433 |
msgstr "Expire bientôt"
|
1434 |
|
1435 |
#: dashboard/publisher/adverts-error.php:67
|
1436 |
-
#: dashboard/settings/maintenance.php:
|
1437 |
msgid "Expired"
|
1438 |
msgstr "Expiré"
|
1439 |
|
@@ -2052,8 +2068,7 @@ msgstr "Vous allez supprimer un groupe"
|
|
2052 |
msgid "This action can not be undone!"
|
2053 |
msgstr "Ceci ne peux pas être défait!"
|
2054 |
|
2055 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
2056 |
-
#: dashboard/settings/maintenance.php:101
|
2057 |
msgid "OK to continue, CANCEL to stop."
|
2058 |
msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
2059 |
|
@@ -2483,7 +2498,7 @@ msgstr "En savoir plus sur"
|
|
2483 |
msgid "user-agents"
|
2484 |
msgstr "user-agents"
|
2485 |
|
2486 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2487 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2488 |
#: dashboard/settings/statistics.php:85
|
2489 |
msgid "Update Options"
|
@@ -2594,196 +2609,104 @@ msgstr "Nom d’utilisateur ou Adresse Email"
|
|
2594 |
msgid "Password/License Key"
|
2595 |
msgstr "Mot de passe/clé de licence"
|
2596 |
|
2597 |
-
#: dashboard/settings/maintenance.php:
|
2598 |
-
msgid ""
|
2599 |
-
"
|
2600 |
-
"sluggish."
|
2601 |
-
msgstr ""
|
2602 |
-
"Utilisez ces fonctions lorsque vous remarquez que votre base de données est "
|
2603 |
-
"lente, insensible et lente."
|
2604 |
-
|
2605 |
-
#: dashboard/settings/maintenance.php:22
|
2606 |
-
msgid "Check for errors"
|
2607 |
-
msgstr "Rechercher des erreurs"
|
2608 |
|
2609 |
-
#: dashboard/settings/maintenance.php:
|
2610 |
-
msgid "You are about to check all adverts for errors."
|
2611 |
-
msgstr ""
|
2612 |
-
"Vous êtes sur le point de vérifier toutes les annonces pour les erreurs."
|
2613 |
-
|
2614 |
-
#: dashboard/settings/maintenance.php:22
|
2615 |
-
msgid "This might take a few seconds!"
|
2616 |
-
msgstr "Cela pourrait prendre quelques secondes!"
|
2617 |
-
|
2618 |
-
#: dashboard/settings/maintenance.php:24
|
2619 |
msgid ""
|
2620 |
-
"Apply all evaluation rules to all adverts to see if any error slipped in."
|
|
|
2621 |
msgstr ""
|
2622 |
-
"
|
2623 |
-
"une erreur
|
2624 |
-
|
2625 |
-
#: dashboard/settings/maintenance.php:28
|
2626 |
-
msgid "Clean-up Database and Files"
|
2627 |
-
msgstr "Nettoyer la base de données et fichiers"
|
2628 |
|
2629 |
-
#: dashboard/settings/maintenance.php:
|
2630 |
-
msgid "Run Clean-up"
|
2631 |
-
msgstr "Exécuter le nettoyage"
|
2632 |
-
|
2633 |
-
#: dashboard/settings/maintenance.php:30
|
2634 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2635 |
-
msgstr ""
|
2636 |
-
"Vous êtes sur le point de faire de l’entretien sur votre configuration "
|
2637 |
-
"d’AdRotate."
|
2638 |
-
|
2639 |
-
#: dashboard/settings/maintenance.php:30
|
2640 |
-
msgid ""
|
2641 |
-
"This optionally may delete old statistics and tries to delete old export "
|
2642 |
-
"files."
|
2643 |
-
msgstr ""
|
2644 |
-
"Cette option peut supprimer les anciennes statistiques et tente de supprimer "
|
2645 |
-
"les anciens fichiers d’exportation."
|
2646 |
-
|
2647 |
-
#: dashboard/settings/maintenance.php:30
|
2648 |
-
msgid "Are you sure you want to continue?"
|
2649 |
-
msgstr "Etes-vous certains de vouloir continuer?"
|
2650 |
-
|
2651 |
-
#: dashboard/settings/maintenance.php:30
|
2652 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2653 |
-
msgstr "CETTE ACTION NE PEUT PAS ÊTRE ANNULÉE!"
|
2654 |
-
|
2655 |
-
#: dashboard/settings/maintenance.php:32
|
2656 |
-
msgid "Basic database maintenance."
|
2657 |
-
msgstr "Maintenance de base de base de base de base."
|
2658 |
-
|
2659 |
-
#: dashboard/settings/maintenance.php:33
|
2660 |
-
msgid "Delete stats older than 365 days."
|
2661 |
-
msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
|
2662 |
-
|
2663 |
-
#: dashboard/settings/maintenance.php:34
|
2664 |
-
msgid "Delete leftover export files."
|
2665 |
-
msgstr "Supprimer les restes de fichiers d’exportation."
|
2666 |
-
|
2667 |
-
#: dashboard/settings/maintenance.php:35
|
2668 |
-
msgid ""
|
2669 |
-
"For when you create an advert, group or schedule and it does not save or "
|
2670 |
-
"keep changes you make."
|
2671 |
-
msgstr ""
|
2672 |
-
"Car lorsque vous créez une annonce, un groupe ou un calendrier et qu’elle "
|
2673 |
-
"n’enregistre pas ou ne conserve pas les modifications que vous modifiez."
|
2674 |
-
|
2675 |
-
#: dashboard/settings/maintenance.php:35
|
2676 |
-
msgid ""
|
2677 |
-
"Additionally you can delete statistics and/or unused export files. This will "
|
2678 |
-
"improve the speed of your site."
|
2679 |
-
msgstr ""
|
2680 |
-
"En outre, vous pouvez supprimer des statistiques et/ou des fichiers "
|
2681 |
-
"d’exportation inutilisés. Cela permettra d’améliorer la vitesse de votre "
|
2682 |
-
"site."
|
2683 |
-
|
2684 |
-
#: dashboard/settings/maintenance.php:39
|
2685 |
-
msgid ""
|
2686 |
-
"DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
2687 |
-
"database or clean up overhead data. They only apply to your ads/groups and "
|
2688 |
-
"stats. Not to other settings or other parts of WordPress! Always always make "
|
2689 |
-
"a backup! If for any reason your data is lost, damaged or otherwise becomes "
|
2690 |
-
"unusable in any way or by any means in whichever way I will not take "
|
2691 |
-
"responsibility. You should always have a backup of your database. These "
|
2692 |
-
"functions do NOT destroy data. If data is lost, damaged or unusable in any "
|
2693 |
-
"way, your database likely was beyond repair already. Claiming it worked "
|
2694 |
-
"before clicking these buttons is not a valid point in any case."
|
2695 |
-
msgstr ""
|
2696 |
-
"DISCLAIMER : Les fonctions ci-dessus sont censées être utilisées pour "
|
2697 |
-
"OPTIMISER votre base de données ou nettoyer les données aériennes. Ils ne "
|
2698 |
-
"s’appliquent qu’à vos annonces/groupes et statistiques. Pas à d’autres "
|
2699 |
-
"paramètres ou d’autres parties de WordPress! Toujours toujours faire une "
|
2700 |
-
"sauvegarde! Si, pour quelque raison que ce soit, vos données sont perdues, "
|
2701 |
-
"endommagées ou deviennent inutilisables d’une manière ou d’une autre ou de "
|
2702 |
-
"quelque façon que ce soit de quelque façon que ce soit, je ne prendrai pas "
|
2703 |
-
"la responsabilité. Vous devriez toujours avoir une sauvegarde de votre base "
|
2704 |
-
"de données. Ces fonctions ne détruisent PAS les données. Si les données sont "
|
2705 |
-
"perdues, endommagées ou inutilisables de quelque façon que ce soit, votre "
|
2706 |
-
"base de données était probablement déjà irréparable. Prétendre qu’il a "
|
2707 |
-
"fonctionné avant de cliquer sur ces boutons n’est pas un point valable en "
|
2708 |
-
"tout cas."
|
2709 |
-
|
2710 |
-
#: dashboard/settings/maintenance.php:41
|
2711 |
msgid "Status and Versions"
|
2712 |
msgstr "Statut et versions"
|
2713 |
|
2714 |
-
#: dashboard/settings/maintenance.php:
|
2715 |
msgid "Current status of adverts"
|
2716 |
msgstr "Etat actuel des annonces"
|
2717 |
|
2718 |
-
#: dashboard/settings/maintenance.php:
|
2719 |
msgid "Normal"
|
2720 |
msgstr "Normal"
|
2721 |
|
2722 |
-
#: dashboard/settings/maintenance.php:
|
2723 |
msgid "Error"
|
2724 |
msgstr "Erreur"
|
2725 |
|
2726 |
-
#: dashboard/settings/maintenance.php:
|
2727 |
msgid "Expires Soon"
|
2728 |
msgstr "Expire bientôt"
|
2729 |
|
2730 |
-
#: dashboard/settings/maintenance.php:
|
2731 |
msgid "Unknown"
|
2732 |
msgstr "Inconnu"
|
2733 |
|
2734 |
-
#: dashboard/settings/maintenance.php:
|
2735 |
msgid "Banners/assets Folder"
|
2736 |
msgstr "Bannières/actifs Dossier"
|
2737 |
|
2738 |
-
#: dashboard/settings/maintenance.php:
|
2739 |
msgid "Exists and appears writable"
|
2740 |
msgstr "Il existe et s’affiche en écriture"
|
2741 |
|
2742 |
-
#: dashboard/settings/maintenance.php:
|
2743 |
msgid "Not writable or does not exist"
|
2744 |
msgstr "Pas accessible en écriture ou n’existe pas"
|
2745 |
|
2746 |
-
#: dashboard/settings/maintenance.php:
|
2747 |
msgid "Reports Folder"
|
2748 |
msgstr "Rapports Folder"
|
2749 |
|
2750 |
-
#: dashboard/settings/maintenance.php:
|
2751 |
msgid "Advert evaluation"
|
2752 |
msgstr "Évaluation de l’annonce"
|
2753 |
|
2754 |
-
#: dashboard/settings/maintenance.php:
|
2755 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2756 |
msgstr "Pas à la demande ! Re-activer le plugin dans la page des plugins."
|
2757 |
|
2758 |
-
#: dashboard/settings/maintenance.php:
|
2759 |
msgid "Clean Trackerdata"
|
2760 |
msgstr "Trackerdata propre"
|
2761 |
|
2762 |
-
#: dashboard/settings/maintenance.php:
|
2763 |
msgid "Not scheduled!"
|
2764 |
msgstr "Pas planifié!"
|
2765 |
|
2766 |
-
#: dashboard/settings/maintenance.php:
|
2767 |
msgid "Background tasks"
|
2768 |
msgstr "Tâches de fond"
|
2769 |
|
2770 |
-
#: dashboard/settings/maintenance.php:
|
2771 |
msgid "Reset background tasks"
|
2772 |
msgstr "Réinitialisation des tâches d’arrière-plan"
|
2773 |
|
2774 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2775 |
msgid "Unsupported plugins"
|
2776 |
msgstr "Plugins non pris en charge"
|
2777 |
|
2778 |
-
#: dashboard/settings/maintenance.php:
|
2779 |
msgid "Disable 3rd party plugins"
|
2780 |
msgstr "Désactiver les plugins de la 3ème partie"
|
2781 |
|
2782 |
-
#: dashboard/settings/maintenance.php:
|
2783 |
msgid "One or more unsupported 3rd party plugins detected."
|
2784 |
msgstr "Un ou plusieurs plugins tiers non pris en charge détectés."
|
2785 |
|
2786 |
-
#: dashboard/settings/maintenance.php:
|
2787 |
msgid ""
|
2788 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2789 |
"dashboard which may affect security and/or stability."
|
@@ -2792,11 +2715,11 @@ msgstr ""
|
|
2792 |
"highjack du tableau de bord qui peuvent affecter la sécurité et/ou la "
|
2793 |
"stabilité."
|
2794 |
|
2795 |
-
#: dashboard/settings/maintenance.php:
|
2796 |
msgid "Internal Versions"
|
2797 |
msgstr "Versions internes"
|
2798 |
|
2799 |
-
#: dashboard/settings/maintenance.php:
|
2800 |
msgid ""
|
2801 |
"Unless you experience database issues or a warning shows below, these "
|
2802 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
@@ -2807,54 +2730,54 @@ msgstr ""
|
|
2807 |
"le dépannage. Prise en charge peut demander à vérifier l’état de votre base "
|
2808 |
"de données."
|
2809 |
|
2810 |
-
#: dashboard/settings/maintenance.php:
|
2811 |
msgid "AdRotate version"
|
2812 |
msgstr "AdRotate version"
|
2813 |
|
2814 |
-
#: dashboard/settings/maintenance.php:
|
2815 |
msgid "Current:"
|
2816 |
msgstr "Actuel:"
|
2817 |
|
2818 |
-
#: dashboard/settings/maintenance.php:
|
2819 |
msgid "Should be:"
|
2820 |
msgstr "Devrait être :"
|
2821 |
|
2822 |
-
#: dashboard/settings/maintenance.php:
|
2823 |
msgid "Previous:"
|
2824 |
msgstr "Précédent:"
|
2825 |
|
2826 |
-
#: dashboard/settings/maintenance.php:
|
2827 |
msgid "Database version"
|
2828 |
msgstr "Version base de données"
|
2829 |
|
2830 |
-
#: dashboard/settings/maintenance.php:
|
2831 |
msgid "Manual upgrade"
|
2832 |
msgstr "Mettez à niveau dès aujourd'hui"
|
2833 |
|
2834 |
-
#: dashboard/settings/maintenance.php:
|
2835 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2836 |
msgstr ""
|
2837 |
"VOUS ÊTES SUR LE POINT DE FAIRE UNE MISE À JOUR MANUELLE POUR ADROTATE."
|
2838 |
|
2839 |
-
#: dashboard/settings/maintenance.php:
|
2840 |
msgid "Make sure you have a database backup!"
|
2841 |
msgstr "Assurez-vous que vous disposez d’une sauvegarde de base de données !"
|
2842 |
|
2843 |
-
#: dashboard/settings/maintenance.php:
|
2844 |
msgid "This might take a while and may slow down your site during this action!"
|
2845 |
msgstr ""
|
2846 |
"Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
|
2847 |
"interval!"
|
2848 |
|
2849 |
-
#: dashboard/settings/maintenance.php:
|
2850 |
msgid "Run updater"
|
2851 |
msgstr "Exécuter updater"
|
2852 |
|
2853 |
-
#: dashboard/settings/misc.php:
|
2854 |
msgid "Widget alignment"
|
2855 |
msgstr "Alignement du Widget"
|
2856 |
|
2857 |
-
#: dashboard/settings/misc.php:
|
2858 |
msgid ""
|
2859 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2860 |
"not always help!)"
|
@@ -2862,11 +2785,11 @@ msgstr ""
|
|
2862 |
"Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
|
2863 |
"votre thème. Cette fonction peux ne pas régler le soucis!"
|
2864 |
|
2865 |
-
#: dashboard/settings/misc.php:
|
2866 |
msgid "Widget padding"
|
2867 |
msgstr "Marge interne du Widget"
|
2868 |
|
2869 |
-
#: dashboard/settings/misc.php:
|
2870 |
msgid ""
|
2871 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2872 |
"not always work!)"
|
@@ -2874,18 +2797,18 @@ msgstr ""
|
|
2874 |
"Activez cette option pour supprimer la marge (espace vide) autour des "
|
2875 |
"annonces dans les widgets. Ceci ne fonctionne pas toujours!"
|
2876 |
|
2877 |
-
#: dashboard/settings/misc.php:
|
2878 |
msgid "NOTICE:"
|
2879 |
msgstr "Texte de notice de la boutique:"
|
2880 |
|
2881 |
-
#: dashboard/settings/misc.php:
|
2882 |
msgid ""
|
2883 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2884 |
msgstr ""
|
2885 |
"Vous avez activé le support W3 Total cache mais ne pas défini le hachage de "
|
2886 |
"sécurité."
|
2887 |
|
2888 |
-
#: dashboard/settings/misc.php:
|
2889 |
msgid ""
|
2890 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2891 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
@@ -2895,27 +2818,27 @@ msgstr ""
|
|
2895 |
"php autour de la ligne 52 (en dessous des nonces WordPress). Si vous ne "
|
2896 |
"savez pas comment ajouter cette ligne, consultez le guide suivant;"
|
2897 |
|
2898 |
-
#: dashboard/settings/misc.php:
|
2899 |
msgid "Set up W3 Total Caching"
|
2900 |
msgstr "Mettre en place W3 Total cache"
|
2901 |
|
2902 |
-
#: dashboard/settings/misc.php:
|
2903 |
msgid "W3 Total Caching"
|
2904 |
msgstr "W3 Total Caching"
|
2905 |
|
2906 |
-
#: dashboard/settings/misc.php:
|
2907 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2908 |
msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
|
2909 |
|
2910 |
-
#: dashboard/settings/misc.php:
|
2911 |
msgid "Borlabs Cache"
|
2912 |
msgstr "Borlabs Cache"
|
2913 |
|
2914 |
-
#: dashboard/settings/misc.php:
|
2915 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2916 |
msgstr "Cochez cette case si vous utilisez Borlabs Caching sur votre site."
|
2917 |
|
2918 |
-
#: dashboard/settings/misc.php:
|
2919 |
msgid ""
|
2920 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2921 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -2925,7 +2848,7 @@ msgstr ""
|
|
2925 |
"contenu. Cela peut prendre jusqu'à une semaine si ce n'est pas fait "
|
2926 |
"manuellement."
|
2927 |
|
2928 |
-
#: dashboard/settings/misc.php:
|
2929 |
msgid ""
|
2930 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2931 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -3344,6 +3267,94 @@ msgstr ""
|
|
3344 |
"balisage, de code ou de mise en page spéciaux peuvent être appliqués dans le "
|
3345 |
"wrapper de groupe lors de la modification du groupe."
|
3346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3347 |
#~ msgid "Check all adverts for configuration errors"
|
3348 |
#~ msgstr "Vérifiez toutes les annonces pour les erreurs de configuration"
|
3349 |
|
@@ -3930,9 +3941,6 @@ msgstr ""
|
|
3930 |
#~ msgid "Schedule saved"
|
3931 |
#~ msgstr "Horaire sauvegardé"
|
3932 |
|
3933 |
-
#~ msgid "Schedule(s) deleted"
|
3934 |
-
#~ msgstr "Horaire(s) supprimé"
|
3935 |
-
|
3936 |
#~ msgid "Advert(s) duplicated"
|
3937 |
#~ msgstr "Advert(s) dupliqué"
|
3938 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:26-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-11-14 17:26-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Publicités"
|
23 |
|
24 |
+
#: adrotate-functions.php:795
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Annonce enregistré"
|
27 |
|
28 |
+
#: adrotate-functions.php:799
|
29 |
msgid "Group saved"
|
30 |
msgstr "Groupe enregistré"
|
31 |
|
32 |
+
#: adrotate-functions.php:803
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Bannière image sauvegardée"
|
35 |
|
36 |
+
#: adrotate-functions.php:807
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annonce(s) supprimée"
|
39 |
|
40 |
+
#: adrotate-functions.php:811
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groupe supprimé"
|
43 |
|
44 |
+
#: adrotate-functions.php:815
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Actif(s) supprimé"
|
47 |
|
48 |
+
#: adrotate-functions.php:819
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
53 |
"Quelque chose s’est mal passé en supprimant le fichier ou le dossier. "
|
54 |
"Assurez-vous que vos autorisations sont en ordre."
|
55 |
|
56 |
+
#: adrotate-functions.php:823
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Réinitialisation des statistiques publicitaires"
|
59 |
|
60 |
+
#: adrotate-functions.php:827
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Annonce(s) renouvellée"
|
63 |
|
64 |
+
#: adrotate-functions.php:831
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Annonce(s) désactivée"
|
67 |
|
68 |
+
#: adrotate-functions.php:835
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Annonce(s) activée"
|
71 |
|
72 |
+
#: adrotate-functions.php:839
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Groupe y compris les annonces en elle supprimé"
|
75 |
|
76 |
+
#: adrotate-functions.php:843
|
77 |
msgid "Export created"
|
78 |
msgstr "Export créé"
|
79 |
|
80 |
+
#: adrotate-functions.php:847
|
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 |
"annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
|
87 |
"planifier."
|
88 |
|
89 |
+
#: adrotate-functions.php:852
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Paramètres sauvegardés"
|
92 |
|
93 |
+
#: adrotate-functions.php:856
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Base de données optimisée"
|
96 |
|
97 |
+
#: adrotate-functions.php:860
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Base de données réparée"
|
100 |
|
101 |
+
#: adrotate-functions.php:864
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Annonces évaluées et statuts corrigés au besoin"
|
104 |
|
105 |
+
#: adrotate-functions.php:868
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Nettoyage complet"
|
108 |
|
109 |
+
#: adrotate-functions.php:872
|
110 |
+
msgid "Scheduled tasks reset"
|
111 |
+
msgstr "Réinitialisation des tâches planifiées"
|
112 |
+
|
113 |
+
#: adrotate-functions.php:876
|
114 |
+
msgid ""
|
115 |
+
"If there were any 3rd party plugins interfering with AdRotate they have been "
|
116 |
+
"disabled"
|
117 |
+
msgstr ""
|
118 |
+
"S’il y avait des plugins tiers 3rd interférant avec AdRogate, ils ont été "
|
119 |
+
"désactivés"
|
120 |
+
|
121 |
+
#: adrotate-functions.php:880
|
122 |
+
msgid "Database updated"
|
123 |
+
msgstr "Base de données mise à jour"
|
124 |
+
|
125 |
+
#: adrotate-functions.php:885
|
126 |
msgid "Action prohibited"
|
127 |
msgstr "Action interdite"
|
128 |
|
129 |
+
#: adrotate-functions.php:889
|
130 |
msgid ""
|
131 |
"The advert was saved but has an issue which might prevent it from working "
|
132 |
"properly. Review the colored advert."
|
134 |
"L’annonce a été enregistrée, mais a un problème qui pourrait l’empêcher de "
|
135 |
"fonctionner correctement. Passez en revue l’annonce colorée."
|
136 |
|
137 |
+
#: adrotate-functions.php:893
|
138 |
msgid "No data found in selected time period"
|
139 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
140 |
|
141 |
+
#: adrotate-functions.php:897
|
142 |
msgid "Database can only be optimized or cleaned once every hour"
|
143 |
msgstr ""
|
144 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
145 |
|
146 |
+
#: adrotate-functions.php:901
|
147 |
msgid "Form can not be (partially) empty!"
|
148 |
msgstr "Forme ne peut pas être (partiellement) vide !"
|
149 |
|
150 |
+
#: adrotate-functions.php:905
|
151 |
msgid "No file uploaded."
|
152 |
msgstr "Pas de fichier téléchargé."
|
153 |
|
154 |
+
#: adrotate-functions.php:909
|
155 |
msgid "No adverts found."
|
156 |
msgstr "Aucune annonce trouvée."
|
157 |
|
158 |
+
#: adrotate-functions.php:913
|
159 |
msgid "Wrong file type. No file uploaded."
|
160 |
msgstr "Type de fichier incorrect. Aucun fichier ne téléchargé."
|
161 |
|
162 |
+
#: adrotate-functions.php:917
|
163 |
msgid "No file selected or file is too large."
|
164 |
msgstr "Aucun fichier sélectionné ou fichier n’est trop grand."
|
165 |
|
166 |
+
#: adrotate-functions.php:921
|
167 |
msgid "There was an error unzipping the file. Please try again later."
|
168 |
msgstr ""
|
169 |
"Il y a eu une erreur qui a décompressé le fichier. S’il vous plaît essayer à "
|
170 |
"nouveau plus tard."
|
171 |
|
172 |
+
#: adrotate-functions.php:925
|
173 |
msgid ""
|
174 |
"The advert hash is not usable or is missing required data. Please copy the "
|
175 |
"hash correctly and try again."
|
177 |
"Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
|
178 |
"S’il vous plaît copier le hachage correctement et essayer à nouveau."
|
179 |
|
180 |
+
#: adrotate-functions.php:929
|
181 |
msgid ""
|
182 |
"The advert hash can not be used on the same site as it originated from or is "
|
183 |
"not a valid hash for importing."
|
185 |
"Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
|
186 |
"provient ou n’est pas un hachage valide pour l’importation."
|
187 |
|
188 |
+
#: adrotate-functions.php:933
|
189 |
msgid "Unexpected error"
|
190 |
msgstr "Erreur inattendue"
|
191 |
|
273 |
msgstr "Une erreur inconnue s'est produite."
|
274 |
|
275 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
276 |
+
#: dashboard/settings/maintenance.php:16
|
277 |
msgid "Check adverts"
|
278 |
msgstr "Vérifier les annonces"
|
279 |
|
495 |
msgid "Use on up to FIVE WordPress installations."
|
496 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
497 |
|
498 |
+
#: adrotate-statistics.php:154
|
499 |
msgid "January"
|
500 |
msgstr "Janvier"
|
501 |
|
502 |
+
#: adrotate-statistics.php:154
|
503 |
msgid "February"
|
504 |
msgstr "Février"
|
505 |
|
506 |
+
#: adrotate-statistics.php:154
|
507 |
msgid "March"
|
508 |
msgstr "Mars"
|
509 |
|
510 |
+
#: adrotate-statistics.php:154
|
511 |
msgid "April"
|
512 |
msgstr "Avril"
|
513 |
|
514 |
+
#: adrotate-statistics.php:154
|
515 |
msgid "May"
|
516 |
msgstr "Mai"
|
517 |
|
518 |
+
#: adrotate-statistics.php:154
|
519 |
msgid "June"
|
520 |
msgstr "Juin"
|
521 |
|
522 |
+
#: adrotate-statistics.php:154
|
523 |
msgid "July"
|
524 |
msgstr "Juillet"
|
525 |
|
526 |
+
#: adrotate-statistics.php:154
|
527 |
msgid "August"
|
528 |
msgstr "Août"
|
529 |
|
530 |
+
#: adrotate-statistics.php:154
|
531 |
msgid "September"
|
532 |
msgstr "Septembre"
|
533 |
|
534 |
+
#: adrotate-statistics.php:154
|
535 |
msgid "October"
|
536 |
msgstr "Octobre"
|
537 |
|
538 |
+
#: adrotate-statistics.php:154
|
539 |
msgid "November"
|
540 |
msgstr "Novembre"
|
541 |
|
542 |
+
#: adrotate-statistics.php:154
|
543 |
msgid "December"
|
544 |
msgstr "Décembre"
|
545 |
|
546 |
+
#: adrotate-statistics.php:163
|
547 |
msgid "Previous"
|
548 |
msgstr "Précédent"
|
549 |
|
550 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
551 |
#: dashboard/publisher/statistics-group.php:73
|
552 |
#: dashboard/publisher/statistics-main.php:48
|
553 |
msgid "This month"
|
554 |
msgstr "Ce mois-ci"
|
555 |
|
556 |
+
#: adrotate-statistics.php:166
|
557 |
msgid "Next"
|
558 |
msgstr "Prochain"
|
559 |
|
560 |
+
#: adrotate-statistics.php:220
|
561 |
msgid "No data to show!"
|
562 |
msgstr "Aucune donnée à montrer!"
|
563 |
|
564 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
565 |
msgid "Not found"
|
566 |
msgstr "Non trouvé"
|
567 |
|
607 |
msgid "Fill in the ID of the type you want to display!"
|
608 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
609 |
|
610 |
+
#: adrotate.php:104 adrotate.php:174
|
611 |
msgid "Manage Adverts"
|
612 |
msgstr "Gérer Annonces"
|
613 |
|
614 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
615 |
msgid "Manage Groups"
|
616 |
msgstr "Gérer les groupes"
|
617 |
|
618 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
619 |
msgid "Manage Schedules"
|
620 |
msgstr "Gérer les horaires"
|
621 |
|
622 |
+
#: adrotate.php:107
|
623 |
msgid "Manage Media"
|
624 |
msgstr "Gérer les médias"
|
625 |
|
626 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
627 |
#: dashboard/publisher/adverts-edit.php:178
|
628 |
#: dashboard/publisher/statistics-main.php:23
|
629 |
#: dashboard/settings/statistics.php:17
|
630 |
msgid "Statistics"
|
631 |
msgstr "Statistiques"
|
632 |
|
633 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
634 |
msgid "Get AdRotate Pro"
|
635 |
msgstr "Obtenez AdRotate Pro"
|
636 |
|
637 |
+
#: adrotate.php:110
|
638 |
msgid "Support"
|
639 |
msgstr "Support"
|
640 |
|
641 |
+
#: adrotate.php:111
|
642 |
msgid "Settings"
|
643 |
msgstr "Paramètres"
|
644 |
|
645 |
+
#: adrotate.php:130
|
646 |
msgid "Get AdRotate Professional"
|
647 |
msgstr "Obtenez AdRotate Professional"
|
648 |
|
649 |
+
#: adrotate.php:234 adrotate.php:306
|
650 |
msgid "Manage"
|
651 |
msgstr "Gérer"
|
652 |
|
653 |
+
#: adrotate.php:235
|
654 |
msgid "Advert Generator"
|
655 |
msgstr "Générateur d’annonces"
|
656 |
|
657 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
658 |
msgid "New Advert"
|
659 |
msgstr "Nouvelle Annonce"
|
660 |
|
661 |
+
#: adrotate.php:307
|
662 |
msgid "Add New"
|
663 |
msgstr "Ajouter"
|
664 |
|
665 |
+
#: adrotate.php:375
|
666 |
msgid "Manage Media and Assets"
|
667 |
msgstr "Gérer les médias et les actifs"
|
668 |
|
669 |
+
#: adrotate.php:379
|
670 |
msgid ""
|
671 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
672 |
"if you have HTML5 adverts containing multiple files."
|
675 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
676 |
"fichiers."
|
677 |
|
678 |
+
#: adrotate.php:421
|
679 |
msgid "Advert Statistics"
|
680 |
msgstr "Statistiques de publicité"
|
681 |
|
682 |
+
#: adrotate.php:464
|
683 |
msgid "AdRotate Support"
|
684 |
msgstr "Assistance AdRotate"
|
685 |
|
686 |
+
#: adrotate.php:510
|
687 |
msgid "AdRotate Settings"
|
688 |
msgstr "Paramètres de AdRotate"
|
689 |
|
690 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
691 |
msgid "General"
|
692 |
msgstr "Général"
|
693 |
|
694 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
695 |
msgid "Notifications"
|
696 |
msgstr "Notifications"
|
697 |
|
698 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
699 |
msgid "Geo Targeting"
|
700 |
msgstr "Ciblage géo"
|
701 |
|
702 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
703 |
msgid "Access Roles"
|
704 |
msgstr "Niveaux d’accès"
|
705 |
|
706 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
707 |
msgid "Miscellaneous"
|
708 |
msgstr "Divers"
|
709 |
|
710 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
711 |
msgid "Maintenance"
|
712 |
msgstr "Maintenance"
|
713 |
|
1449 |
msgstr "Expire bientôt"
|
1450 |
|
1451 |
#: dashboard/publisher/adverts-error.php:67
|
1452 |
+
#: dashboard/settings/maintenance.php:30
|
1453 |
msgid "Expired"
|
1454 |
msgstr "Expiré"
|
1455 |
|
2068 |
msgid "This action can not be undone!"
|
2069 |
msgstr "Ceci ne peux pas être défait!"
|
2070 |
|
2071 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
2072 |
msgid "OK to continue, CANCEL to stop."
|
2073 |
msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
|
2074 |
|
2498 |
msgid "user-agents"
|
2499 |
msgstr "user-agents"
|
2500 |
|
2501 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2502 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2503 |
#: dashboard/settings/statistics.php:85
|
2504 |
msgid "Update Options"
|
2609 |
msgid "Password/License Key"
|
2610 |
msgstr "Mot de passe/clé de licence"
|
2611 |
|
2612 |
+
#: dashboard/settings/maintenance.php:18
|
2613 |
+
msgid "Check ads for errors"
|
2614 |
+
msgstr "Rechercher des erreurs dans les annonces"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2615 |
|
2616 |
+
#: dashboard/settings/maintenance.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2617 |
msgid ""
|
2618 |
+
"Apply all evaluation rules to all adverts to see if any error slipped in. "
|
2619 |
+
"This may take a few seconds."
|
2620 |
msgstr ""
|
2621 |
+
"Appliquez toutes les règles d’évaluation à toutes les publicités pour voir "
|
2622 |
+
"si une erreur s’est glissée. Cela peut prendre quelques secondes."
|
|
|
|
|
|
|
|
|
2623 |
|
2624 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2625 |
msgid "Status and Versions"
|
2626 |
msgstr "Statut et versions"
|
2627 |
|
2628 |
+
#: dashboard/settings/maintenance.php:29
|
2629 |
msgid "Current status of adverts"
|
2630 |
msgstr "Etat actuel des annonces"
|
2631 |
|
2632 |
+
#: dashboard/settings/maintenance.php:30
|
2633 |
msgid "Normal"
|
2634 |
msgstr "Normal"
|
2635 |
|
2636 |
+
#: dashboard/settings/maintenance.php:30
|
2637 |
msgid "Error"
|
2638 |
msgstr "Erreur"
|
2639 |
|
2640 |
+
#: dashboard/settings/maintenance.php:30
|
2641 |
msgid "Expires Soon"
|
2642 |
msgstr "Expire bientôt"
|
2643 |
|
2644 |
+
#: dashboard/settings/maintenance.php:30
|
2645 |
msgid "Unknown"
|
2646 |
msgstr "Inconnu"
|
2647 |
|
2648 |
+
#: dashboard/settings/maintenance.php:33
|
2649 |
msgid "Banners/assets Folder"
|
2650 |
msgstr "Bannières/actifs Dossier"
|
2651 |
|
2652 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2653 |
msgid "Exists and appears writable"
|
2654 |
msgstr "Il existe et s’affiche en écriture"
|
2655 |
|
2656 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2657 |
msgid "Not writable or does not exist"
|
2658 |
msgstr "Pas accessible en écriture ou n’existe pas"
|
2659 |
|
2660 |
+
#: dashboard/settings/maintenance.php:42
|
2661 |
msgid "Reports Folder"
|
2662 |
msgstr "Rapports Folder"
|
2663 |
|
2664 |
+
#: dashboard/settings/maintenance.php:51
|
2665 |
msgid "Advert evaluation"
|
2666 |
msgstr "Évaluation de l’annonce"
|
2667 |
|
2668 |
+
#: dashboard/settings/maintenance.php:52
|
2669 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2670 |
msgstr "Pas à la demande ! Re-activer le plugin dans la page des plugins."
|
2671 |
|
2672 |
+
#: dashboard/settings/maintenance.php:53
|
2673 |
msgid "Clean Trackerdata"
|
2674 |
msgstr "Trackerdata propre"
|
2675 |
|
2676 |
+
#: dashboard/settings/maintenance.php:54
|
2677 |
msgid "Not scheduled!"
|
2678 |
msgstr "Pas planifié!"
|
2679 |
|
2680 |
+
#: dashboard/settings/maintenance.php:57
|
2681 |
msgid "Background tasks"
|
2682 |
msgstr "Tâches de fond"
|
2683 |
|
2684 |
+
#: dashboard/settings/maintenance.php:59
|
2685 |
msgid "Reset background tasks"
|
2686 |
msgstr "Réinitialisation des tâches d’arrière-plan"
|
2687 |
|
2688 |
+
#: dashboard/settings/maintenance.php:62
|
2689 |
+
msgid ""
|
2690 |
+
"If automated tasks such as expiring adverts does not work reliable or one of "
|
2691 |
+
"the above schedules is missing use this button to reset the tasks."
|
2692 |
+
msgstr ""
|
2693 |
+
"Si les tâches automatisées telles que l’expiration des publicités ne "
|
2694 |
+
"fonctionnent pas de manière fiable ou si l’une des planifications ci-dessus "
|
2695 |
+
"est manquante, utilisez ce bouton pour réinitialiser les tâches."
|
2696 |
+
|
2697 |
+
#: dashboard/settings/maintenance.php:66
|
2698 |
msgid "Unsupported plugins"
|
2699 |
msgstr "Plugins non pris en charge"
|
2700 |
|
2701 |
+
#: dashboard/settings/maintenance.php:68
|
2702 |
msgid "Disable 3rd party plugins"
|
2703 |
msgstr "Désactiver les plugins de la 3ème partie"
|
2704 |
|
2705 |
+
#: dashboard/settings/maintenance.php:70
|
2706 |
msgid "One or more unsupported 3rd party plugins detected."
|
2707 |
msgstr "Un ou plusieurs plugins tiers non pris en charge détectés."
|
2708 |
|
2709 |
+
#: dashboard/settings/maintenance.php:72
|
2710 |
msgid ""
|
2711 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2712 |
"dashboard which may affect security and/or stability."
|
2715 |
"highjack du tableau de bord qui peuvent affecter la sécurité et/ou la "
|
2716 |
"stabilité."
|
2717 |
|
2718 |
+
#: dashboard/settings/maintenance.php:77
|
2719 |
msgid "Internal Versions"
|
2720 |
msgstr "Versions internes"
|
2721 |
|
2722 |
+
#: dashboard/settings/maintenance.php:78
|
2723 |
msgid ""
|
2724 |
"Unless you experience database issues or a warning shows below, these "
|
2725 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
2730 |
"le dépannage. Prise en charge peut demander à vérifier l’état de votre base "
|
2731 |
"de données."
|
2732 |
|
2733 |
+
#: dashboard/settings/maintenance.php:81
|
2734 |
msgid "AdRotate version"
|
2735 |
msgstr "AdRotate version"
|
2736 |
|
2737 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2738 |
msgid "Current:"
|
2739 |
msgstr "Actuel:"
|
2740 |
|
2741 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2742 |
msgid "Should be:"
|
2743 |
msgstr "Devrait être :"
|
2744 |
|
2745 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2746 |
msgid "Previous:"
|
2747 |
msgstr "Précédent:"
|
2748 |
|
2749 |
+
#: dashboard/settings/maintenance.php:83
|
2750 |
msgid "Database version"
|
2751 |
msgstr "Version base de données"
|
2752 |
|
2753 |
+
#: dashboard/settings/maintenance.php:87
|
2754 |
msgid "Manual upgrade"
|
2755 |
msgstr "Mettez à niveau dès aujourd'hui"
|
2756 |
|
2757 |
+
#: dashboard/settings/maintenance.php:89
|
2758 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2759 |
msgstr ""
|
2760 |
"VOUS ÊTES SUR LE POINT DE FAIRE UNE MISE À JOUR MANUELLE POUR ADROTATE."
|
2761 |
|
2762 |
+
#: dashboard/settings/maintenance.php:89
|
2763 |
msgid "Make sure you have a database backup!"
|
2764 |
msgstr "Assurez-vous que vous disposez d’une sauvegarde de base de données !"
|
2765 |
|
2766 |
+
#: dashboard/settings/maintenance.php:89
|
2767 |
msgid "This might take a while and may slow down your site during this action!"
|
2768 |
msgstr ""
|
2769 |
"Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
|
2770 |
"interval!"
|
2771 |
|
2772 |
+
#: dashboard/settings/maintenance.php:89
|
2773 |
msgid "Run updater"
|
2774 |
msgstr "Exécuter updater"
|
2775 |
|
2776 |
+
#: dashboard/settings/misc.php:122
|
2777 |
msgid "Widget alignment"
|
2778 |
msgstr "Alignement du Widget"
|
2779 |
|
2780 |
+
#: dashboard/settings/misc.php:123
|
2781 |
msgid ""
|
2782 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2783 |
"not always help!)"
|
2785 |
"Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
|
2786 |
"votre thème. Cette fonction peux ne pas régler le soucis!"
|
2787 |
|
2788 |
+
#: dashboard/settings/misc.php:126
|
2789 |
msgid "Widget padding"
|
2790 |
msgstr "Marge interne du Widget"
|
2791 |
|
2792 |
+
#: dashboard/settings/misc.php:127
|
2793 |
msgid ""
|
2794 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2795 |
"not always work!)"
|
2797 |
"Activez cette option pour supprimer la marge (espace vide) autour des "
|
2798 |
"annonces dans les widgets. Ceci ne fonctionne pas toujours!"
|
2799 |
|
2800 |
+
#: dashboard/settings/misc.php:131
|
2801 |
msgid "NOTICE:"
|
2802 |
msgstr "Texte de notice de la boutique:"
|
2803 |
|
2804 |
+
#: dashboard/settings/misc.php:132
|
2805 |
msgid ""
|
2806 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2807 |
msgstr ""
|
2808 |
"Vous avez activé le support W3 Total cache mais ne pas défini le hachage de "
|
2809 |
"sécurité."
|
2810 |
|
2811 |
+
#: dashboard/settings/misc.php:132
|
2812 |
msgid ""
|
2813 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2814 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
2818 |
"php autour de la ligne 52 (en dessous des nonces WordPress). Si vous ne "
|
2819 |
"savez pas comment ajouter cette ligne, consultez le guide suivant;"
|
2820 |
|
2821 |
+
#: dashboard/settings/misc.php:132
|
2822 |
msgid "Set up W3 Total Caching"
|
2823 |
msgstr "Mettre en place W3 Total cache"
|
2824 |
|
2825 |
+
#: dashboard/settings/misc.php:136
|
2826 |
msgid "W3 Total Caching"
|
2827 |
msgstr "W3 Total Caching"
|
2828 |
|
2829 |
+
#: dashboard/settings/misc.php:137
|
2830 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2831 |
msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
|
2832 |
|
2833 |
+
#: dashboard/settings/misc.php:140
|
2834 |
msgid "Borlabs Cache"
|
2835 |
msgstr "Borlabs Cache"
|
2836 |
|
2837 |
+
#: dashboard/settings/misc.php:141
|
2838 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2839 |
msgstr "Cochez cette case si vous utilisez Borlabs Caching sur votre site."
|
2840 |
|
2841 |
+
#: dashboard/settings/misc.php:145
|
2842 |
msgid ""
|
2843 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2844 |
"to refresh the cache. This can take up to a week if not done manually."
|
2848 |
"contenu. Cela peut prendre jusqu'à une semaine si ce n'est pas fait "
|
2849 |
"manuellement."
|
2850 |
|
2851 |
+
#: dashboard/settings/misc.php:145
|
2852 |
msgid ""
|
2853 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2854 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
3267 |
"balisage, de code ou de mise en page spéciaux peuvent être appliqués dans le "
|
3268 |
"wrapper de groupe lors de la modification du groupe."
|
3269 |
|
3270 |
+
#~ msgid ""
|
3271 |
+
#~ "Use these functions when you notice your database is slow, unresponsive "
|
3272 |
+
#~ "and sluggish."
|
3273 |
+
#~ msgstr ""
|
3274 |
+
#~ "Utilisez ces fonctions lorsque vous remarquez que votre base de données "
|
3275 |
+
#~ "est lente, insensible et lente."
|
3276 |
+
|
3277 |
+
#~ msgid "You are about to check all adverts for errors."
|
3278 |
+
#~ msgstr ""
|
3279 |
+
#~ "Vous êtes sur le point de vérifier toutes les annonces pour les erreurs."
|
3280 |
+
|
3281 |
+
#~ msgid "This might take a few seconds!"
|
3282 |
+
#~ msgstr "Cela pourrait prendre quelques secondes!"
|
3283 |
+
|
3284 |
+
#~ msgid "Clean-up Database and Files"
|
3285 |
+
#~ msgstr "Nettoyer la base de données et fichiers"
|
3286 |
+
|
3287 |
+
#~ msgid "Run Clean-up"
|
3288 |
+
#~ msgstr "Exécuter le nettoyage"
|
3289 |
+
|
3290 |
+
#~ msgid "You are about to do maintenance on your setup of AdRotate."
|
3291 |
+
#~ msgstr ""
|
3292 |
+
#~ "Vous êtes sur le point de faire de l’entretien sur votre configuration "
|
3293 |
+
#~ "d’AdRotate."
|
3294 |
+
|
3295 |
+
#~ msgid ""
|
3296 |
+
#~ "This optionally may delete old statistics and tries to delete old export "
|
3297 |
+
#~ "files."
|
3298 |
+
#~ msgstr ""
|
3299 |
+
#~ "Cette option peut supprimer les anciennes statistiques et tente de "
|
3300 |
+
#~ "supprimer les anciens fichiers d’exportation."
|
3301 |
+
|
3302 |
+
#~ msgid "Are you sure you want to continue?"
|
3303 |
+
#~ msgstr "Etes-vous certains de vouloir continuer?"
|
3304 |
+
|
3305 |
+
#~ msgid "THIS ACTION CAN NOT BE UNDONE!"
|
3306 |
+
#~ msgstr "CETTE ACTION NE PEUT PAS ÊTRE ANNULÉE!"
|
3307 |
+
|
3308 |
+
#~ msgid "Basic database maintenance."
|
3309 |
+
#~ msgstr "Maintenance de base de base de base de base."
|
3310 |
+
|
3311 |
+
#~ msgid "Delete stats older than 365 days."
|
3312 |
+
#~ msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
|
3313 |
+
|
3314 |
+
#~ msgid "Delete leftover export files."
|
3315 |
+
#~ msgstr "Supprimer les restes de fichiers d’exportation."
|
3316 |
+
|
3317 |
+
#~ msgid ""
|
3318 |
+
#~ "For when you create an advert, group or schedule and it does not save or "
|
3319 |
+
#~ "keep changes you make."
|
3320 |
+
#~ msgstr ""
|
3321 |
+
#~ "Car lorsque vous créez une annonce, un groupe ou un calendrier et qu’elle "
|
3322 |
+
#~ "n’enregistre pas ou ne conserve pas les modifications que vous modifiez."
|
3323 |
+
|
3324 |
+
#~ msgid ""
|
3325 |
+
#~ "Additionally you can delete statistics and/or unused export files. This "
|
3326 |
+
#~ "will improve the speed of your site."
|
3327 |
+
#~ msgstr ""
|
3328 |
+
#~ "En outre, vous pouvez supprimer des statistiques et/ou des fichiers "
|
3329 |
+
#~ "d’exportation inutilisés. Cela permettra d’améliorer la vitesse de votre "
|
3330 |
+
#~ "site."
|
3331 |
+
|
3332 |
+
#~ msgid ""
|
3333 |
+
#~ "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
3334 |
+
#~ "database or clean up overhead data. They only apply to your ads/groups "
|
3335 |
+
#~ "and stats. Not to other settings or other parts of WordPress! Always "
|
3336 |
+
#~ "always make a backup! If for any reason your data is lost, damaged or "
|
3337 |
+
#~ "otherwise becomes unusable in any way or by any means in whichever way I "
|
3338 |
+
#~ "will not take responsibility. You should always have a backup of your "
|
3339 |
+
#~ "database. These functions do NOT destroy data. If data is lost, damaged "
|
3340 |
+
#~ "or unusable in any way, your database likely was beyond repair already. "
|
3341 |
+
#~ "Claiming it worked before clicking these buttons is not a valid point in "
|
3342 |
+
#~ "any case."
|
3343 |
+
#~ msgstr ""
|
3344 |
+
#~ "DISCLAIMER : Les fonctions ci-dessus sont censées être utilisées pour "
|
3345 |
+
#~ "OPTIMISER votre base de données ou nettoyer les données aériennes. Ils ne "
|
3346 |
+
#~ "s’appliquent qu’à vos annonces/groupes et statistiques. Pas à d’autres "
|
3347 |
+
#~ "paramètres ou d’autres parties de WordPress! Toujours toujours faire une "
|
3348 |
+
#~ "sauvegarde! Si, pour quelque raison que ce soit, vos données sont "
|
3349 |
+
#~ "perdues, endommagées ou deviennent inutilisables d’une manière ou d’une "
|
3350 |
+
#~ "autre ou de quelque façon que ce soit de quelque façon que ce soit, je ne "
|
3351 |
+
#~ "prendrai pas la responsabilité. Vous devriez toujours avoir une "
|
3352 |
+
#~ "sauvegarde de votre base de données. Ces fonctions ne détruisent PAS les "
|
3353 |
+
#~ "données. Si les données sont perdues, endommagées ou inutilisables de "
|
3354 |
+
#~ "quelque façon que ce soit, votre base de données était probablement déjà "
|
3355 |
+
#~ "irréparable. Prétendre qu’il a fonctionné avant de cliquer sur ces "
|
3356 |
+
#~ "boutons n’est pas un point valable en tout cas."
|
3357 |
+
|
3358 |
#~ msgid "Check all adverts for configuration errors"
|
3359 |
#~ msgstr "Vérifiez toutes les annonces pour les erreurs de configuration"
|
3360 |
|
3941 |
#~ msgid "Schedule saved"
|
3942 |
#~ msgstr "Horaire sauvegardé"
|
3943 |
|
|
|
|
|
|
|
3944 |
#~ msgid "Advert(s) duplicated"
|
3945 |
#~ msgstr "Advert(s) dupliqué"
|
3946 |
|
language/adrotate-it_IT.mo
CHANGED
Binary file
|
language/adrotate-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -21,31 +21,31 @@ msgstr ""
|
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Pubblicità"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Annuncio salvato"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Group saved"
|
30 |
msgstr "Gruppo salvato"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Immagine banner salvata"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annunci eliminati"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Gruppo eliminato"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Asset eliminati"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
@@ -53,31 +53,31 @@ msgstr ""
|
|
53 |
"Si è verificato un problema durante l'eliminazione del file o della "
|
54 |
"cartella. Assicurati che le tue autorizzazioni siano in ordine."
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Reimpostazione delle statistiche degli annunci"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Annunci rinnovati"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Annunci disattivati"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Annunci attivati"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Gruppo che include le inserzioni in esso eliminate"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Export created"
|
78 |
msgstr "Esportazione creata"
|
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,31 +86,47 @@ msgstr ""
|
|
86 |
"inserzione qui sotto. Non dimenticare di controllare tutte le impostazioni e "
|
87 |
"pianificare l'annuncio."
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Impostazioni salvate"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Database ottimizzato"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Database riparato"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Le inserzioni valutate e gli stati sono stati corretti ove richiesto"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Pulitura completata"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "Action prohibited"
|
111 |
msgstr "Azione vietata"
|
112 |
|
113 |
-
#: adrotate-functions.php:
|
114 |
msgid ""
|
115 |
"The advert was saved but has an issue which might prevent it from working "
|
116 |
"properly. Review the colored advert."
|
@@ -118,41 +134,41 @@ msgstr ""
|
|
118 |
"L'annuncio è stato salvato ma ha un problema che potrebbe impedirgli di "
|
119 |
"funzionare correttamente. Rivedi la pubblicità colorata."
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "No data found in selected time period"
|
123 |
msgstr "Nessun dato trovato nel periodo di tempo selezionato"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Database can only be optimized or cleaned once every hour"
|
127 |
msgstr "Il database può essere ottimizzato o pulito solo una volta ogni ora"
|
128 |
|
129 |
-
#: adrotate-functions.php:
|
130 |
msgid "Form can not be (partially) empty!"
|
131 |
msgstr "Modulo non può essere (parzialmente) vuoto!"
|
132 |
|
133 |
-
#: adrotate-functions.php:
|
134 |
msgid "No file uploaded."
|
135 |
msgstr "Nessun file scaricato."
|
136 |
|
137 |
-
#: adrotate-functions.php:
|
138 |
msgid "No adverts found."
|
139 |
msgstr "Nessuna pubblicità trovata."
|
140 |
|
141 |
-
#: adrotate-functions.php:
|
142 |
msgid "Wrong file type. No file uploaded."
|
143 |
msgstr "Tipo di file sbagliato. Nessun file è stato caricato."
|
144 |
|
145 |
-
#: adrotate-functions.php:
|
146 |
msgid "No file selected or file is too large."
|
147 |
msgstr "Nessun file selezionato o file troppo grande."
|
148 |
|
149 |
-
#: adrotate-functions.php:
|
150 |
msgid "There was an error unzipping the file. Please try again later."
|
151 |
msgstr ""
|
152 |
"Si è verificato un errore durante la decompressione del file. Riprova più "
|
153 |
"tardi."
|
154 |
|
155 |
-
#: adrotate-functions.php:
|
156 |
msgid ""
|
157 |
"The advert hash is not usable or is missing required data. Please copy the "
|
158 |
"hash correctly and try again."
|
@@ -160,7 +176,7 @@ msgstr ""
|
|
160 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
161 |
"nella cache dei frammenti non è abilitata."
|
162 |
|
163 |
-
#: adrotate-functions.php:
|
164 |
msgid ""
|
165 |
"The advert hash can not be used on the same site as it originated from or is "
|
166 |
"not a valid hash for importing."
|
@@ -168,7 +184,7 @@ msgstr ""
|
|
168 |
"L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
|
169 |
"avuto origine o non è un hash valido per l'importazione."
|
170 |
|
171 |
-
#: adrotate-functions.php:
|
172 |
msgid "Unexpected error"
|
173 |
msgstr "Errore inatteso"
|
174 |
|
@@ -257,7 +273,7 @@ msgid "An unknown error occured."
|
|
257 |
msgstr "Si è verificato un errore sconosciuto."
|
258 |
|
259 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
260 |
-
#: dashboard/settings/maintenance.php:
|
261 |
msgid "Check adverts"
|
262 |
msgstr "Controllo inserzioni"
|
263 |
|
@@ -476,73 +492,73 @@ msgstr "Licenza multipla"
|
|
476 |
msgid "Use on up to FIVE WordPress installations."
|
477 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
478 |
|
479 |
-
#: adrotate-statistics.php:
|
480 |
msgid "January"
|
481 |
msgstr "Gennaio"
|
482 |
|
483 |
-
#: adrotate-statistics.php:
|
484 |
msgid "February"
|
485 |
msgstr "Febbraio"
|
486 |
|
487 |
-
#: adrotate-statistics.php:
|
488 |
msgid "March"
|
489 |
msgstr "Marzo"
|
490 |
|
491 |
-
#: adrotate-statistics.php:
|
492 |
msgid "April"
|
493 |
msgstr "Aprile"
|
494 |
|
495 |
-
#: adrotate-statistics.php:
|
496 |
msgid "May"
|
497 |
msgstr "Maggio"
|
498 |
|
499 |
-
#: adrotate-statistics.php:
|
500 |
msgid "June"
|
501 |
msgstr "Giugno"
|
502 |
|
503 |
-
#: adrotate-statistics.php:
|
504 |
msgid "July"
|
505 |
msgstr "Luglio"
|
506 |
|
507 |
-
#: adrotate-statistics.php:
|
508 |
msgid "August"
|
509 |
msgstr "Agosto"
|
510 |
|
511 |
-
#: adrotate-statistics.php:
|
512 |
msgid "September"
|
513 |
msgstr "Settembre"
|
514 |
|
515 |
-
#: adrotate-statistics.php:
|
516 |
msgid "October"
|
517 |
msgstr "Ottobre"
|
518 |
|
519 |
-
#: adrotate-statistics.php:
|
520 |
msgid "November"
|
521 |
msgstr "Novembre"
|
522 |
|
523 |
-
#: adrotate-statistics.php:
|
524 |
msgid "December"
|
525 |
msgstr "Dicembre"
|
526 |
|
527 |
-
#: adrotate-statistics.php:
|
528 |
msgid "Previous"
|
529 |
msgstr "Precedente"
|
530 |
|
531 |
-
#: adrotate-statistics.php:
|
532 |
#: dashboard/publisher/statistics-group.php:73
|
533 |
#: dashboard/publisher/statistics-main.php:48
|
534 |
msgid "This month"
|
535 |
msgstr "Questo mese"
|
536 |
|
537 |
-
#: adrotate-statistics.php:
|
538 |
msgid "Next"
|
539 |
msgstr "Successivo"
|
540 |
|
541 |
-
#: adrotate-statistics.php:
|
542 |
msgid "No data to show!"
|
543 |
msgstr "Nessun dato da mostrare!"
|
544 |
|
545 |
-
#: adrotate-statistics.php:
|
546 |
msgid "Not found"
|
547 |
msgstr "Non trovato"
|
548 |
|
@@ -586,66 +602,66 @@ msgstr "ID:"
|
|
586 |
msgid "Fill in the ID of the type you want to display!"
|
587 |
msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
msgid "Manage Adverts"
|
591 |
msgstr "Gestisci Inserzioni"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
msgid "Manage Groups"
|
595 |
msgstr "Gestisci Gruppi"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Manage Schedules"
|
599 |
msgstr "Gestisci pianificazioni"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
msgid "Manage Media"
|
603 |
msgstr "Gestisci Media"
|
604 |
|
605 |
-
#: adrotate.php:
|
606 |
#: dashboard/publisher/adverts-edit.php:178
|
607 |
#: dashboard/publisher/statistics-main.php:23
|
608 |
#: dashboard/settings/statistics.php:17
|
609 |
msgid "Statistics"
|
610 |
msgstr "Statistiche"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
msgid "Get AdRotate Pro"
|
614 |
msgstr "Ottieni AdRotate Pro"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
msgid "Support"
|
618 |
msgstr "Supporto"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
msgid "Settings"
|
622 |
msgstr "Impostazioni"
|
623 |
|
624 |
-
#: adrotate.php:
|
625 |
msgid "Get AdRotate Professional"
|
626 |
msgstr "Ottieni AdRotate Professional"
|
627 |
|
628 |
-
#: adrotate.php:
|
629 |
msgid "Manage"
|
630 |
msgstr "Gestisci"
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
msgid "Advert Generator"
|
634 |
msgstr "Generatore pubblicitario"
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid "New Advert"
|
638 |
msgstr "Nuova inserzione"
|
639 |
|
640 |
-
#: adrotate.php:
|
641 |
msgid "Add New"
|
642 |
msgstr "Aggiungi Nuovo"
|
643 |
|
644 |
-
#: adrotate.php:
|
645 |
msgid "Manage Media and Assets"
|
646 |
msgstr "Gestire supporti e risorse"
|
647 |
|
648 |
-
#: adrotate.php:
|
649 |
msgid ""
|
650 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
651 |
"if you have HTML5 adverts containing multiple files."
|
@@ -653,39 +669,39 @@ msgstr ""
|
|
653 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
654 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
655 |
|
656 |
-
#: adrotate.php:
|
657 |
msgid "Advert Statistics"
|
658 |
msgstr "Statistiche delle inserzioni"
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "AdRotate Support"
|
662 |
msgstr "Supporto per AdRotate"
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "AdRotate Settings"
|
666 |
msgstr "Impostazioni AdRotate"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "General"
|
670 |
msgstr "Generale"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "Notifications"
|
674 |
msgstr "Notifiche"
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "Geo Targeting"
|
678 |
msgstr "Geo Targeting"
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid "Access Roles"
|
682 |
msgstr "Ruoli di accesso"
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid "Miscellaneous"
|
686 |
msgstr "Varie"
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid "Maintenance"
|
690 |
msgstr "Manutenzione"
|
691 |
|
@@ -1422,7 +1438,7 @@ msgid "Expires soon"
|
|
1422 |
msgstr "Scadrà presto"
|
1423 |
|
1424 |
#: dashboard/publisher/adverts-error.php:67
|
1425 |
-
#: dashboard/settings/maintenance.php:
|
1426 |
msgid "Expired"
|
1427 |
msgstr "Scaduto"
|
1428 |
|
@@ -2042,8 +2058,7 @@ msgstr "Si sta per eliminare un gruppo"
|
|
2042 |
msgid "This action can not be undone!"
|
2043 |
msgstr "Questa azione non può essere annullata!"
|
2044 |
|
2045 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
2046 |
-
#: dashboard/settings/maintenance.php:101
|
2047 |
msgid "OK to continue, CANCEL to stop."
|
2048 |
msgstr "OK per continuare, CANCEL per interrompere."
|
2049 |
|
@@ -2478,7 +2493,7 @@ msgstr "Ulteriori informazioni su"
|
|
2478 |
msgid "user-agents"
|
2479 |
msgstr "agenti di utenti"
|
2480 |
|
2481 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2482 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2483 |
#: dashboard/settings/statistics.php:85
|
2484 |
msgid "Update Options"
|
@@ -2586,190 +2601,104 @@ msgstr "Nome utente o email"
|
|
2586 |
msgid "Password/License Key"
|
2587 |
msgstr "Password/Codice Licenza"
|
2588 |
|
2589 |
-
#: dashboard/settings/maintenance.php:
|
2590 |
-
msgid ""
|
2591 |
-
"
|
2592 |
-
"sluggish."
|
2593 |
-
msgstr ""
|
2594 |
-
"Utilizzare queste funzioni quando si nota che il database è lento, non "
|
2595 |
-
"risponde e lento."
|
2596 |
-
|
2597 |
-
#: dashboard/settings/maintenance.php:22
|
2598 |
-
msgid "Check for errors"
|
2599 |
-
msgstr "Verificare la disponibilità di errori"
|
2600 |
|
2601 |
-
#: dashboard/settings/maintenance.php:
|
2602 |
-
msgid "You are about to check all adverts for errors."
|
2603 |
-
msgstr "Stai per controllare tutte le inserzioni per eventuali errori."
|
2604 |
-
|
2605 |
-
#: dashboard/settings/maintenance.php:22
|
2606 |
-
msgid "This might take a few seconds!"
|
2607 |
-
msgstr "L'operazione potrebbe richiedere alcuni secondi!"
|
2608 |
-
|
2609 |
-
#: dashboard/settings/maintenance.php:24
|
2610 |
msgid ""
|
2611 |
-
"Apply all evaluation rules to all adverts to see if any error slipped in."
|
|
|
2612 |
msgstr ""
|
2613 |
"Applica tutte le regole di valutazione a tutte le inserzioni per vedere se è "
|
2614 |
-
"
|
2615 |
-
|
2616 |
-
#: dashboard/settings/maintenance.php:28
|
2617 |
-
msgid "Clean-up Database and Files"
|
2618 |
-
msgstr "Pulire database e file"
|
2619 |
-
|
2620 |
-
#: dashboard/settings/maintenance.php:30
|
2621 |
-
msgid "Run Clean-up"
|
2622 |
-
msgstr "Esegui Clean-up"
|
2623 |
-
|
2624 |
-
#: dashboard/settings/maintenance.php:30
|
2625 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2626 |
-
msgstr "Stai per eseguire la manutenzione della configurazione di AdRotate."
|
2627 |
-
|
2628 |
-
#: dashboard/settings/maintenance.php:30
|
2629 |
-
msgid ""
|
2630 |
-
"This optionally may delete old statistics and tries to delete old export "
|
2631 |
-
"files."
|
2632 |
-
msgstr ""
|
2633 |
-
"Questo opzionale può eliminare le vecchie statistiche e tenta di eliminare i "
|
2634 |
-
"vecchi file di esportazione."
|
2635 |
|
2636 |
-
#: dashboard/settings/maintenance.php:
|
2637 |
-
msgid "Are you sure you want to continue?"
|
2638 |
-
msgstr "Sei sicuro di voler continuare?"
|
2639 |
-
|
2640 |
-
#: dashboard/settings/maintenance.php:30
|
2641 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2642 |
-
msgstr "QUESTA AZIONE NON PUÒ ESSERE ANNULLATA!"
|
2643 |
-
|
2644 |
-
#: dashboard/settings/maintenance.php:32
|
2645 |
-
msgid "Basic database maintenance."
|
2646 |
-
msgstr "Manutenzione di base del database."
|
2647 |
-
|
2648 |
-
#: dashboard/settings/maintenance.php:33
|
2649 |
-
msgid "Delete stats older than 365 days."
|
2650 |
-
msgstr "Elimina le statistiche più vecchie di 365 giorni."
|
2651 |
-
|
2652 |
-
#: dashboard/settings/maintenance.php:34
|
2653 |
-
msgid "Delete leftover export files."
|
2654 |
-
msgstr "Eliminare i file di esportazione rimanenti."
|
2655 |
-
|
2656 |
-
#: dashboard/settings/maintenance.php:35
|
2657 |
-
msgid ""
|
2658 |
-
"For when you create an advert, group or schedule and it does not save or "
|
2659 |
-
"keep changes you make."
|
2660 |
-
msgstr ""
|
2661 |
-
"Per quando crei un'inserzione, un gruppo o una pianificazione e non salva né "
|
2662 |
-
"mantiene le modifiche che apcedi."
|
2663 |
-
|
2664 |
-
#: dashboard/settings/maintenance.php:35
|
2665 |
-
msgid ""
|
2666 |
-
"Additionally you can delete statistics and/or unused export files. This will "
|
2667 |
-
"improve the speed of your site."
|
2668 |
-
msgstr ""
|
2669 |
-
"Inoltre è possibile eliminare le statistiche e/o i file di esportazione "
|
2670 |
-
"inutilizzati. Questo migliorerà la velocità del tuo sito."
|
2671 |
-
|
2672 |
-
#: dashboard/settings/maintenance.php:39
|
2673 |
-
msgid ""
|
2674 |
-
"DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
2675 |
-
"database or clean up overhead data. They only apply to your ads/groups and "
|
2676 |
-
"stats. Not to other settings or other parts of WordPress! Always always make "
|
2677 |
-
"a backup! If for any reason your data is lost, damaged or otherwise becomes "
|
2678 |
-
"unusable in any way or by any means in whichever way I will not take "
|
2679 |
-
"responsibility. You should always have a backup of your database. These "
|
2680 |
-
"functions do NOT destroy data. If data is lost, damaged or unusable in any "
|
2681 |
-
"way, your database likely was beyond repair already. Claiming it worked "
|
2682 |
-
"before clicking these buttons is not a valid point in any case."
|
2683 |
-
msgstr ""
|
2684 |
-
"DISCLAIMER: Le funzioni di cui sopra sono intenti per essere utilizzato per "
|
2685 |
-
"il database o pulire i dati di sovraccarico. Si applicano solo ai tuoi "
|
2686 |
-
"annunci/gruppi e statistiche. Non ad altre impostazioni o altre parti di "
|
2687 |
-
"WordPress! Fai sempre un backup! Se per qualsiasi motivo i tuoi dati vengono "
|
2688 |
-
"persi, danneggiati o comunque diventano inutilizzabili in qualsiasi modo o "
|
2689 |
-
"con qualsiasi mezzo in qualsiasi modo non mi assumerò alcuna responsabilità. "
|
2690 |
-
"Si dovrebbe sempre avere un backup del database. Queste funzioni NON "
|
2691 |
-
"distruggono i dati. Se i dati vengono persi, danneggiati o inutilizzabili in "
|
2692 |
-
"alcun modo, è probabile che il database sia già fuori riparazione. "
|
2693 |
-
"Rivendicare che ha funzionato prima di fare clic su questi pulsanti non è un "
|
2694 |
-
"punto valido in ogni caso."
|
2695 |
-
|
2696 |
-
#: dashboard/settings/maintenance.php:41
|
2697 |
msgid "Status and Versions"
|
2698 |
msgstr "Status e Versioni"
|
2699 |
|
2700 |
-
#: dashboard/settings/maintenance.php:
|
2701 |
msgid "Current status of adverts"
|
2702 |
msgstr "Stato attuale delle inserzioni"
|
2703 |
|
2704 |
-
#: dashboard/settings/maintenance.php:
|
2705 |
msgid "Normal"
|
2706 |
msgstr "Normale"
|
2707 |
|
2708 |
-
#: dashboard/settings/maintenance.php:
|
2709 |
msgid "Error"
|
2710 |
msgstr "Errore"
|
2711 |
|
2712 |
-
#: dashboard/settings/maintenance.php:
|
2713 |
msgid "Expires Soon"
|
2714 |
msgstr "Scade presto"
|
2715 |
|
2716 |
-
#: dashboard/settings/maintenance.php:
|
2717 |
msgid "Unknown"
|
2718 |
msgstr "Sconosciuto"
|
2719 |
|
2720 |
-
#: dashboard/settings/maintenance.php:
|
2721 |
msgid "Banners/assets Folder"
|
2722 |
msgstr "Cartella Banner/Assets"
|
2723 |
|
2724 |
-
#: dashboard/settings/maintenance.php:
|
2725 |
msgid "Exists and appears writable"
|
2726 |
msgstr "Esiste e sembra scrivibile"
|
2727 |
|
2728 |
-
#: dashboard/settings/maintenance.php:
|
2729 |
msgid "Not writable or does not exist"
|
2730 |
msgstr "Non è scrivibile o non esiste"
|
2731 |
|
2732 |
-
#: dashboard/settings/maintenance.php:
|
2733 |
msgid "Reports Folder"
|
2734 |
msgstr "Cartella Report"
|
2735 |
|
2736 |
-
#: dashboard/settings/maintenance.php:
|
2737 |
msgid "Advert evaluation"
|
2738 |
msgstr "Valutazione inserzione"
|
2739 |
|
2740 |
-
#: dashboard/settings/maintenance.php:
|
2741 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2742 |
msgstr "Nessun differimento! Riattiva il plugin dalla pagina dei plugin."
|
2743 |
|
2744 |
-
#: dashboard/settings/maintenance.php:
|
2745 |
msgid "Clean Trackerdata"
|
2746 |
msgstr "Pulire Trackerdata"
|
2747 |
|
2748 |
-
#: dashboard/settings/maintenance.php:
|
2749 |
msgid "Not scheduled!"
|
2750 |
msgstr "Non programmato!"
|
2751 |
|
2752 |
-
#: dashboard/settings/maintenance.php:
|
2753 |
msgid "Background tasks"
|
2754 |
msgstr "Attività in background"
|
2755 |
|
2756 |
-
#: dashboard/settings/maintenance.php:
|
2757 |
msgid "Reset background tasks"
|
2758 |
msgstr "Reimpostare le attività in background"
|
2759 |
|
2760 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2761 |
msgid "Unsupported plugins"
|
2762 |
msgstr "Plug-in non supportati"
|
2763 |
|
2764 |
-
#: dashboard/settings/maintenance.php:
|
2765 |
msgid "Disable 3rd party plugins"
|
2766 |
msgstr "Disabilitare i plug-in di terze parti"
|
2767 |
|
2768 |
-
#: dashboard/settings/maintenance.php:
|
2769 |
msgid "One or more unsupported 3rd party plugins detected."
|
2770 |
msgstr "Rilevati uno o più plug-in di terze parti non supportati."
|
2771 |
|
2772 |
-
#: dashboard/settings/maintenance.php:
|
2773 |
msgid ""
|
2774 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2775 |
"dashboard which may affect security and/or stability."
|
@@ -2777,11 +2706,11 @@ msgstr ""
|
|
2777 |
"Si tratta di plugin che alterano le funzioni di AdRotate o parti highjack "
|
2778 |
"della dashboard che possono influire sulla sicurezza e / o sulla stabilità."
|
2779 |
|
2780 |
-
#: dashboard/settings/maintenance.php:
|
2781 |
msgid "Internal Versions"
|
2782 |
msgstr "Versioni interne"
|
2783 |
|
2784 |
-
#: dashboard/settings/maintenance.php:
|
2785 |
msgid ""
|
2786 |
"Unless you experience database issues or a warning shows below, these "
|
2787 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
@@ -2792,53 +2721,53 @@ msgstr ""
|
|
2792 |
"problemi. L'assistenza potrebbe chiederteli per verificare lo stato del "
|
2793 |
"database."
|
2794 |
|
2795 |
-
#: dashboard/settings/maintenance.php:
|
2796 |
msgid "AdRotate version"
|
2797 |
msgstr "Versione di AdRotate"
|
2798 |
|
2799 |
-
#: dashboard/settings/maintenance.php:
|
2800 |
msgid "Current:"
|
2801 |
msgstr "Corrente:"
|
2802 |
|
2803 |
-
#: dashboard/settings/maintenance.php:
|
2804 |
msgid "Should be:"
|
2805 |
msgstr "Dovrebbe essere:"
|
2806 |
|
2807 |
-
#: dashboard/settings/maintenance.php:
|
2808 |
msgid "Previous:"
|
2809 |
msgstr "Precedente:"
|
2810 |
|
2811 |
-
#: dashboard/settings/maintenance.php:
|
2812 |
msgid "Database version"
|
2813 |
msgstr "Versione database"
|
2814 |
|
2815 |
-
#: dashboard/settings/maintenance.php:
|
2816 |
msgid "Manual upgrade"
|
2817 |
msgstr "Aggiornamento manuale"
|
2818 |
|
2819 |
-
#: dashboard/settings/maintenance.php:
|
2820 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2821 |
msgstr "STAI PER EFFETTUARE UN AGGIORNAMENTO MANUALE DI ADROTATE."
|
2822 |
|
2823 |
-
#: dashboard/settings/maintenance.php:
|
2824 |
msgid "Make sure you have a database backup!"
|
2825 |
msgstr "Assicurati di aver fatto un backup del database!"
|
2826 |
|
2827 |
-
#: dashboard/settings/maintenance.php:
|
2828 |
msgid "This might take a while and may slow down your site during this action!"
|
2829 |
msgstr ""
|
2830 |
"Questo potrebbe richiedere un po 'e potrebbe rallentare il tuo sito durante "
|
2831 |
"questa azione!"
|
2832 |
|
2833 |
-
#: dashboard/settings/maintenance.php:
|
2834 |
msgid "Run updater"
|
2835 |
msgstr "Eseguire il programma di aggiornamento"
|
2836 |
|
2837 |
-
#: dashboard/settings/misc.php:
|
2838 |
msgid "Widget alignment"
|
2839 |
msgstr "Allineamento widget"
|
2840 |
|
2841 |
-
#: dashboard/settings/misc.php:
|
2842 |
msgid ""
|
2843 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2844 |
"not always help!)"
|
@@ -2846,11 +2775,11 @@ msgstr ""
|
|
2846 |
"Seleziona questa casella se i widget non si allineano nella barra laterale "
|
2847 |
"dei temi. (Non sempre aiuta!)"
|
2848 |
|
2849 |
-
#: dashboard/settings/misc.php:
|
2850 |
msgid "Widget padding"
|
2851 |
msgstr "Imbottitura del widget"
|
2852 |
|
2853 |
-
#: dashboard/settings/misc.php:
|
2854 |
msgid ""
|
2855 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2856 |
"not always work!)"
|
@@ -2858,18 +2787,18 @@ msgstr ""
|
|
2858 |
"Attivare questa opzione per rimuovere la spaziatura interna (spazio vuoto) "
|
2859 |
"intorno agli annunci nei widget. (Non sempre funziona!)"
|
2860 |
|
2861 |
-
#: dashboard/settings/misc.php:
|
2862 |
msgid "NOTICE:"
|
2863 |
msgstr "AVVISO:"
|
2864 |
|
2865 |
-
#: dashboard/settings/misc.php:
|
2866 |
msgid ""
|
2867 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2868 |
msgstr ""
|
2869 |
"Hai abilitato il supporto W3 Total Caching ma non hai definito l'hash di "
|
2870 |
"sicurezza."
|
2871 |
|
2872 |
-
#: dashboard/settings/misc.php:
|
2873 |
msgid ""
|
2874 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2875 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
@@ -2879,27 +2808,27 @@ msgstr ""
|
|
2879 |
"o meno alla riga 52 (sotto i nonce di WordPress). Se non sai come aggiungere "
|
2880 |
"questa riga, leggi la guida seguente;"
|
2881 |
|
2882 |
-
#: dashboard/settings/misc.php:
|
2883 |
msgid "Set up W3 Total Caching"
|
2884 |
msgstr "Imposta W3 Total Caching"
|
2885 |
|
2886 |
-
#: dashboard/settings/misc.php:
|
2887 |
msgid "W3 Total Caching"
|
2888 |
msgstr "W3 Total Caching"
|
2889 |
|
2890 |
-
#: dashboard/settings/misc.php:
|
2891 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2892 |
msgstr "Seleziona questa casella se utilizzi W3 Total Caching sul tuo sito."
|
2893 |
|
2894 |
-
#: dashboard/settings/misc.php:
|
2895 |
msgid "Borlabs Cache"
|
2896 |
msgstr "Borlabs Cache"
|
2897 |
|
2898 |
-
#: dashboard/settings/misc.php:
|
2899 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2900 |
msgstr "Seleziona questa casella se utilizzi Borlabs Caching sul tuo sito."
|
2901 |
|
2902 |
-
#: dashboard/settings/misc.php:
|
2903 |
msgid ""
|
2904 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2905 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -2908,7 +2837,7 @@ msgstr ""
|
|
2908 |
"Il plug-in di memorizzazione nella cache deve aggiornare la cache. Questa "
|
2909 |
"operazione può richiedere fino a una settimana se non eseguita manualmente."
|
2910 |
|
2911 |
-
#: dashboard/settings/misc.php:
|
2912 |
msgid ""
|
2913 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2914 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -3327,6 +3256,88 @@ msgstr ""
|
|
3327 |
"markup, codice o layout possono essere applicati nel wrapper di gruppo "
|
3328 |
"durante la modifica del gruppo."
|
3329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3330 |
#~ msgid "Check all adverts for configuration errors"
|
3331 |
#~ msgstr ""
|
3332 |
#~ "Controllare la presenza di errori di configurazione per tutte le "
|
@@ -3926,9 +3937,6 @@ msgstr ""
|
|
3926 |
#~ msgid "Schedule saved"
|
3927 |
#~ msgstr "Scheduling salvato"
|
3928 |
|
3929 |
-
#~ msgid "Schedule(s) deleted"
|
3930 |
-
#~ msgstr "Scheduling cancellato"
|
3931 |
-
|
3932 |
#, fuzzy
|
3933 |
#~ msgid "Advert(s) duplicated"
|
3934 |
#~ msgstr "Annunci duplicati"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:25-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-11-14 17:25-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Pubblicità"
|
23 |
|
24 |
+
#: adrotate-functions.php:795
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Annuncio salvato"
|
27 |
|
28 |
+
#: adrotate-functions.php:799
|
29 |
msgid "Group saved"
|
30 |
msgstr "Gruppo salvato"
|
31 |
|
32 |
+
#: adrotate-functions.php:803
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Immagine banner salvata"
|
35 |
|
36 |
+
#: adrotate-functions.php:807
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Annunci eliminati"
|
39 |
|
40 |
+
#: adrotate-functions.php:811
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Gruppo eliminato"
|
43 |
|
44 |
+
#: adrotate-functions.php:815
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Asset eliminati"
|
47 |
|
48 |
+
#: adrotate-functions.php:819
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
53 |
"Si è verificato un problema durante l'eliminazione del file o della "
|
54 |
"cartella. Assicurati che le tue autorizzazioni siano in ordine."
|
55 |
|
56 |
+
#: adrotate-functions.php:823
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Reimpostazione delle statistiche degli annunci"
|
59 |
|
60 |
+
#: adrotate-functions.php:827
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Annunci rinnovati"
|
63 |
|
64 |
+
#: adrotate-functions.php:831
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Annunci disattivati"
|
67 |
|
68 |
+
#: adrotate-functions.php:835
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Annunci attivati"
|
71 |
|
72 |
+
#: adrotate-functions.php:839
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Gruppo che include le inserzioni in esso eliminate"
|
75 |
|
76 |
+
#: adrotate-functions.php:843
|
77 |
msgid "Export created"
|
78 |
msgstr "Esportazione creata"
|
79 |
|
80 |
+
#: adrotate-functions.php:847
|
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 |
"inserzione qui sotto. Non dimenticare di controllare tutte le impostazioni e "
|
87 |
"pianificare l'annuncio."
|
88 |
|
89 |
+
#: adrotate-functions.php:852
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Impostazioni salvate"
|
92 |
|
93 |
+
#: adrotate-functions.php:856
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Database ottimizzato"
|
96 |
|
97 |
+
#: adrotate-functions.php:860
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Database riparato"
|
100 |
|
101 |
+
#: adrotate-functions.php:864
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Le inserzioni valutate e gli stati sono stati corretti ove richiesto"
|
104 |
|
105 |
+
#: adrotate-functions.php:868
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Pulitura completata"
|
108 |
|
109 |
+
#: adrotate-functions.php:872
|
110 |
+
msgid "Scheduled tasks reset"
|
111 |
+
msgstr "Reimpostazione delle attività pianificate"
|
112 |
+
|
113 |
+
#: adrotate-functions.php:876
|
114 |
+
msgid ""
|
115 |
+
"If there were any 3rd party plugins interfering with AdRotate they have been "
|
116 |
+
"disabled"
|
117 |
+
msgstr ""
|
118 |
+
"Se ci fossero plugin 3rd party che interferivano con AdRotate, sono stati "
|
119 |
+
"disabilitati"
|
120 |
+
|
121 |
+
#: adrotate-functions.php:880
|
122 |
+
msgid "Database updated"
|
123 |
+
msgstr "Database aggiornato"
|
124 |
+
|
125 |
+
#: adrotate-functions.php:885
|
126 |
msgid "Action prohibited"
|
127 |
msgstr "Azione vietata"
|
128 |
|
129 |
+
#: adrotate-functions.php:889
|
130 |
msgid ""
|
131 |
"The advert was saved but has an issue which might prevent it from working "
|
132 |
"properly. Review the colored advert."
|
134 |
"L'annuncio è stato salvato ma ha un problema che potrebbe impedirgli di "
|
135 |
"funzionare correttamente. Rivedi la pubblicità colorata."
|
136 |
|
137 |
+
#: adrotate-functions.php:893
|
138 |
msgid "No data found in selected time period"
|
139 |
msgstr "Nessun dato trovato nel periodo di tempo selezionato"
|
140 |
|
141 |
+
#: adrotate-functions.php:897
|
142 |
msgid "Database can only be optimized or cleaned once every hour"
|
143 |
msgstr "Il database può essere ottimizzato o pulito solo una volta ogni ora"
|
144 |
|
145 |
+
#: adrotate-functions.php:901
|
146 |
msgid "Form can not be (partially) empty!"
|
147 |
msgstr "Modulo non può essere (parzialmente) vuoto!"
|
148 |
|
149 |
+
#: adrotate-functions.php:905
|
150 |
msgid "No file uploaded."
|
151 |
msgstr "Nessun file scaricato."
|
152 |
|
153 |
+
#: adrotate-functions.php:909
|
154 |
msgid "No adverts found."
|
155 |
msgstr "Nessuna pubblicità trovata."
|
156 |
|
157 |
+
#: adrotate-functions.php:913
|
158 |
msgid "Wrong file type. No file uploaded."
|
159 |
msgstr "Tipo di file sbagliato. Nessun file è stato caricato."
|
160 |
|
161 |
+
#: adrotate-functions.php:917
|
162 |
msgid "No file selected or file is too large."
|
163 |
msgstr "Nessun file selezionato o file troppo grande."
|
164 |
|
165 |
+
#: adrotate-functions.php:921
|
166 |
msgid "There was an error unzipping the file. Please try again later."
|
167 |
msgstr ""
|
168 |
"Si è verificato un errore durante la decompressione del file. Riprova più "
|
169 |
"tardi."
|
170 |
|
171 |
+
#: adrotate-functions.php:925
|
172 |
msgid ""
|
173 |
"The advert hash is not usable or is missing required data. Please copy the "
|
174 |
"hash correctly and try again."
|
176 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
177 |
"nella cache dei frammenti non è abilitata."
|
178 |
|
179 |
+
#: adrotate-functions.php:929
|
180 |
msgid ""
|
181 |
"The advert hash can not be used on the same site as it originated from or is "
|
182 |
"not a valid hash for importing."
|
184 |
"L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
|
185 |
"avuto origine o non è un hash valido per l'importazione."
|
186 |
|
187 |
+
#: adrotate-functions.php:933
|
188 |
msgid "Unexpected error"
|
189 |
msgstr "Errore inatteso"
|
190 |
|
273 |
msgstr "Si è verificato un errore sconosciuto."
|
274 |
|
275 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
276 |
+
#: dashboard/settings/maintenance.php:16
|
277 |
msgid "Check adverts"
|
278 |
msgstr "Controllo inserzioni"
|
279 |
|
492 |
msgid "Use on up to FIVE WordPress installations."
|
493 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
494 |
|
495 |
+
#: adrotate-statistics.php:154
|
496 |
msgid "January"
|
497 |
msgstr "Gennaio"
|
498 |
|
499 |
+
#: adrotate-statistics.php:154
|
500 |
msgid "February"
|
501 |
msgstr "Febbraio"
|
502 |
|
503 |
+
#: adrotate-statistics.php:154
|
504 |
msgid "March"
|
505 |
msgstr "Marzo"
|
506 |
|
507 |
+
#: adrotate-statistics.php:154
|
508 |
msgid "April"
|
509 |
msgstr "Aprile"
|
510 |
|
511 |
+
#: adrotate-statistics.php:154
|
512 |
msgid "May"
|
513 |
msgstr "Maggio"
|
514 |
|
515 |
+
#: adrotate-statistics.php:154
|
516 |
msgid "June"
|
517 |
msgstr "Giugno"
|
518 |
|
519 |
+
#: adrotate-statistics.php:154
|
520 |
msgid "July"
|
521 |
msgstr "Luglio"
|
522 |
|
523 |
+
#: adrotate-statistics.php:154
|
524 |
msgid "August"
|
525 |
msgstr "Agosto"
|
526 |
|
527 |
+
#: adrotate-statistics.php:154
|
528 |
msgid "September"
|
529 |
msgstr "Settembre"
|
530 |
|
531 |
+
#: adrotate-statistics.php:154
|
532 |
msgid "October"
|
533 |
msgstr "Ottobre"
|
534 |
|
535 |
+
#: adrotate-statistics.php:154
|
536 |
msgid "November"
|
537 |
msgstr "Novembre"
|
538 |
|
539 |
+
#: adrotate-statistics.php:154
|
540 |
msgid "December"
|
541 |
msgstr "Dicembre"
|
542 |
|
543 |
+
#: adrotate-statistics.php:163
|
544 |
msgid "Previous"
|
545 |
msgstr "Precedente"
|
546 |
|
547 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
548 |
#: dashboard/publisher/statistics-group.php:73
|
549 |
#: dashboard/publisher/statistics-main.php:48
|
550 |
msgid "This month"
|
551 |
msgstr "Questo mese"
|
552 |
|
553 |
+
#: adrotate-statistics.php:166
|
554 |
msgid "Next"
|
555 |
msgstr "Successivo"
|
556 |
|
557 |
+
#: adrotate-statistics.php:220
|
558 |
msgid "No data to show!"
|
559 |
msgstr "Nessun dato da mostrare!"
|
560 |
|
561 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
562 |
msgid "Not found"
|
563 |
msgstr "Non trovato"
|
564 |
|
602 |
msgid "Fill in the ID of the type you want to display!"
|
603 |
msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
|
604 |
|
605 |
+
#: adrotate.php:104 adrotate.php:174
|
606 |
msgid "Manage Adverts"
|
607 |
msgstr "Gestisci Inserzioni"
|
608 |
|
609 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
610 |
msgid "Manage Groups"
|
611 |
msgstr "Gestisci Gruppi"
|
612 |
|
613 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
614 |
msgid "Manage Schedules"
|
615 |
msgstr "Gestisci pianificazioni"
|
616 |
|
617 |
+
#: adrotate.php:107
|
618 |
msgid "Manage Media"
|
619 |
msgstr "Gestisci Media"
|
620 |
|
621 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
622 |
#: dashboard/publisher/adverts-edit.php:178
|
623 |
#: dashboard/publisher/statistics-main.php:23
|
624 |
#: dashboard/settings/statistics.php:17
|
625 |
msgid "Statistics"
|
626 |
msgstr "Statistiche"
|
627 |
|
628 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
629 |
msgid "Get AdRotate Pro"
|
630 |
msgstr "Ottieni AdRotate Pro"
|
631 |
|
632 |
+
#: adrotate.php:110
|
633 |
msgid "Support"
|
634 |
msgstr "Supporto"
|
635 |
|
636 |
+
#: adrotate.php:111
|
637 |
msgid "Settings"
|
638 |
msgstr "Impostazioni"
|
639 |
|
640 |
+
#: adrotate.php:130
|
641 |
msgid "Get AdRotate Professional"
|
642 |
msgstr "Ottieni AdRotate Professional"
|
643 |
|
644 |
+
#: adrotate.php:234 adrotate.php:306
|
645 |
msgid "Manage"
|
646 |
msgstr "Gestisci"
|
647 |
|
648 |
+
#: adrotate.php:235
|
649 |
msgid "Advert Generator"
|
650 |
msgstr "Generatore pubblicitario"
|
651 |
|
652 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
653 |
msgid "New Advert"
|
654 |
msgstr "Nuova inserzione"
|
655 |
|
656 |
+
#: adrotate.php:307
|
657 |
msgid "Add New"
|
658 |
msgstr "Aggiungi Nuovo"
|
659 |
|
660 |
+
#: adrotate.php:375
|
661 |
msgid "Manage Media and Assets"
|
662 |
msgstr "Gestire supporti e risorse"
|
663 |
|
664 |
+
#: adrotate.php:379
|
665 |
msgid ""
|
666 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
667 |
"if you have HTML5 adverts containing multiple files."
|
669 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
670 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
671 |
|
672 |
+
#: adrotate.php:421
|
673 |
msgid "Advert Statistics"
|
674 |
msgstr "Statistiche delle inserzioni"
|
675 |
|
676 |
+
#: adrotate.php:464
|
677 |
msgid "AdRotate Support"
|
678 |
msgstr "Supporto per AdRotate"
|
679 |
|
680 |
+
#: adrotate.php:510
|
681 |
msgid "AdRotate Settings"
|
682 |
msgstr "Impostazioni AdRotate"
|
683 |
|
684 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
685 |
msgid "General"
|
686 |
msgstr "Generale"
|
687 |
|
688 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
689 |
msgid "Notifications"
|
690 |
msgstr "Notifiche"
|
691 |
|
692 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
693 |
msgid "Geo Targeting"
|
694 |
msgstr "Geo Targeting"
|
695 |
|
696 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
697 |
msgid "Access Roles"
|
698 |
msgstr "Ruoli di accesso"
|
699 |
|
700 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
701 |
msgid "Miscellaneous"
|
702 |
msgstr "Varie"
|
703 |
|
704 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
705 |
msgid "Maintenance"
|
706 |
msgstr "Manutenzione"
|
707 |
|
1438 |
msgstr "Scadrà presto"
|
1439 |
|
1440 |
#: dashboard/publisher/adverts-error.php:67
|
1441 |
+
#: dashboard/settings/maintenance.php:30
|
1442 |
msgid "Expired"
|
1443 |
msgstr "Scaduto"
|
1444 |
|
2058 |
msgid "This action can not be undone!"
|
2059 |
msgstr "Questa azione non può essere annullata!"
|
2060 |
|
2061 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
2062 |
msgid "OK to continue, CANCEL to stop."
|
2063 |
msgstr "OK per continuare, CANCEL per interrompere."
|
2064 |
|
2493 |
msgid "user-agents"
|
2494 |
msgstr "agenti di utenti"
|
2495 |
|
2496 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2497 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2498 |
#: dashboard/settings/statistics.php:85
|
2499 |
msgid "Update Options"
|
2601 |
msgid "Password/License Key"
|
2602 |
msgstr "Password/Codice Licenza"
|
2603 |
|
2604 |
+
#: dashboard/settings/maintenance.php:18
|
2605 |
+
msgid "Check ads for errors"
|
2606 |
+
msgstr "Verificare la presenza di errori negli annunci"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2607 |
|
2608 |
+
#: dashboard/settings/maintenance.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2609 |
msgid ""
|
2610 |
+
"Apply all evaluation rules to all adverts to see if any error slipped in. "
|
2611 |
+
"This may take a few seconds."
|
2612 |
msgstr ""
|
2613 |
"Applica tutte le regole di valutazione a tutte le inserzioni per vedere se è "
|
2614 |
+
"sfuggito qualche errore. L'operazione potrebbe richiedere alcuni secondi."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2615 |
|
2616 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2617 |
msgid "Status and Versions"
|
2618 |
msgstr "Status e Versioni"
|
2619 |
|
2620 |
+
#: dashboard/settings/maintenance.php:29
|
2621 |
msgid "Current status of adverts"
|
2622 |
msgstr "Stato attuale delle inserzioni"
|
2623 |
|
2624 |
+
#: dashboard/settings/maintenance.php:30
|
2625 |
msgid "Normal"
|
2626 |
msgstr "Normale"
|
2627 |
|
2628 |
+
#: dashboard/settings/maintenance.php:30
|
2629 |
msgid "Error"
|
2630 |
msgstr "Errore"
|
2631 |
|
2632 |
+
#: dashboard/settings/maintenance.php:30
|
2633 |
msgid "Expires Soon"
|
2634 |
msgstr "Scade presto"
|
2635 |
|
2636 |
+
#: dashboard/settings/maintenance.php:30
|
2637 |
msgid "Unknown"
|
2638 |
msgstr "Sconosciuto"
|
2639 |
|
2640 |
+
#: dashboard/settings/maintenance.php:33
|
2641 |
msgid "Banners/assets Folder"
|
2642 |
msgstr "Cartella Banner/Assets"
|
2643 |
|
2644 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2645 |
msgid "Exists and appears writable"
|
2646 |
msgstr "Esiste e sembra scrivibile"
|
2647 |
|
2648 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2649 |
msgid "Not writable or does not exist"
|
2650 |
msgstr "Non è scrivibile o non esiste"
|
2651 |
|
2652 |
+
#: dashboard/settings/maintenance.php:42
|
2653 |
msgid "Reports Folder"
|
2654 |
msgstr "Cartella Report"
|
2655 |
|
2656 |
+
#: dashboard/settings/maintenance.php:51
|
2657 |
msgid "Advert evaluation"
|
2658 |
msgstr "Valutazione inserzione"
|
2659 |
|
2660 |
+
#: dashboard/settings/maintenance.php:52
|
2661 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2662 |
msgstr "Nessun differimento! Riattiva il plugin dalla pagina dei plugin."
|
2663 |
|
2664 |
+
#: dashboard/settings/maintenance.php:53
|
2665 |
msgid "Clean Trackerdata"
|
2666 |
msgstr "Pulire Trackerdata"
|
2667 |
|
2668 |
+
#: dashboard/settings/maintenance.php:54
|
2669 |
msgid "Not scheduled!"
|
2670 |
msgstr "Non programmato!"
|
2671 |
|
2672 |
+
#: dashboard/settings/maintenance.php:57
|
2673 |
msgid "Background tasks"
|
2674 |
msgstr "Attività in background"
|
2675 |
|
2676 |
+
#: dashboard/settings/maintenance.php:59
|
2677 |
msgid "Reset background tasks"
|
2678 |
msgstr "Reimpostare le attività in background"
|
2679 |
|
2680 |
+
#: dashboard/settings/maintenance.php:62
|
2681 |
+
msgid ""
|
2682 |
+
"If automated tasks such as expiring adverts does not work reliable or one of "
|
2683 |
+
"the above schedules is missing use this button to reset the tasks."
|
2684 |
+
msgstr ""
|
2685 |
+
"Se le attività automatizzate come le inserzioni in scadenza non funzionano "
|
2686 |
+
"in modo affidabile o manca una delle pianificazioni sopra riportate, "
|
2687 |
+
"utilizzare questo pulsante per reimpostare le attività."
|
2688 |
+
|
2689 |
+
#: dashboard/settings/maintenance.php:66
|
2690 |
msgid "Unsupported plugins"
|
2691 |
msgstr "Plug-in non supportati"
|
2692 |
|
2693 |
+
#: dashboard/settings/maintenance.php:68
|
2694 |
msgid "Disable 3rd party plugins"
|
2695 |
msgstr "Disabilitare i plug-in di terze parti"
|
2696 |
|
2697 |
+
#: dashboard/settings/maintenance.php:70
|
2698 |
msgid "One or more unsupported 3rd party plugins detected."
|
2699 |
msgstr "Rilevati uno o più plug-in di terze parti non supportati."
|
2700 |
|
2701 |
+
#: dashboard/settings/maintenance.php:72
|
2702 |
msgid ""
|
2703 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2704 |
"dashboard which may affect security and/or stability."
|
2706 |
"Si tratta di plugin che alterano le funzioni di AdRotate o parti highjack "
|
2707 |
"della dashboard che possono influire sulla sicurezza e / o sulla stabilità."
|
2708 |
|
2709 |
+
#: dashboard/settings/maintenance.php:77
|
2710 |
msgid "Internal Versions"
|
2711 |
msgstr "Versioni interne"
|
2712 |
|
2713 |
+
#: dashboard/settings/maintenance.php:78
|
2714 |
msgid ""
|
2715 |
"Unless you experience database issues or a warning shows below, these "
|
2716 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
2721 |
"problemi. L'assistenza potrebbe chiederteli per verificare lo stato del "
|
2722 |
"database."
|
2723 |
|
2724 |
+
#: dashboard/settings/maintenance.php:81
|
2725 |
msgid "AdRotate version"
|
2726 |
msgstr "Versione di AdRotate"
|
2727 |
|
2728 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2729 |
msgid "Current:"
|
2730 |
msgstr "Corrente:"
|
2731 |
|
2732 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2733 |
msgid "Should be:"
|
2734 |
msgstr "Dovrebbe essere:"
|
2735 |
|
2736 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2737 |
msgid "Previous:"
|
2738 |
msgstr "Precedente:"
|
2739 |
|
2740 |
+
#: dashboard/settings/maintenance.php:83
|
2741 |
msgid "Database version"
|
2742 |
msgstr "Versione database"
|
2743 |
|
2744 |
+
#: dashboard/settings/maintenance.php:87
|
2745 |
msgid "Manual upgrade"
|
2746 |
msgstr "Aggiornamento manuale"
|
2747 |
|
2748 |
+
#: dashboard/settings/maintenance.php:89
|
2749 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2750 |
msgstr "STAI PER EFFETTUARE UN AGGIORNAMENTO MANUALE DI ADROTATE."
|
2751 |
|
2752 |
+
#: dashboard/settings/maintenance.php:89
|
2753 |
msgid "Make sure you have a database backup!"
|
2754 |
msgstr "Assicurati di aver fatto un backup del database!"
|
2755 |
|
2756 |
+
#: dashboard/settings/maintenance.php:89
|
2757 |
msgid "This might take a while and may slow down your site during this action!"
|
2758 |
msgstr ""
|
2759 |
"Questo potrebbe richiedere un po 'e potrebbe rallentare il tuo sito durante "
|
2760 |
"questa azione!"
|
2761 |
|
2762 |
+
#: dashboard/settings/maintenance.php:89
|
2763 |
msgid "Run updater"
|
2764 |
msgstr "Eseguire il programma di aggiornamento"
|
2765 |
|
2766 |
+
#: dashboard/settings/misc.php:122
|
2767 |
msgid "Widget alignment"
|
2768 |
msgstr "Allineamento widget"
|
2769 |
|
2770 |
+
#: dashboard/settings/misc.php:123
|
2771 |
msgid ""
|
2772 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2773 |
"not always help!)"
|
2775 |
"Seleziona questa casella se i widget non si allineano nella barra laterale "
|
2776 |
"dei temi. (Non sempre aiuta!)"
|
2777 |
|
2778 |
+
#: dashboard/settings/misc.php:126
|
2779 |
msgid "Widget padding"
|
2780 |
msgstr "Imbottitura del widget"
|
2781 |
|
2782 |
+
#: dashboard/settings/misc.php:127
|
2783 |
msgid ""
|
2784 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2785 |
"not always work!)"
|
2787 |
"Attivare questa opzione per rimuovere la spaziatura interna (spazio vuoto) "
|
2788 |
"intorno agli annunci nei widget. (Non sempre funziona!)"
|
2789 |
|
2790 |
+
#: dashboard/settings/misc.php:131
|
2791 |
msgid "NOTICE:"
|
2792 |
msgstr "AVVISO:"
|
2793 |
|
2794 |
+
#: dashboard/settings/misc.php:132
|
2795 |
msgid ""
|
2796 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2797 |
msgstr ""
|
2798 |
"Hai abilitato il supporto W3 Total Caching ma non hai definito l'hash di "
|
2799 |
"sicurezza."
|
2800 |
|
2801 |
+
#: dashboard/settings/misc.php:132
|
2802 |
msgid ""
|
2803 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2804 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
2808 |
"o meno alla riga 52 (sotto i nonce di WordPress). Se non sai come aggiungere "
|
2809 |
"questa riga, leggi la guida seguente;"
|
2810 |
|
2811 |
+
#: dashboard/settings/misc.php:132
|
2812 |
msgid "Set up W3 Total Caching"
|
2813 |
msgstr "Imposta W3 Total Caching"
|
2814 |
|
2815 |
+
#: dashboard/settings/misc.php:136
|
2816 |
msgid "W3 Total Caching"
|
2817 |
msgstr "W3 Total Caching"
|
2818 |
|
2819 |
+
#: dashboard/settings/misc.php:137
|
2820 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2821 |
msgstr "Seleziona questa casella se utilizzi W3 Total Caching sul tuo sito."
|
2822 |
|
2823 |
+
#: dashboard/settings/misc.php:140
|
2824 |
msgid "Borlabs Cache"
|
2825 |
msgstr "Borlabs Cache"
|
2826 |
|
2827 |
+
#: dashboard/settings/misc.php:141
|
2828 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2829 |
msgstr "Seleziona questa casella se utilizzi Borlabs Caching sul tuo sito."
|
2830 |
|
2831 |
+
#: dashboard/settings/misc.php:145
|
2832 |
msgid ""
|
2833 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2834 |
"to refresh the cache. This can take up to a week if not done manually."
|
2837 |
"Il plug-in di memorizzazione nella cache deve aggiornare la cache. Questa "
|
2838 |
"operazione può richiedere fino a una settimana se non eseguita manualmente."
|
2839 |
|
2840 |
+
#: dashboard/settings/misc.php:145
|
2841 |
msgid ""
|
2842 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2843 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
3256 |
"markup, codice o layout possono essere applicati nel wrapper di gruppo "
|
3257 |
"durante la modifica del gruppo."
|
3258 |
|
3259 |
+
#~ msgid ""
|
3260 |
+
#~ "Use these functions when you notice your database is slow, unresponsive "
|
3261 |
+
#~ "and sluggish."
|
3262 |
+
#~ msgstr ""
|
3263 |
+
#~ "Utilizzare queste funzioni quando si nota che il database è lento, non "
|
3264 |
+
#~ "risponde e lento."
|
3265 |
+
|
3266 |
+
#~ msgid "You are about to check all adverts for errors."
|
3267 |
+
#~ msgstr "Stai per controllare tutte le inserzioni per eventuali errori."
|
3268 |
+
|
3269 |
+
#~ msgid "This might take a few seconds!"
|
3270 |
+
#~ msgstr "L'operazione potrebbe richiedere alcuni secondi!"
|
3271 |
+
|
3272 |
+
#~ msgid "Clean-up Database and Files"
|
3273 |
+
#~ msgstr "Pulire database e file"
|
3274 |
+
|
3275 |
+
#~ msgid "Run Clean-up"
|
3276 |
+
#~ msgstr "Esegui Clean-up"
|
3277 |
+
|
3278 |
+
#~ msgid "You are about to do maintenance on your setup of AdRotate."
|
3279 |
+
#~ msgstr "Stai per eseguire la manutenzione della configurazione di AdRotate."
|
3280 |
+
|
3281 |
+
#~ msgid ""
|
3282 |
+
#~ "This optionally may delete old statistics and tries to delete old export "
|
3283 |
+
#~ "files."
|
3284 |
+
#~ msgstr ""
|
3285 |
+
#~ "Questo opzionale può eliminare le vecchie statistiche e tenta di "
|
3286 |
+
#~ "eliminare i vecchi file di esportazione."
|
3287 |
+
|
3288 |
+
#~ msgid "Are you sure you want to continue?"
|
3289 |
+
#~ msgstr "Sei sicuro di voler continuare?"
|
3290 |
+
|
3291 |
+
#~ msgid "THIS ACTION CAN NOT BE UNDONE!"
|
3292 |
+
#~ msgstr "QUESTA AZIONE NON PUÒ ESSERE ANNULLATA!"
|
3293 |
+
|
3294 |
+
#~ msgid "Basic database maintenance."
|
3295 |
+
#~ msgstr "Manutenzione di base del database."
|
3296 |
+
|
3297 |
+
#~ msgid "Delete stats older than 365 days."
|
3298 |
+
#~ msgstr "Elimina le statistiche più vecchie di 365 giorni."
|
3299 |
+
|
3300 |
+
#~ msgid "Delete leftover export files."
|
3301 |
+
#~ msgstr "Eliminare i file di esportazione rimanenti."
|
3302 |
+
|
3303 |
+
#~ msgid ""
|
3304 |
+
#~ "For when you create an advert, group or schedule and it does not save or "
|
3305 |
+
#~ "keep changes you make."
|
3306 |
+
#~ msgstr ""
|
3307 |
+
#~ "Per quando crei un'inserzione, un gruppo o una pianificazione e non salva "
|
3308 |
+
#~ "né mantiene le modifiche che apcedi."
|
3309 |
+
|
3310 |
+
#~ msgid ""
|
3311 |
+
#~ "Additionally you can delete statistics and/or unused export files. This "
|
3312 |
+
#~ "will improve the speed of your site."
|
3313 |
+
#~ msgstr ""
|
3314 |
+
#~ "Inoltre è possibile eliminare le statistiche e/o i file di esportazione "
|
3315 |
+
#~ "inutilizzati. Questo migliorerà la velocità del tuo sito."
|
3316 |
+
|
3317 |
+
#~ msgid ""
|
3318 |
+
#~ "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
3319 |
+
#~ "database or clean up overhead data. They only apply to your ads/groups "
|
3320 |
+
#~ "and stats. Not to other settings or other parts of WordPress! Always "
|
3321 |
+
#~ "always make a backup! If for any reason your data is lost, damaged or "
|
3322 |
+
#~ "otherwise becomes unusable in any way or by any means in whichever way I "
|
3323 |
+
#~ "will not take responsibility. You should always have a backup of your "
|
3324 |
+
#~ "database. These functions do NOT destroy data. If data is lost, damaged "
|
3325 |
+
#~ "or unusable in any way, your database likely was beyond repair already. "
|
3326 |
+
#~ "Claiming it worked before clicking these buttons is not a valid point in "
|
3327 |
+
#~ "any case."
|
3328 |
+
#~ msgstr ""
|
3329 |
+
#~ "DISCLAIMER: Le funzioni di cui sopra sono intenti per essere utilizzato "
|
3330 |
+
#~ "per il database o pulire i dati di sovraccarico. Si applicano solo ai "
|
3331 |
+
#~ "tuoi annunci/gruppi e statistiche. Non ad altre impostazioni o altre "
|
3332 |
+
#~ "parti di WordPress! Fai sempre un backup! Se per qualsiasi motivo i tuoi "
|
3333 |
+
#~ "dati vengono persi, danneggiati o comunque diventano inutilizzabili in "
|
3334 |
+
#~ "qualsiasi modo o con qualsiasi mezzo in qualsiasi modo non mi assumerò "
|
3335 |
+
#~ "alcuna responsabilità. Si dovrebbe sempre avere un backup del database. "
|
3336 |
+
#~ "Queste funzioni NON distruggono i dati. Se i dati vengono persi, "
|
3337 |
+
#~ "danneggiati o inutilizzabili in alcun modo, è probabile che il database "
|
3338 |
+
#~ "sia già fuori riparazione. Rivendicare che ha funzionato prima di fare "
|
3339 |
+
#~ "clic su questi pulsanti non è un punto valido in ogni caso."
|
3340 |
+
|
3341 |
#~ msgid "Check all adverts for configuration errors"
|
3342 |
#~ msgstr ""
|
3343 |
#~ "Controllare la presenza di errori di configurazione per tutte le "
|
3937 |
#~ msgid "Schedule saved"
|
3938 |
#~ msgstr "Scheduling salvato"
|
3939 |
|
|
|
|
|
|
|
3940 |
#, fuzzy
|
3941 |
#~ msgid "Advert(s) duplicated"
|
3942 |
#~ msgstr "Annunci duplicati"
|
language/adrotate-nl_NL.mo
CHANGED
Binary file
|
language/adrotate-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -21,31 +21,31 @@ msgstr ""
|
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Advertenties"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Advertentie opgeslagen"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Group saved"
|
30 |
msgstr "Groep bewaard"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Advertentie afbeelding opgeslagen"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Advertentie(s) verwijderd"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groep verwijderd"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Asset(s) verwijderd"
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
@@ -53,31 +53,31 @@ msgstr ""
|
|
53 |
"Er is iets mis gegaan met het verwijderen van het bestand of de map. Zorg "
|
54 |
"ervoor dat de permissies in orde zijn."
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Advertentie(s) statistieken gereset"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Advertentie(s) vernieuwd"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Advertentie(s) gedeactiveerd"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Advertentie(s) geactiveerd"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Groep inclusief advertenties verwijderd"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Export created"
|
78 |
msgstr "Export gemaakt"
|
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,31 +86,47 @@ msgstr ""
|
|
86 |
"advertentie hieronder. Vergeet niet om alle instellingen te controleren en "
|
87 |
"de advertentie te plannen."
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Instellingen opgeslagen"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Database geoptimaliseerd"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Database is hersteld"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Advertenties geëvalueerd en statussen zijn waar nodig gecorrigeerd"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Opschonen voltooid"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "Action prohibited"
|
111 |
msgstr "Actie niet toegestaan"
|
112 |
|
113 |
-
#: adrotate-functions.php:
|
114 |
msgid ""
|
115 |
"The advert was saved but has an issue which might prevent it from working "
|
116 |
"properly. Review the colored advert."
|
@@ -118,41 +134,41 @@ msgstr ""
|
|
118 |
"De advertentie is opgeslagen, maar heeft een probleem waardoor het mogelijk "
|
119 |
"niet goed werkt. Bekijk de gekleurde advertentie."
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "No data found in selected time period"
|
123 |
msgstr "Geen gegevens gevonden in geselecteerde tijdsperiode"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Database can only be optimized or cleaned once every hour"
|
127 |
msgstr ""
|
128 |
"Database kan slechts eenmaal per uur worden geoptimaliseerd of opgeschoond"
|
129 |
|
130 |
-
#: adrotate-functions.php:
|
131 |
msgid "Form can not be (partially) empty!"
|
132 |
msgstr "Formulier kan niet (gedeeltelijk) leeg zijn!"
|
133 |
|
134 |
-
#: adrotate-functions.php:
|
135 |
msgid "No file uploaded."
|
136 |
msgstr "Geen bestand geüpload."
|
137 |
|
138 |
-
#: adrotate-functions.php:
|
139 |
msgid "No adverts found."
|
140 |
msgstr "Geen advertenties gevonden."
|
141 |
|
142 |
-
#: adrotate-functions.php:
|
143 |
msgid "Wrong file type. No file uploaded."
|
144 |
msgstr "Onjuist bestandstype. Er is geen bestand geüpload."
|
145 |
|
146 |
-
#: adrotate-functions.php:
|
147 |
msgid "No file selected or file is too large."
|
148 |
msgstr "Geen bestand geselecteerd of het bestand is te groot."
|
149 |
|
150 |
-
#: adrotate-functions.php:
|
151 |
msgid "There was an error unzipping the file. Please try again later."
|
152 |
msgstr ""
|
153 |
"Er was een fout bij het uitpakken van het bestand. Probeer het later opnieuw."
|
154 |
|
155 |
-
#: adrotate-functions.php:
|
156 |
msgid ""
|
157 |
"The advert hash is not usable or is missing required data. Please copy the "
|
158 |
"hash correctly and try again."
|
@@ -160,7 +176,7 @@ msgstr ""
|
|
160 |
"De advertentie hash is niet bruikbaar of mist vereiste informatie. Probeer "
|
161 |
"het opnieuw met een nieuwe hash."
|
162 |
|
163 |
-
#: adrotate-functions.php:
|
164 |
msgid ""
|
165 |
"The advert hash can not be used on the same site as it originated from or is "
|
166 |
"not a valid hash for importing."
|
@@ -169,7 +185,7 @@ msgstr ""
|
|
169 |
"gegenereerd is of de hash is niet een geldige hash voor het importeren van "
|
170 |
"een advertentie."
|
171 |
|
172 |
-
#: adrotate-functions.php:
|
173 |
msgid "Unexpected error"
|
174 |
msgstr "Onverwachte fout"
|
175 |
|
@@ -260,7 +276,7 @@ msgid "An unknown error occured."
|
|
260 |
msgstr "Er is een onbekende fout opgetreden."
|
261 |
|
262 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
263 |
-
#: dashboard/settings/maintenance.php:
|
264 |
msgid "Check adverts"
|
265 |
msgstr "Controleer advertenties"
|
266 |
|
@@ -481,73 +497,73 @@ msgstr "Multi Licentie"
|
|
481 |
msgid "Use on up to FIVE WordPress installations."
|
482 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
483 |
|
484 |
-
#: adrotate-statistics.php:
|
485 |
msgid "January"
|
486 |
msgstr "Januari"
|
487 |
|
488 |
-
#: adrotate-statistics.php:
|
489 |
msgid "February"
|
490 |
msgstr "Februari"
|
491 |
|
492 |
-
#: adrotate-statistics.php:
|
493 |
msgid "March"
|
494 |
msgstr "Maart"
|
495 |
|
496 |
-
#: adrotate-statistics.php:
|
497 |
msgid "April"
|
498 |
msgstr "April"
|
499 |
|
500 |
-
#: adrotate-statistics.php:
|
501 |
msgid "May"
|
502 |
msgstr "Mei"
|
503 |
|
504 |
-
#: adrotate-statistics.php:
|
505 |
msgid "June"
|
506 |
msgstr "Juni"
|
507 |
|
508 |
-
#: adrotate-statistics.php:
|
509 |
msgid "July"
|
510 |
msgstr "Juli"
|
511 |
|
512 |
-
#: adrotate-statistics.php:
|
513 |
msgid "August"
|
514 |
msgstr "Augustus"
|
515 |
|
516 |
-
#: adrotate-statistics.php:
|
517 |
msgid "September"
|
518 |
msgstr "September"
|
519 |
|
520 |
-
#: adrotate-statistics.php:
|
521 |
msgid "October"
|
522 |
msgstr "Oktober"
|
523 |
|
524 |
-
#: adrotate-statistics.php:
|
525 |
msgid "November"
|
526 |
msgstr "November"
|
527 |
|
528 |
-
#: adrotate-statistics.php:
|
529 |
msgid "December"
|
530 |
msgstr "December"
|
531 |
|
532 |
-
#: adrotate-statistics.php:
|
533 |
msgid "Previous"
|
534 |
msgstr "Vorige"
|
535 |
|
536 |
-
#: adrotate-statistics.php:
|
537 |
#: dashboard/publisher/statistics-group.php:73
|
538 |
#: dashboard/publisher/statistics-main.php:48
|
539 |
msgid "This month"
|
540 |
msgstr "Deze maand"
|
541 |
|
542 |
-
#: adrotate-statistics.php:
|
543 |
msgid "Next"
|
544 |
msgstr "Volgende"
|
545 |
|
546 |
-
#: adrotate-statistics.php:
|
547 |
msgid "No data to show!"
|
548 |
msgstr "Geen gegevens om te laten zien!"
|
549 |
|
550 |
-
#: adrotate-statistics.php:
|
551 |
msgid "Not found"
|
552 |
msgstr "Niet gevonden"
|
553 |
|
@@ -593,66 +609,66 @@ msgstr "ID:"
|
|
593 |
msgid "Fill in the ID of the type you want to display!"
|
594 |
msgstr "Vul het ID in van het type dat je wilt weergeven!"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
msgid "Manage Adverts"
|
598 |
msgstr "Advertenties beheren"
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
msgid "Manage Groups"
|
602 |
msgstr "Beheer Groepen"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
msgid "Manage Schedules"
|
606 |
msgstr "Schema's beheren"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
msgid "Manage Media"
|
610 |
msgstr "Beheer Media"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
#: dashboard/publisher/adverts-edit.php:178
|
614 |
#: dashboard/publisher/statistics-main.php:23
|
615 |
#: dashboard/settings/statistics.php:17
|
616 |
msgid "Statistics"
|
617 |
msgstr "Statistieken"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
msgid "Get AdRotate Pro"
|
621 |
msgstr "Koop AdRotate Pro"
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
msgid "Support"
|
625 |
msgstr "Ondersteuning"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
msgid "Settings"
|
629 |
msgstr "Instellingen"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
msgid "Get AdRotate Professional"
|
633 |
msgstr "Koop AdRotate Professional"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "Manage"
|
637 |
msgstr "Beheren"
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid "Advert Generator"
|
641 |
msgstr "Advertentie Generator"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid "New Advert"
|
645 |
msgstr "Nieuwe advertentie"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid "Add New"
|
649 |
msgstr "Nieuw"
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Manage Media and Assets"
|
653 |
msgstr "Media en assets beheren"
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid ""
|
657 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
658 |
"if you have HTML5 adverts containing multiple files."
|
@@ -660,39 +676,39 @@ msgstr ""
|
|
660 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
661 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "Advert Statistics"
|
665 |
msgstr "Statistieken voor advertenties"
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "AdRotate Support"
|
669 |
msgstr "Ondersteuning voor AdRotate"
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid "AdRotate Settings"
|
673 |
msgstr "AdRotate-instellingen"
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid "General"
|
677 |
msgstr "Algemeen"
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
msgid "Notifications"
|
681 |
msgstr "Meldingen"
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
msgid "Geo Targeting"
|
685 |
msgstr "Geo-targeting"
|
686 |
|
687 |
-
#: adrotate.php:
|
688 |
msgid "Access Roles"
|
689 |
msgstr "Rollen"
|
690 |
|
691 |
-
#: adrotate.php:
|
692 |
msgid "Miscellaneous"
|
693 |
msgstr "Diversen"
|
694 |
|
695 |
-
#: adrotate.php:
|
696 |
msgid "Maintenance"
|
697 |
msgstr "Onderhoud"
|
698 |
|
@@ -1428,7 +1444,7 @@ msgid "Expires soon"
|
|
1428 |
msgstr "Verloopt binnenkort"
|
1429 |
|
1430 |
#: dashboard/publisher/adverts-error.php:67
|
1431 |
-
#: dashboard/settings/maintenance.php:
|
1432 |
msgid "Expired"
|
1433 |
msgstr "Verlopen"
|
1434 |
|
@@ -2043,8 +2059,7 @@ msgstr "U staat op het punt een groep te verwijderen"
|
|
2043 |
msgid "This action can not be undone!"
|
2044 |
msgstr "Deze actie kan niet ongedaan worden gemaakt!"
|
2045 |
|
2046 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
2047 |
-
#: dashboard/settings/maintenance.php:101
|
2048 |
msgid "OK to continue, CANCEL to stop."
|
2049 |
msgstr "OK om door te gaan, annuleren om te stoppen."
|
2050 |
|
@@ -2469,7 +2484,7 @@ msgstr "Meer informatie over"
|
|
2469 |
msgid "user-agents"
|
2470 |
msgstr "gebruikersagenten"
|
2471 |
|
2472 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2473 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2474 |
#: dashboard/settings/statistics.php:85
|
2475 |
msgid "Update Options"
|
@@ -2578,190 +2593,104 @@ msgstr "Gebruikersnaam/E-mailadres"
|
|
2578 |
msgid "Password/License Key"
|
2579 |
msgstr "Wachtwoord / licentiecode"
|
2580 |
|
2581 |
-
#: dashboard/settings/maintenance.php:
|
2582 |
-
msgid ""
|
2583 |
-
"
|
2584 |
-
"sluggish."
|
2585 |
-
msgstr "Gebruik deze functies wanneer je merkt dat de database traag word."
|
2586 |
-
|
2587 |
-
#: dashboard/settings/maintenance.php:22
|
2588 |
-
msgid "Check for errors"
|
2589 |
-
msgstr "Controleren op fouten"
|
2590 |
-
|
2591 |
-
#: dashboard/settings/maintenance.php:22
|
2592 |
-
msgid "You are about to check all adverts for errors."
|
2593 |
-
msgstr "U staat op het punt om alle advertenties te controleren op fouten."
|
2594 |
|
2595 |
-
#: dashboard/settings/maintenance.php:
|
2596 |
-
msgid "This might take a few seconds!"
|
2597 |
-
msgstr "Dit kan een paar seconden duren!"
|
2598 |
-
|
2599 |
-
#: dashboard/settings/maintenance.php:24
|
2600 |
msgid ""
|
2601 |
-
"Apply all evaluation rules to all adverts to see if any error slipped in."
|
|
|
2602 |
msgstr ""
|
2603 |
"Pas alle evaluatieregels toe op alle advertenties om te zien of er een fout "
|
2604 |
-
"is
|
2605 |
-
|
2606 |
-
#: dashboard/settings/maintenance.php:28
|
2607 |
-
msgid "Clean-up Database and Files"
|
2608 |
-
msgstr "Database en bestanden opschonen"
|
2609 |
-
|
2610 |
-
#: dashboard/settings/maintenance.php:30
|
2611 |
-
msgid "Run Clean-up"
|
2612 |
-
msgstr "Opruimen uitvoeren"
|
2613 |
-
|
2614 |
-
#: dashboard/settings/maintenance.php:30
|
2615 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2616 |
-
msgstr ""
|
2617 |
-
"Je staat op het punt om onderhoud te doen aan de installatie van AdRotate."
|
2618 |
-
|
2619 |
-
#: dashboard/settings/maintenance.php:30
|
2620 |
-
msgid ""
|
2621 |
-
"This optionally may delete old statistics and tries to delete old export "
|
2622 |
-
"files."
|
2623 |
-
msgstr ""
|
2624 |
-
"Dit kan optioneel oude statistieken verwijderen en probeert oude "
|
2625 |
-
"exportbestanden te verwijderen."
|
2626 |
|
2627 |
-
#: dashboard/settings/maintenance.php:
|
2628 |
-
msgid "Are you sure you want to continue?"
|
2629 |
-
msgstr "Weet u zeker dat u wilt doorgaan?"
|
2630 |
-
|
2631 |
-
#: dashboard/settings/maintenance.php:30
|
2632 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2633 |
-
msgstr "DEZE ACTIE KAN NIET ONGEDAAN WORDEN GEMAAKT!"
|
2634 |
-
|
2635 |
-
#: dashboard/settings/maintenance.php:32
|
2636 |
-
msgid "Basic database maintenance."
|
2637 |
-
msgstr "Basis databaseonderhoud."
|
2638 |
-
|
2639 |
-
#: dashboard/settings/maintenance.php:33
|
2640 |
-
msgid "Delete stats older than 365 days."
|
2641 |
-
msgstr "Verwijder statistieken ouder dan 365 dagen."
|
2642 |
-
|
2643 |
-
#: dashboard/settings/maintenance.php:34
|
2644 |
-
msgid "Delete leftover export files."
|
2645 |
-
msgstr "Verwijder overgebleven exportbestanden."
|
2646 |
-
|
2647 |
-
#: dashboard/settings/maintenance.php:35
|
2648 |
-
msgid ""
|
2649 |
-
"For when you create an advert, group or schedule and it does not save or "
|
2650 |
-
"keep changes you make."
|
2651 |
-
msgstr ""
|
2652 |
-
"Voor wanneer je een advertentie, groep of schema maakt en de aangebrachte "
|
2653 |
-
"wijzigingen niet worden opgeslagen of bewaard."
|
2654 |
-
|
2655 |
-
#: dashboard/settings/maintenance.php:35
|
2656 |
-
msgid ""
|
2657 |
-
"Additionally you can delete statistics and/or unused export files. This will "
|
2658 |
-
"improve the speed of your site."
|
2659 |
-
msgstr ""
|
2660 |
-
"Daarnaast kun je oude schema's, statistieken, weggegooide advertenties "
|
2661 |
-
"verwijderen. Het uitvoeren van deze routine van tijd tot tijd kan de "
|
2662 |
-
"snelheid van de site te verbeteren."
|
2663 |
-
|
2664 |
-
#: dashboard/settings/maintenance.php:39
|
2665 |
-
msgid ""
|
2666 |
-
"DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
2667 |
-
"database or clean up overhead data. They only apply to your ads/groups and "
|
2668 |
-
"stats. Not to other settings or other parts of WordPress! Always always make "
|
2669 |
-
"a backup! If for any reason your data is lost, damaged or otherwise becomes "
|
2670 |
-
"unusable in any way or by any means in whichever way I will not take "
|
2671 |
-
"responsibility. You should always have a backup of your database. These "
|
2672 |
-
"functions do NOT destroy data. If data is lost, damaged or unusable in any "
|
2673 |
-
"way, your database likely was beyond repair already. Claiming it worked "
|
2674 |
-
"before clicking these buttons is not a valid point in any case."
|
2675 |
-
msgstr ""
|
2676 |
-
"DISCLAIMER: De bovenstaande functies zijn bedoeld om te worden gebruikt om "
|
2677 |
-
"de database te optimaliseren. Ze zijn alleen van toepassing op uw "
|
2678 |
-
"advertenties / groepen en statistieken. Niet naar andere instellingen of "
|
2679 |
-
"andere delen van WordPress! Maak altijd een back-up! Als om welke reden dan "
|
2680 |
-
"ook uw gegevens verloren gaan, beschadigd of anderszins onbruikbaar worden "
|
2681 |
-
"op welke manier dan ook op welke manier dan ook zal ik geen "
|
2682 |
-
"verantwoordelijkheid nemen. U moet altijd een back-up van uw database "
|
2683 |
-
"hebben. Deze functies vernietigen geen gegevens. Als gegevens op enigerlei "
|
2684 |
-
"wijze verloren, beschadigd of onbruikbaar zijn, is uw database "
|
2685 |
-
"waarschijnlijk al niet meer te repareren. Beweren dat het werkte voordat u "
|
2686 |
-
"op deze knoppen klikt, is in ieder geval geen geldig punt."
|
2687 |
-
|
2688 |
-
#: dashboard/settings/maintenance.php:41
|
2689 |
msgid "Status and Versions"
|
2690 |
msgstr "Status en versies"
|
2691 |
|
2692 |
-
#: dashboard/settings/maintenance.php:
|
2693 |
msgid "Current status of adverts"
|
2694 |
msgstr "Huidige status van advertenties"
|
2695 |
|
2696 |
-
#: dashboard/settings/maintenance.php:
|
2697 |
msgid "Normal"
|
2698 |
msgstr "Normaal"
|
2699 |
|
2700 |
-
#: dashboard/settings/maintenance.php:
|
2701 |
msgid "Error"
|
2702 |
msgstr "Fout"
|
2703 |
|
2704 |
-
#: dashboard/settings/maintenance.php:
|
2705 |
msgid "Expires Soon"
|
2706 |
msgstr "Verloopt binnenkort"
|
2707 |
|
2708 |
-
#: dashboard/settings/maintenance.php:
|
2709 |
msgid "Unknown"
|
2710 |
msgstr "Onbekend"
|
2711 |
|
2712 |
-
#: dashboard/settings/maintenance.php:
|
2713 |
msgid "Banners/assets Folder"
|
2714 |
msgstr "Map Banners/assets"
|
2715 |
|
2716 |
-
#: dashboard/settings/maintenance.php:
|
2717 |
msgid "Exists and appears writable"
|
2718 |
msgstr "Bestaat en lijkt beschrijfbaar"
|
2719 |
|
2720 |
-
#: dashboard/settings/maintenance.php:
|
2721 |
msgid "Not writable or does not exist"
|
2722 |
msgstr "Niet beschrijfbaar of bestaat niet"
|
2723 |
|
2724 |
-
#: dashboard/settings/maintenance.php:
|
2725 |
msgid "Reports Folder"
|
2726 |
msgstr "Map rapporten"
|
2727 |
|
2728 |
-
#: dashboard/settings/maintenance.php:
|
2729 |
msgid "Advert evaluation"
|
2730 |
msgstr "Advertentie-evaluatie"
|
2731 |
|
2732 |
-
#: dashboard/settings/maintenance.php:
|
2733 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2734 |
msgstr "Niet gepland! Activeer de plug-in opnieuw vanaf de pagina plug-ins."
|
2735 |
|
2736 |
-
#: dashboard/settings/maintenance.php:
|
2737 |
msgid "Clean Trackerdata"
|
2738 |
msgstr "Trackerdata opschonen"
|
2739 |
|
2740 |
-
#: dashboard/settings/maintenance.php:
|
2741 |
msgid "Not scheduled!"
|
2742 |
msgstr "Niet gepland!"
|
2743 |
|
2744 |
-
#: dashboard/settings/maintenance.php:
|
2745 |
msgid "Background tasks"
|
2746 |
msgstr "Achtergrondtaken"
|
2747 |
|
2748 |
-
#: dashboard/settings/maintenance.php:
|
2749 |
msgid "Reset background tasks"
|
2750 |
msgstr "Achtergrondtaken opnieuw instellen"
|
2751 |
|
2752 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2753 |
msgid "Unsupported plugins"
|
2754 |
msgstr "Niet-ondersteunde plugins"
|
2755 |
|
2756 |
-
#: dashboard/settings/maintenance.php:
|
2757 |
msgid "Disable 3rd party plugins"
|
2758 |
msgstr "Schakel niet-ondersteunde plugins uit"
|
2759 |
|
2760 |
-
#: dashboard/settings/maintenance.php:
|
2761 |
msgid "One or more unsupported 3rd party plugins detected."
|
2762 |
msgstr "Één of meer niet ondersteunde plugins gedetecteerd."
|
2763 |
|
2764 |
-
#: dashboard/settings/maintenance.php:
|
2765 |
msgid ""
|
2766 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2767 |
"dashboard which may affect security and/or stability."
|
@@ -2769,11 +2698,11 @@ msgstr ""
|
|
2769 |
"Dit zijn plugins die delen van het AdRotate dashboard overnemen wat de "
|
2770 |
"stabiliteit en veiligheid kan beinvloeden."
|
2771 |
|
2772 |
-
#: dashboard/settings/maintenance.php:
|
2773 |
msgid "Internal Versions"
|
2774 |
msgstr "Interne versies"
|
2775 |
|
2776 |
-
#: dashboard/settings/maintenance.php:
|
2777 |
msgid ""
|
2778 |
"Unless you experience database issues or a warning shows below, these "
|
2779 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
@@ -2783,52 +2712,52 @@ msgstr ""
|
|
2783 |
"deze nummers niet echt relevant voor het oplossen van problemen. "
|
2784 |
"Ondersteuning kan hen vragen om uw databasestatus te verifiëren."
|
2785 |
|
2786 |
-
#: dashboard/settings/maintenance.php:
|
2787 |
msgid "AdRotate version"
|
2788 |
msgstr "Versie AdRotate"
|
2789 |
|
2790 |
-
#: dashboard/settings/maintenance.php:
|
2791 |
msgid "Current:"
|
2792 |
msgstr "Huidige pagina:"
|
2793 |
|
2794 |
-
#: dashboard/settings/maintenance.php:
|
2795 |
msgid "Should be:"
|
2796 |
msgstr "Moet zijn:"
|
2797 |
|
2798 |
-
#: dashboard/settings/maintenance.php:
|
2799 |
msgid "Previous:"
|
2800 |
msgstr "Vorige:"
|
2801 |
|
2802 |
-
#: dashboard/settings/maintenance.php:
|
2803 |
msgid "Database version"
|
2804 |
msgstr "Databaseversie"
|
2805 |
|
2806 |
-
#: dashboard/settings/maintenance.php:
|
2807 |
msgid "Manual upgrade"
|
2808 |
msgstr "Handmatige upgrade"
|
2809 |
|
2810 |
-
#: dashboard/settings/maintenance.php:
|
2811 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2812 |
msgstr "U staat op het punt een handmatige update voor adrotate te doen."
|
2813 |
|
2814 |
-
#: dashboard/settings/maintenance.php:
|
2815 |
msgid "Make sure you have a database backup!"
|
2816 |
msgstr "Zorg ervoor dat je een database back-up hebt!"
|
2817 |
|
2818 |
-
#: dashboard/settings/maintenance.php:
|
2819 |
msgid "This might take a while and may slow down your site during this action!"
|
2820 |
msgstr ""
|
2821 |
"Dit kan een tijdje duren en kan de website vertragen tijdens deze actie!"
|
2822 |
|
2823 |
-
#: dashboard/settings/maintenance.php:
|
2824 |
msgid "Run updater"
|
2825 |
msgstr "Updater uitvoeren"
|
2826 |
|
2827 |
-
#: dashboard/settings/misc.php:
|
2828 |
msgid "Widget alignment"
|
2829 |
msgstr "Uitlijning van het object"
|
2830 |
|
2831 |
-
#: dashboard/settings/misc.php:
|
2832 |
msgid ""
|
2833 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2834 |
"not always help!)"
|
@@ -2836,11 +2765,11 @@ msgstr ""
|
|
2836 |
"Schakel dit selectievakje in als de widgets niet in de zijbalk van het thema "
|
2837 |
"worden uitgelijnd. (Helpt niet altijd!)"
|
2838 |
|
2839 |
-
#: dashboard/settings/misc.php:
|
2840 |
msgid "Widget padding"
|
2841 |
msgstr "Opvulling van widgets"
|
2842 |
|
2843 |
-
#: dashboard/settings/misc.php:
|
2844 |
msgid ""
|
2845 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2846 |
"not always work!)"
|
@@ -2848,18 +2777,18 @@ msgstr ""
|
|
2848 |
"Schakel dit in om de opvulling (lege ruimte) rond advertenties in widgets te "
|
2849 |
"verwijderen. (Werkt niet altijd!)"
|
2850 |
|
2851 |
-
#: dashboard/settings/misc.php:
|
2852 |
msgid "NOTICE:"
|
2853 |
msgstr "LET OP:"
|
2854 |
|
2855 |
-
#: dashboard/settings/misc.php:
|
2856 |
msgid ""
|
2857 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2858 |
msgstr ""
|
2859 |
"Je hebt W3 Total Caching-ondersteuning ingeschakeld, maar hebt de "
|
2860 |
"beveiligingshash niet gedefinieerd."
|
2861 |
|
2862 |
-
#: dashboard/settings/misc.php:
|
2863 |
msgid ""
|
2864 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2865 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
@@ -2870,27 +2799,27 @@ msgstr ""
|
|
2870 |
"weet hoe deze regel moet worden toevoegen, raadpleeg dan eerst de "
|
2871 |
"handleiding;"
|
2872 |
|
2873 |
-
#: dashboard/settings/misc.php:
|
2874 |
msgid "Set up W3 Total Caching"
|
2875 |
msgstr "W3 Total Caching instellen"
|
2876 |
|
2877 |
-
#: dashboard/settings/misc.php:
|
2878 |
msgid "W3 Total Caching"
|
2879 |
msgstr "W3 Total Caching"
|
2880 |
|
2881 |
-
#: dashboard/settings/misc.php:
|
2882 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2883 |
msgstr "Schakel deze optie in als je W3 Total Caching gebruikt."
|
2884 |
|
2885 |
-
#: dashboard/settings/misc.php:
|
2886 |
msgid "Borlabs Cache"
|
2887 |
msgstr "Borlabs Cache"
|
2888 |
|
2889 |
-
#: dashboard/settings/misc.php:
|
2890 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2891 |
msgstr "Schakel deze optie in als je Borlabs Caching op de site gebruikt."
|
2892 |
|
2893 |
-
#: dashboard/settings/misc.php:
|
2894 |
msgid ""
|
2895 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2896 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -2899,7 +2828,7 @@ msgstr ""
|
|
2899 |
"worden vernieuwd. Dit kan een paar dagen duren als dit niet handmatig "
|
2900 |
"gebeurt."
|
2901 |
|
2902 |
-
#: dashboard/settings/misc.php:
|
2903 |
msgid ""
|
2904 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2905 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -3313,6 +3242,88 @@ msgstr ""
|
|
3313 |
"codes of lay-outstijlen kunnen worden toegepast bij het bewerken van de "
|
3314 |
"groep."
|
3315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3316 |
#~ msgid "Check all adverts for configuration errors"
|
3317 |
#~ msgstr "Alle advertenties controleren op configuratiefouten"
|
3318 |
|
@@ -3912,9 +3923,6 @@ msgstr ""
|
|
3912 |
#~ msgid "Schedule saved"
|
3913 |
#~ msgstr "Schema opgeslagen"
|
3914 |
|
3915 |
-
#~ msgid "Schedule(s) deleted"
|
3916 |
-
#~ msgstr "Schema(s) verwijderd"
|
3917 |
-
|
3918 |
#~ msgid "Advert(s) duplicated"
|
3919 |
#~ msgstr "Advertentie(s) gedupliceerd"
|
3920 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:25-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-11-14 17:25-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr "AdRotate - Advertenties"
|
23 |
|
24 |
+
#: adrotate-functions.php:795
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Advertentie opgeslagen"
|
27 |
|
28 |
+
#: adrotate-functions.php:799
|
29 |
msgid "Group saved"
|
30 |
msgstr "Groep bewaard"
|
31 |
|
32 |
+
#: adrotate-functions.php:803
|
33 |
msgid "Banner image saved"
|
34 |
msgstr "Advertentie afbeelding opgeslagen"
|
35 |
|
36 |
+
#: adrotate-functions.php:807
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr "Advertentie(s) verwijderd"
|
39 |
|
40 |
+
#: adrotate-functions.php:811
|
41 |
msgid "Group deleted"
|
42 |
msgstr "Groep verwijderd"
|
43 |
|
44 |
+
#: adrotate-functions.php:815
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr "Asset(s) verwijderd"
|
47 |
|
48 |
+
#: adrotate-functions.php:819
|
49 |
msgid ""
|
50 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
51 |
"are in order."
|
53 |
"Er is iets mis gegaan met het verwijderen van het bestand of de map. Zorg "
|
54 |
"ervoor dat de permissies in orde zijn."
|
55 |
|
56 |
+
#: adrotate-functions.php:823
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Advertentie(s) statistieken gereset"
|
59 |
|
60 |
+
#: adrotate-functions.php:827
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Advertentie(s) vernieuwd"
|
63 |
|
64 |
+
#: adrotate-functions.php:831
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Advertentie(s) gedeactiveerd"
|
67 |
|
68 |
+
#: adrotate-functions.php:835
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Advertentie(s) geactiveerd"
|
71 |
|
72 |
+
#: adrotate-functions.php:839
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Groep inclusief advertenties verwijderd"
|
75 |
|
76 |
+
#: adrotate-functions.php:843
|
77 |
msgid "Export created"
|
78 |
msgstr "Export gemaakt"
|
79 |
|
80 |
+
#: adrotate-functions.php:847
|
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 |
"advertentie hieronder. Vergeet niet om alle instellingen te controleren en "
|
87 |
"de advertentie te plannen."
|
88 |
|
89 |
+
#: adrotate-functions.php:852
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Instellingen opgeslagen"
|
92 |
|
93 |
+
#: adrotate-functions.php:856
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Database geoptimaliseerd"
|
96 |
|
97 |
+
#: adrotate-functions.php:860
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Database is hersteld"
|
100 |
|
101 |
+
#: adrotate-functions.php:864
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Advertenties geëvalueerd en statussen zijn waar nodig gecorrigeerd"
|
104 |
|
105 |
+
#: adrotate-functions.php:868
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Opschonen voltooid"
|
108 |
|
109 |
+
#: adrotate-functions.php:872
|
110 |
+
msgid "Scheduled tasks reset"
|
111 |
+
msgstr "Geplande taken opnieuw instellen"
|
112 |
+
|
113 |
+
#: adrotate-functions.php:876
|
114 |
+
msgid ""
|
115 |
+
"If there were any 3rd party plugins interfering with AdRotate they have been "
|
116 |
+
"disabled"
|
117 |
+
msgstr ""
|
118 |
+
"Als er 3rd party plug-ins waren die AdRotate verstoorden, zijn ze "
|
119 |
+
"uitgeschakeld"
|
120 |
+
|
121 |
+
#: adrotate-functions.php:880
|
122 |
+
msgid "Database updated"
|
123 |
+
msgstr "Database bijgewerkt"
|
124 |
+
|
125 |
+
#: adrotate-functions.php:885
|
126 |
msgid "Action prohibited"
|
127 |
msgstr "Actie niet toegestaan"
|
128 |
|
129 |
+
#: adrotate-functions.php:889
|
130 |
msgid ""
|
131 |
"The advert was saved but has an issue which might prevent it from working "
|
132 |
"properly. Review the colored advert."
|
134 |
"De advertentie is opgeslagen, maar heeft een probleem waardoor het mogelijk "
|
135 |
"niet goed werkt. Bekijk de gekleurde advertentie."
|
136 |
|
137 |
+
#: adrotate-functions.php:893
|
138 |
msgid "No data found in selected time period"
|
139 |
msgstr "Geen gegevens gevonden in geselecteerde tijdsperiode"
|
140 |
|
141 |
+
#: adrotate-functions.php:897
|
142 |
msgid "Database can only be optimized or cleaned once every hour"
|
143 |
msgstr ""
|
144 |
"Database kan slechts eenmaal per uur worden geoptimaliseerd of opgeschoond"
|
145 |
|
146 |
+
#: adrotate-functions.php:901
|
147 |
msgid "Form can not be (partially) empty!"
|
148 |
msgstr "Formulier kan niet (gedeeltelijk) leeg zijn!"
|
149 |
|
150 |
+
#: adrotate-functions.php:905
|
151 |
msgid "No file uploaded."
|
152 |
msgstr "Geen bestand geüpload."
|
153 |
|
154 |
+
#: adrotate-functions.php:909
|
155 |
msgid "No adverts found."
|
156 |
msgstr "Geen advertenties gevonden."
|
157 |
|
158 |
+
#: adrotate-functions.php:913
|
159 |
msgid "Wrong file type. No file uploaded."
|
160 |
msgstr "Onjuist bestandstype. Er is geen bestand geüpload."
|
161 |
|
162 |
+
#: adrotate-functions.php:917
|
163 |
msgid "No file selected or file is too large."
|
164 |
msgstr "Geen bestand geselecteerd of het bestand is te groot."
|
165 |
|
166 |
+
#: adrotate-functions.php:921
|
167 |
msgid "There was an error unzipping the file. Please try again later."
|
168 |
msgstr ""
|
169 |
"Er was een fout bij het uitpakken van het bestand. Probeer het later opnieuw."
|
170 |
|
171 |
+
#: adrotate-functions.php:925
|
172 |
msgid ""
|
173 |
"The advert hash is not usable or is missing required data. Please copy the "
|
174 |
"hash correctly and try again."
|
176 |
"De advertentie hash is niet bruikbaar of mist vereiste informatie. Probeer "
|
177 |
"het opnieuw met een nieuwe hash."
|
178 |
|
179 |
+
#: adrotate-functions.php:929
|
180 |
msgid ""
|
181 |
"The advert hash can not be used on the same site as it originated from or is "
|
182 |
"not a valid hash for importing."
|
185 |
"gegenereerd is of de hash is niet een geldige hash voor het importeren van "
|
186 |
"een advertentie."
|
187 |
|
188 |
+
#: adrotate-functions.php:933
|
189 |
msgid "Unexpected error"
|
190 |
msgstr "Onverwachte fout"
|
191 |
|
276 |
msgstr "Er is een onbekende fout opgetreden."
|
277 |
|
278 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
279 |
+
#: dashboard/settings/maintenance.php:16
|
280 |
msgid "Check adverts"
|
281 |
msgstr "Controleer advertenties"
|
282 |
|
497 |
msgid "Use on up to FIVE WordPress installations."
|
498 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
499 |
|
500 |
+
#: adrotate-statistics.php:154
|
501 |
msgid "January"
|
502 |
msgstr "Januari"
|
503 |
|
504 |
+
#: adrotate-statistics.php:154
|
505 |
msgid "February"
|
506 |
msgstr "Februari"
|
507 |
|
508 |
+
#: adrotate-statistics.php:154
|
509 |
msgid "March"
|
510 |
msgstr "Maart"
|
511 |
|
512 |
+
#: adrotate-statistics.php:154
|
513 |
msgid "April"
|
514 |
msgstr "April"
|
515 |
|
516 |
+
#: adrotate-statistics.php:154
|
517 |
msgid "May"
|
518 |
msgstr "Mei"
|
519 |
|
520 |
+
#: adrotate-statistics.php:154
|
521 |
msgid "June"
|
522 |
msgstr "Juni"
|
523 |
|
524 |
+
#: adrotate-statistics.php:154
|
525 |
msgid "July"
|
526 |
msgstr "Juli"
|
527 |
|
528 |
+
#: adrotate-statistics.php:154
|
529 |
msgid "August"
|
530 |
msgstr "Augustus"
|
531 |
|
532 |
+
#: adrotate-statistics.php:154
|
533 |
msgid "September"
|
534 |
msgstr "September"
|
535 |
|
536 |
+
#: adrotate-statistics.php:154
|
537 |
msgid "October"
|
538 |
msgstr "Oktober"
|
539 |
|
540 |
+
#: adrotate-statistics.php:154
|
541 |
msgid "November"
|
542 |
msgstr "November"
|
543 |
|
544 |
+
#: adrotate-statistics.php:154
|
545 |
msgid "December"
|
546 |
msgstr "December"
|
547 |
|
548 |
+
#: adrotate-statistics.php:163
|
549 |
msgid "Previous"
|
550 |
msgstr "Vorige"
|
551 |
|
552 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
553 |
#: dashboard/publisher/statistics-group.php:73
|
554 |
#: dashboard/publisher/statistics-main.php:48
|
555 |
msgid "This month"
|
556 |
msgstr "Deze maand"
|
557 |
|
558 |
+
#: adrotate-statistics.php:166
|
559 |
msgid "Next"
|
560 |
msgstr "Volgende"
|
561 |
|
562 |
+
#: adrotate-statistics.php:220
|
563 |
msgid "No data to show!"
|
564 |
msgstr "Geen gegevens om te laten zien!"
|
565 |
|
566 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
567 |
msgid "Not found"
|
568 |
msgstr "Niet gevonden"
|
569 |
|
609 |
msgid "Fill in the ID of the type you want to display!"
|
610 |
msgstr "Vul het ID in van het type dat je wilt weergeven!"
|
611 |
|
612 |
+
#: adrotate.php:104 adrotate.php:174
|
613 |
msgid "Manage Adverts"
|
614 |
msgstr "Advertenties beheren"
|
615 |
|
616 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
617 |
msgid "Manage Groups"
|
618 |
msgstr "Beheer Groepen"
|
619 |
|
620 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
621 |
msgid "Manage Schedules"
|
622 |
msgstr "Schema's beheren"
|
623 |
|
624 |
+
#: adrotate.php:107
|
625 |
msgid "Manage Media"
|
626 |
msgstr "Beheer Media"
|
627 |
|
628 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
629 |
#: dashboard/publisher/adverts-edit.php:178
|
630 |
#: dashboard/publisher/statistics-main.php:23
|
631 |
#: dashboard/settings/statistics.php:17
|
632 |
msgid "Statistics"
|
633 |
msgstr "Statistieken"
|
634 |
|
635 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
636 |
msgid "Get AdRotate Pro"
|
637 |
msgstr "Koop AdRotate Pro"
|
638 |
|
639 |
+
#: adrotate.php:110
|
640 |
msgid "Support"
|
641 |
msgstr "Ondersteuning"
|
642 |
|
643 |
+
#: adrotate.php:111
|
644 |
msgid "Settings"
|
645 |
msgstr "Instellingen"
|
646 |
|
647 |
+
#: adrotate.php:130
|
648 |
msgid "Get AdRotate Professional"
|
649 |
msgstr "Koop AdRotate Professional"
|
650 |
|
651 |
+
#: adrotate.php:234 adrotate.php:306
|
652 |
msgid "Manage"
|
653 |
msgstr "Beheren"
|
654 |
|
655 |
+
#: adrotate.php:235
|
656 |
msgid "Advert Generator"
|
657 |
msgstr "Advertentie Generator"
|
658 |
|
659 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
660 |
msgid "New Advert"
|
661 |
msgstr "Nieuwe advertentie"
|
662 |
|
663 |
+
#: adrotate.php:307
|
664 |
msgid "Add New"
|
665 |
msgstr "Nieuw"
|
666 |
|
667 |
+
#: adrotate.php:375
|
668 |
msgid "Manage Media and Assets"
|
669 |
msgstr "Media en assets beheren"
|
670 |
|
671 |
+
#: adrotate.php:379
|
672 |
msgid ""
|
673 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
674 |
"if you have HTML5 adverts containing multiple files."
|
676 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
677 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
678 |
|
679 |
+
#: adrotate.php:421
|
680 |
msgid "Advert Statistics"
|
681 |
msgstr "Statistieken voor advertenties"
|
682 |
|
683 |
+
#: adrotate.php:464
|
684 |
msgid "AdRotate Support"
|
685 |
msgstr "Ondersteuning voor AdRotate"
|
686 |
|
687 |
+
#: adrotate.php:510
|
688 |
msgid "AdRotate Settings"
|
689 |
msgstr "AdRotate-instellingen"
|
690 |
|
691 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
692 |
msgid "General"
|
693 |
msgstr "Algemeen"
|
694 |
|
695 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
696 |
msgid "Notifications"
|
697 |
msgstr "Meldingen"
|
698 |
|
699 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
700 |
msgid "Geo Targeting"
|
701 |
msgstr "Geo-targeting"
|
702 |
|
703 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
704 |
msgid "Access Roles"
|
705 |
msgstr "Rollen"
|
706 |
|
707 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
708 |
msgid "Miscellaneous"
|
709 |
msgstr "Diversen"
|
710 |
|
711 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
712 |
msgid "Maintenance"
|
713 |
msgstr "Onderhoud"
|
714 |
|
1444 |
msgstr "Verloopt binnenkort"
|
1445 |
|
1446 |
#: dashboard/publisher/adverts-error.php:67
|
1447 |
+
#: dashboard/settings/maintenance.php:30
|
1448 |
msgid "Expired"
|
1449 |
msgstr "Verlopen"
|
1450 |
|
2059 |
msgid "This action can not be undone!"
|
2060 |
msgstr "Deze actie kan niet ongedaan worden gemaakt!"
|
2061 |
|
2062 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
2063 |
msgid "OK to continue, CANCEL to stop."
|
2064 |
msgstr "OK om door te gaan, annuleren om te stoppen."
|
2065 |
|
2484 |
msgid "user-agents"
|
2485 |
msgstr "gebruikersagenten"
|
2486 |
|
2487 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2488 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2489 |
#: dashboard/settings/statistics.php:85
|
2490 |
msgid "Update Options"
|
2593 |
msgid "Password/License Key"
|
2594 |
msgstr "Wachtwoord / licentiecode"
|
2595 |
|
2596 |
+
#: dashboard/settings/maintenance.php:18
|
2597 |
+
msgid "Check ads for errors"
|
2598 |
+
msgstr "Advertenties controleren op fouten"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2599 |
|
2600 |
+
#: dashboard/settings/maintenance.php:21
|
|
|
|
|
|
|
|
|
2601 |
msgid ""
|
2602 |
+
"Apply all evaluation rules to all adverts to see if any error slipped in. "
|
2603 |
+
"This may take a few seconds."
|
2604 |
msgstr ""
|
2605 |
"Pas alle evaluatieregels toe op alle advertenties om te zien of er een fout "
|
2606 |
+
"is binnengeslopen. Dit kan enkele seconden duren."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2607 |
|
2608 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2609 |
msgid "Status and Versions"
|
2610 |
msgstr "Status en versies"
|
2611 |
|
2612 |
+
#: dashboard/settings/maintenance.php:29
|
2613 |
msgid "Current status of adverts"
|
2614 |
msgstr "Huidige status van advertenties"
|
2615 |
|
2616 |
+
#: dashboard/settings/maintenance.php:30
|
2617 |
msgid "Normal"
|
2618 |
msgstr "Normaal"
|
2619 |
|
2620 |
+
#: dashboard/settings/maintenance.php:30
|
2621 |
msgid "Error"
|
2622 |
msgstr "Fout"
|
2623 |
|
2624 |
+
#: dashboard/settings/maintenance.php:30
|
2625 |
msgid "Expires Soon"
|
2626 |
msgstr "Verloopt binnenkort"
|
2627 |
|
2628 |
+
#: dashboard/settings/maintenance.php:30
|
2629 |
msgid "Unknown"
|
2630 |
msgstr "Onbekend"
|
2631 |
|
2632 |
+
#: dashboard/settings/maintenance.php:33
|
2633 |
msgid "Banners/assets Folder"
|
2634 |
msgstr "Map Banners/assets"
|
2635 |
|
2636 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2637 |
msgid "Exists and appears writable"
|
2638 |
msgstr "Bestaat en lijkt beschrijfbaar"
|
2639 |
|
2640 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2641 |
msgid "Not writable or does not exist"
|
2642 |
msgstr "Niet beschrijfbaar of bestaat niet"
|
2643 |
|
2644 |
+
#: dashboard/settings/maintenance.php:42
|
2645 |
msgid "Reports Folder"
|
2646 |
msgstr "Map rapporten"
|
2647 |
|
2648 |
+
#: dashboard/settings/maintenance.php:51
|
2649 |
msgid "Advert evaluation"
|
2650 |
msgstr "Advertentie-evaluatie"
|
2651 |
|
2652 |
+
#: dashboard/settings/maintenance.php:52
|
2653 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2654 |
msgstr "Niet gepland! Activeer de plug-in opnieuw vanaf de pagina plug-ins."
|
2655 |
|
2656 |
+
#: dashboard/settings/maintenance.php:53
|
2657 |
msgid "Clean Trackerdata"
|
2658 |
msgstr "Trackerdata opschonen"
|
2659 |
|
2660 |
+
#: dashboard/settings/maintenance.php:54
|
2661 |
msgid "Not scheduled!"
|
2662 |
msgstr "Niet gepland!"
|
2663 |
|
2664 |
+
#: dashboard/settings/maintenance.php:57
|
2665 |
msgid "Background tasks"
|
2666 |
msgstr "Achtergrondtaken"
|
2667 |
|
2668 |
+
#: dashboard/settings/maintenance.php:59
|
2669 |
msgid "Reset background tasks"
|
2670 |
msgstr "Achtergrondtaken opnieuw instellen"
|
2671 |
|
2672 |
+
#: dashboard/settings/maintenance.php:62
|
2673 |
+
msgid ""
|
2674 |
+
"If automated tasks such as expiring adverts does not work reliable or one of "
|
2675 |
+
"the above schedules is missing use this button to reset the tasks."
|
2676 |
+
msgstr ""
|
2677 |
+
"Als geautomatiseerde taken zoals verlopen advertenties niet betrouwbaar "
|
2678 |
+
"werken of een van de bovenstaande schema's ontbreekt, gebruikt u deze knop "
|
2679 |
+
"om de taken opnieuw in te stellen."
|
2680 |
+
|
2681 |
+
#: dashboard/settings/maintenance.php:66
|
2682 |
msgid "Unsupported plugins"
|
2683 |
msgstr "Niet-ondersteunde plugins"
|
2684 |
|
2685 |
+
#: dashboard/settings/maintenance.php:68
|
2686 |
msgid "Disable 3rd party plugins"
|
2687 |
msgstr "Schakel niet-ondersteunde plugins uit"
|
2688 |
|
2689 |
+
#: dashboard/settings/maintenance.php:70
|
2690 |
msgid "One or more unsupported 3rd party plugins detected."
|
2691 |
msgstr "Één of meer niet ondersteunde plugins gedetecteerd."
|
2692 |
|
2693 |
+
#: dashboard/settings/maintenance.php:72
|
2694 |
msgid ""
|
2695 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2696 |
"dashboard which may affect security and/or stability."
|
2698 |
"Dit zijn plugins die delen van het AdRotate dashboard overnemen wat de "
|
2699 |
"stabiliteit en veiligheid kan beinvloeden."
|
2700 |
|
2701 |
+
#: dashboard/settings/maintenance.php:77
|
2702 |
msgid "Internal Versions"
|
2703 |
msgstr "Interne versies"
|
2704 |
|
2705 |
+
#: dashboard/settings/maintenance.php:78
|
2706 |
msgid ""
|
2707 |
"Unless you experience database issues or a warning shows below, these "
|
2708 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
2712 |
"deze nummers niet echt relevant voor het oplossen van problemen. "
|
2713 |
"Ondersteuning kan hen vragen om uw databasestatus te verifiëren."
|
2714 |
|
2715 |
+
#: dashboard/settings/maintenance.php:81
|
2716 |
msgid "AdRotate version"
|
2717 |
msgstr "Versie AdRotate"
|
2718 |
|
2719 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2720 |
msgid "Current:"
|
2721 |
msgstr "Huidige pagina:"
|
2722 |
|
2723 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2724 |
msgid "Should be:"
|
2725 |
msgstr "Moet zijn:"
|
2726 |
|
2727 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2728 |
msgid "Previous:"
|
2729 |
msgstr "Vorige:"
|
2730 |
|
2731 |
+
#: dashboard/settings/maintenance.php:83
|
2732 |
msgid "Database version"
|
2733 |
msgstr "Databaseversie"
|
2734 |
|
2735 |
+
#: dashboard/settings/maintenance.php:87
|
2736 |
msgid "Manual upgrade"
|
2737 |
msgstr "Handmatige upgrade"
|
2738 |
|
2739 |
+
#: dashboard/settings/maintenance.php:89
|
2740 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2741 |
msgstr "U staat op het punt een handmatige update voor adrotate te doen."
|
2742 |
|
2743 |
+
#: dashboard/settings/maintenance.php:89
|
2744 |
msgid "Make sure you have a database backup!"
|
2745 |
msgstr "Zorg ervoor dat je een database back-up hebt!"
|
2746 |
|
2747 |
+
#: dashboard/settings/maintenance.php:89
|
2748 |
msgid "This might take a while and may slow down your site during this action!"
|
2749 |
msgstr ""
|
2750 |
"Dit kan een tijdje duren en kan de website vertragen tijdens deze actie!"
|
2751 |
|
2752 |
+
#: dashboard/settings/maintenance.php:89
|
2753 |
msgid "Run updater"
|
2754 |
msgstr "Updater uitvoeren"
|
2755 |
|
2756 |
+
#: dashboard/settings/misc.php:122
|
2757 |
msgid "Widget alignment"
|
2758 |
msgstr "Uitlijning van het object"
|
2759 |
|
2760 |
+
#: dashboard/settings/misc.php:123
|
2761 |
msgid ""
|
2762 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2763 |
"not always help!)"
|
2765 |
"Schakel dit selectievakje in als de widgets niet in de zijbalk van het thema "
|
2766 |
"worden uitgelijnd. (Helpt niet altijd!)"
|
2767 |
|
2768 |
+
#: dashboard/settings/misc.php:126
|
2769 |
msgid "Widget padding"
|
2770 |
msgstr "Opvulling van widgets"
|
2771 |
|
2772 |
+
#: dashboard/settings/misc.php:127
|
2773 |
msgid ""
|
2774 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2775 |
"not always work!)"
|
2777 |
"Schakel dit in om de opvulling (lege ruimte) rond advertenties in widgets te "
|
2778 |
"verwijderen. (Werkt niet altijd!)"
|
2779 |
|
2780 |
+
#: dashboard/settings/misc.php:131
|
2781 |
msgid "NOTICE:"
|
2782 |
msgstr "LET OP:"
|
2783 |
|
2784 |
+
#: dashboard/settings/misc.php:132
|
2785 |
msgid ""
|
2786 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2787 |
msgstr ""
|
2788 |
"Je hebt W3 Total Caching-ondersteuning ingeschakeld, maar hebt de "
|
2789 |
"beveiligingshash niet gedefinieerd."
|
2790 |
|
2791 |
+
#: dashboard/settings/misc.php:132
|
2792 |
msgid ""
|
2793 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2794 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
2799 |
"weet hoe deze regel moet worden toevoegen, raadpleeg dan eerst de "
|
2800 |
"handleiding;"
|
2801 |
|
2802 |
+
#: dashboard/settings/misc.php:132
|
2803 |
msgid "Set up W3 Total Caching"
|
2804 |
msgstr "W3 Total Caching instellen"
|
2805 |
|
2806 |
+
#: dashboard/settings/misc.php:136
|
2807 |
msgid "W3 Total Caching"
|
2808 |
msgstr "W3 Total Caching"
|
2809 |
|
2810 |
+
#: dashboard/settings/misc.php:137
|
2811 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2812 |
msgstr "Schakel deze optie in als je W3 Total Caching gebruikt."
|
2813 |
|
2814 |
+
#: dashboard/settings/misc.php:140
|
2815 |
msgid "Borlabs Cache"
|
2816 |
msgstr "Borlabs Cache"
|
2817 |
|
2818 |
+
#: dashboard/settings/misc.php:141
|
2819 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2820 |
msgstr "Schakel deze optie in als je Borlabs Caching op de site gebruikt."
|
2821 |
|
2822 |
+
#: dashboard/settings/misc.php:145
|
2823 |
msgid ""
|
2824 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2825 |
"to refresh the cache. This can take up to a week if not done manually."
|
2828 |
"worden vernieuwd. Dit kan een paar dagen duren als dit niet handmatig "
|
2829 |
"gebeurt."
|
2830 |
|
2831 |
+
#: dashboard/settings/misc.php:145
|
2832 |
msgid ""
|
2833 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2834 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
3242 |
"codes of lay-outstijlen kunnen worden toegepast bij het bewerken van de "
|
3243 |
"groep."
|
3244 |
|
3245 |
+
#~ msgid ""
|
3246 |
+
#~ "Use these functions when you notice your database is slow, unresponsive "
|
3247 |
+
#~ "and sluggish."
|
3248 |
+
#~ msgstr "Gebruik deze functies wanneer je merkt dat de database traag word."
|
3249 |
+
|
3250 |
+
#~ msgid "You are about to check all adverts for errors."
|
3251 |
+
#~ msgstr "U staat op het punt om alle advertenties te controleren op fouten."
|
3252 |
+
|
3253 |
+
#~ msgid "This might take a few seconds!"
|
3254 |
+
#~ msgstr "Dit kan een paar seconden duren!"
|
3255 |
+
|
3256 |
+
#~ msgid "Clean-up Database and Files"
|
3257 |
+
#~ msgstr "Database en bestanden opschonen"
|
3258 |
+
|
3259 |
+
#~ msgid "Run Clean-up"
|
3260 |
+
#~ msgstr "Opruimen uitvoeren"
|
3261 |
+
|
3262 |
+
#~ msgid "You are about to do maintenance on your setup of AdRotate."
|
3263 |
+
#~ msgstr ""
|
3264 |
+
#~ "Je staat op het punt om onderhoud te doen aan de installatie van AdRotate."
|
3265 |
+
|
3266 |
+
#~ msgid ""
|
3267 |
+
#~ "This optionally may delete old statistics and tries to delete old export "
|
3268 |
+
#~ "files."
|
3269 |
+
#~ msgstr ""
|
3270 |
+
#~ "Dit kan optioneel oude statistieken verwijderen en probeert oude "
|
3271 |
+
#~ "exportbestanden te verwijderen."
|
3272 |
+
|
3273 |
+
#~ msgid "Are you sure you want to continue?"
|
3274 |
+
#~ msgstr "Weet u zeker dat u wilt doorgaan?"
|
3275 |
+
|
3276 |
+
#~ msgid "THIS ACTION CAN NOT BE UNDONE!"
|
3277 |
+
#~ msgstr "DEZE ACTIE KAN NIET ONGEDAAN WORDEN GEMAAKT!"
|
3278 |
+
|
3279 |
+
#~ msgid "Basic database maintenance."
|
3280 |
+
#~ msgstr "Basis databaseonderhoud."
|
3281 |
+
|
3282 |
+
#~ msgid "Delete stats older than 365 days."
|
3283 |
+
#~ msgstr "Verwijder statistieken ouder dan 365 dagen."
|
3284 |
+
|
3285 |
+
#~ msgid "Delete leftover export files."
|
3286 |
+
#~ msgstr "Verwijder overgebleven exportbestanden."
|
3287 |
+
|
3288 |
+
#~ msgid ""
|
3289 |
+
#~ "For when you create an advert, group or schedule and it does not save or "
|
3290 |
+
#~ "keep changes you make."
|
3291 |
+
#~ msgstr ""
|
3292 |
+
#~ "Voor wanneer je een advertentie, groep of schema maakt en de aangebrachte "
|
3293 |
+
#~ "wijzigingen niet worden opgeslagen of bewaard."
|
3294 |
+
|
3295 |
+
#~ msgid ""
|
3296 |
+
#~ "Additionally you can delete statistics and/or unused export files. This "
|
3297 |
+
#~ "will improve the speed of your site."
|
3298 |
+
#~ msgstr ""
|
3299 |
+
#~ "Daarnaast kun je oude schema's, statistieken, weggegooide advertenties "
|
3300 |
+
#~ "verwijderen. Het uitvoeren van deze routine van tijd tot tijd kan de "
|
3301 |
+
#~ "snelheid van de site te verbeteren."
|
3302 |
+
|
3303 |
+
#~ msgid ""
|
3304 |
+
#~ "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
3305 |
+
#~ "database or clean up overhead data. They only apply to your ads/groups "
|
3306 |
+
#~ "and stats. Not to other settings or other parts of WordPress! Always "
|
3307 |
+
#~ "always make a backup! If for any reason your data is lost, damaged or "
|
3308 |
+
#~ "otherwise becomes unusable in any way or by any means in whichever way I "
|
3309 |
+
#~ "will not take responsibility. You should always have a backup of your "
|
3310 |
+
#~ "database. These functions do NOT destroy data. If data is lost, damaged "
|
3311 |
+
#~ "or unusable in any way, your database likely was beyond repair already. "
|
3312 |
+
#~ "Claiming it worked before clicking these buttons is not a valid point in "
|
3313 |
+
#~ "any case."
|
3314 |
+
#~ msgstr ""
|
3315 |
+
#~ "DISCLAIMER: De bovenstaande functies zijn bedoeld om te worden gebruikt "
|
3316 |
+
#~ "om de database te optimaliseren. Ze zijn alleen van toepassing op uw "
|
3317 |
+
#~ "advertenties / groepen en statistieken. Niet naar andere instellingen of "
|
3318 |
+
#~ "andere delen van WordPress! Maak altijd een back-up! Als om welke reden "
|
3319 |
+
#~ "dan ook uw gegevens verloren gaan, beschadigd of anderszins onbruikbaar "
|
3320 |
+
#~ "worden op welke manier dan ook op welke manier dan ook zal ik geen "
|
3321 |
+
#~ "verantwoordelijkheid nemen. U moet altijd een back-up van uw database "
|
3322 |
+
#~ "hebben. Deze functies vernietigen geen gegevens. Als gegevens op "
|
3323 |
+
#~ "enigerlei wijze verloren, beschadigd of onbruikbaar zijn, is uw database "
|
3324 |
+
#~ "waarschijnlijk al niet meer te repareren. Beweren dat het werkte voordat "
|
3325 |
+
#~ "u op deze knoppen klikt, is in ieder geval geen geldig punt."
|
3326 |
+
|
3327 |
#~ msgid "Check all adverts for configuration errors"
|
3328 |
#~ msgstr "Alle advertenties controleren op configuratiefouten"
|
3329 |
|
3923 |
#~ msgid "Schedule saved"
|
3924 |
#~ msgstr "Schema opgeslagen"
|
3925 |
|
|
|
|
|
|
|
3926 |
#~ msgid "Advert(s) duplicated"
|
3927 |
#~ msgstr "Advertentie(s) gedupliceerd"
|
3928 |
|
language/adrotate-pl_PL.mo
CHANGED
Binary file
|
language/adrotate-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -26,62 +26,62 @@ msgstr ""
|
|
26 |
msgid "AdRotate - Advertisements"
|
27 |
msgstr "AdRotate - Ogłoszenia"
|
28 |
|
29 |
-
#: adrotate-functions.php:
|
30 |
msgid "Advert saved"
|
31 |
msgstr "Reklama zapisana"
|
32 |
|
33 |
-
#: adrotate-functions.php:
|
34 |
msgid "Group saved"
|
35 |
msgstr "Grupa zapisana"
|
36 |
|
37 |
-
#: adrotate-functions.php:
|
38 |
msgid "Banner image saved"
|
39 |
msgstr "Zapisano obraz banera"
|
40 |
|
41 |
-
#: adrotate-functions.php:
|
42 |
msgid "Ad(s) deleted"
|
43 |
msgstr "Reklamy usunięte"
|
44 |
|
45 |
-
#: adrotate-functions.php:
|
46 |
msgid "Group deleted"
|
47 |
msgstr "Grupa usunięta"
|
48 |
|
49 |
-
#: adrotate-functions.php:
|
50 |
msgid "Asset(s) deleted"
|
51 |
msgstr "Zasoby usunięte"
|
52 |
|
53 |
-
#: adrotate-functions.php:
|
54 |
msgid ""
|
55 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
56 |
"are in order."
|
57 |
msgstr ""
|
58 |
"Usuwanie pliku lub folderu nie powiodło się. Proszę sprawdzić uprawnienia."
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) statistics reset"
|
62 |
msgstr "Resetowanie statystyk reklam"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) renewed"
|
66 |
msgstr "Reklamy odnowione"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Advert(s) deactivated"
|
70 |
msgstr "Reklamy dezaktywowane"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Advert(s) activated"
|
74 |
msgstr "Reklamy aktywowane"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Group including the Adverts in it deleted"
|
78 |
msgstr "Grupa, w tym usunięte w niej reklamy"
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid "Export created"
|
82 |
msgstr "Eksport utworzony"
|
83 |
|
84 |
-
#: adrotate-functions.php:
|
85 |
msgid ""
|
86 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
87 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -90,32 +90,47 @@ msgstr ""
|
|
90 |
"ogłoszenie poniżej. Nie zapomnij sprawdzić wszystkich ustawień i zaplanować "
|
91 |
"ogłoszenie."
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Settings saved"
|
95 |
msgstr "Ustawienia zapisane"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database optimized"
|
99 |
msgstr "Baza danych zoptymalizowana"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Database repaired"
|
103 |
msgstr "Baza danych naprawiona"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
107 |
msgstr ""
|
108 |
"Ocenione reklamy i statusy zostały poprawione tam, gdzie jest to wymagane"
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
111 |
msgid "Cleanup complete"
|
112 |
msgstr "Czyszczenie zakończone"
|
113 |
|
114 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
msgid "Action prohibited"
|
116 |
msgstr "Czynność zabroniona"
|
117 |
|
118 |
-
#: adrotate-functions.php:
|
119 |
msgid ""
|
120 |
"The advert was saved but has an issue which might prevent it from working "
|
121 |
"properly. Review the colored advert."
|
@@ -123,39 +138,39 @@ msgstr ""
|
|
123 |
"Ogłoszenie zostało zapisane, ale ma problem, który może uniemożliwić jej "
|
124 |
"prawidłowe działanie. Przejrzyj kolorową reklamę."
|
125 |
|
126 |
-
#: adrotate-functions.php:
|
127 |
msgid "No data found in selected time period"
|
128 |
msgstr "Brak danych dla podanego przedziału czasowego"
|
129 |
|
130 |
-
#: adrotate-functions.php:
|
131 |
msgid "Database can only be optimized or cleaned once every hour"
|
132 |
msgstr "Bazę danych może optymalizować lub czyścić raz na godzinę"
|
133 |
|
134 |
-
#: adrotate-functions.php:
|
135 |
msgid "Form can not be (partially) empty!"
|
136 |
msgstr "Formularz nie może być (częściowo) pusty!"
|
137 |
|
138 |
-
#: adrotate-functions.php:
|
139 |
msgid "No file uploaded."
|
140 |
msgstr "Nie wysłano pliku."
|
141 |
|
142 |
-
#: adrotate-functions.php:
|
143 |
msgid "No adverts found."
|
144 |
msgstr "Nie znaleziono ogłoszeń."
|
145 |
|
146 |
-
#: adrotate-functions.php:
|
147 |
msgid "Wrong file type. No file uploaded."
|
148 |
msgstr "Nieprawidłowy typ pliku. Nie przesłano pliku."
|
149 |
|
150 |
-
#: adrotate-functions.php:
|
151 |
msgid "No file selected or file is too large."
|
152 |
msgstr "Żaden plik lub plik nie jest zbyt duży."
|
153 |
|
154 |
-
#: adrotate-functions.php:
|
155 |
msgid "There was an error unzipping the file. Please try again later."
|
156 |
msgstr "Wystąpił błąd podczas odgrywania pliku. Spróbuj ponownie później."
|
157 |
|
158 |
-
#: adrotate-functions.php:
|
159 |
msgid ""
|
160 |
"The advert hash is not usable or is missing required data. Please copy the "
|
161 |
"hash correctly and try again."
|
@@ -163,7 +178,7 @@ msgstr ""
|
|
163 |
"Skrót reklamy nie nadaje się do zamieszkania lub brakuje wymaganych danych. "
|
164 |
"Skopiuj skrót poprawnie i spróbuj ponownie."
|
165 |
|
166 |
-
#: adrotate-functions.php:
|
167 |
msgid ""
|
168 |
"The advert hash can not be used on the same site as it originated from or is "
|
169 |
"not a valid hash for importing."
|
@@ -171,7 +186,7 @@ msgstr ""
|
|
171 |
"Skrót reklamy nie może być używany w tej samej witrynie, z której pochodzi "
|
172 |
"lub nie jest prawidłowym skrótem do importowania."
|
173 |
|
174 |
-
#: adrotate-functions.php:
|
175 |
msgid "Unexpected error"
|
176 |
msgstr "Nieoczekiwany błąd"
|
177 |
|
@@ -266,7 +281,7 @@ msgstr[1] "%1$s reklamy wygasły!"
|
|
266 |
msgstr[2] "%1$s reklam wygasło!"
|
267 |
|
268 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
269 |
-
#: dashboard/settings/maintenance.php:
|
270 |
msgid "Check adverts"
|
271 |
msgstr "Sprawdź reklamy"
|
272 |
|
@@ -504,73 +519,73 @@ msgstr "Multi licencja"
|
|
504 |
msgid "Use on up to FIVE WordPress installations."
|
505 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
506 |
|
507 |
-
#: adrotate-statistics.php:
|
508 |
msgid "January"
|
509 |
msgstr "Styczeń"
|
510 |
|
511 |
-
#: adrotate-statistics.php:
|
512 |
msgid "February"
|
513 |
msgstr "Luty"
|
514 |
|
515 |
-
#: adrotate-statistics.php:
|
516 |
msgid "March"
|
517 |
msgstr "Marzec"
|
518 |
|
519 |
-
#: adrotate-statistics.php:
|
520 |
msgid "April"
|
521 |
msgstr "Kwiecień"
|
522 |
|
523 |
-
#: adrotate-statistics.php:
|
524 |
msgid "May"
|
525 |
msgstr "Maj"
|
526 |
|
527 |
-
#: adrotate-statistics.php:
|
528 |
msgid "June"
|
529 |
msgstr "Czerwiec"
|
530 |
|
531 |
-
#: adrotate-statistics.php:
|
532 |
msgid "July"
|
533 |
msgstr "Lipiec"
|
534 |
|
535 |
-
#: adrotate-statistics.php:
|
536 |
msgid "August"
|
537 |
msgstr "Sierpień"
|
538 |
|
539 |
-
#: adrotate-statistics.php:
|
540 |
msgid "September"
|
541 |
msgstr "Wrzesień"
|
542 |
|
543 |
-
#: adrotate-statistics.php:
|
544 |
msgid "October"
|
545 |
msgstr "Pażdziernik"
|
546 |
|
547 |
-
#: adrotate-statistics.php:
|
548 |
msgid "November"
|
549 |
msgstr "Listopad"
|
550 |
|
551 |
-
#: adrotate-statistics.php:
|
552 |
msgid "December"
|
553 |
msgstr "Grudzień"
|
554 |
|
555 |
-
#: adrotate-statistics.php:
|
556 |
msgid "Previous"
|
557 |
msgstr "Poprzedni"
|
558 |
|
559 |
-
#: adrotate-statistics.php:
|
560 |
#: dashboard/publisher/statistics-group.php:73
|
561 |
#: dashboard/publisher/statistics-main.php:48
|
562 |
msgid "This month"
|
563 |
msgstr "Obecny miesiąc"
|
564 |
|
565 |
-
#: adrotate-statistics.php:
|
566 |
msgid "Next"
|
567 |
msgstr "Następny"
|
568 |
|
569 |
-
#: adrotate-statistics.php:
|
570 |
msgid "No data to show!"
|
571 |
msgstr "Brak danych do wyświetlenia!"
|
572 |
|
573 |
-
#: adrotate-statistics.php:
|
574 |
msgid "Not found"
|
575 |
msgstr "Nie znaleziono"
|
576 |
|
@@ -615,66 +630,66 @@ msgstr "ID:"
|
|
615 |
msgid "Fill in the ID of the type you want to display!"
|
616 |
msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
|
617 |
|
618 |
-
#: adrotate.php:
|
619 |
msgid "Manage Adverts"
|
620 |
msgstr "Zarządzaj reklamami"
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
msgid "Manage Groups"
|
624 |
msgstr "Zarządzaj grupami"
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
msgid "Manage Schedules"
|
628 |
msgstr "Zarządzaj harmonogramami"
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
msgid "Manage Media"
|
632 |
msgstr "Zarządzaj mediami"
|
633 |
|
634 |
-
#: adrotate.php:
|
635 |
#: dashboard/publisher/adverts-edit.php:178
|
636 |
#: dashboard/publisher/statistics-main.php:23
|
637 |
#: dashboard/settings/statistics.php:17
|
638 |
msgid "Statistics"
|
639 |
msgstr "Statystyka"
|
640 |
|
641 |
-
#: adrotate.php:
|
642 |
msgid "Get AdRotate Pro"
|
643 |
msgstr "Pobierz AdRotate Pro"
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
msgid "Support"
|
647 |
msgstr "Wsparcie"
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
msgid "Settings"
|
651 |
msgstr "Ustawienia"
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
msgid "Get AdRotate Professional"
|
655 |
msgstr "Uzyskaj AdRotate Professional"
|
656 |
|
657 |
-
#: adrotate.php:
|
658 |
msgid "Manage"
|
659 |
msgstr "Zarządzaj"
|
660 |
|
661 |
-
#: adrotate.php:
|
662 |
msgid "Advert Generator"
|
663 |
msgstr "Generator reklam"
|
664 |
|
665 |
-
#: adrotate.php:
|
666 |
msgid "New Advert"
|
667 |
msgstr "Nowa reklama"
|
668 |
|
669 |
-
#: adrotate.php:
|
670 |
msgid "Add New"
|
671 |
msgstr "Dodaj nową"
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
msgid "Manage Media and Assets"
|
675 |
msgstr "Zarządzanie multimediami i zasobami"
|
676 |
|
677 |
-
#: adrotate.php:
|
678 |
msgid ""
|
679 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
680 |
"if you have HTML5 adverts containing multiple files."
|
@@ -682,39 +697,39 @@ msgstr ""
|
|
682 |
"Przesyłać obrazy do folderu banery AdRotate Pro stąd. Jest to przydatne, "
|
683 |
"jeśli masz reklamy HTML5, zawierające wiele plików."
|
684 |
|
685 |
-
#: adrotate.php:
|
686 |
msgid "Advert Statistics"
|
687 |
msgstr "Statystyki reklam"
|
688 |
|
689 |
-
#: adrotate.php:
|
690 |
msgid "AdRotate Support"
|
691 |
msgstr "Pomoc techniczna adrotate"
|
692 |
|
693 |
-
#: adrotate.php:
|
694 |
msgid "AdRotate Settings"
|
695 |
msgstr "Ustawienia AdRotate"
|
696 |
|
697 |
-
#: adrotate.php:
|
698 |
msgid "General"
|
699 |
msgstr "Ogólne"
|
700 |
|
701 |
-
#: adrotate.php:
|
702 |
msgid "Notifications"
|
703 |
msgstr "Powiadomienia"
|
704 |
|
705 |
-
#: adrotate.php:
|
706 |
msgid "Geo Targeting"
|
707 |
msgstr "Geolokalizacja"
|
708 |
|
709 |
-
#: adrotate.php:
|
710 |
msgid "Access Roles"
|
711 |
msgstr "Rola programu Access"
|
712 |
|
713 |
-
#: adrotate.php:
|
714 |
msgid "Miscellaneous"
|
715 |
msgstr "Różne"
|
716 |
|
717 |
-
#: adrotate.php:
|
718 |
msgid "Maintenance"
|
719 |
msgstr "Obsługa"
|
720 |
|
@@ -1433,7 +1448,7 @@ msgid "Expires soon"
|
|
1433 |
msgstr "Wygasa wkrótce"
|
1434 |
|
1435 |
#: dashboard/publisher/adverts-error.php:67
|
1436 |
-
#: dashboard/settings/maintenance.php:
|
1437 |
msgid "Expired"
|
1438 |
msgstr "Wygasa"
|
1439 |
|
@@ -2032,8 +2047,7 @@ msgstr "Zamierzasz usunąć grupę reklam"
|
|
2032 |
msgid "This action can not be undone!"
|
2033 |
msgstr "Tej operacji nie można cofnąć!"
|
2034 |
|
2035 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
2036 |
-
#: dashboard/settings/maintenance.php:101
|
2037 |
msgid "OK to continue, CANCEL to stop."
|
2038 |
msgstr "Naciśnij OK, by kontynuować, Anuluj by zatrzymać."
|
2039 |
|
@@ -2452,7 +2466,7 @@ msgstr "Dowiedź się więcej"
|
|
2452 |
msgid "user-agents"
|
2453 |
msgstr "identyfikatory przeglądarek"
|
2454 |
|
2455 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2456 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2457 |
#: dashboard/settings/statistics.php:85
|
2458 |
msgid "Update Options"
|
@@ -2560,190 +2574,104 @@ msgstr "Ustawienia/e-mail"
|
|
2560 |
msgid "Password/License Key"
|
2561 |
msgstr "Hasło/klucz licencyjny"
|
2562 |
|
2563 |
-
#: dashboard/settings/maintenance.php:
|
2564 |
-
msgid ""
|
2565 |
-
"
|
2566 |
-
"sluggish."
|
2567 |
-
msgstr ""
|
2568 |
-
"Użyj tych funkcji, gdy zauważysz, że baza danych jest powolna, nie odpowiada "
|
2569 |
-
"i powolna."
|
2570 |
-
|
2571 |
-
#: dashboard/settings/maintenance.php:22
|
2572 |
-
msgid "Check for errors"
|
2573 |
-
msgstr "Sprawdzanie błędów"
|
2574 |
-
|
2575 |
-
#: dashboard/settings/maintenance.php:22
|
2576 |
-
msgid "You are about to check all adverts for errors."
|
2577 |
-
msgstr "Masz zamiar sprawdzić wszystkie ogłoszenia pod kątem błędów."
|
2578 |
-
|
2579 |
-
#: dashboard/settings/maintenance.php:22
|
2580 |
-
msgid "This might take a few seconds!"
|
2581 |
-
msgstr "Może to potrwać kilka sekund!"
|
2582 |
-
|
2583 |
-
#: dashboard/settings/maintenance.php:24
|
2584 |
-
msgid ""
|
2585 |
-
"Apply all evaluation rules to all adverts to see if any error slipped in."
|
2586 |
-
msgstr ""
|
2587 |
-
"Zastosuj wszystkie reguł do każdej reklamy w celu wykrycia ewentualnych "
|
2588 |
-
"błędów."
|
2589 |
-
|
2590 |
-
#: dashboard/settings/maintenance.php:28
|
2591 |
-
msgid "Clean-up Database and Files"
|
2592 |
-
msgstr "Oczyszczanie bazy danych i plików"
|
2593 |
-
|
2594 |
-
#: dashboard/settings/maintenance.php:30
|
2595 |
-
msgid "Run Clean-up"
|
2596 |
-
msgstr "Uruchom czyszczenie"
|
2597 |
-
|
2598 |
-
#: dashboard/settings/maintenance.php:30
|
2599 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2600 |
-
msgstr "Masz zamiar wykonać konserwację konfiguracji AdRotate."
|
2601 |
-
|
2602 |
-
#: dashboard/settings/maintenance.php:30
|
2603 |
-
msgid ""
|
2604 |
-
"This optionally may delete old statistics and tries to delete old export "
|
2605 |
-
"files."
|
2606 |
-
msgstr ""
|
2607 |
-
"Opcjonalnie może to usunąć stare statystyki i próbę usunięcia starych plików "
|
2608 |
-
"eksportu."
|
2609 |
-
|
2610 |
-
#: dashboard/settings/maintenance.php:30
|
2611 |
-
msgid "Are you sure you want to continue?"
|
2612 |
-
msgstr "Na pewno kontynuować?"
|
2613 |
-
|
2614 |
-
#: dashboard/settings/maintenance.php:30
|
2615 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2616 |
-
msgstr "TEJ AKCJI NIE MOŻNA COFNĄĆ!"
|
2617 |
-
|
2618 |
-
#: dashboard/settings/maintenance.php:32
|
2619 |
-
msgid "Basic database maintenance."
|
2620 |
-
msgstr "Podstawowa konserwacja bazy danych."
|
2621 |
-
|
2622 |
-
#: dashboard/settings/maintenance.php:33
|
2623 |
-
msgid "Delete stats older than 365 days."
|
2624 |
-
msgstr "Usuń statystyki starsze niż 365 dni."
|
2625 |
-
|
2626 |
-
#: dashboard/settings/maintenance.php:34
|
2627 |
-
msgid "Delete leftover export files."
|
2628 |
-
msgstr "Usuń pozostałości plików eksportu."
|
2629 |
|
2630 |
-
#: dashboard/settings/maintenance.php:
|
2631 |
msgid ""
|
2632 |
-
"
|
2633 |
-
"
|
2634 |
msgstr ""
|
2635 |
-
"
|
2636 |
-
"
|
2637 |
|
2638 |
-
#: dashboard/settings/maintenance.php:
|
2639 |
-
msgid ""
|
2640 |
-
"Additionally you can delete statistics and/or unused export files. This will "
|
2641 |
-
"improve the speed of your site."
|
2642 |
-
msgstr ""
|
2643 |
-
"Dodatkowo można usunąć statystyki i/lub nieużywane pliki eksportu. Poprawi "
|
2644 |
-
"to szybkość Twojej witryny."
|
2645 |
-
|
2646 |
-
#: dashboard/settings/maintenance.php:39
|
2647 |
-
msgid ""
|
2648 |
-
"DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
2649 |
-
"database or clean up overhead data. They only apply to your ads/groups and "
|
2650 |
-
"stats. Not to other settings or other parts of WordPress! Always always make "
|
2651 |
-
"a backup! If for any reason your data is lost, damaged or otherwise becomes "
|
2652 |
-
"unusable in any way or by any means in whichever way I will not take "
|
2653 |
-
"responsibility. You should always have a backup of your database. These "
|
2654 |
-
"functions do NOT destroy data. If data is lost, damaged or unusable in any "
|
2655 |
-
"way, your database likely was beyond repair already. Claiming it worked "
|
2656 |
-
"before clicking these buttons is not a valid point in any case."
|
2657 |
-
msgstr ""
|
2658 |
-
"ZASTRZEŻENIE: Powyższe funkcje mają być używane do optymalizacji bazy danych "
|
2659 |
-
"lub czyszczenia danych napowietrznych. Mają one zastosowanie tylko do reklam/"
|
2660 |
-
"grup i statystyk. Nie do innych ustawień lub innych części WordPress! Zawsze "
|
2661 |
-
"zawsze tworzyć kopie zapasowe! Jeśli z jakiegokolwiek powodu Twoje dane "
|
2662 |
-
"zostaną utracone, uszkodzone lub w inny sposób staną się bezużyteczne w "
|
2663 |
-
"jakikolwiek sposób lub w jakikolwiek sposób, w jakikolwiek sposób nie wezmę "
|
2664 |
-
"odpowiedzialności. Zawsze powinieneś mieć kopię zapasową bazy danych. "
|
2665 |
-
"Funkcje te NIE niszczą danych. Jeśli dane są tracone, uszkodzone lub "
|
2666 |
-
"bezużyteczne w jakikolwiek sposób, baza danych prawdopodobnie była już nie "
|
2667 |
-
"do naprawienia. Twierdząc, że pracował przed kliknięciem tych przycisków nie "
|
2668 |
-
"jest prawidłowym punktem w każdym przypadku."
|
2669 |
-
|
2670 |
-
#: dashboard/settings/maintenance.php:41
|
2671 |
msgid "Status and Versions"
|
2672 |
msgstr "Status i wersje"
|
2673 |
|
2674 |
-
#: dashboard/settings/maintenance.php:
|
2675 |
msgid "Current status of adverts"
|
2676 |
msgstr "Bieżący stan reklam"
|
2677 |
|
2678 |
-
#: dashboard/settings/maintenance.php:
|
2679 |
msgid "Normal"
|
2680 |
msgstr "Zwykły"
|
2681 |
|
2682 |
-
#: dashboard/settings/maintenance.php:
|
2683 |
msgid "Error"
|
2684 |
msgstr "Błąd"
|
2685 |
|
2686 |
-
#: dashboard/settings/maintenance.php:
|
2687 |
msgid "Expires Soon"
|
2688 |
msgstr "Wygasa wkrótce"
|
2689 |
|
2690 |
-
#: dashboard/settings/maintenance.php:
|
2691 |
msgid "Unknown"
|
2692 |
msgstr "Nieznany"
|
2693 |
|
2694 |
-
#: dashboard/settings/maintenance.php:
|
2695 |
msgid "Banners/assets Folder"
|
2696 |
msgstr "Folder reklam"
|
2697 |
|
2698 |
-
#: dashboard/settings/maintenance.php:
|
2699 |
msgid "Exists and appears writable"
|
2700 |
msgstr "Istnieje i jest zapisywalny"
|
2701 |
|
2702 |
-
#: dashboard/settings/maintenance.php:
|
2703 |
msgid "Not writable or does not exist"
|
2704 |
msgstr "Nie istnieje lub nie jest zapisywalny"
|
2705 |
|
2706 |
-
#: dashboard/settings/maintenance.php:
|
2707 |
msgid "Reports Folder"
|
2708 |
msgstr "Folder raportów"
|
2709 |
|
2710 |
-
#: dashboard/settings/maintenance.php:
|
2711 |
msgid "Advert evaluation"
|
2712 |
msgstr "Weryfikacja reklam"
|
2713 |
|
2714 |
-
#: dashboard/settings/maintenance.php:
|
2715 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2716 |
msgstr "Nie zaplanowano! Włącz wtyczkę na karcie wtyczek."
|
2717 |
|
2718 |
-
#: dashboard/settings/maintenance.php:
|
2719 |
msgid "Clean Trackerdata"
|
2720 |
msgstr "Czyszczenie danych śledzenia"
|
2721 |
|
2722 |
-
#: dashboard/settings/maintenance.php:
|
2723 |
msgid "Not scheduled!"
|
2724 |
msgstr "Niezaplanowane!"
|
2725 |
|
2726 |
-
#: dashboard/settings/maintenance.php:
|
2727 |
msgid "Background tasks"
|
2728 |
msgstr "Zadania w tle"
|
2729 |
|
2730 |
-
#: dashboard/settings/maintenance.php:
|
2731 |
msgid "Reset background tasks"
|
2732 |
msgstr "Resetuj zadania w tle"
|
2733 |
|
2734 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2735 |
msgid "Unsupported plugins"
|
2736 |
msgstr "Nieobsługiwały wtyczki"
|
2737 |
|
2738 |
-
#: dashboard/settings/maintenance.php:
|
2739 |
msgid "Disable 3rd party plugins"
|
2740 |
msgstr "Wyłącz wtyczki innych firm"
|
2741 |
|
2742 |
-
#: dashboard/settings/maintenance.php:
|
2743 |
msgid "One or more unsupported 3rd party plugins detected."
|
2744 |
msgstr "Wykryto co najmniej jedną nieobsługiconą wtyczkę innych firm."
|
2745 |
|
2746 |
-
#: dashboard/settings/maintenance.php:
|
2747 |
msgid ""
|
2748 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2749 |
"dashboard which may affect security and/or stability."
|
@@ -2751,11 +2679,11 @@ msgstr ""
|
|
2751 |
"Są to wtyczki, które zmieniają funkcje AdRotate lub highjack części deski "
|
2752 |
"rozdzielczej, które mogą mieć wpływ na bezpieczeństwo i / lub stabilność."
|
2753 |
|
2754 |
-
#: dashboard/settings/maintenance.php:
|
2755 |
msgid "Internal Versions"
|
2756 |
msgstr "Wersje wewnętrzne"
|
2757 |
|
2758 |
-
#: dashboard/settings/maintenance.php:
|
2759 |
msgid ""
|
2760 |
"Unless you experience database issues or a warning shows below, these "
|
2761 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
@@ -2765,52 +2693,52 @@ msgstr ""
|
|
2765 |
"liczby nie pomagają w rozwiązaniu problemów. Pomoc techniczna może poprosić "
|
2766 |
"o te dane do weryfikacji stanu bazy danych."
|
2767 |
|
2768 |
-
#: dashboard/settings/maintenance.php:
|
2769 |
msgid "AdRotate version"
|
2770 |
msgstr "Wersja AdRotate"
|
2771 |
|
2772 |
-
#: dashboard/settings/maintenance.php:
|
2773 |
msgid "Current:"
|
2774 |
msgstr "Aktualna:"
|
2775 |
|
2776 |
-
#: dashboard/settings/maintenance.php:
|
2777 |
msgid "Should be:"
|
2778 |
msgstr "Powinna być:"
|
2779 |
|
2780 |
-
#: dashboard/settings/maintenance.php:
|
2781 |
msgid "Previous:"
|
2782 |
msgstr "Poprzednia:"
|
2783 |
|
2784 |
-
#: dashboard/settings/maintenance.php:
|
2785 |
msgid "Database version"
|
2786 |
msgstr "Wersja bazy danych"
|
2787 |
|
2788 |
-
#: dashboard/settings/maintenance.php:
|
2789 |
msgid "Manual upgrade"
|
2790 |
msgstr "Ręczna aktualizacja"
|
2791 |
|
2792 |
-
#: dashboard/settings/maintenance.php:
|
2793 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2794 |
msgstr "Zamierzasz ręcznie aktualizować AdRotate."
|
2795 |
|
2796 |
-
#: dashboard/settings/maintenance.php:
|
2797 |
msgid "Make sure you have a database backup!"
|
2798 |
msgstr "Upewnij się, że masz kopię zapasową bazy danych!"
|
2799 |
|
2800 |
-
#: dashboard/settings/maintenance.php:
|
2801 |
msgid "This might take a while and may slow down your site during this action!"
|
2802 |
msgstr ""
|
2803 |
"To może zająć chwilę i spowolnić Twoją stronę podczas trwania operacji!"
|
2804 |
|
2805 |
-
#: dashboard/settings/maintenance.php:
|
2806 |
msgid "Run updater"
|
2807 |
msgstr "Uruchom aktualizację"
|
2808 |
|
2809 |
-
#: dashboard/settings/misc.php:
|
2810 |
msgid "Widget alignment"
|
2811 |
msgstr "Wyrównanie widżetu"
|
2812 |
|
2813 |
-
#: dashboard/settings/misc.php:
|
2814 |
msgid ""
|
2815 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2816 |
"not always help!)"
|
@@ -2818,11 +2746,11 @@ msgstr ""
|
|
2818 |
"Zaznacz, jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
|
2819 |
"pomaga!)"
|
2820 |
|
2821 |
-
#: dashboard/settings/misc.php:
|
2822 |
msgid "Widget padding"
|
2823 |
msgstr "Pusta przestrzeń widżetu"
|
2824 |
|
2825 |
-
#: dashboard/settings/misc.php:
|
2826 |
msgid ""
|
2827 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2828 |
"not always work!)"
|
@@ -2830,17 +2758,17 @@ msgstr ""
|
|
2830 |
"Włącz tę funkcję, aby usunąć wypełnienie (puste miejsce) wokół reklam w "
|
2831 |
"widżetach. (Nie zawsze działa!)"
|
2832 |
|
2833 |
-
#: dashboard/settings/misc.php:
|
2834 |
msgid "NOTICE:"
|
2835 |
msgstr "UWAGA:"
|
2836 |
|
2837 |
-
#: dashboard/settings/misc.php:
|
2838 |
msgid ""
|
2839 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2840 |
msgstr ""
|
2841 |
"Włączyłeś obsługę W3 Total Caching, ale nie zdefiniowano kodu bezpieczeństwa."
|
2842 |
|
2843 |
-
#: dashboard/settings/misc.php:
|
2844 |
msgid ""
|
2845 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2846 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
@@ -2850,27 +2778,27 @@ msgstr ""
|
|
2850 |
"php koło linii 52 (poniżej nonces WordPress). Jeśli nie wiesz jak dodać tę "
|
2851 |
"linię, sprawdź poniższy poradnik;"
|
2852 |
|
2853 |
-
#: dashboard/settings/misc.php:
|
2854 |
msgid "Set up W3 Total Caching"
|
2855 |
msgstr "Włącz W3 Total Caching"
|
2856 |
|
2857 |
-
#: dashboard/settings/misc.php:
|
2858 |
msgid "W3 Total Caching"
|
2859 |
msgstr "W3 Total Caching"
|
2860 |
|
2861 |
-
#: dashboard/settings/misc.php:
|
2862 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2863 |
msgstr "Zaznacz, jeśli używasz W3 Total Caching na swojej stronie."
|
2864 |
|
2865 |
-
#: dashboard/settings/misc.php:
|
2866 |
msgid "Borlabs Cache"
|
2867 |
msgstr "Borlabs Cache"
|
2868 |
|
2869 |
-
#: dashboard/settings/misc.php:
|
2870 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2871 |
msgstr "Zaznacz, jeśli używasz Borlabs Cache na swojej stronie."
|
2872 |
|
2873 |
-
#: dashboard/settings/misc.php:
|
2874 |
msgid ""
|
2875 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2876 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -2879,7 +2807,7 @@ msgstr ""
|
|
2879 |
"buforująca musi odświeżyć bufor. Może zająć to do tygodnia, jeśli nie "
|
2880 |
"zostanie wykonane ręcznie."
|
2881 |
|
2882 |
-
#: dashboard/settings/misc.php:
|
2883 |
msgid ""
|
2884 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2885 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -3294,6 +3222,89 @@ msgstr ""
|
|
3294 |
"specjalne style znaczników, kodu lub układu można zastosować w opakowaniu "
|
3295 |
"grupy podczas edycji grupy."
|
3296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3297 |
#~ msgid "Check all adverts for configuration errors"
|
3298 |
#~ msgstr "Sprawdź wszystkie ogłoszenia pod kątem błędów konfiguracji"
|
3299 |
|
@@ -3914,9 +3925,6 @@ msgstr ""
|
|
3914 |
#~ msgid "Schedule saved"
|
3915 |
#~ msgstr "Harmonogram zapisany"
|
3916 |
|
3917 |
-
#~ msgid "Schedule(s) deleted"
|
3918 |
-
#~ msgstr "Harmonogramy usunięte"
|
3919 |
-
|
3920 |
#~ msgid "Advert(s) duplicated"
|
3921 |
#~ msgstr "Reklamy powielone"
|
3922 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:24-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-11-14 17:25-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Michal Rudolf <michal@rudolf.waw.pl>\n"
|
9 |
"Language: pl_PL\n"
|
26 |
msgid "AdRotate - Advertisements"
|
27 |
msgstr "AdRotate - Ogłoszenia"
|
28 |
|
29 |
+
#: adrotate-functions.php:795
|
30 |
msgid "Advert saved"
|
31 |
msgstr "Reklama zapisana"
|
32 |
|
33 |
+
#: adrotate-functions.php:799
|
34 |
msgid "Group saved"
|
35 |
msgstr "Grupa zapisana"
|
36 |
|
37 |
+
#: adrotate-functions.php:803
|
38 |
msgid "Banner image saved"
|
39 |
msgstr "Zapisano obraz banera"
|
40 |
|
41 |
+
#: adrotate-functions.php:807
|
42 |
msgid "Ad(s) deleted"
|
43 |
msgstr "Reklamy usunięte"
|
44 |
|
45 |
+
#: adrotate-functions.php:811
|
46 |
msgid "Group deleted"
|
47 |
msgstr "Grupa usunięta"
|
48 |
|
49 |
+
#: adrotate-functions.php:815
|
50 |
msgid "Asset(s) deleted"
|
51 |
msgstr "Zasoby usunięte"
|
52 |
|
53 |
+
#: adrotate-functions.php:819
|
54 |
msgid ""
|
55 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
56 |
"are in order."
|
57 |
msgstr ""
|
58 |
"Usuwanie pliku lub folderu nie powiodło się. Proszę sprawdzić uprawnienia."
|
59 |
|
60 |
+
#: adrotate-functions.php:823
|
61 |
msgid "Advert(s) statistics reset"
|
62 |
msgstr "Resetowanie statystyk reklam"
|
63 |
|
64 |
+
#: adrotate-functions.php:827
|
65 |
msgid "Advert(s) renewed"
|
66 |
msgstr "Reklamy odnowione"
|
67 |
|
68 |
+
#: adrotate-functions.php:831
|
69 |
msgid "Advert(s) deactivated"
|
70 |
msgstr "Reklamy dezaktywowane"
|
71 |
|
72 |
+
#: adrotate-functions.php:835
|
73 |
msgid "Advert(s) activated"
|
74 |
msgstr "Reklamy aktywowane"
|
75 |
|
76 |
+
#: adrotate-functions.php:839
|
77 |
msgid "Group including the Adverts in it deleted"
|
78 |
msgstr "Grupa, w tym usunięte w niej reklamy"
|
79 |
|
80 |
+
#: adrotate-functions.php:843
|
81 |
msgid "Export created"
|
82 |
msgstr "Eksport utworzony"
|
83 |
|
84 |
+
#: adrotate-functions.php:847
|
85 |
msgid ""
|
86 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
87 |
"below. Do not forget to check all settings and schedule the advert."
|
90 |
"ogłoszenie poniżej. Nie zapomnij sprawdzić wszystkich ustawień i zaplanować "
|
91 |
"ogłoszenie."
|
92 |
|
93 |
+
#: adrotate-functions.php:852
|
94 |
msgid "Settings saved"
|
95 |
msgstr "Ustawienia zapisane"
|
96 |
|
97 |
+
#: adrotate-functions.php:856
|
98 |
msgid "Database optimized"
|
99 |
msgstr "Baza danych zoptymalizowana"
|
100 |
|
101 |
+
#: adrotate-functions.php:860
|
102 |
msgid "Database repaired"
|
103 |
msgstr "Baza danych naprawiona"
|
104 |
|
105 |
+
#: adrotate-functions.php:864
|
106 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
107 |
msgstr ""
|
108 |
"Ocenione reklamy i statusy zostały poprawione tam, gdzie jest to wymagane"
|
109 |
|
110 |
+
#: adrotate-functions.php:868
|
111 |
msgid "Cleanup complete"
|
112 |
msgstr "Czyszczenie zakończone"
|
113 |
|
114 |
+
#: adrotate-functions.php:872
|
115 |
+
msgid "Scheduled tasks reset"
|
116 |
+
msgstr "Resetowanie zaplanowanych zadań"
|
117 |
+
|
118 |
+
#: adrotate-functions.php:876
|
119 |
+
msgid ""
|
120 |
+
"If there were any 3rd party plugins interfering with AdRotate they have been "
|
121 |
+
"disabled"
|
122 |
+
msgstr ""
|
123 |
+
"Jeśli były jakieś wtyczki 3rd party zakłócające AdRotate, zostały wyłączone"
|
124 |
+
|
125 |
+
#: adrotate-functions.php:880
|
126 |
+
msgid "Database updated"
|
127 |
+
msgstr "Aktualizacja bazy danych"
|
128 |
+
|
129 |
+
#: adrotate-functions.php:885
|
130 |
msgid "Action prohibited"
|
131 |
msgstr "Czynność zabroniona"
|
132 |
|
133 |
+
#: adrotate-functions.php:889
|
134 |
msgid ""
|
135 |
"The advert was saved but has an issue which might prevent it from working "
|
136 |
"properly. Review the colored advert."
|
138 |
"Ogłoszenie zostało zapisane, ale ma problem, który może uniemożliwić jej "
|
139 |
"prawidłowe działanie. Przejrzyj kolorową reklamę."
|
140 |
|
141 |
+
#: adrotate-functions.php:893
|
142 |
msgid "No data found in selected time period"
|
143 |
msgstr "Brak danych dla podanego przedziału czasowego"
|
144 |
|
145 |
+
#: adrotate-functions.php:897
|
146 |
msgid "Database can only be optimized or cleaned once every hour"
|
147 |
msgstr "Bazę danych może optymalizować lub czyścić raz na godzinę"
|
148 |
|
149 |
+
#: adrotate-functions.php:901
|
150 |
msgid "Form can not be (partially) empty!"
|
151 |
msgstr "Formularz nie może być (częściowo) pusty!"
|
152 |
|
153 |
+
#: adrotate-functions.php:905
|
154 |
msgid "No file uploaded."
|
155 |
msgstr "Nie wysłano pliku."
|
156 |
|
157 |
+
#: adrotate-functions.php:909
|
158 |
msgid "No adverts found."
|
159 |
msgstr "Nie znaleziono ogłoszeń."
|
160 |
|
161 |
+
#: adrotate-functions.php:913
|
162 |
msgid "Wrong file type. No file uploaded."
|
163 |
msgstr "Nieprawidłowy typ pliku. Nie przesłano pliku."
|
164 |
|
165 |
+
#: adrotate-functions.php:917
|
166 |
msgid "No file selected or file is too large."
|
167 |
msgstr "Żaden plik lub plik nie jest zbyt duży."
|
168 |
|
169 |
+
#: adrotate-functions.php:921
|
170 |
msgid "There was an error unzipping the file. Please try again later."
|
171 |
msgstr "Wystąpił błąd podczas odgrywania pliku. Spróbuj ponownie później."
|
172 |
|
173 |
+
#: adrotate-functions.php:925
|
174 |
msgid ""
|
175 |
"The advert hash is not usable or is missing required data. Please copy the "
|
176 |
"hash correctly and try again."
|
178 |
"Skrót reklamy nie nadaje się do zamieszkania lub brakuje wymaganych danych. "
|
179 |
"Skopiuj skrót poprawnie i spróbuj ponownie."
|
180 |
|
181 |
+
#: adrotate-functions.php:929
|
182 |
msgid ""
|
183 |
"The advert hash can not be used on the same site as it originated from or is "
|
184 |
"not a valid hash for importing."
|
186 |
"Skrót reklamy nie może być używany w tej samej witrynie, z której pochodzi "
|
187 |
"lub nie jest prawidłowym skrótem do importowania."
|
188 |
|
189 |
+
#: adrotate-functions.php:933
|
190 |
msgid "Unexpected error"
|
191 |
msgstr "Nieoczekiwany błąd"
|
192 |
|
281 |
msgstr[2] "%1$s reklam wygasło!"
|
282 |
|
283 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
284 |
+
#: dashboard/settings/maintenance.php:16
|
285 |
msgid "Check adverts"
|
286 |
msgstr "Sprawdź reklamy"
|
287 |
|
519 |
msgid "Use on up to FIVE WordPress installations."
|
520 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
521 |
|
522 |
+
#: adrotate-statistics.php:154
|
523 |
msgid "January"
|
524 |
msgstr "Styczeń"
|
525 |
|
526 |
+
#: adrotate-statistics.php:154
|
527 |
msgid "February"
|
528 |
msgstr "Luty"
|
529 |
|
530 |
+
#: adrotate-statistics.php:154
|
531 |
msgid "March"
|
532 |
msgstr "Marzec"
|
533 |
|
534 |
+
#: adrotate-statistics.php:154
|
535 |
msgid "April"
|
536 |
msgstr "Kwiecień"
|
537 |
|
538 |
+
#: adrotate-statistics.php:154
|
539 |
msgid "May"
|
540 |
msgstr "Maj"
|
541 |
|
542 |
+
#: adrotate-statistics.php:154
|
543 |
msgid "June"
|
544 |
msgstr "Czerwiec"
|
545 |
|
546 |
+
#: adrotate-statistics.php:154
|
547 |
msgid "July"
|
548 |
msgstr "Lipiec"
|
549 |
|
550 |
+
#: adrotate-statistics.php:154
|
551 |
msgid "August"
|
552 |
msgstr "Sierpień"
|
553 |
|
554 |
+
#: adrotate-statistics.php:154
|
555 |
msgid "September"
|
556 |
msgstr "Wrzesień"
|
557 |
|
558 |
+
#: adrotate-statistics.php:154
|
559 |
msgid "October"
|
560 |
msgstr "Pażdziernik"
|
561 |
|
562 |
+
#: adrotate-statistics.php:154
|
563 |
msgid "November"
|
564 |
msgstr "Listopad"
|
565 |
|
566 |
+
#: adrotate-statistics.php:154
|
567 |
msgid "December"
|
568 |
msgstr "Grudzień"
|
569 |
|
570 |
+
#: adrotate-statistics.php:163
|
571 |
msgid "Previous"
|
572 |
msgstr "Poprzedni"
|
573 |
|
574 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
575 |
#: dashboard/publisher/statistics-group.php:73
|
576 |
#: dashboard/publisher/statistics-main.php:48
|
577 |
msgid "This month"
|
578 |
msgstr "Obecny miesiąc"
|
579 |
|
580 |
+
#: adrotate-statistics.php:166
|
581 |
msgid "Next"
|
582 |
msgstr "Następny"
|
583 |
|
584 |
+
#: adrotate-statistics.php:220
|
585 |
msgid "No data to show!"
|
586 |
msgstr "Brak danych do wyświetlenia!"
|
587 |
|
588 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
589 |
msgid "Not found"
|
590 |
msgstr "Nie znaleziono"
|
591 |
|
630 |
msgid "Fill in the ID of the type you want to display!"
|
631 |
msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
|
632 |
|
633 |
+
#: adrotate.php:104 adrotate.php:174
|
634 |
msgid "Manage Adverts"
|
635 |
msgstr "Zarządzaj reklamami"
|
636 |
|
637 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
638 |
msgid "Manage Groups"
|
639 |
msgstr "Zarządzaj grupami"
|
640 |
|
641 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
642 |
msgid "Manage Schedules"
|
643 |
msgstr "Zarządzaj harmonogramami"
|
644 |
|
645 |
+
#: adrotate.php:107
|
646 |
msgid "Manage Media"
|
647 |
msgstr "Zarządzaj mediami"
|
648 |
|
649 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
650 |
#: dashboard/publisher/adverts-edit.php:178
|
651 |
#: dashboard/publisher/statistics-main.php:23
|
652 |
#: dashboard/settings/statistics.php:17
|
653 |
msgid "Statistics"
|
654 |
msgstr "Statystyka"
|
655 |
|
656 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
657 |
msgid "Get AdRotate Pro"
|
658 |
msgstr "Pobierz AdRotate Pro"
|
659 |
|
660 |
+
#: adrotate.php:110
|
661 |
msgid "Support"
|
662 |
msgstr "Wsparcie"
|
663 |
|
664 |
+
#: adrotate.php:111
|
665 |
msgid "Settings"
|
666 |
msgstr "Ustawienia"
|
667 |
|
668 |
+
#: adrotate.php:130
|
669 |
msgid "Get AdRotate Professional"
|
670 |
msgstr "Uzyskaj AdRotate Professional"
|
671 |
|
672 |
+
#: adrotate.php:234 adrotate.php:306
|
673 |
msgid "Manage"
|
674 |
msgstr "Zarządzaj"
|
675 |
|
676 |
+
#: adrotate.php:235
|
677 |
msgid "Advert Generator"
|
678 |
msgstr "Generator reklam"
|
679 |
|
680 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
681 |
msgid "New Advert"
|
682 |
msgstr "Nowa reklama"
|
683 |
|
684 |
+
#: adrotate.php:307
|
685 |
msgid "Add New"
|
686 |
msgstr "Dodaj nową"
|
687 |
|
688 |
+
#: adrotate.php:375
|
689 |
msgid "Manage Media and Assets"
|
690 |
msgstr "Zarządzanie multimediami i zasobami"
|
691 |
|
692 |
+
#: adrotate.php:379
|
693 |
msgid ""
|
694 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
695 |
"if you have HTML5 adverts containing multiple files."
|
697 |
"Przesyłać obrazy do folderu banery AdRotate Pro stąd. Jest to przydatne, "
|
698 |
"jeśli masz reklamy HTML5, zawierające wiele plików."
|
699 |
|
700 |
+
#: adrotate.php:421
|
701 |
msgid "Advert Statistics"
|
702 |
msgstr "Statystyki reklam"
|
703 |
|
704 |
+
#: adrotate.php:464
|
705 |
msgid "AdRotate Support"
|
706 |
msgstr "Pomoc techniczna adrotate"
|
707 |
|
708 |
+
#: adrotate.php:510
|
709 |
msgid "AdRotate Settings"
|
710 |
msgstr "Ustawienia AdRotate"
|
711 |
|
712 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
713 |
msgid "General"
|
714 |
msgstr "Ogólne"
|
715 |
|
716 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
717 |
msgid "Notifications"
|
718 |
msgstr "Powiadomienia"
|
719 |
|
720 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
721 |
msgid "Geo Targeting"
|
722 |
msgstr "Geolokalizacja"
|
723 |
|
724 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
725 |
msgid "Access Roles"
|
726 |
msgstr "Rola programu Access"
|
727 |
|
728 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
729 |
msgid "Miscellaneous"
|
730 |
msgstr "Różne"
|
731 |
|
732 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
733 |
msgid "Maintenance"
|
734 |
msgstr "Obsługa"
|
735 |
|
1448 |
msgstr "Wygasa wkrótce"
|
1449 |
|
1450 |
#: dashboard/publisher/adverts-error.php:67
|
1451 |
+
#: dashboard/settings/maintenance.php:30
|
1452 |
msgid "Expired"
|
1453 |
msgstr "Wygasa"
|
1454 |
|
2047 |
msgid "This action can not be undone!"
|
2048 |
msgstr "Tej operacji nie można cofnąć!"
|
2049 |
|
2050 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
2051 |
msgid "OK to continue, CANCEL to stop."
|
2052 |
msgstr "Naciśnij OK, by kontynuować, Anuluj by zatrzymać."
|
2053 |
|
2466 |
msgid "user-agents"
|
2467 |
msgstr "identyfikatory przeglądarek"
|
2468 |
|
2469 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2470 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2471 |
#: dashboard/settings/statistics.php:85
|
2472 |
msgid "Update Options"
|
2574 |
msgid "Password/License Key"
|
2575 |
msgstr "Hasło/klucz licencyjny"
|
2576 |
|
2577 |
+
#: dashboard/settings/maintenance.php:18
|
2578 |
+
msgid "Check ads for errors"
|
2579 |
+
msgstr "Sprawdzanie reklam pod kątem błędów"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2580 |
|
2581 |
+
#: dashboard/settings/maintenance.php:21
|
2582 |
msgid ""
|
2583 |
+
"Apply all evaluation rules to all adverts to see if any error slipped in. "
|
2584 |
+
"This may take a few seconds."
|
2585 |
msgstr ""
|
2586 |
+
"Zastosuj wszystkie reguły oceny do wszystkich reklam, aby sprawdzić, czy nie "
|
2587 |
+
"wystąpił błąd. Może to potrwać kilka sekund."
|
2588 |
|
2589 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2590 |
msgid "Status and Versions"
|
2591 |
msgstr "Status i wersje"
|
2592 |
|
2593 |
+
#: dashboard/settings/maintenance.php:29
|
2594 |
msgid "Current status of adverts"
|
2595 |
msgstr "Bieżący stan reklam"
|
2596 |
|
2597 |
+
#: dashboard/settings/maintenance.php:30
|
2598 |
msgid "Normal"
|
2599 |
msgstr "Zwykły"
|
2600 |
|
2601 |
+
#: dashboard/settings/maintenance.php:30
|
2602 |
msgid "Error"
|
2603 |
msgstr "Błąd"
|
2604 |
|
2605 |
+
#: dashboard/settings/maintenance.php:30
|
2606 |
msgid "Expires Soon"
|
2607 |
msgstr "Wygasa wkrótce"
|
2608 |
|
2609 |
+
#: dashboard/settings/maintenance.php:30
|
2610 |
msgid "Unknown"
|
2611 |
msgstr "Nieznany"
|
2612 |
|
2613 |
+
#: dashboard/settings/maintenance.php:33
|
2614 |
msgid "Banners/assets Folder"
|
2615 |
msgstr "Folder reklam"
|
2616 |
|
2617 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2618 |
msgid "Exists and appears writable"
|
2619 |
msgstr "Istnieje i jest zapisywalny"
|
2620 |
|
2621 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2622 |
msgid "Not writable or does not exist"
|
2623 |
msgstr "Nie istnieje lub nie jest zapisywalny"
|
2624 |
|
2625 |
+
#: dashboard/settings/maintenance.php:42
|
2626 |
msgid "Reports Folder"
|
2627 |
msgstr "Folder raportów"
|
2628 |
|
2629 |
+
#: dashboard/settings/maintenance.php:51
|
2630 |
msgid "Advert evaluation"
|
2631 |
msgstr "Weryfikacja reklam"
|
2632 |
|
2633 |
+
#: dashboard/settings/maintenance.php:52
|
2634 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2635 |
msgstr "Nie zaplanowano! Włącz wtyczkę na karcie wtyczek."
|
2636 |
|
2637 |
+
#: dashboard/settings/maintenance.php:53
|
2638 |
msgid "Clean Trackerdata"
|
2639 |
msgstr "Czyszczenie danych śledzenia"
|
2640 |
|
2641 |
+
#: dashboard/settings/maintenance.php:54
|
2642 |
msgid "Not scheduled!"
|
2643 |
msgstr "Niezaplanowane!"
|
2644 |
|
2645 |
+
#: dashboard/settings/maintenance.php:57
|
2646 |
msgid "Background tasks"
|
2647 |
msgstr "Zadania w tle"
|
2648 |
|
2649 |
+
#: dashboard/settings/maintenance.php:59
|
2650 |
msgid "Reset background tasks"
|
2651 |
msgstr "Resetuj zadania w tle"
|
2652 |
|
2653 |
+
#: dashboard/settings/maintenance.php:62
|
2654 |
+
msgid ""
|
2655 |
+
"If automated tasks such as expiring adverts does not work reliable or one of "
|
2656 |
+
"the above schedules is missing use this button to reset the tasks."
|
2657 |
+
msgstr ""
|
2658 |
+
"Jeśli zadania automatyczne, takie jak wygasające reklamy, nie działają "
|
2659 |
+
"niezawodnie lub brakuje jednego z powyższych harmonogramów, użyj tego "
|
2660 |
+
"przycisku, aby zresetować zadania."
|
2661 |
+
|
2662 |
+
#: dashboard/settings/maintenance.php:66
|
2663 |
msgid "Unsupported plugins"
|
2664 |
msgstr "Nieobsługiwały wtyczki"
|
2665 |
|
2666 |
+
#: dashboard/settings/maintenance.php:68
|
2667 |
msgid "Disable 3rd party plugins"
|
2668 |
msgstr "Wyłącz wtyczki innych firm"
|
2669 |
|
2670 |
+
#: dashboard/settings/maintenance.php:70
|
2671 |
msgid "One or more unsupported 3rd party plugins detected."
|
2672 |
msgstr "Wykryto co najmniej jedną nieobsługiconą wtyczkę innych firm."
|
2673 |
|
2674 |
+
#: dashboard/settings/maintenance.php:72
|
2675 |
msgid ""
|
2676 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2677 |
"dashboard which may affect security and/or stability."
|
2679 |
"Są to wtyczki, które zmieniają funkcje AdRotate lub highjack części deski "
|
2680 |
"rozdzielczej, które mogą mieć wpływ na bezpieczeństwo i / lub stabilność."
|
2681 |
|
2682 |
+
#: dashboard/settings/maintenance.php:77
|
2683 |
msgid "Internal Versions"
|
2684 |
msgstr "Wersje wewnętrzne"
|
2685 |
|
2686 |
+
#: dashboard/settings/maintenance.php:78
|
2687 |
msgid ""
|
2688 |
"Unless you experience database issues or a warning shows below, these "
|
2689 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
2693 |
"liczby nie pomagają w rozwiązaniu problemów. Pomoc techniczna może poprosić "
|
2694 |
"o te dane do weryfikacji stanu bazy danych."
|
2695 |
|
2696 |
+
#: dashboard/settings/maintenance.php:81
|
2697 |
msgid "AdRotate version"
|
2698 |
msgstr "Wersja AdRotate"
|
2699 |
|
2700 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2701 |
msgid "Current:"
|
2702 |
msgstr "Aktualna:"
|
2703 |
|
2704 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2705 |
msgid "Should be:"
|
2706 |
msgstr "Powinna być:"
|
2707 |
|
2708 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2709 |
msgid "Previous:"
|
2710 |
msgstr "Poprzednia:"
|
2711 |
|
2712 |
+
#: dashboard/settings/maintenance.php:83
|
2713 |
msgid "Database version"
|
2714 |
msgstr "Wersja bazy danych"
|
2715 |
|
2716 |
+
#: dashboard/settings/maintenance.php:87
|
2717 |
msgid "Manual upgrade"
|
2718 |
msgstr "Ręczna aktualizacja"
|
2719 |
|
2720 |
+
#: dashboard/settings/maintenance.php:89
|
2721 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2722 |
msgstr "Zamierzasz ręcznie aktualizować AdRotate."
|
2723 |
|
2724 |
+
#: dashboard/settings/maintenance.php:89
|
2725 |
msgid "Make sure you have a database backup!"
|
2726 |
msgstr "Upewnij się, że masz kopię zapasową bazy danych!"
|
2727 |
|
2728 |
+
#: dashboard/settings/maintenance.php:89
|
2729 |
msgid "This might take a while and may slow down your site during this action!"
|
2730 |
msgstr ""
|
2731 |
"To może zająć chwilę i spowolnić Twoją stronę podczas trwania operacji!"
|
2732 |
|
2733 |
+
#: dashboard/settings/maintenance.php:89
|
2734 |
msgid "Run updater"
|
2735 |
msgstr "Uruchom aktualizację"
|
2736 |
|
2737 |
+
#: dashboard/settings/misc.php:122
|
2738 |
msgid "Widget alignment"
|
2739 |
msgstr "Wyrównanie widżetu"
|
2740 |
|
2741 |
+
#: dashboard/settings/misc.php:123
|
2742 |
msgid ""
|
2743 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2744 |
"not always help!)"
|
2746 |
"Zaznacz, jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
|
2747 |
"pomaga!)"
|
2748 |
|
2749 |
+
#: dashboard/settings/misc.php:126
|
2750 |
msgid "Widget padding"
|
2751 |
msgstr "Pusta przestrzeń widżetu"
|
2752 |
|
2753 |
+
#: dashboard/settings/misc.php:127
|
2754 |
msgid ""
|
2755 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2756 |
"not always work!)"
|
2758 |
"Włącz tę funkcję, aby usunąć wypełnienie (puste miejsce) wokół reklam w "
|
2759 |
"widżetach. (Nie zawsze działa!)"
|
2760 |
|
2761 |
+
#: dashboard/settings/misc.php:131
|
2762 |
msgid "NOTICE:"
|
2763 |
msgstr "UWAGA:"
|
2764 |
|
2765 |
+
#: dashboard/settings/misc.php:132
|
2766 |
msgid ""
|
2767 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2768 |
msgstr ""
|
2769 |
"Włączyłeś obsługę W3 Total Caching, ale nie zdefiniowano kodu bezpieczeństwa."
|
2770 |
|
2771 |
+
#: dashboard/settings/misc.php:132
|
2772 |
msgid ""
|
2773 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2774 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
2778 |
"php koło linii 52 (poniżej nonces WordPress). Jeśli nie wiesz jak dodać tę "
|
2779 |
"linię, sprawdź poniższy poradnik;"
|
2780 |
|
2781 |
+
#: dashboard/settings/misc.php:132
|
2782 |
msgid "Set up W3 Total Caching"
|
2783 |
msgstr "Włącz W3 Total Caching"
|
2784 |
|
2785 |
+
#: dashboard/settings/misc.php:136
|
2786 |
msgid "W3 Total Caching"
|
2787 |
msgstr "W3 Total Caching"
|
2788 |
|
2789 |
+
#: dashboard/settings/misc.php:137
|
2790 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2791 |
msgstr "Zaznacz, jeśli używasz W3 Total Caching na swojej stronie."
|
2792 |
|
2793 |
+
#: dashboard/settings/misc.php:140
|
2794 |
msgid "Borlabs Cache"
|
2795 |
msgstr "Borlabs Cache"
|
2796 |
|
2797 |
+
#: dashboard/settings/misc.php:141
|
2798 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2799 |
msgstr "Zaznacz, jeśli używasz Borlabs Cache na swojej stronie."
|
2800 |
|
2801 |
+
#: dashboard/settings/misc.php:145
|
2802 |
msgid ""
|
2803 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2804 |
"to refresh the cache. This can take up to a week if not done manually."
|
2807 |
"buforująca musi odświeżyć bufor. Może zająć to do tygodnia, jeśli nie "
|
2808 |
"zostanie wykonane ręcznie."
|
2809 |
|
2810 |
+
#: dashboard/settings/misc.php:145
|
2811 |
msgid ""
|
2812 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2813 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
3222 |
"specjalne style znaczników, kodu lub układu można zastosować w opakowaniu "
|
3223 |
"grupy podczas edycji grupy."
|
3224 |
|
3225 |
+
#~ msgid ""
|
3226 |
+
#~ "Use these functions when you notice your database is slow, unresponsive "
|
3227 |
+
#~ "and sluggish."
|
3228 |
+
#~ msgstr ""
|
3229 |
+
#~ "Użyj tych funkcji, gdy zauważysz, że baza danych jest powolna, nie "
|
3230 |
+
#~ "odpowiada i powolna."
|
3231 |
+
|
3232 |
+
#~ msgid "You are about to check all adverts for errors."
|
3233 |
+
#~ msgstr "Masz zamiar sprawdzić wszystkie ogłoszenia pod kątem błędów."
|
3234 |
+
|
3235 |
+
#~ msgid "This might take a few seconds!"
|
3236 |
+
#~ msgstr "Może to potrwać kilka sekund!"
|
3237 |
+
|
3238 |
+
#~ msgid "Clean-up Database and Files"
|
3239 |
+
#~ msgstr "Oczyszczanie bazy danych i plików"
|
3240 |
+
|
3241 |
+
#~ msgid "Run Clean-up"
|
3242 |
+
#~ msgstr "Uruchom czyszczenie"
|
3243 |
+
|
3244 |
+
#~ msgid "You are about to do maintenance on your setup of AdRotate."
|
3245 |
+
#~ msgstr "Masz zamiar wykonać konserwację konfiguracji AdRotate."
|
3246 |
+
|
3247 |
+
#~ msgid ""
|
3248 |
+
#~ "This optionally may delete old statistics and tries to delete old export "
|
3249 |
+
#~ "files."
|
3250 |
+
#~ msgstr ""
|
3251 |
+
#~ "Opcjonalnie może to usunąć stare statystyki i próbę usunięcia starych "
|
3252 |
+
#~ "plików eksportu."
|
3253 |
+
|
3254 |
+
#~ msgid "Are you sure you want to continue?"
|
3255 |
+
#~ msgstr "Na pewno kontynuować?"
|
3256 |
+
|
3257 |
+
#~ msgid "THIS ACTION CAN NOT BE UNDONE!"
|
3258 |
+
#~ msgstr "TEJ AKCJI NIE MOŻNA COFNĄĆ!"
|
3259 |
+
|
3260 |
+
#~ msgid "Basic database maintenance."
|
3261 |
+
#~ msgstr "Podstawowa konserwacja bazy danych."
|
3262 |
+
|
3263 |
+
#~ msgid "Delete stats older than 365 days."
|
3264 |
+
#~ msgstr "Usuń statystyki starsze niż 365 dni."
|
3265 |
+
|
3266 |
+
#~ msgid "Delete leftover export files."
|
3267 |
+
#~ msgstr "Usuń pozostałości plików eksportu."
|
3268 |
+
|
3269 |
+
#~ msgid ""
|
3270 |
+
#~ "For when you create an advert, group or schedule and it does not save or "
|
3271 |
+
#~ "keep changes you make."
|
3272 |
+
#~ msgstr ""
|
3273 |
+
#~ "Gdy tworzysz reklamę, grupę lub harmonogram i nie zapisujesz ani nie "
|
3274 |
+
#~ "zachowujesz wprowadzonych zmian."
|
3275 |
+
|
3276 |
+
#~ msgid ""
|
3277 |
+
#~ "Additionally you can delete statistics and/or unused export files. This "
|
3278 |
+
#~ "will improve the speed of your site."
|
3279 |
+
#~ msgstr ""
|
3280 |
+
#~ "Dodatkowo można usunąć statystyki i/lub nieużywane pliki eksportu. "
|
3281 |
+
#~ "Poprawi to szybkość Twojej witryny."
|
3282 |
+
|
3283 |
+
#~ msgid ""
|
3284 |
+
#~ "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
3285 |
+
#~ "database or clean up overhead data. They only apply to your ads/groups "
|
3286 |
+
#~ "and stats. Not to other settings or other parts of WordPress! Always "
|
3287 |
+
#~ "always make a backup! If for any reason your data is lost, damaged or "
|
3288 |
+
#~ "otherwise becomes unusable in any way or by any means in whichever way I "
|
3289 |
+
#~ "will not take responsibility. You should always have a backup of your "
|
3290 |
+
#~ "database. These functions do NOT destroy data. If data is lost, damaged "
|
3291 |
+
#~ "or unusable in any way, your database likely was beyond repair already. "
|
3292 |
+
#~ "Claiming it worked before clicking these buttons is not a valid point in "
|
3293 |
+
#~ "any case."
|
3294 |
+
#~ msgstr ""
|
3295 |
+
#~ "ZASTRZEŻENIE: Powyższe funkcje mają być używane do optymalizacji bazy "
|
3296 |
+
#~ "danych lub czyszczenia danych napowietrznych. Mają one zastosowanie tylko "
|
3297 |
+
#~ "do reklam/grup i statystyk. Nie do innych ustawień lub innych części "
|
3298 |
+
#~ "WordPress! Zawsze zawsze tworzyć kopie zapasowe! Jeśli z jakiegokolwiek "
|
3299 |
+
#~ "powodu Twoje dane zostaną utracone, uszkodzone lub w inny sposób staną "
|
3300 |
+
#~ "się bezużyteczne w jakikolwiek sposób lub w jakikolwiek sposób, w "
|
3301 |
+
#~ "jakikolwiek sposób nie wezmę odpowiedzialności. Zawsze powinieneś mieć "
|
3302 |
+
#~ "kopię zapasową bazy danych. Funkcje te NIE niszczą danych. Jeśli dane są "
|
3303 |
+
#~ "tracone, uszkodzone lub bezużyteczne w jakikolwiek sposób, baza danych "
|
3304 |
+
#~ "prawdopodobnie była już nie do naprawienia. Twierdząc, że pracował przed "
|
3305 |
+
#~ "kliknięciem tych przycisków nie jest prawidłowym punktem w każdym "
|
3306 |
+
#~ "przypadku."
|
3307 |
+
|
3308 |
#~ msgid "Check all adverts for configuration errors"
|
3309 |
#~ msgstr "Sprawdź wszystkie ogłoszenia pod kątem błędów konfiguracji"
|
3310 |
|
3925 |
#~ msgid "Schedule saved"
|
3926 |
#~ msgstr "Harmonogram zapisany"
|
3927 |
|
|
|
|
|
|
|
3928 |
#~ msgid "Advert(s) duplicated"
|
3929 |
#~ msgstr "Reklamy powielone"
|
3930 |
|
language/adrotate-pt_BR.mo
CHANGED
Binary file
|
language/adrotate-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -22,31 +22,31 @@ msgstr ""
|
|
22 |
msgid "AdRotate - Advertisements"
|
23 |
msgstr "AdRotate - Anúncios"
|
24 |
|
25 |
-
#: adrotate-functions.php:
|
26 |
msgid "Advert saved"
|
27 |
msgstr "Anúncio salvo"
|
28 |
|
29 |
-
#: adrotate-functions.php:
|
30 |
msgid "Group saved"
|
31 |
msgstr "Grupo guardado"
|
32 |
|
33 |
-
#: adrotate-functions.php:
|
34 |
msgid "Banner image saved"
|
35 |
msgstr "A imagem da bandeira salvo"
|
36 |
|
37 |
-
#: adrotate-functions.php:
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Anúncio(s) apagados"
|
40 |
|
41 |
-
#: adrotate-functions.php:
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Grupo de excluídos"
|
44 |
|
45 |
-
#: adrotate-functions.php:
|
46 |
msgid "Asset(s) deleted"
|
47 |
msgstr "Activo(s) apagados"
|
48 |
|
49 |
-
#: adrotate-functions.php:
|
50 |
msgid ""
|
51 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
52 |
"are in order."
|
@@ -54,31 +54,31 @@ msgstr ""
|
|
54 |
"Alguma coisa saiu errada exclusão de um arquivo ou pasta. Certifique-se de "
|
55 |
"que as permissões estão em ordem."
|
56 |
|
57 |
-
#: adrotate-functions.php:
|
58 |
msgid "Advert(s) statistics reset"
|
59 |
msgstr "Anúncio(s) estatísticas de reposição"
|
60 |
|
61 |
-
#: adrotate-functions.php:
|
62 |
msgid "Advert(s) renewed"
|
63 |
msgstr "Anúncios(s) renovados"
|
64 |
|
65 |
-
#: adrotate-functions.php:
|
66 |
msgid "Advert(s) deactivated"
|
67 |
msgstr "Anúncios desativados"
|
68 |
|
69 |
-
#: adrotate-functions.php:
|
70 |
msgid "Advert(s) activated"
|
71 |
msgstr "Anúncio(s) ativado"
|
72 |
|
73 |
-
#: adrotate-functions.php:
|
74 |
msgid "Group including the Adverts in it deleted"
|
75 |
msgstr "Grupo de inclusão de Anúncios do excluído"
|
76 |
|
77 |
-
#: adrotate-functions.php:
|
78 |
msgid "Export created"
|
79 |
msgstr "Exportação criado"
|
80 |
|
81 |
-
#: adrotate-functions.php:
|
82 |
msgid ""
|
83 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
84 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -86,31 +86,47 @@ msgstr ""
|
|
86 |
"Anúncio HTML gerado e colocado na AdCode campo. Configurar o seu anúncio "
|
87 |
"abaixo. Não se esqueça de verificar todas as configurações e agendá-lo."
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Settings saved"
|
91 |
msgstr "As configurações salvas"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Banco de dados otimizado"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Banco de dados reparado"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Anúncios avaliados e status foram corrigidos quando necessário"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Limpeza completa"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "Action prohibited"
|
111 |
msgstr "Ação proibida"
|
112 |
|
113 |
-
#: adrotate-functions.php:
|
114 |
msgid ""
|
115 |
"The advert was saved but has an issue which might prevent it from working "
|
116 |
"properly. Review the colored advert."
|
@@ -118,41 +134,41 @@ msgstr ""
|
|
118 |
"O anúncio foi salvo, mas tem um problema que pode impedi-lo de funcionar "
|
119 |
"corretamente. Reveja o anúncio colorido."
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "No data found in selected time period"
|
123 |
msgstr "Dados não encontrados no período de tempo selecionado"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Database can only be optimized or cleaned once every hour"
|
127 |
msgstr "Banco de dados só pode ser otimizados ou limpo uma vez a cada hora"
|
128 |
|
129 |
-
#: adrotate-functions.php:
|
130 |
msgid "Form can not be (partially) empty!"
|
131 |
msgstr "O formulário não pode ser (parcialmente) vazio!"
|
132 |
|
133 |
-
#: adrotate-functions.php:
|
134 |
msgid "No file uploaded."
|
135 |
msgstr "Nenhum arquivo enviado."
|
136 |
|
137 |
-
#: adrotate-functions.php:
|
138 |
msgid "No adverts found."
|
139 |
msgstr "Não foram encontrados anúncios."
|
140 |
|
141 |
-
#: adrotate-functions.php:
|
142 |
msgid "Wrong file type. No file uploaded."
|
143 |
msgstr "Nenhum arquivo enviado."
|
144 |
|
145 |
-
#: adrotate-functions.php:
|
146 |
msgid "No file selected or file is too large."
|
147 |
msgstr "Nenhum arquivo selecionado ou arquivo é muito grande."
|
148 |
|
149 |
-
#: adrotate-functions.php:
|
150 |
msgid "There was an error unzipping the file. Please try again later."
|
151 |
msgstr ""
|
152 |
"Houve um erro descompactando o arquivo. Por favor, tente novamente mais "
|
153 |
"tarde."
|
154 |
|
155 |
-
#: adrotate-functions.php:
|
156 |
msgid ""
|
157 |
"The advert hash is not usable or is missing required data. Please copy the "
|
158 |
"hash correctly and try again."
|
@@ -160,7 +176,7 @@ msgstr ""
|
|
160 |
"O anúncio de hash não é utilizável ou é falta de dados necessários. Por "
|
161 |
"favor, copie o hash corretamente e tente novamente."
|
162 |
|
163 |
-
#: adrotate-functions.php:
|
164 |
msgid ""
|
165 |
"The advert hash can not be used on the same site as it originated from or is "
|
166 |
"not a valid hash for importing."
|
@@ -168,7 +184,7 @@ msgstr ""
|
|
168 |
"O anúncio de hash não pode ser usado no mesmo site que originou-se ou não é "
|
169 |
"um hash válido para a importação."
|
170 |
|
171 |
-
#: adrotate-functions.php:
|
172 |
msgid "Unexpected error"
|
173 |
msgstr "Erro inesperado"
|
174 |
|
@@ -256,7 +272,7 @@ msgid "An unknown error occured."
|
|
256 |
msgstr "Um erro desconhecido ocorreu."
|
257 |
|
258 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
259 |
-
#: dashboard/settings/maintenance.php:
|
260 |
msgid "Check adverts"
|
261 |
msgstr "Verificação de anúncios"
|
262 |
|
@@ -475,73 +491,73 @@ msgstr "Multi-Licença"
|
|
475 |
msgid "Use on up to FIVE WordPress installations."
|
476 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
477 |
|
478 |
-
#: adrotate-statistics.php:
|
479 |
msgid "January"
|
480 |
msgstr "Janeiro"
|
481 |
|
482 |
-
#: adrotate-statistics.php:
|
483 |
msgid "February"
|
484 |
msgstr "Fevereiro"
|
485 |
|
486 |
-
#: adrotate-statistics.php:
|
487 |
msgid "March"
|
488 |
msgstr "Março"
|
489 |
|
490 |
-
#: adrotate-statistics.php:
|
491 |
msgid "April"
|
492 |
msgstr "Abril"
|
493 |
|
494 |
-
#: adrotate-statistics.php:
|
495 |
msgid "May"
|
496 |
msgstr "Pode"
|
497 |
|
498 |
-
#: adrotate-statistics.php:
|
499 |
msgid "June"
|
500 |
msgstr "Junho"
|
501 |
|
502 |
-
#: adrotate-statistics.php:
|
503 |
msgid "July"
|
504 |
msgstr "Julho"
|
505 |
|
506 |
-
#: adrotate-statistics.php:
|
507 |
msgid "August"
|
508 |
msgstr "Agosto"
|
509 |
|
510 |
-
#: adrotate-statistics.php:
|
511 |
msgid "September"
|
512 |
msgstr "Setembro"
|
513 |
|
514 |
-
#: adrotate-statistics.php:
|
515 |
msgid "October"
|
516 |
msgstr "Outubro"
|
517 |
|
518 |
-
#: adrotate-statistics.php:
|
519 |
msgid "November"
|
520 |
msgstr "Novembro"
|
521 |
|
522 |
-
#: adrotate-statistics.php:
|
523 |
msgid "December"
|
524 |
msgstr "Dezembro"
|
525 |
|
526 |
-
#: adrotate-statistics.php:
|
527 |
msgid "Previous"
|
528 |
msgstr "Anterior"
|
529 |
|
530 |
-
#: adrotate-statistics.php:
|
531 |
#: dashboard/publisher/statistics-group.php:73
|
532 |
#: dashboard/publisher/statistics-main.php:48
|
533 |
msgid "This month"
|
534 |
msgstr "Este mês"
|
535 |
|
536 |
-
#: adrotate-statistics.php:
|
537 |
msgid "Next"
|
538 |
msgstr "Próximo"
|
539 |
|
540 |
-
#: adrotate-statistics.php:
|
541 |
msgid "No data to show!"
|
542 |
msgstr "Sem dados para mostrar!"
|
543 |
|
544 |
-
#: adrotate-statistics.php:
|
545 |
msgid "Not found"
|
546 |
msgstr "Não encontrado"
|
547 |
|
@@ -585,66 +601,66 @@ msgstr "IDENTIFICAÇÃO:"
|
|
585 |
msgid "Fill in the ID of the type you want to display!"
|
586 |
msgstr "Preencha o ID do tipo que você deseja exibir!"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
msgid "Manage Adverts"
|
590 |
msgstr "Gerenciar Anúncios"
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
msgid "Manage Groups"
|
594 |
msgstr "Gerir Grupos"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
msgid "Manage Schedules"
|
598 |
msgstr "Gerenciar Agendas"
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
msgid "Manage Media"
|
602 |
msgstr "Gerenciar Mídia"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
#: dashboard/publisher/adverts-edit.php:178
|
606 |
#: dashboard/publisher/statistics-main.php:23
|
607 |
#: dashboard/settings/statistics.php:17
|
608 |
msgid "Statistics"
|
609 |
msgstr "Estatísticas"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
msgid "Get AdRotate Pro"
|
613 |
msgstr "Obter AdRotate Pro"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
msgid "Support"
|
617 |
msgstr "Suporte"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
msgid "Settings"
|
621 |
msgstr "Definições"
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
msgid "Get AdRotate Professional"
|
625 |
msgstr "Obter AdRotate Profissional"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
msgid "Manage"
|
629 |
msgstr "Gerenciar"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
msgid "Advert Generator"
|
633 |
msgstr "Gerador de anúncios"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "New Advert"
|
637 |
msgstr "Novo Anúncio"
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid "Add New"
|
641 |
msgstr "Adicionar Novo"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid "Manage Media and Assets"
|
645 |
msgstr "Gerenciar Mídia e Ativos"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid ""
|
649 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
650 |
"if you have HTML5 adverts containing multiple files."
|
@@ -652,39 +668,39 @@ msgstr ""
|
|
652 |
"Upload de imagens para o AdRotate Pro banners pasta a partir daqui. Isso é "
|
653 |
"útil se você tiver HTML5 anúncios que contém vários arquivos."
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid "Advert Statistics"
|
657 |
msgstr "Anúncio Estatísticas"
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "AdRotate Support"
|
661 |
msgstr "AdRotate Suporte"
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "AdRotate Settings"
|
665 |
msgstr "AdRotate Definições"
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "General"
|
669 |
msgstr "Geral"
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid "Notifications"
|
673 |
msgstr "Notificações"
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid "Geo Targeting"
|
677 |
msgstr "Geo Targeting"
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
msgid "Access Roles"
|
681 |
msgstr "Funções De Acesso"
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
msgid "Miscellaneous"
|
685 |
msgstr "Diversos"
|
686 |
|
687 |
-
#: adrotate.php:
|
688 |
msgid "Maintenance"
|
689 |
msgstr "Manutenção"
|
690 |
|
@@ -1414,7 +1430,7 @@ msgid "Expires soon"
|
|
1414 |
msgstr "Expira em breve"
|
1415 |
|
1416 |
#: dashboard/publisher/adverts-error.php:67
|
1417 |
-
#: dashboard/settings/maintenance.php:
|
1418 |
msgid "Expired"
|
1419 |
msgstr "Expirou"
|
1420 |
|
@@ -2026,8 +2042,7 @@ msgstr "Você está prestes a excluir um grupo"
|
|
2026 |
msgid "This action can not be undone!"
|
2027 |
msgstr "Esta ação não pode ser desfeita!"
|
2028 |
|
2029 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
2030 |
-
#: dashboard/settings/maintenance.php:101
|
2031 |
msgid "OK to continue, CANCEL to stop."
|
2032 |
msgstr "OK para continuar ou em CANCELAR para parar."
|
2033 |
|
@@ -2450,7 +2465,7 @@ msgstr "Saiba mais sobre"
|
|
2450 |
msgid "user-agents"
|
2451 |
msgstr "agentes de utilizador"
|
2452 |
|
2453 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2454 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2455 |
#: dashboard/settings/statistics.php:85
|
2456 |
msgid "Update Options"
|
@@ -2559,193 +2574,104 @@ msgstr "Nome De Utilizador/E-Mail"
|
|
2559 |
msgid "Password/License Key"
|
2560 |
msgstr "Senha/Chave De Licença"
|
2561 |
|
2562 |
-
#: dashboard/settings/maintenance.php:
|
2563 |
-
msgid ""
|
2564 |
-
"
|
2565 |
-
"sluggish."
|
2566 |
-
msgstr ""
|
2567 |
-
"Utilizar estas funções quando você perceber que o banco de dados é lento, "
|
2568 |
-
"não responde e lento."
|
2569 |
-
|
2570 |
-
#: dashboard/settings/maintenance.php:22
|
2571 |
-
msgid "Check for errors"
|
2572 |
-
msgstr "Verifique se há erros"
|
2573 |
-
|
2574 |
-
#: dashboard/settings/maintenance.php:22
|
2575 |
-
msgid "You are about to check all adverts for errors."
|
2576 |
-
msgstr ""
|
2577 |
-
"Você está prestes a verificação de todos os anúncios de vagas para erros."
|
2578 |
-
|
2579 |
-
#: dashboard/settings/maintenance.php:22
|
2580 |
-
msgid "This might take a few seconds!"
|
2581 |
-
msgstr "Isso pode levar alguns segundos!"
|
2582 |
-
|
2583 |
-
#: dashboard/settings/maintenance.php:24
|
2584 |
-
msgid ""
|
2585 |
-
"Apply all evaluation rules to all adverts to see if any error slipped in."
|
2586 |
-
msgstr ""
|
2587 |
-
"Aplicar todas as regras de avaliação a todos os anúncios para ver se "
|
2588 |
-
"qualquer erro escorregou no."
|
2589 |
-
|
2590 |
-
#: dashboard/settings/maintenance.php:28
|
2591 |
-
msgid "Clean-up Database and Files"
|
2592 |
-
msgstr "Limpeza de Banco de dados e Arquivos"
|
2593 |
-
|
2594 |
-
#: dashboard/settings/maintenance.php:30
|
2595 |
-
msgid "Run Clean-up"
|
2596 |
-
msgstr "Executar limpeza"
|
2597 |
-
|
2598 |
-
#: dashboard/settings/maintenance.php:30
|
2599 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2600 |
-
msgstr ""
|
2601 |
-
"Você está prestes a fazer a manutenção do seu programa de configuração do "
|
2602 |
-
"AdRotate."
|
2603 |
|
2604 |
-
#: dashboard/settings/maintenance.php:
|
2605 |
msgid ""
|
2606 |
-
"
|
2607 |
-
"
|
2608 |
msgstr ""
|
2609 |
-
"
|
2610 |
-
"
|
2611 |
-
|
2612 |
-
#: dashboard/settings/maintenance.php:30
|
2613 |
-
msgid "Are you sure you want to continue?"
|
2614 |
-
msgstr "Tem certeza de que deseja continuar?"
|
2615 |
-
|
2616 |
-
#: dashboard/settings/maintenance.php:30
|
2617 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2618 |
-
msgstr "ESTA AÇÃO NÃO PODE SER DESFEITA!"
|
2619 |
|
2620 |
-
#: dashboard/settings/maintenance.php:
|
2621 |
-
msgid "Basic database maintenance."
|
2622 |
-
msgstr "Básicas de manutenção de banco de dados."
|
2623 |
-
|
2624 |
-
#: dashboard/settings/maintenance.php:33
|
2625 |
-
msgid "Delete stats older than 365 days."
|
2626 |
-
msgstr "Excluir estatísticas de mais de 365 dias."
|
2627 |
-
|
2628 |
-
#: dashboard/settings/maintenance.php:34
|
2629 |
-
msgid "Delete leftover export files."
|
2630 |
-
msgstr "Elimine restos de arquivos de exportação."
|
2631 |
-
|
2632 |
-
#: dashboard/settings/maintenance.php:35
|
2633 |
-
msgid ""
|
2634 |
-
"For when you create an advert, group or schedule and it does not save or "
|
2635 |
-
"keep changes you make."
|
2636 |
-
msgstr ""
|
2637 |
-
"Para quando você cria um anúncio, grupo ou agendar e não guardar ou manter "
|
2638 |
-
"as alterações que você faz."
|
2639 |
-
|
2640 |
-
#: dashboard/settings/maintenance.php:35
|
2641 |
-
msgid ""
|
2642 |
-
"Additionally you can delete statistics and/or unused export files. This will "
|
2643 |
-
"improve the speed of your site."
|
2644 |
-
msgstr ""
|
2645 |
-
"Além disso, você pode excluir estatísticas e/ou não utilizados, arquivos de "
|
2646 |
-
"exportação. Isto irá melhorar a velocidade de seu site."
|
2647 |
-
|
2648 |
-
#: dashboard/settings/maintenance.php:39
|
2649 |
-
msgid ""
|
2650 |
-
"DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
2651 |
-
"database or clean up overhead data. They only apply to your ads/groups and "
|
2652 |
-
"stats. Not to other settings or other parts of WordPress! Always always make "
|
2653 |
-
"a backup! If for any reason your data is lost, damaged or otherwise becomes "
|
2654 |
-
"unusable in any way or by any means in whichever way I will not take "
|
2655 |
-
"responsibility. You should always have a backup of your database. These "
|
2656 |
-
"functions do NOT destroy data. If data is lost, damaged or unusable in any "
|
2657 |
-
"way, your database likely was beyond repair already. Claiming it worked "
|
2658 |
-
"before clicking these buttons is not a valid point in any case."
|
2659 |
-
msgstr ""
|
2660 |
-
"ISENÇÃO de responsabilidade: As funções acima são destinado para ser usado "
|
2661 |
-
"para OTIMIZAR seu banco de dados ou limpar a sobrecarga de dados. Eles só se "
|
2662 |
-
"aplicam aos anúncios/grupos e estatísticas. Não para outras configurações ou "
|
2663 |
-
"outras partes do WordPress! Sempre faça sempre um backup! Se por qualquer "
|
2664 |
-
"razão os seus dados perdidos, danificados ou que de outra forma torna-se "
|
2665 |
-
"inutilizável em qualquer forma ou por qualquer meio, em qualquer forma eu "
|
2666 |
-
"não vou assumir a responsabilidade. Você deve sempre ter um backup de seu "
|
2667 |
-
"banco de dados. Essas funções NÃO destruir dados. Se os dados forem "
|
2668 |
-
"perdidos, danificados ou inutilizados, de forma alguma, o seu banco de dados "
|
2669 |
-
"provavelmente foi além do reparo já. Alegando que trabalhou antes de clicar "
|
2670 |
-
"nesses botões não é um ponto válido, em qualquer caso."
|
2671 |
-
|
2672 |
-
#: dashboard/settings/maintenance.php:41
|
2673 |
msgid "Status and Versions"
|
2674 |
msgstr "Estado e Versões"
|
2675 |
|
2676 |
-
#: dashboard/settings/maintenance.php:
|
2677 |
msgid "Current status of adverts"
|
2678 |
msgstr "Status atual de anúncios"
|
2679 |
|
2680 |
-
#: dashboard/settings/maintenance.php:
|
2681 |
msgid "Normal"
|
2682 |
msgstr "Normal"
|
2683 |
|
2684 |
-
#: dashboard/settings/maintenance.php:
|
2685 |
msgid "Error"
|
2686 |
msgstr "Erro"
|
2687 |
|
2688 |
-
#: dashboard/settings/maintenance.php:
|
2689 |
msgid "Expires Soon"
|
2690 |
msgstr "Expira Em Breve"
|
2691 |
|
2692 |
-
#: dashboard/settings/maintenance.php:
|
2693 |
msgid "Unknown"
|
2694 |
msgstr "Desconhecido"
|
2695 |
|
2696 |
-
#: dashboard/settings/maintenance.php:
|
2697 |
msgid "Banners/assets Folder"
|
2698 |
msgstr "Banners/ativos Pasta"
|
2699 |
|
2700 |
-
#: dashboard/settings/maintenance.php:
|
2701 |
msgid "Exists and appears writable"
|
2702 |
msgstr "Existe e aparece gravável"
|
2703 |
|
2704 |
-
#: dashboard/settings/maintenance.php:
|
2705 |
msgid "Not writable or does not exist"
|
2706 |
msgstr "Não gravável ou não existe"
|
2707 |
|
2708 |
-
#: dashboard/settings/maintenance.php:
|
2709 |
msgid "Reports Folder"
|
2710 |
msgstr "Pasta De Relatórios"
|
2711 |
|
2712 |
-
#: dashboard/settings/maintenance.php:
|
2713 |
msgid "Advert evaluation"
|
2714 |
msgstr "Anúncio avaliação"
|
2715 |
|
2716 |
-
#: dashboard/settings/maintenance.php:
|
2717 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2718 |
msgstr "Não agendada! Re-ative o plugin na página de plugins."
|
2719 |
|
2720 |
-
#: dashboard/settings/maintenance.php:
|
2721 |
msgid "Clean Trackerdata"
|
2722 |
msgstr "Limpa Trackerdata"
|
2723 |
|
2724 |
-
#: dashboard/settings/maintenance.php:
|
2725 |
msgid "Not scheduled!"
|
2726 |
msgstr "Não agendada!"
|
2727 |
|
2728 |
-
#: dashboard/settings/maintenance.php:
|
2729 |
msgid "Background tasks"
|
2730 |
msgstr "Tarefas de plano de fundo"
|
2731 |
|
2732 |
-
#: dashboard/settings/maintenance.php:
|
2733 |
msgid "Reset background tasks"
|
2734 |
msgstr "Redefinição de tarefas de plano de fundo"
|
2735 |
|
2736 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2737 |
msgid "Unsupported plugins"
|
2738 |
msgstr "Arrayprobe"
|
2739 |
|
2740 |
-
#: dashboard/settings/maintenance.php:
|
2741 |
msgid "Disable 3rd party plugins"
|
2742 |
msgstr "Desativar plugins de 3"
|
2743 |
|
2744 |
-
#: dashboard/settings/maintenance.php:
|
2745 |
msgid "One or more unsupported 3rd party plugins detected."
|
2746 |
msgstr "Um ou mais sem suporte plugins de 3 detectados."
|
2747 |
|
2748 |
-
#: dashboard/settings/maintenance.php:
|
2749 |
msgid ""
|
2750 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2751 |
"dashboard which may affect security and/or stability."
|
@@ -2753,11 +2679,11 @@ msgstr ""
|
|
2753 |
"Estes são os plugins que alteram funções do AdRotate ou highjack componentes "
|
2754 |
"do painel de instrumentos, que pode afectar a segurança e/ou estabilidade."
|
2755 |
|
2756 |
-
#: dashboard/settings/maintenance.php:
|
2757 |
msgid "Internal Versions"
|
2758 |
msgstr "Interno Versões"
|
2759 |
|
2760 |
-
#: dashboard/settings/maintenance.php:
|
2761 |
msgid ""
|
2762 |
"Unless you experience database issues or a warning shows below, these "
|
2763 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
@@ -2768,52 +2694,52 @@ msgstr ""
|
|
2768 |
"problemas. O suporte pode pedir-lhes para verificar o status do banco de "
|
2769 |
"dados."
|
2770 |
|
2771 |
-
#: dashboard/settings/maintenance.php:
|
2772 |
msgid "AdRotate version"
|
2773 |
msgstr "AdRotate versão"
|
2774 |
|
2775 |
-
#: dashboard/settings/maintenance.php:
|
2776 |
msgid "Current:"
|
2777 |
msgstr "Atual:"
|
2778 |
|
2779 |
-
#: dashboard/settings/maintenance.php:
|
2780 |
msgid "Should be:"
|
2781 |
msgstr "Deve ser:"
|
2782 |
|
2783 |
-
#: dashboard/settings/maintenance.php:
|
2784 |
msgid "Previous:"
|
2785 |
msgstr "Anteriores:"
|
2786 |
|
2787 |
-
#: dashboard/settings/maintenance.php:
|
2788 |
msgid "Database version"
|
2789 |
msgstr "Versão da base de dados"
|
2790 |
|
2791 |
-
#: dashboard/settings/maintenance.php:
|
2792 |
msgid "Manual upgrade"
|
2793 |
msgstr "Atualização Manual"
|
2794 |
|
2795 |
-
#: dashboard/settings/maintenance.php:
|
2796 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2797 |
msgstr "VOCÊ ESTÁ PRESTES A FAZER UMA ATUALIZAÇÃO MANUAL PARA ADROTATE."
|
2798 |
|
2799 |
-
#: dashboard/settings/maintenance.php:
|
2800 |
msgid "Make sure you have a database backup!"
|
2801 |
msgstr "Certifique-se de ter um backup do banco de dados!"
|
2802 |
|
2803 |
-
#: dashboard/settings/maintenance.php:
|
2804 |
msgid "This might take a while and may slow down your site during this action!"
|
2805 |
msgstr ""
|
2806 |
"Isso pode levar algum tempo e poderá diminuir o seu site durante esta ação!"
|
2807 |
|
2808 |
-
#: dashboard/settings/maintenance.php:
|
2809 |
msgid "Run updater"
|
2810 |
msgstr "Executar o updater"
|
2811 |
|
2812 |
-
#: dashboard/settings/misc.php:
|
2813 |
msgid "Widget alignment"
|
2814 |
msgstr "Widget de alinhamento"
|
2815 |
|
2816 |
-
#: dashboard/settings/misc.php:
|
2817 |
msgid ""
|
2818 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2819 |
"not always help!)"
|
@@ -2821,11 +2747,11 @@ msgstr ""
|
|
2821 |
"Marque esta caixa se o seu widgets não alinhados em seus temas lateral. (Não "
|
2822 |
"sempre ajuda!)"
|
2823 |
|
2824 |
-
#: dashboard/settings/misc.php:
|
2825 |
msgid "Widget padding"
|
2826 |
msgstr "Widget de preenchimento"
|
2827 |
|
2828 |
-
#: dashboard/settings/misc.php:
|
2829 |
msgid ""
|
2830 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2831 |
"not always work!)"
|
@@ -2833,18 +2759,18 @@ msgstr ""
|
|
2833 |
"Ative esta opção para remover o preenchimento (espaço em branco), cerca de "
|
2834 |
"anúncios em widgets. (Não funciona sempre!)"
|
2835 |
|
2836 |
-
#: dashboard/settings/misc.php:
|
2837 |
msgid "NOTICE:"
|
2838 |
msgstr "AVISO:"
|
2839 |
|
2840 |
-
#: dashboard/settings/misc.php:
|
2841 |
msgid ""
|
2842 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2843 |
msgstr ""
|
2844 |
"Você tiver ativado o W3 Total Cache de apoio, mas não definiu o hash de "
|
2845 |
"segurança."
|
2846 |
|
2847 |
-
#: dashboard/settings/misc.php:
|
2848 |
msgid ""
|
2849 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2850 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
@@ -2854,28 +2780,28 @@ msgstr ""
|
|
2854 |
"torno da linha 52 (abaixo do WordPress nonces). Se você não souber como "
|
2855 |
"adicionar esta linha, confira o guia a seguir;"
|
2856 |
|
2857 |
-
#: dashboard/settings/misc.php:
|
2858 |
msgid "Set up W3 Total Caching"
|
2859 |
msgstr "Configurar W3 Total Cache"
|
2860 |
|
2861 |
-
#: dashboard/settings/misc.php:
|
2862 |
msgid "W3 Total Caching"
|
2863 |
msgstr "W3 Total Cache"
|
2864 |
|
2865 |
-
#: dashboard/settings/misc.php:
|
2866 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2867 |
msgstr ""
|
2868 |
"Marque esta caixa de seleção se você usar o W3 Total Cache em seu site."
|
2869 |
|
2870 |
-
#: dashboard/settings/misc.php:
|
2871 |
msgid "Borlabs Cache"
|
2872 |
msgstr "Borlabs Cache"
|
2873 |
|
2874 |
-
#: dashboard/settings/misc.php:
|
2875 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2876 |
msgstr "Marque esta caixa de seleção se você usar Borlabs Cache em seu site."
|
2877 |
|
2878 |
-
#: dashboard/settings/misc.php:
|
2879 |
msgid ""
|
2880 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2881 |
"to refresh the cache. This can take up to a week if not done manually."
|
@@ -2884,7 +2810,7 @@ msgstr ""
|
|
2884 |
"precisa atualizar o cache. Isso pode levar até uma semana, se não for feito "
|
2885 |
"manualmente."
|
2886 |
|
2887 |
-
#: dashboard/settings/misc.php:
|
2888 |
msgid ""
|
2889 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2890 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
@@ -3298,6 +3224,92 @@ msgstr ""
|
|
3298 |
"especial, código ou estilos de layout podem ser aplicados no invólucro do "
|
3299 |
"grupo ao editar o grupo."
|
3300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3301 |
#~ msgid "Check all adverts for configuration errors"
|
3302 |
#~ msgstr "Verifique todos os anúncios erros de configuração"
|
3303 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:24-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-11-14 17:24-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
22 |
msgid "AdRotate - Advertisements"
|
23 |
msgstr "AdRotate - Anúncios"
|
24 |
|
25 |
+
#: adrotate-functions.php:795
|
26 |
msgid "Advert saved"
|
27 |
msgstr "Anúncio salvo"
|
28 |
|
29 |
+
#: adrotate-functions.php:799
|
30 |
msgid "Group saved"
|
31 |
msgstr "Grupo guardado"
|
32 |
|
33 |
+
#: adrotate-functions.php:803
|
34 |
msgid "Banner image saved"
|
35 |
msgstr "A imagem da bandeira salvo"
|
36 |
|
37 |
+
#: adrotate-functions.php:807
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Anúncio(s) apagados"
|
40 |
|
41 |
+
#: adrotate-functions.php:811
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Grupo de excluídos"
|
44 |
|
45 |
+
#: adrotate-functions.php:815
|
46 |
msgid "Asset(s) deleted"
|
47 |
msgstr "Activo(s) apagados"
|
48 |
|
49 |
+
#: adrotate-functions.php:819
|
50 |
msgid ""
|
51 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
52 |
"are in order."
|
54 |
"Alguma coisa saiu errada exclusão de um arquivo ou pasta. Certifique-se de "
|
55 |
"que as permissões estão em ordem."
|
56 |
|
57 |
+
#: adrotate-functions.php:823
|
58 |
msgid "Advert(s) statistics reset"
|
59 |
msgstr "Anúncio(s) estatísticas de reposição"
|
60 |
|
61 |
+
#: adrotate-functions.php:827
|
62 |
msgid "Advert(s) renewed"
|
63 |
msgstr "Anúncios(s) renovados"
|
64 |
|
65 |
+
#: adrotate-functions.php:831
|
66 |
msgid "Advert(s) deactivated"
|
67 |
msgstr "Anúncios desativados"
|
68 |
|
69 |
+
#: adrotate-functions.php:835
|
70 |
msgid "Advert(s) activated"
|
71 |
msgstr "Anúncio(s) ativado"
|
72 |
|
73 |
+
#: adrotate-functions.php:839
|
74 |
msgid "Group including the Adverts in it deleted"
|
75 |
msgstr "Grupo de inclusão de Anúncios do excluído"
|
76 |
|
77 |
+
#: adrotate-functions.php:843
|
78 |
msgid "Export created"
|
79 |
msgstr "Exportação criado"
|
80 |
|
81 |
+
#: adrotate-functions.php:847
|
82 |
msgid ""
|
83 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
84 |
"below. Do not forget to check all settings and schedule the advert."
|
86 |
"Anúncio HTML gerado e colocado na AdCode campo. Configurar o seu anúncio "
|
87 |
"abaixo. Não se esqueça de verificar todas as configurações e agendá-lo."
|
88 |
|
89 |
+
#: adrotate-functions.php:852
|
90 |
msgid "Settings saved"
|
91 |
msgstr "As configurações salvas"
|
92 |
|
93 |
+
#: adrotate-functions.php:856
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Banco de dados otimizado"
|
96 |
|
97 |
+
#: adrotate-functions.php:860
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Banco de dados reparado"
|
100 |
|
101 |
+
#: adrotate-functions.php:864
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr "Anúncios avaliados e status foram corrigidos quando necessário"
|
104 |
|
105 |
+
#: adrotate-functions.php:868
|
106 |
msgid "Cleanup complete"
|
107 |
msgstr "Limpeza completa"
|
108 |
|
109 |
+
#: adrotate-functions.php:872
|
110 |
+
msgid "Scheduled tasks reset"
|
111 |
+
msgstr "Redefinição de tarefas agendadas"
|
112 |
+
|
113 |
+
#: adrotate-functions.php:876
|
114 |
+
msgid ""
|
115 |
+
"If there were any 3rd party plugins interfering with AdRotate they have been "
|
116 |
+
"disabled"
|
117 |
+
msgstr ""
|
118 |
+
"Se houver algum plug-in de 3ª parte interferindo com o AdRotate, eles foram "
|
119 |
+
"desativados"
|
120 |
+
|
121 |
+
#: adrotate-functions.php:880
|
122 |
+
msgid "Database updated"
|
123 |
+
msgstr "Banco de dados atualizado"
|
124 |
+
|
125 |
+
#: adrotate-functions.php:885
|
126 |
msgid "Action prohibited"
|
127 |
msgstr "Ação proibida"
|
128 |
|
129 |
+
#: adrotate-functions.php:889
|
130 |
msgid ""
|
131 |
"The advert was saved but has an issue which might prevent it from working "
|
132 |
"properly. Review the colored advert."
|
134 |
"O anúncio foi salvo, mas tem um problema que pode impedi-lo de funcionar "
|
135 |
"corretamente. Reveja o anúncio colorido."
|
136 |
|
137 |
+
#: adrotate-functions.php:893
|
138 |
msgid "No data found in selected time period"
|
139 |
msgstr "Dados não encontrados no período de tempo selecionado"
|
140 |
|
141 |
+
#: adrotate-functions.php:897
|
142 |
msgid "Database can only be optimized or cleaned once every hour"
|
143 |
msgstr "Banco de dados só pode ser otimizados ou limpo uma vez a cada hora"
|
144 |
|
145 |
+
#: adrotate-functions.php:901
|
146 |
msgid "Form can not be (partially) empty!"
|
147 |
msgstr "O formulário não pode ser (parcialmente) vazio!"
|
148 |
|
149 |
+
#: adrotate-functions.php:905
|
150 |
msgid "No file uploaded."
|
151 |
msgstr "Nenhum arquivo enviado."
|
152 |
|
153 |
+
#: adrotate-functions.php:909
|
154 |
msgid "No adverts found."
|
155 |
msgstr "Não foram encontrados anúncios."
|
156 |
|
157 |
+
#: adrotate-functions.php:913
|
158 |
msgid "Wrong file type. No file uploaded."
|
159 |
msgstr "Nenhum arquivo enviado."
|
160 |
|
161 |
+
#: adrotate-functions.php:917
|
162 |
msgid "No file selected or file is too large."
|
163 |
msgstr "Nenhum arquivo selecionado ou arquivo é muito grande."
|
164 |
|
165 |
+
#: adrotate-functions.php:921
|
166 |
msgid "There was an error unzipping the file. Please try again later."
|
167 |
msgstr ""
|
168 |
"Houve um erro descompactando o arquivo. Por favor, tente novamente mais "
|
169 |
"tarde."
|
170 |
|
171 |
+
#: adrotate-functions.php:925
|
172 |
msgid ""
|
173 |
"The advert hash is not usable or is missing required data. Please copy the "
|
174 |
"hash correctly and try again."
|
176 |
"O anúncio de hash não é utilizável ou é falta de dados necessários. Por "
|
177 |
"favor, copie o hash corretamente e tente novamente."
|
178 |
|
179 |
+
#: adrotate-functions.php:929
|
180 |
msgid ""
|
181 |
"The advert hash can not be used on the same site as it originated from or is "
|
182 |
"not a valid hash for importing."
|
184 |
"O anúncio de hash não pode ser usado no mesmo site que originou-se ou não é "
|
185 |
"um hash válido para a importação."
|
186 |
|
187 |
+
#: adrotate-functions.php:933
|
188 |
msgid "Unexpected error"
|
189 |
msgstr "Erro inesperado"
|
190 |
|
272 |
msgstr "Um erro desconhecido ocorreu."
|
273 |
|
274 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
275 |
+
#: dashboard/settings/maintenance.php:16
|
276 |
msgid "Check adverts"
|
277 |
msgstr "Verificação de anúncios"
|
278 |
|
491 |
msgid "Use on up to FIVE WordPress installations."
|
492 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
493 |
|
494 |
+
#: adrotate-statistics.php:154
|
495 |
msgid "January"
|
496 |
msgstr "Janeiro"
|
497 |
|
498 |
+
#: adrotate-statistics.php:154
|
499 |
msgid "February"
|
500 |
msgstr "Fevereiro"
|
501 |
|
502 |
+
#: adrotate-statistics.php:154
|
503 |
msgid "March"
|
504 |
msgstr "Março"
|
505 |
|
506 |
+
#: adrotate-statistics.php:154
|
507 |
msgid "April"
|
508 |
msgstr "Abril"
|
509 |
|
510 |
+
#: adrotate-statistics.php:154
|
511 |
msgid "May"
|
512 |
msgstr "Pode"
|
513 |
|
514 |
+
#: adrotate-statistics.php:154
|
515 |
msgid "June"
|
516 |
msgstr "Junho"
|
517 |
|
518 |
+
#: adrotate-statistics.php:154
|
519 |
msgid "July"
|
520 |
msgstr "Julho"
|
521 |
|
522 |
+
#: adrotate-statistics.php:154
|
523 |
msgid "August"
|
524 |
msgstr "Agosto"
|
525 |
|
526 |
+
#: adrotate-statistics.php:154
|
527 |
msgid "September"
|
528 |
msgstr "Setembro"
|
529 |
|
530 |
+
#: adrotate-statistics.php:154
|
531 |
msgid "October"
|
532 |
msgstr "Outubro"
|
533 |
|
534 |
+
#: adrotate-statistics.php:154
|
535 |
msgid "November"
|
536 |
msgstr "Novembro"
|
537 |
|
538 |
+
#: adrotate-statistics.php:154
|
539 |
msgid "December"
|
540 |
msgstr "Dezembro"
|
541 |
|
542 |
+
#: adrotate-statistics.php:163
|
543 |
msgid "Previous"
|
544 |
msgstr "Anterior"
|
545 |
|
546 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
547 |
#: dashboard/publisher/statistics-group.php:73
|
548 |
#: dashboard/publisher/statistics-main.php:48
|
549 |
msgid "This month"
|
550 |
msgstr "Este mês"
|
551 |
|
552 |
+
#: adrotate-statistics.php:166
|
553 |
msgid "Next"
|
554 |
msgstr "Próximo"
|
555 |
|
556 |
+
#: adrotate-statistics.php:220
|
557 |
msgid "No data to show!"
|
558 |
msgstr "Sem dados para mostrar!"
|
559 |
|
560 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
561 |
msgid "Not found"
|
562 |
msgstr "Não encontrado"
|
563 |
|
601 |
msgid "Fill in the ID of the type you want to display!"
|
602 |
msgstr "Preencha o ID do tipo que você deseja exibir!"
|
603 |
|
604 |
+
#: adrotate.php:104 adrotate.php:174
|
605 |
msgid "Manage Adverts"
|
606 |
msgstr "Gerenciar Anúncios"
|
607 |
|
608 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
609 |
msgid "Manage Groups"
|
610 |
msgstr "Gerir Grupos"
|
611 |
|
612 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
613 |
msgid "Manage Schedules"
|
614 |
msgstr "Gerenciar Agendas"
|
615 |
|
616 |
+
#: adrotate.php:107
|
617 |
msgid "Manage Media"
|
618 |
msgstr "Gerenciar Mídia"
|
619 |
|
620 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
621 |
#: dashboard/publisher/adverts-edit.php:178
|
622 |
#: dashboard/publisher/statistics-main.php:23
|
623 |
#: dashboard/settings/statistics.php:17
|
624 |
msgid "Statistics"
|
625 |
msgstr "Estatísticas"
|
626 |
|
627 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
628 |
msgid "Get AdRotate Pro"
|
629 |
msgstr "Obter AdRotate Pro"
|
630 |
|
631 |
+
#: adrotate.php:110
|
632 |
msgid "Support"
|
633 |
msgstr "Suporte"
|
634 |
|
635 |
+
#: adrotate.php:111
|
636 |
msgid "Settings"
|
637 |
msgstr "Definições"
|
638 |
|
639 |
+
#: adrotate.php:130
|
640 |
msgid "Get AdRotate Professional"
|
641 |
msgstr "Obter AdRotate Profissional"
|
642 |
|
643 |
+
#: adrotate.php:234 adrotate.php:306
|
644 |
msgid "Manage"
|
645 |
msgstr "Gerenciar"
|
646 |
|
647 |
+
#: adrotate.php:235
|
648 |
msgid "Advert Generator"
|
649 |
msgstr "Gerador de anúncios"
|
650 |
|
651 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
652 |
msgid "New Advert"
|
653 |
msgstr "Novo Anúncio"
|
654 |
|
655 |
+
#: adrotate.php:307
|
656 |
msgid "Add New"
|
657 |
msgstr "Adicionar Novo"
|
658 |
|
659 |
+
#: adrotate.php:375
|
660 |
msgid "Manage Media and Assets"
|
661 |
msgstr "Gerenciar Mídia e Ativos"
|
662 |
|
663 |
+
#: adrotate.php:379
|
664 |
msgid ""
|
665 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
666 |
"if you have HTML5 adverts containing multiple files."
|
668 |
"Upload de imagens para o AdRotate Pro banners pasta a partir daqui. Isso é "
|
669 |
"útil se você tiver HTML5 anúncios que contém vários arquivos."
|
670 |
|
671 |
+
#: adrotate.php:421
|
672 |
msgid "Advert Statistics"
|
673 |
msgstr "Anúncio Estatísticas"
|
674 |
|
675 |
+
#: adrotate.php:464
|
676 |
msgid "AdRotate Support"
|
677 |
msgstr "AdRotate Suporte"
|
678 |
|
679 |
+
#: adrotate.php:510
|
680 |
msgid "AdRotate Settings"
|
681 |
msgstr "AdRotate Definições"
|
682 |
|
683 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
684 |
msgid "General"
|
685 |
msgstr "Geral"
|
686 |
|
687 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
688 |
msgid "Notifications"
|
689 |
msgstr "Notificações"
|
690 |
|
691 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
692 |
msgid "Geo Targeting"
|
693 |
msgstr "Geo Targeting"
|
694 |
|
695 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
696 |
msgid "Access Roles"
|
697 |
msgstr "Funções De Acesso"
|
698 |
|
699 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
700 |
msgid "Miscellaneous"
|
701 |
msgstr "Diversos"
|
702 |
|
703 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
704 |
msgid "Maintenance"
|
705 |
msgstr "Manutenção"
|
706 |
|
1430 |
msgstr "Expira em breve"
|
1431 |
|
1432 |
#: dashboard/publisher/adverts-error.php:67
|
1433 |
+
#: dashboard/settings/maintenance.php:30
|
1434 |
msgid "Expired"
|
1435 |
msgstr "Expirou"
|
1436 |
|
2042 |
msgid "This action can not be undone!"
|
2043 |
msgstr "Esta ação não pode ser desfeita!"
|
2044 |
|
2045 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
2046 |
msgid "OK to continue, CANCEL to stop."
|
2047 |
msgstr "OK para continuar ou em CANCELAR para parar."
|
2048 |
|
2465 |
msgid "user-agents"
|
2466 |
msgstr "agentes de utilizador"
|
2467 |
|
2468 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2469 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2470 |
#: dashboard/settings/statistics.php:85
|
2471 |
msgid "Update Options"
|
2574 |
msgid "Password/License Key"
|
2575 |
msgstr "Senha/Chave De Licença"
|
2576 |
|
2577 |
+
#: dashboard/settings/maintenance.php:18
|
2578 |
+
msgid "Check ads for errors"
|
2579 |
+
msgstr "Verificar se há erros nos anúncios"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2580 |
|
2581 |
+
#: dashboard/settings/maintenance.php:21
|
2582 |
msgid ""
|
2583 |
+
"Apply all evaluation rules to all adverts to see if any error slipped in. "
|
2584 |
+
"This may take a few seconds."
|
2585 |
msgstr ""
|
2586 |
+
"Aplique todas as regras de avaliação a todos os anúncios para ver se algum "
|
2587 |
+
"erro apareceu. Isso pode levar alguns segundos."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2588 |
|
2589 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2590 |
msgid "Status and Versions"
|
2591 |
msgstr "Estado e Versões"
|
2592 |
|
2593 |
+
#: dashboard/settings/maintenance.php:29
|
2594 |
msgid "Current status of adverts"
|
2595 |
msgstr "Status atual de anúncios"
|
2596 |
|
2597 |
+
#: dashboard/settings/maintenance.php:30
|
2598 |
msgid "Normal"
|
2599 |
msgstr "Normal"
|
2600 |
|
2601 |
+
#: dashboard/settings/maintenance.php:30
|
2602 |
msgid "Error"
|
2603 |
msgstr "Erro"
|
2604 |
|
2605 |
+
#: dashboard/settings/maintenance.php:30
|
2606 |
msgid "Expires Soon"
|
2607 |
msgstr "Expira Em Breve"
|
2608 |
|
2609 |
+
#: dashboard/settings/maintenance.php:30
|
2610 |
msgid "Unknown"
|
2611 |
msgstr "Desconhecido"
|
2612 |
|
2613 |
+
#: dashboard/settings/maintenance.php:33
|
2614 |
msgid "Banners/assets Folder"
|
2615 |
msgstr "Banners/ativos Pasta"
|
2616 |
|
2617 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2618 |
msgid "Exists and appears writable"
|
2619 |
msgstr "Existe e aparece gravável"
|
2620 |
|
2621 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2622 |
msgid "Not writable or does not exist"
|
2623 |
msgstr "Não gravável ou não existe"
|
2624 |
|
2625 |
+
#: dashboard/settings/maintenance.php:42
|
2626 |
msgid "Reports Folder"
|
2627 |
msgstr "Pasta De Relatórios"
|
2628 |
|
2629 |
+
#: dashboard/settings/maintenance.php:51
|
2630 |
msgid "Advert evaluation"
|
2631 |
msgstr "Anúncio avaliação"
|
2632 |
|
2633 |
+
#: dashboard/settings/maintenance.php:52
|
2634 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2635 |
msgstr "Não agendada! Re-ative o plugin na página de plugins."
|
2636 |
|
2637 |
+
#: dashboard/settings/maintenance.php:53
|
2638 |
msgid "Clean Trackerdata"
|
2639 |
msgstr "Limpa Trackerdata"
|
2640 |
|
2641 |
+
#: dashboard/settings/maintenance.php:54
|
2642 |
msgid "Not scheduled!"
|
2643 |
msgstr "Não agendada!"
|
2644 |
|
2645 |
+
#: dashboard/settings/maintenance.php:57
|
2646 |
msgid "Background tasks"
|
2647 |
msgstr "Tarefas de plano de fundo"
|
2648 |
|
2649 |
+
#: dashboard/settings/maintenance.php:59
|
2650 |
msgid "Reset background tasks"
|
2651 |
msgstr "Redefinição de tarefas de plano de fundo"
|
2652 |
|
2653 |
+
#: dashboard/settings/maintenance.php:62
|
2654 |
+
msgid ""
|
2655 |
+
"If automated tasks such as expiring adverts does not work reliable or one of "
|
2656 |
+
"the above schedules is missing use this button to reset the tasks."
|
2657 |
+
msgstr ""
|
2658 |
+
"Se tarefas automatizadas, como anúncios expirando, não funcionarem de forma "
|
2659 |
+
"confiável ou se uma das agendas acima estiver faltando, use esse botão para "
|
2660 |
+
"redefinir as tarefas."
|
2661 |
+
|
2662 |
+
#: dashboard/settings/maintenance.php:66
|
2663 |
msgid "Unsupported plugins"
|
2664 |
msgstr "Arrayprobe"
|
2665 |
|
2666 |
+
#: dashboard/settings/maintenance.php:68
|
2667 |
msgid "Disable 3rd party plugins"
|
2668 |
msgstr "Desativar plugins de 3"
|
2669 |
|
2670 |
+
#: dashboard/settings/maintenance.php:70
|
2671 |
msgid "One or more unsupported 3rd party plugins detected."
|
2672 |
msgstr "Um ou mais sem suporte plugins de 3 detectados."
|
2673 |
|
2674 |
+
#: dashboard/settings/maintenance.php:72
|
2675 |
msgid ""
|
2676 |
"These are plugins that alter functions of AdRotate or highjack parts of the "
|
2677 |
"dashboard which may affect security and/or stability."
|
2679 |
"Estes são os plugins que alteram funções do AdRotate ou highjack componentes "
|
2680 |
"do painel de instrumentos, que pode afectar a segurança e/ou estabilidade."
|
2681 |
|
2682 |
+
#: dashboard/settings/maintenance.php:77
|
2683 |
msgid "Internal Versions"
|
2684 |
msgstr "Interno Versões"
|
2685 |
|
2686 |
+
#: dashboard/settings/maintenance.php:78
|
2687 |
msgid ""
|
2688 |
"Unless you experience database issues or a warning shows below, these "
|
2689 |
"numbers are not really relevant for troubleshooting. Support may ask for "
|
2694 |
"problemas. O suporte pode pedir-lhes para verificar o status do banco de "
|
2695 |
"dados."
|
2696 |
|
2697 |
+
#: dashboard/settings/maintenance.php:81
|
2698 |
msgid "AdRotate version"
|
2699 |
msgstr "AdRotate versão"
|
2700 |
|
2701 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2702 |
msgid "Current:"
|
2703 |
msgstr "Atual:"
|
2704 |
|
2705 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2706 |
msgid "Should be:"
|
2707 |
msgstr "Deve ser:"
|
2708 |
|
2709 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2710 |
msgid "Previous:"
|
2711 |
msgstr "Anteriores:"
|
2712 |
|
2713 |
+
#: dashboard/settings/maintenance.php:83
|
2714 |
msgid "Database version"
|
2715 |
msgstr "Versão da base de dados"
|
2716 |
|
2717 |
+
#: dashboard/settings/maintenance.php:87
|
2718 |
msgid "Manual upgrade"
|
2719 |
msgstr "Atualização Manual"
|
2720 |
|
2721 |
+
#: dashboard/settings/maintenance.php:89
|
2722 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2723 |
msgstr "VOCÊ ESTÁ PRESTES A FAZER UMA ATUALIZAÇÃO MANUAL PARA ADROTATE."
|
2724 |
|
2725 |
+
#: dashboard/settings/maintenance.php:89
|
2726 |
msgid "Make sure you have a database backup!"
|
2727 |
msgstr "Certifique-se de ter um backup do banco de dados!"
|
2728 |
|
2729 |
+
#: dashboard/settings/maintenance.php:89
|
2730 |
msgid "This might take a while and may slow down your site during this action!"
|
2731 |
msgstr ""
|
2732 |
"Isso pode levar algum tempo e poderá diminuir o seu site durante esta ação!"
|
2733 |
|
2734 |
+
#: dashboard/settings/maintenance.php:89
|
2735 |
msgid "Run updater"
|
2736 |
msgstr "Executar o updater"
|
2737 |
|
2738 |
+
#: dashboard/settings/misc.php:122
|
2739 |
msgid "Widget alignment"
|
2740 |
msgstr "Widget de alinhamento"
|
2741 |
|
2742 |
+
#: dashboard/settings/misc.php:123
|
2743 |
msgid ""
|
2744 |
"Check this box if your widgets do not align in your themes sidebar. (Does "
|
2745 |
"not always help!)"
|
2747 |
"Marque esta caixa se o seu widgets não alinhados em seus temas lateral. (Não "
|
2748 |
"sempre ajuda!)"
|
2749 |
|
2750 |
+
#: dashboard/settings/misc.php:126
|
2751 |
msgid "Widget padding"
|
2752 |
msgstr "Widget de preenchimento"
|
2753 |
|
2754 |
+
#: dashboard/settings/misc.php:127
|
2755 |
msgid ""
|
2756 |
"Enable this to remove the padding (blank space) around ads in widgets. (Does "
|
2757 |
"not always work!)"
|
2759 |
"Ative esta opção para remover o preenchimento (espaço em branco), cerca de "
|
2760 |
"anúncios em widgets. (Não funciona sempre!)"
|
2761 |
|
2762 |
+
#: dashboard/settings/misc.php:131
|
2763 |
msgid "NOTICE:"
|
2764 |
msgstr "AVISO:"
|
2765 |
|
2766 |
+
#: dashboard/settings/misc.php:132
|
2767 |
msgid ""
|
2768 |
"You have enabled W3 Total Caching support but not defined the security hash."
|
2769 |
msgstr ""
|
2770 |
"Você tiver ativado o W3 Total Cache de apoio, mas não definiu o hash de "
|
2771 |
"segurança."
|
2772 |
|
2773 |
+
#: dashboard/settings/misc.php:132
|
2774 |
msgid ""
|
2775 |
"AdRotate has generated the following line for you to add to your wp-config."
|
2776 |
"php around line 52 (below the WordPress nonces). If you do not know how to "
|
2780 |
"torno da linha 52 (abaixo do WordPress nonces). Se você não souber como "
|
2781 |
"adicionar esta linha, confira o guia a seguir;"
|
2782 |
|
2783 |
+
#: dashboard/settings/misc.php:132
|
2784 |
msgid "Set up W3 Total Caching"
|
2785 |
msgstr "Configurar W3 Total Cache"
|
2786 |
|
2787 |
+
#: dashboard/settings/misc.php:136
|
2788 |
msgid "W3 Total Caching"
|
2789 |
msgstr "W3 Total Cache"
|
2790 |
|
2791 |
+
#: dashboard/settings/misc.php:137
|
2792 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2793 |
msgstr ""
|
2794 |
"Marque esta caixa de seleção se você usar o W3 Total Cache em seu site."
|
2795 |
|
2796 |
+
#: dashboard/settings/misc.php:140
|
2797 |
msgid "Borlabs Cache"
|
2798 |
msgstr "Borlabs Cache"
|
2799 |
|
2800 |
+
#: dashboard/settings/misc.php:141
|
2801 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2802 |
msgstr "Marque esta caixa de seleção se você usar Borlabs Cache em seu site."
|
2803 |
|
2804 |
+
#: dashboard/settings/misc.php:145
|
2805 |
msgid ""
|
2806 |
"It may take a while for the ad to start rotating. The caching plugin needs "
|
2807 |
"to refresh the cache. This can take up to a week if not done manually."
|
2810 |
"precisa atualizar o cache. Isso pode levar até uma semana, se não for feito "
|
2811 |
"manualmente."
|
2812 |
|
2813 |
+
#: dashboard/settings/misc.php:145
|
2814 |
msgid ""
|
2815 |
"Caching support only works for [shortcodes] and the AdRotate Widget. If you "
|
2816 |
"use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
3224 |
"especial, código ou estilos de layout podem ser aplicados no invólucro do "
|
3225 |
"grupo ao editar o grupo."
|
3226 |
|
3227 |
+
#~ msgid ""
|
3228 |
+
#~ "Use these functions when you notice your database is slow, unresponsive "
|
3229 |
+
#~ "and sluggish."
|
3230 |
+
#~ msgstr ""
|
3231 |
+
#~ "Utilizar estas funções quando você perceber que o banco de dados é lento, "
|
3232 |
+
#~ "não responde e lento."
|
3233 |
+
|
3234 |
+
#~ msgid "You are about to check all adverts for errors."
|
3235 |
+
#~ msgstr ""
|
3236 |
+
#~ "Você está prestes a verificação de todos os anúncios de vagas para erros."
|
3237 |
+
|
3238 |
+
#~ msgid "This might take a few seconds!"
|
3239 |
+
#~ msgstr "Isso pode levar alguns segundos!"
|
3240 |
+
|
3241 |
+
#~ msgid "Clean-up Database and Files"
|
3242 |
+
#~ msgstr "Limpeza de Banco de dados e Arquivos"
|
3243 |
+
|
3244 |
+
#~ msgid "Run Clean-up"
|
3245 |
+
#~ msgstr "Executar limpeza"
|
3246 |
+
|
3247 |
+
#~ msgid "You are about to do maintenance on your setup of AdRotate."
|
3248 |
+
#~ msgstr ""
|
3249 |
+
#~ "Você está prestes a fazer a manutenção do seu programa de configuração do "
|
3250 |
+
#~ "AdRotate."
|
3251 |
+
|
3252 |
+
#~ msgid ""
|
3253 |
+
#~ "This optionally may delete old statistics and tries to delete old export "
|
3254 |
+
#~ "files."
|
3255 |
+
#~ msgstr ""
|
3256 |
+
#~ "Este opcionalmente, podem eliminar o antigo estatísticas e tenta apagar "
|
3257 |
+
#~ "arquivos de exportação."
|
3258 |
+
|
3259 |
+
#~ msgid "Are you sure you want to continue?"
|
3260 |
+
#~ msgstr "Tem certeza de que deseja continuar?"
|
3261 |
+
|
3262 |
+
#~ msgid "THIS ACTION CAN NOT BE UNDONE!"
|
3263 |
+
#~ msgstr "ESTA AÇÃO NÃO PODE SER DESFEITA!"
|
3264 |
+
|
3265 |
+
#~ msgid "Basic database maintenance."
|
3266 |
+
#~ msgstr "Básicas de manutenção de banco de dados."
|
3267 |
+
|
3268 |
+
#~ msgid "Delete stats older than 365 days."
|
3269 |
+
#~ msgstr "Excluir estatísticas de mais de 365 dias."
|
3270 |
+
|
3271 |
+
#~ msgid "Delete leftover export files."
|
3272 |
+
#~ msgstr "Elimine restos de arquivos de exportação."
|
3273 |
+
|
3274 |
+
#~ msgid ""
|
3275 |
+
#~ "For when you create an advert, group or schedule and it does not save or "
|
3276 |
+
#~ "keep changes you make."
|
3277 |
+
#~ msgstr ""
|
3278 |
+
#~ "Para quando você cria um anúncio, grupo ou agendar e não guardar ou "
|
3279 |
+
#~ "manter as alterações que você faz."
|
3280 |
+
|
3281 |
+
#~ msgid ""
|
3282 |
+
#~ "Additionally you can delete statistics and/or unused export files. This "
|
3283 |
+
#~ "will improve the speed of your site."
|
3284 |
+
#~ msgstr ""
|
3285 |
+
#~ "Além disso, você pode excluir estatísticas e/ou não utilizados, arquivos "
|
3286 |
+
#~ "de exportação. Isto irá melhorar a velocidade de seu site."
|
3287 |
+
|
3288 |
+
#~ msgid ""
|
3289 |
+
#~ "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
|
3290 |
+
#~ "database or clean up overhead data. They only apply to your ads/groups "
|
3291 |
+
#~ "and stats. Not to other settings or other parts of WordPress! Always "
|
3292 |
+
#~ "always make a backup! If for any reason your data is lost, damaged or "
|
3293 |
+
#~ "otherwise becomes unusable in any way or by any means in whichever way I "
|
3294 |
+
#~ "will not take responsibility. You should always have a backup of your "
|
3295 |
+
#~ "database. These functions do NOT destroy data. If data is lost, damaged "
|
3296 |
+
#~ "or unusable in any way, your database likely was beyond repair already. "
|
3297 |
+
#~ "Claiming it worked before clicking these buttons is not a valid point in "
|
3298 |
+
#~ "any case."
|
3299 |
+
#~ msgstr ""
|
3300 |
+
#~ "ISENÇÃO de responsabilidade: As funções acima são destinado para ser "
|
3301 |
+
#~ "usado para OTIMIZAR seu banco de dados ou limpar a sobrecarga de dados. "
|
3302 |
+
#~ "Eles só se aplicam aos anúncios/grupos e estatísticas. Não para outras "
|
3303 |
+
#~ "configurações ou outras partes do WordPress! Sempre faça sempre um "
|
3304 |
+
#~ "backup! Se por qualquer razão os seus dados perdidos, danificados ou que "
|
3305 |
+
#~ "de outra forma torna-se inutilizável em qualquer forma ou por qualquer "
|
3306 |
+
#~ "meio, em qualquer forma eu não vou assumir a responsabilidade. Você deve "
|
3307 |
+
#~ "sempre ter um backup de seu banco de dados. Essas funções NÃO destruir "
|
3308 |
+
#~ "dados. Se os dados forem perdidos, danificados ou inutilizados, de forma "
|
3309 |
+
#~ "alguma, o seu banco de dados provavelmente foi além do reparo já. "
|
3310 |
+
#~ "Alegando que trabalhou antes de clicar nesses botões não é um ponto "
|
3311 |
+
#~ "válido, em qualquer caso."
|
3312 |
+
|
3313 |
#~ msgid "Check all adverts for configuration errors"
|
3314 |
#~ msgstr "Verifique todos os anúncios erros de configuração"
|
3315 |
|
language/adrotate.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
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"
|
@@ -21,131 +21,143 @@ msgstr ""
|
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Advert saved"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Group saved"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Banner image saved"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Group deleted"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid "Something went wrong deleting the file or folder. Make sure your permissions are in order."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Export created"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
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."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid "Settings saved"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: adrotate-functions.php:
|
85 |
msgid "Database optimized"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: adrotate-functions.php:
|
89 |
msgid "Database repaired"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: adrotate-functions.php:
|
97 |
msgid "Cleanup complete"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
msgid "Action prohibited"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: adrotate-functions.php:
|
105 |
msgid "The advert was saved but has an issue which might prevent it from working properly. Review the colored advert."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: adrotate-functions.php:
|
109 |
msgid "No data found in selected time period"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: adrotate-functions.php:
|
113 |
msgid "Database can only be optimized or cleaned once every hour"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: adrotate-functions.php:
|
117 |
msgid "Form can not be (partially) empty!"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: adrotate-functions.php:
|
121 |
msgid "No file uploaded."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: adrotate-functions.php:
|
125 |
msgid "No adverts found."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: adrotate-functions.php:
|
129 |
msgid "Wrong file type. No file uploaded."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: adrotate-functions.php:
|
133 |
msgid "No file selected or file is too large."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: adrotate-functions.php:
|
137 |
msgid "There was an error unzipping the file. Please try again later."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: adrotate-functions.php:
|
141 |
msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: adrotate-functions.php:
|
145 |
msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: adrotate-functions.php:
|
149 |
msgid "Unexpected error"
|
150 |
msgstr ""
|
151 |
|
@@ -210,7 +222,7 @@ msgid "An unknown error occured."
|
|
210 |
msgstr ""
|
211 |
|
212 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
213 |
-
#: dashboard/settings/maintenance.php:
|
214 |
msgid "Check adverts"
|
215 |
msgstr ""
|
216 |
|
@@ -370,73 +382,73 @@ msgstr ""
|
|
370 |
msgid "Use on up to FIVE WordPress installations."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: adrotate-statistics.php:
|
374 |
msgid "January"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: adrotate-statistics.php:
|
378 |
msgid "February"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: adrotate-statistics.php:
|
382 |
msgid "March"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: adrotate-statistics.php:
|
386 |
msgid "April"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: adrotate-statistics.php:
|
390 |
msgid "May"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: adrotate-statistics.php:
|
394 |
msgid "June"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: adrotate-statistics.php:
|
398 |
msgid "July"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: adrotate-statistics.php:
|
402 |
msgid "August"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: adrotate-statistics.php:
|
406 |
msgid "September"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: adrotate-statistics.php:
|
410 |
msgid "October"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: adrotate-statistics.php:
|
414 |
msgid "November"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: adrotate-statistics.php:
|
418 |
msgid "December"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: adrotate-statistics.php:
|
422 |
msgid "Previous"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: adrotate-statistics.php:
|
426 |
#: dashboard/publisher/statistics-group.php:73
|
427 |
#: dashboard/publisher/statistics-main.php:48
|
428 |
msgid "This month"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: adrotate-statistics.php:
|
432 |
msgid "Next"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: adrotate-statistics.php:
|
436 |
msgid "No data to show!"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: adrotate-statistics.php:
|
440 |
msgid "Not found"
|
441 |
msgstr ""
|
442 |
|
@@ -480,102 +492,102 @@ msgstr ""
|
|
480 |
msgid "Fill in the ID of the type you want to display!"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "Manage Adverts"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "Manage Groups"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid "Manage Schedules"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
msgid "Manage Media"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
#: dashboard/publisher/adverts-edit.php:178
|
501 |
#: dashboard/publisher/statistics-main.php:23
|
502 |
#: dashboard/settings/statistics.php:17
|
503 |
msgid "Statistics"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: adrotate.php:
|
507 |
msgid "Get AdRotate Pro"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: adrotate.php:
|
511 |
msgid "Support"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: adrotate.php:
|
515 |
msgid "Settings"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: adrotate.php:
|
519 |
msgid "Get AdRotate Professional"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: adrotate.php:
|
523 |
msgid "Manage"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: adrotate.php:
|
527 |
msgid "Advert Generator"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: adrotate.php:
|
531 |
msgid "New Advert"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: adrotate.php:
|
535 |
msgid "Add New"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: adrotate.php:
|
539 |
msgid "Manage Media and Assets"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: adrotate.php:
|
543 |
msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
msgid "Advert Statistics"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: adrotate.php:
|
551 |
msgid "AdRotate Support"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: adrotate.php:
|
555 |
msgid "AdRotate Settings"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: adrotate.php:
|
559 |
msgid "General"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: adrotate.php:
|
563 |
msgid "Notifications"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: adrotate.php:
|
567 |
msgid "Geo Targeting"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: adrotate.php:
|
571 |
msgid "Access Roles"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
msgid "Miscellaneous"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: adrotate.php:
|
579 |
msgid "Maintenance"
|
580 |
msgstr ""
|
581 |
|
@@ -1144,7 +1156,7 @@ msgid "Expires soon"
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
#: dashboard/publisher/adverts-error.php:67
|
1147 |
-
#: dashboard/settings/maintenance.php:
|
1148 |
msgid "Expired"
|
1149 |
msgstr ""
|
1150 |
|
@@ -1675,8 +1687,7 @@ msgstr ""
|
|
1675 |
msgid "This action can not be undone!"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:
|
1679 |
-
#: dashboard/settings/maintenance.php:101
|
1680 |
msgid "OK to continue, CANCEL to stop."
|
1681 |
msgstr ""
|
1682 |
|
@@ -2008,7 +2019,7 @@ msgstr ""
|
|
2008 |
msgid "user-agents"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:
|
2012 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2013 |
#: dashboard/settings/statistics.php:85
|
2014 |
msgid "Update Options"
|
@@ -2103,255 +2114,199 @@ msgstr ""
|
|
2103 |
msgid "Password/License Key"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: dashboard/settings/maintenance.php:
|
2107 |
-
msgid "
|
2108 |
-
msgstr ""
|
2109 |
-
|
2110 |
-
#: dashboard/settings/maintenance.php:22
|
2111 |
-
msgid "Check for errors"
|
2112 |
-
msgstr ""
|
2113 |
-
|
2114 |
-
#: dashboard/settings/maintenance.php:22
|
2115 |
-
msgid "You are about to check all adverts for errors."
|
2116 |
-
msgstr ""
|
2117 |
-
|
2118 |
-
#: dashboard/settings/maintenance.php:22
|
2119 |
-
msgid "This might take a few seconds!"
|
2120 |
-
msgstr ""
|
2121 |
-
|
2122 |
-
#: dashboard/settings/maintenance.php:24
|
2123 |
-
msgid "Apply all evaluation rules to all adverts to see if any error slipped in."
|
2124 |
-
msgstr ""
|
2125 |
-
|
2126 |
-
#: dashboard/settings/maintenance.php:28
|
2127 |
-
msgid "Clean-up Database and Files"
|
2128 |
-
msgstr ""
|
2129 |
-
|
2130 |
-
#: dashboard/settings/maintenance.php:30
|
2131 |
-
msgid "Run Clean-up"
|
2132 |
-
msgstr ""
|
2133 |
-
|
2134 |
-
#: dashboard/settings/maintenance.php:30
|
2135 |
-
msgid "You are about to do maintenance on your setup of AdRotate."
|
2136 |
-
msgstr ""
|
2137 |
-
|
2138 |
-
#: dashboard/settings/maintenance.php:30
|
2139 |
-
msgid "This optionally may delete old statistics and tries to delete old export files."
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#: dashboard/settings/maintenance.php:30
|
2143 |
-
msgid "Are you sure you want to continue?"
|
2144 |
-
msgstr ""
|
2145 |
-
|
2146 |
-
#: dashboard/settings/maintenance.php:30
|
2147 |
-
msgid "THIS ACTION CAN NOT BE UNDONE!"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: dashboard/settings/maintenance.php:
|
2151 |
-
msgid "
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: dashboard/settings/maintenance.php:
|
2155 |
-
msgid "Delete stats older than 365 days."
|
2156 |
-
msgstr ""
|
2157 |
-
|
2158 |
-
#: dashboard/settings/maintenance.php:34
|
2159 |
-
msgid "Delete leftover export files."
|
2160 |
-
msgstr ""
|
2161 |
-
|
2162 |
-
#: dashboard/settings/maintenance.php:35
|
2163 |
-
msgid "For when you create an advert, group or schedule and it does not save or keep changes you make."
|
2164 |
-
msgstr ""
|
2165 |
-
|
2166 |
-
#: dashboard/settings/maintenance.php:35
|
2167 |
-
msgid "Additionally you can delete statistics and/or unused export files. This will improve the speed of your site."
|
2168 |
-
msgstr ""
|
2169 |
-
|
2170 |
-
#: dashboard/settings/maintenance.php:39
|
2171 |
-
msgid "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your database or clean up overhead data. They only apply to your ads/groups and stats. Not to other settings or other parts of WordPress! Always always make a backup! If for any reason your data is lost, damaged or otherwise becomes unusable in any way or by any means in whichever way I will not take responsibility. You should always have a backup of your database. These functions do NOT destroy data. If data is lost, damaged or unusable in any way, your database likely was beyond repair already. Claiming it worked before clicking these buttons is not a valid point in any case."
|
2172 |
-
msgstr ""
|
2173 |
-
|
2174 |
-
#: dashboard/settings/maintenance.php:41
|
2175 |
msgid "Status and Versions"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: dashboard/settings/maintenance.php:
|
2179 |
msgid "Current status of adverts"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: dashboard/settings/maintenance.php:
|
2183 |
msgid "Normal"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: dashboard/settings/maintenance.php:
|
2187 |
msgid "Error"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: dashboard/settings/maintenance.php:
|
2191 |
msgid "Expires Soon"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: dashboard/settings/maintenance.php:
|
2195 |
msgid "Unknown"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: dashboard/settings/maintenance.php:
|
2199 |
msgid "Banners/assets Folder"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: dashboard/settings/maintenance.php:
|
2203 |
msgid "Exists and appears writable"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: dashboard/settings/maintenance.php:
|
2207 |
msgid "Not writable or does not exist"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: dashboard/settings/maintenance.php:
|
2211 |
msgid "Reports Folder"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: dashboard/settings/maintenance.php:
|
2215 |
msgid "Advert evaluation"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: dashboard/settings/maintenance.php:
|
2219 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: dashboard/settings/maintenance.php:
|
2223 |
msgid "Clean Trackerdata"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: dashboard/settings/maintenance.php:
|
2227 |
msgid "Not scheduled!"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: dashboard/settings/maintenance.php:
|
2231 |
msgid "Background tasks"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: dashboard/settings/maintenance.php:
|
2235 |
msgid "Reset background tasks"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: dashboard/settings/maintenance.php:
|
|
|
|
|
|
|
|
|
2239 |
msgid "Unsupported plugins"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: dashboard/settings/maintenance.php:
|
2243 |
msgid "Disable 3rd party plugins"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: dashboard/settings/maintenance.php:
|
2247 |
msgid "One or more unsupported 3rd party plugins detected."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: dashboard/settings/maintenance.php:
|
2251 |
msgid "These are plugins that alter functions of AdRotate or highjack parts of the dashboard which may affect security and/or stability."
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: dashboard/settings/maintenance.php:
|
2255 |
msgid "Internal Versions"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: dashboard/settings/maintenance.php:
|
2259 |
msgid "Unless you experience database issues or a warning shows below, these numbers are not really relevant for troubleshooting. Support may ask for them to verify your database status."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: dashboard/settings/maintenance.php:
|
2263 |
msgid "AdRotate version"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: dashboard/settings/maintenance.php:
|
2267 |
msgid "Current:"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: dashboard/settings/maintenance.php:
|
2271 |
msgid "Should be:"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: dashboard/settings/maintenance.php:
|
2275 |
msgid "Previous:"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: dashboard/settings/maintenance.php:
|
2279 |
msgid "Database version"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: dashboard/settings/maintenance.php:
|
2283 |
msgid "Manual upgrade"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: dashboard/settings/maintenance.php:
|
2287 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: dashboard/settings/maintenance.php:
|
2291 |
msgid "Make sure you have a database backup!"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: dashboard/settings/maintenance.php:
|
2295 |
msgid "This might take a while and may slow down your site during this action!"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: dashboard/settings/maintenance.php:
|
2299 |
msgid "Run updater"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: dashboard/settings/misc.php:
|
2303 |
msgid "Widget alignment"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: dashboard/settings/misc.php:
|
2307 |
msgid "Check this box if your widgets do not align in your themes sidebar. (Does not always help!)"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: dashboard/settings/misc.php:
|
2311 |
msgid "Widget padding"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: dashboard/settings/misc.php:
|
2315 |
msgid "Enable this to remove the padding (blank space) around ads in widgets. (Does not always work!)"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: dashboard/settings/misc.php:
|
2319 |
msgid "NOTICE:"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: dashboard/settings/misc.php:
|
2323 |
msgid "You have enabled W3 Total Caching support but not defined the security hash."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: dashboard/settings/misc.php:
|
2327 |
msgid "AdRotate has generated the following line for you to add to your wp-config.php around line 52 (below the WordPress nonces). If you do not know how to add this line, check out the following guide;"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: dashboard/settings/misc.php:
|
2331 |
msgid "Set up W3 Total Caching"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: dashboard/settings/misc.php:
|
2335 |
msgid "W3 Total Caching"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: dashboard/settings/misc.php:
|
2339 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: dashboard/settings/misc.php:
|
2343 |
msgid "Borlabs Cache"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: dashboard/settings/misc.php:
|
2347 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: dashboard/settings/misc.php:
|
2351 |
msgid "It may take a while for the ad to start rotating. The caching plugin needs to refresh the cache. This can take up to a week if not done manually."
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: dashboard/settings/misc.php:
|
2355 |
msgid "Caching support only works for [shortcodes] and the AdRotate Widget. If you use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
2356 |
msgstr ""
|
2357 |
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
+
"POT-Creation-Date: 2022-11-14 17:24-0700\n"
|
6 |
"PO-Revision-Date: 2019-09-20 12:05-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
21 |
msgid "AdRotate - Advertisements"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: adrotate-functions.php:795
|
25 |
msgid "Advert saved"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: adrotate-functions.php:799
|
29 |
msgid "Group saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:803
|
33 |
msgid "Banner image saved"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:807
|
37 |
msgid "Ad(s) deleted"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: adrotate-functions.php:811
|
41 |
msgid "Group deleted"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: adrotate-functions.php:815
|
45 |
msgid "Asset(s) deleted"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: adrotate-functions.php:819
|
49 |
msgid "Something went wrong deleting the file or folder. Make sure your permissions are in order."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: adrotate-functions.php:823
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: adrotate-functions.php:827
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: adrotate-functions.php:831
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: adrotate-functions.php:835
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: adrotate-functions.php:839
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: adrotate-functions.php:843
|
73 |
msgid "Export created"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: adrotate-functions.php:847
|
77 |
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."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: adrotate-functions.php:852
|
81 |
msgid "Settings saved"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: adrotate-functions.php:856
|
85 |
msgid "Database optimized"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: adrotate-functions.php:860
|
89 |
msgid "Database repaired"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: adrotate-functions.php:864
|
93 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: adrotate-functions.php:868
|
97 |
msgid "Cleanup complete"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: adrotate-functions.php:872
|
101 |
+
msgid "Scheduled tasks reset"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: adrotate-functions.php:876
|
105 |
+
msgid "If there were any 3rd party plugins interfering with AdRotate they have been disabled"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: adrotate-functions.php:880
|
109 |
+
msgid "Database updated"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: adrotate-functions.php:885
|
113 |
msgid "Action prohibited"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: adrotate-functions.php:889
|
117 |
msgid "The advert was saved but has an issue which might prevent it from working properly. Review the colored advert."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: adrotate-functions.php:893
|
121 |
msgid "No data found in selected time period"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: adrotate-functions.php:897
|
125 |
msgid "Database can only be optimized or cleaned once every hour"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: adrotate-functions.php:901
|
129 |
msgid "Form can not be (partially) empty!"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: adrotate-functions.php:905
|
133 |
msgid "No file uploaded."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: adrotate-functions.php:909
|
137 |
msgid "No adverts found."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: adrotate-functions.php:913
|
141 |
msgid "Wrong file type. No file uploaded."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: adrotate-functions.php:917
|
145 |
msgid "No file selected or file is too large."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: adrotate-functions.php:921
|
149 |
msgid "There was an error unzipping the file. Please try again later."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: adrotate-functions.php:925
|
153 |
msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: adrotate-functions.php:929
|
157 |
msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: adrotate-functions.php:933
|
161 |
msgid "Unexpected error"
|
162 |
msgstr ""
|
163 |
|
222 |
msgstr ""
|
223 |
|
224 |
#: adrotate-output.php:626 adrotate-output.php:629 adrotate-output.php:633
|
225 |
+
#: dashboard/settings/maintenance.php:16
|
226 |
msgid "Check adverts"
|
227 |
msgstr ""
|
228 |
|
382 |
msgid "Use on up to FIVE WordPress installations."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: adrotate-statistics.php:154
|
386 |
msgid "January"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: adrotate-statistics.php:154
|
390 |
msgid "February"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: adrotate-statistics.php:154
|
394 |
msgid "March"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: adrotate-statistics.php:154
|
398 |
msgid "April"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: adrotate-statistics.php:154
|
402 |
msgid "May"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: adrotate-statistics.php:154
|
406 |
msgid "June"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: adrotate-statistics.php:154
|
410 |
msgid "July"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: adrotate-statistics.php:154
|
414 |
msgid "August"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: adrotate-statistics.php:154
|
418 |
msgid "September"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: adrotate-statistics.php:154
|
422 |
msgid "October"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: adrotate-statistics.php:154
|
426 |
msgid "November"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: adrotate-statistics.php:154
|
430 |
msgid "December"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: adrotate-statistics.php:163
|
434 |
msgid "Previous"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: adrotate-statistics.php:165 dashboard/publisher/statistics-advert.php:66
|
438 |
#: dashboard/publisher/statistics-group.php:73
|
439 |
#: dashboard/publisher/statistics-main.php:48
|
440 |
msgid "This month"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: adrotate-statistics.php:166
|
444 |
msgid "Next"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: adrotate-statistics.php:220
|
448 |
msgid "No data to show!"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: adrotate-statistics.php:308 adrotate-statistics.php:309
|
452 |
msgid "Not found"
|
453 |
msgstr ""
|
454 |
|
492 |
msgid "Fill in the ID of the type you want to display!"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: adrotate.php:104 adrotate.php:174
|
496 |
msgid "Manage Adverts"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: adrotate.php:105 adrotate.php:300 dashboard/publisher/groups-main.php:12
|
500 |
msgid "Manage Groups"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: adrotate.php:106 adrotate.php:338 dashboard/publisher/schedules-main.php:12
|
504 |
msgid "Manage Schedules"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: adrotate.php:107
|
508 |
msgid "Manage Media"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: adrotate.php:108 adrotate.php:517 dashboard/adrotatepro.php:98
|
512 |
#: dashboard/publisher/adverts-edit.php:178
|
513 |
#: dashboard/publisher/statistics-main.php:23
|
514 |
#: dashboard/settings/statistics.php:17
|
515 |
msgid "Statistics"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: adrotate.php:109 adrotate.php:237 adrotate.php:308
|
519 |
msgid "Get AdRotate Pro"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: adrotate.php:110
|
523 |
msgid "Support"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: adrotate.php:111
|
527 |
msgid "Settings"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: adrotate.php:130
|
531 |
msgid "Get AdRotate Professional"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: adrotate.php:234 adrotate.php:306
|
535 |
msgid "Manage"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: adrotate.php:235
|
539 |
msgid "Advert Generator"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: adrotate.php:236 dashboard/publisher/adverts-edit.php:108
|
543 |
msgid "New Advert"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: adrotate.php:307
|
547 |
msgid "Add New"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: adrotate.php:375
|
551 |
msgid "Manage Media and Assets"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: adrotate.php:379
|
555 |
msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: adrotate.php:421
|
559 |
msgid "Advert Statistics"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: adrotate.php:464
|
563 |
msgid "AdRotate Support"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: adrotate.php:510
|
567 |
msgid "AdRotate Settings"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: adrotate.php:515 dashboard/publisher/statistics-main.php:28
|
571 |
msgid "General"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: adrotate.php:516 dashboard/settings/notifications.php:18
|
575 |
msgid "Notifications"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: adrotate.php:518 dashboard/publisher/groups-edit.php:205
|
579 |
msgid "Geo Targeting"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: adrotate.php:519 dashboard/settings/roles.php:17
|
583 |
msgid "Access Roles"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: adrotate.php:520 dashboard/settings/misc.php:119
|
587 |
msgid "Miscellaneous"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: adrotate.php:521 dashboard/settings/maintenance.php:13
|
591 |
msgid "Maintenance"
|
592 |
msgstr ""
|
593 |
|
1156 |
msgstr ""
|
1157 |
|
1158 |
#: dashboard/publisher/adverts-error.php:67
|
1159 |
+
#: dashboard/settings/maintenance.php:30
|
1160 |
msgid "Expired"
|
1161 |
msgstr ""
|
1162 |
|
1687 |
msgid "This action can not be undone!"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:89
|
|
|
1691 |
msgid "OK to continue, CANCEL to stop."
|
1692 |
msgstr ""
|
1693 |
|
2019 |
msgid "user-agents"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:153
|
2023 |
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2024 |
#: dashboard/settings/statistics.php:85
|
2025 |
msgid "Update Options"
|
2114 |
msgid "Password/License Key"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: dashboard/settings/maintenance.php:18
|
2118 |
+
msgid "Check ads for errors"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: dashboard/settings/maintenance.php:21
|
2122 |
+
msgid "Apply all evaluation rules to all adverts to see if any error slipped in. This may take a few seconds."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: dashboard/settings/maintenance.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2126 |
msgid "Status and Versions"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: dashboard/settings/maintenance.php:29
|
2130 |
msgid "Current status of adverts"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: dashboard/settings/maintenance.php:30
|
2134 |
msgid "Normal"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: dashboard/settings/maintenance.php:30
|
2138 |
msgid "Error"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: dashboard/settings/maintenance.php:30
|
2142 |
msgid "Expires Soon"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: dashboard/settings/maintenance.php:30
|
2146 |
msgid "Unknown"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: dashboard/settings/maintenance.php:33
|
2150 |
msgid "Banners/assets Folder"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2154 |
msgid "Exists and appears writable"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: dashboard/settings/maintenance.php:37 dashboard/settings/maintenance.php:46
|
2158 |
msgid "Not writable or does not exist"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: dashboard/settings/maintenance.php:42
|
2162 |
msgid "Reports Folder"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: dashboard/settings/maintenance.php:51
|
2166 |
msgid "Advert evaluation"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: dashboard/settings/maintenance.php:52
|
2170 |
msgid "Not scheduled! Re-activate the plugin from the plugins page."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: dashboard/settings/maintenance.php:53
|
2174 |
msgid "Clean Trackerdata"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: dashboard/settings/maintenance.php:54
|
2178 |
msgid "Not scheduled!"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: dashboard/settings/maintenance.php:57
|
2182 |
msgid "Background tasks"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: dashboard/settings/maintenance.php:59
|
2186 |
msgid "Reset background tasks"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: dashboard/settings/maintenance.php:62
|
2190 |
+
msgid "If automated tasks such as expiring adverts does not work reliable or one of the above schedules is missing use this button to reset the tasks."
|
2191 |
+
msgstr ""
|
2192 |
+
|
2193 |
+
#: dashboard/settings/maintenance.php:66
|
2194 |
msgid "Unsupported plugins"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: dashboard/settings/maintenance.php:68
|
2198 |
msgid "Disable 3rd party plugins"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: dashboard/settings/maintenance.php:70
|
2202 |
msgid "One or more unsupported 3rd party plugins detected."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: dashboard/settings/maintenance.php:72
|
2206 |
msgid "These are plugins that alter functions of AdRotate or highjack parts of the dashboard which may affect security and/or stability."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: dashboard/settings/maintenance.php:77
|
2210 |
msgid "Internal Versions"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: dashboard/settings/maintenance.php:78
|
2214 |
msgid "Unless you experience database issues or a warning shows below, these numbers are not really relevant for troubleshooting. Support may ask for them to verify your database status."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: dashboard/settings/maintenance.php:81
|
2218 |
msgid "AdRotate version"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2222 |
msgid "Current:"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2226 |
msgid "Should be:"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: dashboard/settings/maintenance.php:82 dashboard/settings/maintenance.php:84
|
2230 |
msgid "Previous:"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: dashboard/settings/maintenance.php:83
|
2234 |
msgid "Database version"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: dashboard/settings/maintenance.php:87
|
2238 |
msgid "Manual upgrade"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: dashboard/settings/maintenance.php:89
|
2242 |
msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: dashboard/settings/maintenance.php:89
|
2246 |
msgid "Make sure you have a database backup!"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: dashboard/settings/maintenance.php:89
|
2250 |
msgid "This might take a while and may slow down your site during this action!"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: dashboard/settings/maintenance.php:89
|
2254 |
msgid "Run updater"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: dashboard/settings/misc.php:122
|
2258 |
msgid "Widget alignment"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: dashboard/settings/misc.php:123
|
2262 |
msgid "Check this box if your widgets do not align in your themes sidebar. (Does not always help!)"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: dashboard/settings/misc.php:126
|
2266 |
msgid "Widget padding"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: dashboard/settings/misc.php:127
|
2270 |
msgid "Enable this to remove the padding (blank space) around ads in widgets. (Does not always work!)"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: dashboard/settings/misc.php:131
|
2274 |
msgid "NOTICE:"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: dashboard/settings/misc.php:132
|
2278 |
msgid "You have enabled W3 Total Caching support but not defined the security hash."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: dashboard/settings/misc.php:132
|
2282 |
msgid "AdRotate has generated the following line for you to add to your wp-config.php around line 52 (below the WordPress nonces). If you do not know how to add this line, check out the following guide;"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: dashboard/settings/misc.php:132
|
2286 |
msgid "Set up W3 Total Caching"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: dashboard/settings/misc.php:136
|
2290 |
msgid "W3 Total Caching"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: dashboard/settings/misc.php:137
|
2294 |
msgid "Check this box if you use W3 Total Caching on your site."
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: dashboard/settings/misc.php:140
|
2298 |
msgid "Borlabs Cache"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: dashboard/settings/misc.php:141
|
2302 |
msgid "Check this box if you use Borlabs Caching on your site."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: dashboard/settings/misc.php:145
|
2306 |
msgid "It may take a while for the ad to start rotating. The caching plugin needs to refresh the cache. This can take up to a week if not done manually."
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: dashboard/settings/misc.php:145
|
2310 |
msgid "Caching support only works for [shortcodes] and the AdRotate Widget. If you use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
|
2311 |
msgstr ""
|
2312 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://ajdg.solutions/go/donate/
|
|
4 |
Tags: ads, advertising, banners, ad rotator, ad manager, adsense, ads.txt, ad rotations, affiliate, amazon, banner, google ad manager
|
5 |
Requires at least: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Tested up to: 6.
|
8 |
-
Stable tag: 5.9
|
9 |
License: GPLv3
|
10 |
|
11 |
Advertising is easy with AdRotate. manage, schedule, rotate and track your ads you make yourself or get from Amazon, Adsense, affliates and many more
|
@@ -90,6 +90,13 @@ For more detailed instructions check out the [installation steps](https://ajdg.s
|
|
90 |
|
91 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?mtm_campaign=adrotatefree&mtm_keyword=readme).
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
= AdRotate 5.9 =
|
94 |
* [fix] 'auto' not working for the advert size in advert groups
|
95 |
* [fix] Better handling when group css is not loading
|
4 |
Tags: ads, advertising, banners, ad rotator, ad manager, adsense, ads.txt, ad rotations, affiliate, amazon, banner, google ad manager
|
5 |
Requires at least: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Tested up to: 6.1
|
8 |
+
Stable tag: 5.9.1
|
9 |
License: GPLv3
|
10 |
|
11 |
Advertising is easy with AdRotate. manage, schedule, rotate and track your ads you make yourself or get from Amazon, Adsense, affliates and many more
|
90 |
|
91 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?mtm_campaign=adrotatefree&mtm_keyword=readme).
|
92 |
|
93 |
+
= AdRotate 5.9.1 =
|
94 |
+
* [fix] Removed unused $archive variable from stats
|
95 |
+
* [fix] Nonce verification for certain maintenance buttons
|
96 |
+
* [fix] Status indicators for maintenance functions
|
97 |
+
* [change] Removed unused maintenance function
|
98 |
+
* [i18n] Updated translations
|
99 |
+
|
100 |
= AdRotate 5.9 =
|
101 |
* [fix] 'auto' not working for the advert size in advert groups
|
102 |
* [fix] Better handling when group css is not loading
|