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 |
Comparing to | |
See all releases |
Code changes from version 5.8.26 to 5.9
- adrotate-manage-publisher.php +2 -2
- adrotate-output.php +33 -22
- adrotate-portability.php +4 -1
- adrotate-setup.php +1 -1
- adrotate.php +4 -5
- dashboard/adrotatepro.php +25 -25
- dashboard/publisher/adverts-disabled.php +1 -1
- dashboard/publisher/adverts-generator.php +1 -1
- dashboard/publisher/groups-edit.php +1 -1
- dashboard/publisher/media.php +1 -1
- dashboard/settings/statistics.php +4 -4
- dashboard/support.php +20 -29
- language/adrotate-de_DE.mo +0 -0
- language/adrotate-de_DE.po +216 -150
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +214 -152
- language/adrotate-it_IT.mo +0 -0
- language/adrotate-it_IT.po +213 -152
- language/adrotate-nl_NL.mo +0 -0
- language/adrotate-nl_NL.po +214 -151
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +217 -156
- language/adrotate-pt_BR.mo +0 -0
- language/adrotate-pt_BR.po +212 -132
- language/adrotate.pot +182 -130
- library/block.js +1 -1
- readme.txt +25 -45
adrotate-manage-publisher.php
CHANGED
@@ -292,8 +292,8 @@ function adrotate_insert_group() {
|
|
292 |
// Sort out block shape
|
293 |
if($rows < 1 OR $rows == '' OR !is_numeric($rows)) $rows = 2;
|
294 |
if($columns < 1 OR $columns == '' OR !is_numeric($columns)) $columns = 2;
|
295 |
-
if((is_numeric($adwidth) AND $adwidth < 1 OR $adwidth > 9999) OR $adwidth == '' OR (!is_numeric($adwidth) AND $adwidth != 'auto')) $adwidth = '
|
296 |
-
if((is_numeric($adheight) AND $adheight < 1 OR $adheight > 9999) OR $adheight == '' OR (!is_numeric($adheight) AND $adheight != 'auto')) $adheight = '
|
297 |
if($admargin < 0 OR $admargin > 99 OR $admargin == '' OR !is_numeric($admargin)) $admargin = 0;
|
298 |
|
299 |
// Categories
|
292 |
// Sort out block shape
|
293 |
if($rows < 1 OR $rows == '' OR !is_numeric($rows)) $rows = 2;
|
294 |
if($columns < 1 OR $columns == '' OR !is_numeric($columns)) $columns = 2;
|
295 |
+
if((is_numeric($adwidth) AND ($adwidth < 1 OR $adwidth > 9999)) OR $adwidth == '' OR (!is_numeric($adwidth) AND $adwidth != 'auto')) $adwidth = '728';
|
296 |
+
if((is_numeric($adheight) AND ($adheight < 1 OR $adheight > 9999)) OR $adheight == '' OR (!is_numeric($adheight) AND $adheight != 'auto')) $adheight = '90';
|
297 |
if($admargin < 0 OR $admargin > 99 OR $admargin == '' OR !is_numeric($admargin)) $admargin = 0;
|
298 |
|
299 |
// Categories
|
adrotate-output.php
CHANGED
@@ -440,8 +440,11 @@ function adrotate_ad_output($id, $group, $name, $bannercode, $tracker, $image) {
|
|
440 |
Since: 3.8
|
441 |
-------------------------------------------------------------*/
|
442 |
function adrotate_header() {
|
|
|
|
|
|
|
443 |
|
444 |
-
$output = "\n<!-- This site is using AdRotate v".
|
445 |
echo $output;
|
446 |
|
447 |
adrotate_custom_css();
|
@@ -455,7 +458,7 @@ function adrotate_header() {
|
|
455 |
function adrotate_custom_css() {
|
456 |
global $adrotate_config;
|
457 |
|
458 |
-
$generated_css = get_option('adrotate_group_css'
|
459 |
|
460 |
$output = "<!-- AdRotate CSS -->\n";
|
461 |
$output .= "<style type=\"text/css\" media=\"screen\">\n";
|
@@ -464,12 +467,14 @@ function adrotate_custom_css() {
|
|
464 |
$output .= "\t.g-col { position:relative; float:left; }\n";
|
465 |
$output .= "\t.g-col:first-child { margin-left: 0; }\n";
|
466 |
$output .= "\t.g-col:last-child { margin-right: 0; }\n";
|
467 |
-
|
468 |
-
|
469 |
-
$
|
|
|
|
|
470 |
}
|
|
|
471 |
}
|
472 |
-
unset($generated_css);
|
473 |
$output .= "\t@media only screen and (max-width: 480px) {\n";
|
474 |
$output .= "\t\t.g-col, .g-dyn, .g-single { width:100%; margin-left:0; margin-right:0; }\n";
|
475 |
$output .= "\t}\n";
|
@@ -547,7 +552,7 @@ function adrotate_nonce_error() {
|
|
547 |
echo ' <h2 style="text-align: center;">'.__('Oh no! Something went wrong!', 'adrotate').'</h2>';
|
548 |
echo ' <p style="text-align: center;">'.__('WordPress was unable to verify the authenticity of the url you have clicked. Verify if the url used is valid or log in via your browser.', 'adrotate').'</p>';
|
549 |
echo ' <p style="text-align: center;">'.__('If you have received the url you want to visit via email, you are being tricked!', 'adrotate').'</p>';
|
550 |
-
echo ' <p style="text-align: center;">'.__('Contact support if the issue persists:', 'adrotate').' <a href="https://
|
551 |
}
|
552 |
|
553 |
/*-------------------------------------------------------------
|
@@ -586,13 +591,13 @@ function adrotate_error($action, $arg = null) {
|
|
586 |
|
587 |
// Database
|
588 |
case "db_error" :
|
589 |
-
$result = '<span style="font-weight: bold; color: #f00;">'.__('There was an error locating the database tables for AdRotate. Please deactivate and re-activate AdRotate from the plugin page!!', 'adrotate').'<br />'.__('If this does not solve the issue please seek support
|
590 |
return $result;
|
591 |
break;
|
592 |
|
593 |
// Possible XSS or malformed URL
|
594 |
case "error_loading_item" :
|
595 |
-
$result = '<span style="font-weight: bold; color: #f00;">'.__('There was an error loading the page. Please try again by reloading the page via the menu on the left.', 'adrotate').'<br />'.__('If the issue persists please seek help
|
596 |
return $result;
|
597 |
break;
|
598 |
|
@@ -717,7 +722,7 @@ function adrotate_notifications_dashboard() {
|
|
717 |
if($birthday_banner < current_time('timestamp') AND date('M', current_time('timestamp')) == 'Feb') {
|
718 |
echo '<div class="ajdg-notification notice">';
|
719 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/birthday.png', __FILE__).'\');"><span></span></div>';
|
720 |
-
echo ' <div class="ajdg-notification-message">Hey <strong>'.$displayname.'</strong>! Did you know it is Arnan his birtyday this month? February 9th to be exact. Wish him a happy birthday via Telegram!<br />Who is Arnan? He made AdRotate for you - Check out his <a href="http://www.arnan.me/?
|
721 |
echo ' <div class="ajdg-notification-cta">';
|
722 |
echo ' <a href="https://t.me/arnandegans" target="_blank" class="ajdg-notification-act button-primary goosebox"><i class="icn-tg"></i>Wish Happy Birthday</a>';
|
723 |
echo ' <a href="'.admin_url('admin.php?page=adrotate').'&hide=2" class="ajdg-notification-dismiss">Not now</a>';
|
@@ -746,9 +751,12 @@ function adrotate_notifications_dashboard() {
|
|
746 |
$adrotate_db_version = get_option("adrotate_db_version");
|
747 |
$adrotate_version = get_option("adrotate_version");
|
748 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
|
|
|
|
|
|
|
749 |
echo '<div class="ajdg-notification notice" style="">';
|
750 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
|
751 |
-
echo ' <div class="ajdg-notification-message">Thanks for updating <strong>'.$displayname.'</strong>! You have almost completed updating <strong>AdRotate</strong> to version <strong>'.
|
752 |
echo ' <div class="ajdg-notification-cta">';
|
753 |
echo ' <a href="'.admin_url('admin.php?page=adrotate-settings').'&tab=maintenance&action=update-db" class="ajdg-notification-act button-primary update-button">Finish update</a>';
|
754 |
echo ' </div>';
|
@@ -763,7 +771,10 @@ function adrotate_notifications_dashboard() {
|
|
763 |
Since: 3.9.14
|
764 |
-------------------------------------------------------------*/
|
765 |
function adrotate_welcome_pointer() {
|
766 |
-
|
|
|
|
|
|
|
767 |
$pointer_content .= '<p>'.__('Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the', 'adrotate').' <a href="http:\/\/ajdg.solutions\/support\/adrotate-manuals\/" target="_blank">'.__('manuals', 'adrotate').'</a> '.__('and', 'adrotate').' <a href="https:\/\/ajdg.solutions\/forums\/forum\/adrotate-for-wordpress\/" target="_blank">'.__('forums', 'adrotate').'</a>. These links are also available in the help tab in the top right.</p>';
|
768 |
|
769 |
$pointer_content .= '<p><strong>AdRotate Professional - <a href="admin.php?page=adrotate-pro">Learn more »</a></strong><br />If you like AdRotate please consider upgrading to AdRotate Professional and benefit from many <a href="admin.php?page=adrotate-pro">extra features</a> to make your campaigns more profitable!</p>';
|
@@ -800,7 +811,7 @@ function adrotate_dashboard_help() {
|
|
800 |
'title' => 'Thanks to you',
|
801 |
'content' => '<h4>Thank you for using AdRotate</h4>'.
|
802 |
'<p>AdRotate is one of the most popular WordPress plugins for Advertising and is a household name for many companies and news sites around the world. AdRotate would not be possible without your support and my life would not be what it is today without your help.</p><p><em>- Arnan</em></p>'.
|
803 |
-
'<p>My website <a href="https://ajdg.solutions/?
|
804 |
)
|
805 |
);
|
806 |
|
@@ -809,7 +820,7 @@ function adrotate_dashboard_help() {
|
|
809 |
'title' => 'Getting Support',
|
810 |
'content' => '<h4>Get help using AdRotate</h4>'.
|
811 |
'<p>AdRotate has many guides and manuals as well as a Support Forum on the AdRotate website to answer most common questions.<br />All the relevant links to getting help and the Professional Services I offer can be found on the <a href="'.admin_url('admin.php?page=adrotate-support').'">Support dashboard</a>.</p>'.
|
812 |
-
'<p><a href="https://ajdg.solutions/support/adrotate-manuals/?
|
813 |
)
|
814 |
);
|
815 |
|
@@ -832,10 +843,10 @@ function adrotate_dashboard_help() {
|
|
832 |
-------------------------------------------------------------*/
|
833 |
function adrotate_action_links($links) {
|
834 |
$custom_actions = array();
|
835 |
-
$custom_actions['adrotate-pro'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/cart/?add-to-cart=1124&
|
836 |
$custom_actions['adrotate-help'] = sprintf('<a href="%s">%s</a>', admin_url('admin.php?page=adrotate-support'), 'Support');
|
837 |
-
$custom_actions['adrotate-news'] = sprintf('<a href="%s">%s</a>', 'https://ajdg.solutions/blog/?
|
838 |
-
$custom_actions['adrotate-ajdg'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/?
|
839 |
|
840 |
return array_merge($custom_actions, $links);
|
841 |
}
|
@@ -858,17 +869,17 @@ function adrotate_credits() {
|
|
858 |
|
859 |
echo '<tbody>';
|
860 |
echo '<tr>';
|
861 |
-
echo '<td><a href="https://
|
862 |
-
<p><center><a href="https://ajdg.solutions/support/adrotate-manuals/?
|
863 |
<p>'.__('When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise.').'</p></td>';
|
864 |
|
865 |
echo '<td><a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" title="Review AdRotate for WordPress"><img src="'.plugins_url('/images/icon-contact.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a><p>'.__('Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development.').'</p>
|
866 |
<p><center><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>'.__('Post Tweet').'</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>'.__('Share on Facebook').'</a> <a class="button-primary" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">'.__('Write review on WordPress.org').'</a></center></p>
|
867 |
<p><em>- '.__('Thank you very much for your help and support!').'</em></p></td>';
|
868 |
|
869 |
-
echo '<td><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
870 |
-
<p><a href="https://ajdg.solutions/product/adrotate-pro-single/?
|
871 |
-
<p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?
|
872 |
|
873 |
echo '</tr>';
|
874 |
echo '</tbody>';
|
440 |
Since: 3.8
|
441 |
-------------------------------------------------------------*/
|
442 |
function adrotate_header() {
|
443 |
+
if(!function_exists('get_plugins')) require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
444 |
+
$plugins = get_plugins();
|
445 |
+
$plugin_version = $plugins['adrotate/adrotate.php']['Version'];
|
446 |
|
447 |
+
$output = "\n<!-- This site is using AdRotate v".$plugin_version." to display their advertisements - https://ajdg.solutions/ -->\n";
|
448 |
echo $output;
|
449 |
|
450 |
adrotate_custom_css();
|
458 |
function adrotate_custom_css() {
|
459 |
global $adrotate_config;
|
460 |
|
461 |
+
$generated_css = get_option('adrotate_group_css');
|
462 |
|
463 |
$output = "<!-- AdRotate CSS -->\n";
|
464 |
$output .= "<style type=\"text/css\" media=\"screen\">\n";
|
467 |
$output .= "\t.g-col { position:relative; float:left; }\n";
|
468 |
$output .= "\t.g-col:first-child { margin-left: 0; }\n";
|
469 |
$output .= "\t.g-col:last-child { margin-right: 0; }\n";
|
470 |
+
if($generated_css) {
|
471 |
+
foreach($generated_css as $group_id => $css) {
|
472 |
+
if(strlen($css) > 0) {
|
473 |
+
$output .= $css;
|
474 |
+
}
|
475 |
}
|
476 |
+
unset($generated_css);
|
477 |
}
|
|
|
478 |
$output .= "\t@media only screen and (max-width: 480px) {\n";
|
479 |
$output .= "\t\t.g-col, .g-dyn, .g-single { width:100%; margin-left:0; margin-right:0; }\n";
|
480 |
$output .= "\t}\n";
|
552 |
echo ' <h2 style="text-align: center;">'.__('Oh no! Something went wrong!', 'adrotate').'</h2>';
|
553 |
echo ' <p style="text-align: center;">'.__('WordPress was unable to verify the authenticity of the url you have clicked. Verify if the url used is valid or log in via your browser.', 'adrotate').'</p>';
|
554 |
echo ' <p style="text-align: center;">'.__('If you have received the url you want to visit via email, you are being tricked!', 'adrotate').'</p>';
|
555 |
+
echo ' <p style="text-align: center;">'.__('Contact support if the issue persists:', 'adrotate').' <a href="https://wordpress.org/support/plugin/adrotate/" title="AdRotate Support" target="_blank">AJdG Solutions Support</a>.</p>';
|
556 |
}
|
557 |
|
558 |
/*-------------------------------------------------------------
|
591 |
|
592 |
// Database
|
593 |
case "db_error" :
|
594 |
+
$result = '<span style="font-weight: bold; color: #f00;">'.__('There was an error locating the database tables for AdRotate. Please deactivate and re-activate AdRotate from the plugin page!!', 'adrotate').'<br />'.__('If this does not solve the issue please seek support on the', 'adrotate').' <a href="https://wordpress.org/support/plugin/adrotate/">support forums</a></span>';
|
595 |
return $result;
|
596 |
break;
|
597 |
|
598 |
// Possible XSS or malformed URL
|
599 |
case "error_loading_item" :
|
600 |
+
$result = '<span style="font-weight: bold; color: #f00;">'.__('There was an error loading the page. Please try again by reloading the page via the menu on the left.', 'adrotate').'<br />'.__('If the issue persists please seek help on the', 'adrotate').' <a href="https://wordpress.org/support/plugin/adrotate/">support forums</a></span>';
|
601 |
return $result;
|
602 |
break;
|
603 |
|
722 |
if($birthday_banner < current_time('timestamp') AND date('M', current_time('timestamp')) == 'Feb') {
|
723 |
echo '<div class="ajdg-notification notice">';
|
724 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/birthday.png', __FILE__).'\');"><span></span></div>';
|
725 |
+
echo ' <div class="ajdg-notification-message">Hey <strong>'.$displayname.'</strong>! Did you know it is Arnan his birtyday this month? February 9th to be exact. Wish him a happy birthday via Telegram!<br />Who is Arnan? He made AdRotate for you - Check out his <a href="http://www.arnan.me/?mtm_campaign=adrotatefree&mtm_keyword=birthday_banner" target="_blank">website</a> or <a href="http://www.arnan.me/donate.html?mtm_campaign=adrotatefree&mtm_keyword=birthday_banner" target="_blank">send a gift</a>.</div>';
|
726 |
echo ' <div class="ajdg-notification-cta">';
|
727 |
echo ' <a href="https://t.me/arnandegans" target="_blank" class="ajdg-notification-act button-primary goosebox"><i class="icn-tg"></i>Wish Happy Birthday</a>';
|
728 |
echo ' <a href="'.admin_url('admin.php?page=adrotate').'&hide=2" class="ajdg-notification-dismiss">Not now</a>';
|
751 |
$adrotate_db_version = get_option("adrotate_db_version");
|
752 |
$adrotate_version = get_option("adrotate_version");
|
753 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
|
754 |
+
$plugins = get_plugins();
|
755 |
+
$plugin_version = $plugins['adrotate/adrotate.php']['Version'];
|
756 |
+
|
757 |
echo '<div class="ajdg-notification notice" style="">';
|
758 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
|
759 |
+
echo ' <div class="ajdg-notification-message">Thanks for updating <strong>'.$displayname.'</strong>! You have almost completed updating <strong>AdRotate</strong> to version <strong>'.$plugin_version.'</strong>!<br />To complete the update <strong>click the button on the right</strong>. This may take a few seconds to complete!<br />For an overview of what has changed take a look at the <a href="https://ajdg.solutions/support/adrotate-development/?mtm_campaign=adrotatefree&mtm_keyword=finish_update_notification" target="_blank">development page</a> and usually there is an article on <a href="https://ajdg.solutions/blog/" target="_blank">the blog</a> with more information as well.</div>';
|
760 |
echo ' <div class="ajdg-notification-cta">';
|
761 |
echo ' <a href="'.admin_url('admin.php?page=adrotate-settings').'&tab=maintenance&action=update-db" class="ajdg-notification-act button-primary update-button">Finish update</a>';
|
762 |
echo ' </div>';
|
771 |
Since: 3.9.14
|
772 |
-------------------------------------------------------------*/
|
773 |
function adrotate_welcome_pointer() {
|
774 |
+
$plugins = get_plugins();
|
775 |
+
$plugin_version = $plugins['adrotate/adrotate.php']['Version'];
|
776 |
+
|
777 |
+
$pointer_content = '<h3>AdRotate '.$plugin_version.'</h3>';
|
778 |
$pointer_content .= '<p>'.__('Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the', 'adrotate').' <a href="http:\/\/ajdg.solutions\/support\/adrotate-manuals\/" target="_blank">'.__('manuals', 'adrotate').'</a> '.__('and', 'adrotate').' <a href="https:\/\/ajdg.solutions\/forums\/forum\/adrotate-for-wordpress\/" target="_blank">'.__('forums', 'adrotate').'</a>. These links are also available in the help tab in the top right.</p>';
|
779 |
|
780 |
$pointer_content .= '<p><strong>AdRotate Professional - <a href="admin.php?page=adrotate-pro">Learn more »</a></strong><br />If you like AdRotate please consider upgrading to AdRotate Professional and benefit from many <a href="admin.php?page=adrotate-pro">extra features</a> to make your campaigns more profitable!</p>';
|
811 |
'title' => 'Thanks to you',
|
812 |
'content' => '<h4>Thank you for using AdRotate</h4>'.
|
813 |
'<p>AdRotate is one of the most popular WordPress plugins for Advertising and is a household name for many companies and news sites around the world. AdRotate would not be possible without your support and my life would not be what it is today without your help.</p><p><em>- Arnan</em></p>'.
|
814 |
+
'<p>My website <a href="https://ajdg.solutions/?mtm_campaign=adrotate&mtm_keyword=helptab" target="_blank">ajdg.solutions</a>.<br />My profile <a href="https://www.arnan.me/?mtm_campaign=adrotate&mtm_keyword=helptab" target="_blank">Arnan de Gans</a>.</p>'
|
815 |
)
|
816 |
);
|
817 |
|
820 |
'title' => 'Getting Support',
|
821 |
'content' => '<h4>Get help using AdRotate</h4>'.
|
822 |
'<p>AdRotate has many guides and manuals as well as a Support Forum on the AdRotate website to answer most common questions.<br />All the relevant links to getting help and the Professional Services I offer can be found on the <a href="'.admin_url('admin.php?page=adrotate-support').'">Support dashboard</a>.</p>'.
|
823 |
+
'<p><a href="https://ajdg.solutions/support/adrotate-manuals/?mtm_campaign=adrotate&mtm_keyword=helptab" target="_blank">AdRotate Manuals</a><br /><a href="https://wordpress.org/support/plugin/adrotate/" target="_blank">Support Forum</a> or buy a <a href="https://ajdg.solutions/product/support-ticket/" target="_blank">Support Ticket</a><br /><a href="https://ajdg.solutions/recommended-products/?mtm_campaign=adrotate&mtm_keyword=helptab" target="_blank">Recommended products and services</a></p>'
|
824 |
)
|
825 |
);
|
826 |
|
843 |
-------------------------------------------------------------*/
|
844 |
function adrotate_action_links($links) {
|
845 |
$custom_actions = array();
|
846 |
+
$custom_actions['adrotate-pro'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/cart/?add-to-cart=1124&mtm_campaign=adrotatefree&mtm_keyword=action_links&mtm_content=buy_single', 'Get AdRotate Pro');
|
847 |
$custom_actions['adrotate-help'] = sprintf('<a href="%s">%s</a>', admin_url('admin.php?page=adrotate-support'), 'Support');
|
848 |
+
$custom_actions['adrotate-news'] = sprintf('<a href="%s">%s</a>', 'https://ajdg.solutions/blog/?mtm_campaign=adrotatefree&mtm_keyword=action_links', 'News');
|
849 |
+
$custom_actions['adrotate-ajdg'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/?mtm_campaign=adrotatefree&mtm_keyword=action_links', 'AJdG Solutions');
|
850 |
|
851 |
return array_merge($custom_actions, $links);
|
852 |
}
|
869 |
|
870 |
echo '<tbody>';
|
871 |
echo '<tr>';
|
872 |
+
echo '<td><a href="https://wordpress.org/support/plugin/adrotate/" title="Getting help with AdRotate"><img src="'.plugins_url('/images/icon-support.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a><p>'.__('If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer.').'</p>
|
873 |
+
<p><center><a href="https://ajdg.solutions/support/adrotate-manuals/?mtm_campaign=adrotatefree&mtm_keyword=credits&mtm_content=manuals_link" target="_blank" class="button-primary">'.__('AdRotate Manuals').'</a> <a href="https://wordpress.org/support/plugin/adrotate/" target="_blank" class="button-primary">'.__('Support Forums').'</a></center></p>
|
874 |
<p>'.__('When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise.').'</p></td>';
|
875 |
|
876 |
echo '<td><a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" title="Review AdRotate for WordPress"><img src="'.plugins_url('/images/icon-contact.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a><p>'.__('Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development.').'</p>
|
877 |
<p><center><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>'.__('Post Tweet').'</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>'.__('Share on Facebook').'</a> <a class="button-primary" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">'.__('Write review on WordPress.org').'</a></center></p>
|
878 |
<p><em>- '.__('Thank you very much for your help and support!').'</em></p></td>';
|
879 |
|
880 |
+
echo '<td><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=credits&mtm_content=buy_pro" target="_blank"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" class="alignleft pro-image" /></a><p>'.__('AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!', 'adrotate').' <a href="https://ajdg.solutions/product-category/adrotate-pro/?mtm_campaign=adrotatefree&mtm_keyword=credits" target="_blank">'.__('Compare Licenses', 'adrotate').' »</a></p>
|
881 |
+
<p><a href="https://ajdg.solutions/product/adrotate-pro-single/?mtm_campaign=adrotatefree&mtm_keyword=credits&mtm_content=single" target="_blank"><strong>'.__('Single License', 'adrotate').' (€ 39.00)</strong></a><br /><em>'.__('Use on ONE WordPress installation.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1124&mtm_campaign=adrotatefree&mtm_keyword=credits&mtm_content=single" target="_blank">'.__('Buy now', 'adrotate').' »</a></em></p>
|
882 |
+
<p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?mtm_campaign=adrotatefree&mtm_keyword=credits&mtm_content=multi" target="_blank"><strong>'.__('Multi License', 'adrotate').' (€ 99.00)</strong></a><br /><em>'.__('Use on up to FIVE WordPress installations.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1128&mtm_campaign=adrotatefree&mtm_keyword=credits&mtm_content=multi" target="_blank">'.__('Buy now', 'adrotate').' »</a></em></p></td>';
|
883 |
|
884 |
echo '</tr>';
|
885 |
echo '</tbody>';
|
adrotate-portability.php
CHANGED
@@ -62,8 +62,11 @@ function adrotate_export_ads($ids) {
|
|
62 |
$fp = fopen(WP_CONTENT_DIR . '/reports/'.$filename, 'w');
|
63 |
|
64 |
if($fp) {
|
|
|
|
|
|
|
65 |
$generated = array('Generated', date_i18n("M d Y, H:i:s"));
|
66 |
-
$version = array('Version', 'AdRotate '
|
67 |
$keys = array('id', 'name', 'bannercode', 'imagetype', 'image_url', 'enable_stats', 'show_desktop', 'show_mobile', 'show_tablet', 'show_ios', 'show_android', 'show_otheros', 'weight', 'budget', 'click_rate', 'impression_rate', 'geo_cities', 'geo_countries', 'schedule_start', 'schedule_end');
|
68 |
|
69 |
fputcsv($fp, $generated);
|
62 |
$fp = fopen(WP_CONTENT_DIR . '/reports/'.$filename, 'w');
|
63 |
|
64 |
if($fp) {
|
65 |
+
$plugins = get_plugins();
|
66 |
+
$plugin_version = $plugins['adrotate/adrotate.php']['Version'];
|
67 |
+
|
68 |
$generated = array('Generated', date_i18n("M d Y, H:i:s"));
|
69 |
+
$version = array('Version', 'AdRotate '.$plugin_version);
|
70 |
$keys = array('id', 'name', 'bannercode', 'imagetype', 'image_url', 'enable_stats', 'show_desktop', 'show_mobile', 'show_tablet', 'show_ios', 'show_android', 'show_otheros', 'weight', 'budget', 'click_rate', 'impression_rate', 'geo_cities', 'geo_countries', 'schedule_start', 'schedule_end');
|
71 |
|
72 |
fputcsv($fp, $generated);
|
adrotate-setup.php
CHANGED
@@ -506,7 +506,7 @@ function adrotate_check_upgrade() {
|
|
506 |
global $wpdb;
|
507 |
|
508 |
if(version_compare(PHP_VERSION, '5.6.0', '<') == -1) {
|
509 |
-
deactivate_plugins(plugin_basename('adrotate
|
510 |
wp_die('AdRotate 5.0 and newer requires PHP 5.6 or higher. Your server reports version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to dashboard</a>.');
|
511 |
} else {
|
512 |
$adrotate_db_version = get_option("adrotate_db_version");
|
506 |
global $wpdb;
|
507 |
|
508 |
if(version_compare(PHP_VERSION, '5.6.0', '<') == -1) {
|
509 |
+
deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
|
510 |
wp_die('AdRotate 5.0 and newer requires PHP 5.6 or higher. Your server reports version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to dashboard</a>.');
|
511 |
} else {
|
512 |
$adrotate_db_version = get_option("adrotate_db_version");
|
adrotate.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: AdRotate
|
4 |
-
Plugin URI: https://ajdg.solutions/product/adrotate-banner-manager/?
|
5 |
Author: Arnan de Gans
|
6 |
-
Author URI: https://www.arnan.me/?
|
7 |
Description: Monetize your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
-
Version: 5.
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
@@ -21,7 +21,6 @@ License: GPLv3
|
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
-
define("ADROTATE_DISPLAY", '5.8.26');
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 68);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: AdRotate Banner Manager
|
4 |
+
Plugin URI: https://ajdg.solutions/product/adrotate-banner-manager/?mtm_campaign=adrotatefree&mtm_keyword=plugin_info
|
5 |
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 |
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
|
|
24 |
define("ADROTATE_VERSION", 399);
|
25 |
define("ADROTATE_DB_VERSION", 68);
|
26 |
$plugin_folder = plugin_dir_path(__FILE__);
|
dashboard/adrotatepro.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -13,28 +13,28 @@
|
|
13 |
<div id="dashboard-widgets-wrap">
|
14 |
<div style="text-align: center; margin-top: 30px;">
|
15 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
16 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-single/?
|
17 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-single/?
|
18 |
-
<div class="sub_title">Use on 1 website<br /><a href="https://ajdg.solutions/product/adrotate-pro-single/?
|
19 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1124&
|
20 |
</div>
|
21 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
22 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?
|
23 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?
|
24 |
-
<div class="sub_title">Use on 2 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-duo/?
|
25 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1126&
|
26 |
</div>
|
27 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
28 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?
|
29 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?
|
30 |
-
<div class="sub_title">Use on up-to 5 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-multi/?
|
31 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1128&
|
32 |
</div>
|
33 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
34 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?
|
35 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?
|
36 |
-
<div class="sub_title">Use on up-to 100 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-developer/?
|
37 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1130&
|
38 |
</div>
|
39 |
</div>
|
40 |
|
@@ -46,7 +46,7 @@
|
|
46 |
<div class="ajdg-postbox">
|
47 |
<h2 class="ajdg-postbox-title"><?php _e('Mobile campaigns', 'adrotate'); ?></h2>
|
48 |
<div id="mobile" class="ajdg-postbox-content">
|
49 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
50 |
<p><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device or mobile operating system. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
|
51 |
</div>
|
52 |
</div>
|
@@ -54,7 +54,7 @@
|
|
54 |
<div class="ajdg-postbox">
|
55 |
<h2 class="ajdg-postbox-title"><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h2>
|
56 |
<div id="schedules" class="ajdg-postbox-content">
|
57 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
58 |
<p><?php _e('Schedule your adverts and set up advertising campaigns based on dates you or your advertisers specify without hassle. Seasonal adverts, weekly adverts, specific days in the week. You name it, AdRotate schedules it. This makes planning your revenue stream very flexible. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
|
59 |
</div>
|
60 |
</div>
|
@@ -62,7 +62,7 @@
|
|
62 |
<div class="ajdg-postbox">
|
63 |
<h2 class="ajdg-postbox-title"><?php _e('Satisfy your advertisers', 'adrotate'); ?></h2>
|
64 |
<div id="satisfaction" class="ajdg-postbox-content">
|
65 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
66 |
<p><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
|
67 |
</div>
|
68 |
</div>
|
@@ -70,7 +70,7 @@
|
|
70 |
<div class="ajdg-postbox">
|
71 |
<h2 class="ajdg-postbox-title"><?php _e('Get Fast Support almost all year round', 'adrotate'); ?></h2>
|
72 |
<div id="support" class="ajdg-postbox-content">
|
73 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
74 |
<p><?php _e('When you activate your AdRotate Pro license you can use premium support, right from your dashboard. No more queueing up in the forums. Premium support always gets priority over the forums and is checked twice a day. Get a solution (usually) within two business days.', 'adrotate'); ?></p>
|
75 |
</div>
|
76 |
</div>
|
@@ -81,7 +81,7 @@
|
|
81 |
<div class="ajdg-postbox">
|
82 |
<h2 class="ajdg-postbox-title"><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h2>
|
83 |
<div id="geo-targeting" class="ajdg-postbox-content">
|
84 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
85 |
<p><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMind GeoIP2: Precision or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
|
86 |
</div>
|
87 |
</div>
|
@@ -89,7 +89,7 @@
|
|
89 |
<div class="ajdg-postbox">
|
90 |
<h2 class="ajdg-postbox-title"><?php _e('Avoid adblockers', 'adrotate'); ?></h2>
|
91 |
<div id="adblockers" class="ajdg-postbox-content">
|
92 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
93 |
<p><?php _e('Try and avoid adblockers so your adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
|
94 |
</div>
|
95 |
</div>
|
@@ -97,7 +97,7 @@
|
|
97 |
<div class="ajdg-postbox">
|
98 |
<h2 class="ajdg-postbox-title"><?php _e('Statistics', 'adrotate'); ?></h2>
|
99 |
<div id="developed-by" class="ajdg-postbox-content">
|
100 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
101 |
<p><?php _e('Get statistics in AdRotate Pro. Similar to the free version you can track stats in AdRotate itself and use all kinds of extra scheduling options. Or you can track stats in Google Analytics and see more in-depth information which relates to your visitors that way.', 'adrotate'); ?></p>
|
102 |
</div>
|
103 |
</div>
|
@@ -105,7 +105,7 @@
|
|
105 |
<div class="ajdg-postbox">
|
106 |
<h2 class="ajdg-postbox-title"><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h2>
|
107 |
<div id="notifications" class="ajdg-postbox-content">
|
108 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?
|
109 |
<p><?php _e('Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Get notified when adverts expire, have errors or when advertisers create new adverts. Select up to three email addresses to be notified. Never miss an expiration date again.', 'adrotate'); ?></p>
|
110 |
</div>
|
111 |
</div>
|
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.
|
13 |
<div id="dashboard-widgets-wrap">
|
14 |
<div style="text-align: center; margin-top: 30px;">
|
15 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
16 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-single/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/single.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
17 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-single/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
18 |
+
<div class="sub_title">Use on 1 website<br /><a href="https://ajdg.solutions/product/adrotate-pro-single/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
19 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1124&mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">Buy now for € 39</a></div>
|
20 |
</div>
|
21 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
22 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/duo.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
23 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
24 |
+
<div class="sub_title">Use on 2 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-duo/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
25 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1126&mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">Buy now for € 49</a></div>
|
26 |
</div>
|
27 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
28 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/multi.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
29 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
30 |
+
<div class="sub_title">Use on up-to 5 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-multi/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
31 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1128&mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">Buy now for € 99</a></div>
|
32 |
</div>
|
33 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
34 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/developer.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
35 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
36 |
+
<div class="sub_title">Use on up-to 100 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-developer/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
37 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1130&mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank">Buy now for € 199</a></div>
|
38 |
</div>
|
39 |
</div>
|
40 |
|
46 |
<div class="ajdg-postbox">
|
47 |
<h2 class="ajdg-postbox-title"><?php _e('Mobile campaigns', 'adrotate'); ?></h2>
|
48 |
<div id="mobile" class="ajdg-postbox-content">
|
49 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-mobile.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
50 |
<p><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device or mobile operating system. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
|
51 |
</div>
|
52 |
</div>
|
54 |
<div class="ajdg-postbox">
|
55 |
<h2 class="ajdg-postbox-title"><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h2>
|
56 |
<div id="schedules" class="ajdg-postbox-content">
|
57 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-schedule.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
58 |
<p><?php _e('Schedule your adverts and set up advertising campaigns based on dates you or your advertisers specify without hassle. Seasonal adverts, weekly adverts, specific days in the week. You name it, AdRotate schedules it. This makes planning your revenue stream very flexible. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
|
59 |
</div>
|
60 |
</div>
|
62 |
<div class="ajdg-postbox">
|
63 |
<h2 class="ajdg-postbox-title"><?php _e('Satisfy your advertisers', 'adrotate'); ?></h2>
|
64 |
<div id="satisfaction" class="ajdg-postbox-content">
|
65 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-satisfy.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
66 |
<p><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
|
67 |
</div>
|
68 |
</div>
|
70 |
<div class="ajdg-postbox">
|
71 |
<h2 class="ajdg-postbox-title"><?php _e('Get Fast Support almost all year round', 'adrotate'); ?></h2>
|
72 |
<div id="support" class="ajdg-postbox-content">
|
73 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-support.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
74 |
<p><?php _e('When you activate your AdRotate Pro license you can use premium support, right from your dashboard. No more queueing up in the forums. Premium support always gets priority over the forums and is checked twice a day. Get a solution (usually) within two business days.', 'adrotate'); ?></p>
|
75 |
</div>
|
76 |
</div>
|
81 |
<div class="ajdg-postbox">
|
82 |
<h2 class="ajdg-postbox-title"><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h2>
|
83 |
<div id="geo-targeting" class="ajdg-postbox-content">
|
84 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-geo-targeting.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
85 |
<p><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMind GeoIP2: Precision or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
|
86 |
</div>
|
87 |
</div>
|
89 |
<div class="ajdg-postbox">
|
90 |
<h2 class="ajdg-postbox-title"><?php _e('Avoid adblockers', 'adrotate'); ?></h2>
|
91 |
<div id="adblockers" class="ajdg-postbox-content">
|
92 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-adblock.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
93 |
<p><?php _e('Try and avoid adblockers so your adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
|
94 |
</div>
|
95 |
</div>
|
97 |
<div class="ajdg-postbox">
|
98 |
<h2 class="ajdg-postbox-title"><?php _e('Statistics', 'adrotate'); ?></h2>
|
99 |
<div id="developed-by" class="ajdg-postbox-content">
|
100 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-stats.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
101 |
<p><?php _e('Get statistics in AdRotate Pro. Similar to the free version you can track stats in AdRotate itself and use all kinds of extra scheduling options. Or you can track stats in Google Analytics and see more in-depth information which relates to your visitors that way.', 'adrotate'); ?></p>
|
102 |
</div>
|
103 |
</div>
|
105 |
<div class="ajdg-postbox">
|
106 |
<h2 class="ajdg-postbox-title"><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h2>
|
107 |
<div id="notifications" class="ajdg-postbox-content">
|
108 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?mtm_campaign=adrotatefree&mtm_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-notifications.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
109 |
<p><?php _e('Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Get notified when adverts expire, have errors or when advertisers create new adverts. Select up to three email addresses to be notified. Never miss an expiration date again.', 'adrotate'); ?></p>
|
110 |
</div>
|
111 |
</div>
|
dashboard/publisher/adverts-disabled.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
<?php wp_nonce_field('adrotate_bulk_ads_disable','adrotate_nonce'); ?>
|
14 |
|
15 |
<h3><?php _e('Disabled Adverts', 'adrotate'); ?></h3>
|
16 |
-
<p><em><?php _e('These adverts are temporarily disabled. You can archive adverts to permanently disable them.', 'adrotate
|
17 |
|
18 |
<div class="tablenav">
|
19 |
<div class="alignleft actions">
|
13 |
<?php wp_nonce_field('adrotate_bulk_ads_disable','adrotate_nonce'); ?>
|
14 |
|
15 |
<h3><?php _e('Disabled Adverts', 'adrotate'); ?></h3>
|
16 |
+
<p><em><?php _e('These adverts are temporarily disabled. You can archive adverts to permanently disable them.', 'adrotate'); ?><br /><?php _e('Archiving adverts moves gathered statistics away from the live database which may speed up your website.', 'adrotate'); ?></em></p>
|
17 |
|
18 |
<div class="tablenav">
|
19 |
<div class="alignleft actions">
|
dashboard/publisher/adverts-generator.php
CHANGED
@@ -26,7 +26,7 @@ $edit_banner = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}adrotate` WHERE `id
|
|
26 |
|
27 |
if($edit_banner) {
|
28 |
wp_enqueue_media();
|
29 |
-
wp_enqueue_script('uploader-hook', plugins_url().'/adrotate
|
30 |
?>
|
31 |
|
32 |
<form method="post" action="admin.php?page=adrotate">
|
26 |
|
27 |
if($edit_banner) {
|
28 |
wp_enqueue_media();
|
29 |
+
wp_enqueue_script('uploader-hook', plugins_url().'/adrotate/library/uploader-hook.js', array('jquery'));
|
30 |
?>
|
31 |
|
32 |
<form method="post" action="admin.php?page=adrotate">
|
dashboard/publisher/groups-edit.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
$action = "group_new";
|
14 |
$edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` = '' ORDER BY `id` DESC LIMIT 1;");
|
15 |
if($edit_id == 0) {
|
16 |
-
$wpdb->insert($wpdb->prefix.'adrotate_groups', array('name' => '', 'modus' => 0, 'swap' => 0, 'fallback' => '0', 'cat' => '', 'cat_loc' => 0, 'cat_par' => 0, 'page' => '', 'page_loc' => 0, 'page_par' => 0, 'mobile' => 0, 'geo' => 0, 'wrapper_before' => '', 'wrapper_after' => '', 'gridrows' => 2, 'gridcolumns' => 2, 'admargin' => 0, 'admargin_bottom' => 0, 'admargin_left' => 0, 'admargin_right' => 0, 'adwidth' => '
|
17 |
$edit_id = $wpdb->insert_id;
|
18 |
}
|
19 |
$group_edit_id = $edit_id;
|
13 |
$action = "group_new";
|
14 |
$edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` = '' ORDER BY `id` DESC LIMIT 1;");
|
15 |
if($edit_id == 0) {
|
16 |
+
$wpdb->insert($wpdb->prefix.'adrotate_groups', array('name' => '', 'modus' => 0, 'swap' => 0, 'fallback' => '0', 'cat' => '', 'cat_loc' => 0, 'cat_par' => 0, 'page' => '', 'page_loc' => 0, 'page_par' => 0, 'mobile' => 0, 'geo' => 0, 'wrapper_before' => '', 'wrapper_after' => '', 'gridrows' => 2, 'gridcolumns' => 2, 'admargin' => 0, 'admargin_bottom' => 0, 'admargin_left' => 0, 'admargin_right' => 0, 'adwidth' => '728', 'adheight' => '90', 'adspeed' => 6000, 'repeat_impressions' => 'Y'));
|
17 |
$edit_id = $wpdb->insert_id;
|
18 |
}
|
19 |
$group_edit_id = $edit_id;
|
dashboard/publisher/media.php
CHANGED
@@ -93,5 +93,5 @@
|
|
93 |
</table>
|
94 |
</form>
|
95 |
<p><center><small>
|
96 |
-
<?php _e("Make sure the banner images are not in use by adverts when you delete them!", "adrotate
|
97 |
</small></center></p>
|
93 |
</table>
|
94 |
</form>
|
95 |
<p><center><small>
|
96 |
+
<?php _e("Make sure the banner images are not in use by adverts when you delete them!", "adrotate"); ?> <?php _e("Deleting a folder deletes everything inside that folder as well!", "adrotate"); ?>
|
97 |
</small></center></p>
|
dashboard/settings/statistics.php
CHANGED
@@ -28,16 +28,16 @@
|
|
28 |
<option value="0" disabled>Google Tag Manager (<?php _e('Advanced', 'adrotate'); ?>)</option>
|
29 |
</select><br />
|
30 |
<span class="description">
|
31 |
-
<strong>AdRotate Statistics</strong> - <?php _e('Tracks impressions and clicks locally', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/adrotate-statistics/?
|
32 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions, Click and impression limits, impression spread for schedules. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
33 |
|
34 |
-
<strong>Matomo</strong> - <?php _e('Requires the Matomo tracking code installed in your sites footer. See the manual for details.', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/track-advert-stats-with-matomo/?
|
35 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions via events. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
36 |
|
37 |
-
<strong>Google Global Tag</strong> - <?php _e('Requires Google Global Tag tracking code installed in your sites footer!', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/track-advert-stats-with-google-analytics/installing-and-using-google-global-site-tag/?
|
38 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions via events. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
39 |
|
40 |
-
<strong>Google Tag Manager</strong> - <?php _e('Requires Google Tag Manager installed in your sites head tag and a Google Analytics Account!', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/track-advert-stats-with-google-analytics/installing-and-using-google-tag-manager/?
|
41 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions via custom events. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
42 |
</span>
|
43 |
</td>
|
28 |
<option value="0" disabled>Google Tag Manager (<?php _e('Advanced', 'adrotate'); ?>)</option>
|
29 |
</select><br />
|
30 |
<span class="description">
|
31 |
+
<strong>AdRotate Statistics</strong> - <?php _e('Tracks impressions and clicks locally', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/adrotate-statistics/?mtm_campaign=adrotatefree&mtm_keyword=settings_stats&mtm_content=adrotate_tracker" target="_blank"><?php _e('Setup guide', 'adrotate'); ?></a>.<br />
|
32 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions, Click and impression limits, impression spread for schedules. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
33 |
|
34 |
+
<strong>Matomo</strong> - <?php _e('Requires the Matomo tracking code installed in your sites footer. See the manual for details.', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/track-advert-stats-with-matomo/?mtm_campaign=adrotatefree&mtm_keyword=settings_stats&mtm_content=matomotracker" target="_blank"><?php _e('Setup guide', 'adrotate'); ?></a>.<br />
|
35 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions via events. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
36 |
|
37 |
+
<strong>Google Global Tag</strong> - <?php _e('Requires Google Global Tag tracking code installed in your sites footer!', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/track-advert-stats-with-google-analytics/installing-and-using-google-global-site-tag/?mtm_campaign=adrotatefree&mtm_keyword=settings_stats&mtm_content=globaltag_tracker" target="_blank"><?php _e('Setup guide', 'adrotate'); ?></a>.<br />
|
38 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions via events. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
39 |
|
40 |
+
<strong>Google Tag Manager</strong> - <?php _e('Requires Google Tag Manager installed in your sites head tag and a Google Analytics Account!', 'adrotate'); ?> - <a href="https://ajdg.solutions/support/adrotate-manuals/track-advert-stats-with-google-analytics/installing-and-using-google-tag-manager/?mtm_campaign=adrotatefree&mtm_keyword=settings_stats&mtm_content=tagmanager_tracker" target="_blank"><?php _e('Setup guide', 'adrotate'); ?></a>.<br />
|
41 |
<strong><?php _e('Supports:', 'adrotate'); ?></strong> <em><?php _e('Clicks and Impressions via custom events. Javascript/HTML5 adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
|
42 |
</span>
|
43 |
</td>
|
dashboard/support.php
CHANGED
@@ -1,20 +1,13 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
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 |
-
$banners = $groups = $schedules = $queued = $unpaid = 0;
|
13 |
-
$banners = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `type` != 'empty' AND `type` != 'a_empty';");
|
14 |
-
$groups = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '';");
|
15 |
-
$schedules = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate_schedule` WHERE `name` != '';");
|
16 |
-
$queued = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'queue' OR `type` = 'reject';");
|
17 |
-
$data = get_option("adrotate_advert_status");
|
18 |
?>
|
19 |
|
20 |
<div id="dashboard-widgets-wrap">
|
@@ -22,53 +15,51 @@ $data = get_option("adrotate_advert_status");
|
|
22 |
<div id="left-column" class="ajdg-postbox-container">
|
23 |
|
24 |
<div class="ajdg-postbox">
|
25 |
-
<h2 class="ajdg-postbox-title">
|
26 |
<div id="news" class="ajdg-postbox-content">
|
27 |
-
<p><img src="<?php echo plugins_url('/images/icon-support.png', dirname(__FILE__)); ?>" class="alignleft pro-image" />
|
28 |
|
29 |
-
<p><a href="https://ajdg.solutions/
|
30 |
-
<p><a href="https://
|
31 |
-
<p><a href="https://ajdg.solutions/
|
32 |
-
<p><a href="https://ajdg.
|
33 |
-
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/advert-statistics/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_stats" target="_blank"><strong>Advert Statistics forum</strong></a><br /><em>Graphs, impressions and clicks! <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/advert-statistics/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_stats" target="_blank">View topics »</a></em></p>
|
34 |
-
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/bug-reports/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_bugs" target="_blank"><strong>Bug Reports forum</strong></a><br /><em>Found a bug? Or something odd? Let me know! <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/bug-reports/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_bugs" target="_blank">View topics »</a></em></p>
|
35 |
</div>
|
36 |
</div>
|
37 |
|
38 |
<div class="ajdg-postbox">
|
39 |
-
<h2 class="ajdg-postbox-title">
|
40 |
<div id="services" class="ajdg-postbox-content">
|
41 |
-
<p>Check out
|
42 |
<table width="100%">
|
43 |
<tr>
|
44 |
<td width="33%">
|
45 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
46 |
-
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?
|
47 |
-
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?
|
48 |
<div class="sub_title">Professional service</div>
|
49 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/adrotate-html5-setup-service/?
|
50 |
<hr>
|
51 |
<div class="description">Did you get a HTML5 advert and can’t get it to work in AdRotate? I’ll install and configure it for you.</div>
|
52 |
</div>
|
53 |
</td>
|
54 |
<td width="33%">
|
55 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
56 |
-
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?
|
57 |
-
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?
|
58 |
<div class="sub_title">Professional service</div>
|
59 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?
|
60 |
<hr>
|
61 |
-
<div class="description">Get
|
62 |
</div>
|
63 |
</td>
|
64 |
<td>
|
65 |
<div class="ajdg-sales-widget" style="display: inline-block;">
|
66 |
-
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?
|
67 |
-
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?
|
68 |
<div class="sub_title">WooCommerce Plugin</div>
|
69 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?
|
70 |
<hr>
|
71 |
-
<div class="description">Merge your cart and checkout pages into one single page in seconds with no setup required
|
72 |
</div>
|
73 |
</td>
|
74 |
</tr>
|
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 |
<div id="dashboard-widgets-wrap">
|
15 |
<div id="left-column" class="ajdg-postbox-container">
|
16 |
|
17 |
<div class="ajdg-postbox">
|
18 |
+
<h2 class="ajdg-postbox-title">Getting help with AdRotate Banner Manager</h2>
|
19 |
<div id="news" class="ajdg-postbox-content">
|
20 |
+
<p><img src="<?php echo plugins_url('/images/icon-support.png', dirname(__FILE__)); ?>" class="alignleft pro-image" />New to AdRotate Banner Manager? Is something not working the way you expect it to? When you need help with AdRotate or AdRotate Pro you can check the manuals and guides on my website. Also there is a lot of information on the support forum asked by other users. Chances are your question has already been asked and answered!</p>
|
21 |
|
22 |
+
<p><a href="https://ajdg.solutions/support/adrotate-manuals/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><strong>AdRotate manuals and guides</strong></a><br /><em>Take a look at the AdRotate Manuals. <a href="https://ajdg.solutions/support/adrotate-manuals/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">View knowledgebase »</a></em></p>
|
23 |
+
<p><a href="https://wordpress.org/support/plugin/adrotate/" target="_blank"><strong>AdRotate Banner Manager support forum</strong></a><br /><em>Ask anything about AdRotate here on the wordpress.org forum. <a href="https://wordpress.org/support/plugin/adrotate/" target="_blank">View topics »</a></em></p>
|
24 |
+
<p><a href="https://ajdg.solutions/product/support-ticket/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><strong>Premium support</strong></a><br /><em>Buy a support ticket for private and quick assistance. <a href="https://ajdg.solutions/product/support-ticket/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">More information »</a></em></p>
|
25 |
+
<p><a href="https://support.ajdg.net/" target="_blank"><strong>Security issues</strong></a><br /><em>Found a security flaw? <a href="https://support.ajdg.net/" target="_blank">Report it »</a></em></p>
|
|
|
|
|
26 |
</div>
|
27 |
</div>
|
28 |
|
29 |
<div class="ajdg-postbox">
|
30 |
+
<h2 class="ajdg-postbox-title">More plugins and services</h2>
|
31 |
<div id="services" class="ajdg-postbox-content">
|
32 |
+
<p>Check out the various plugins and services in more details on my website. If you like AdRotate - Maybe you like some of those as well. Take a look at the <a href="https://ajdg.solutions/plugins/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">plugins</a> and overall <a href="https://ajdg.solutions/pricing/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">pricing</a> page for all the relevant information.</p>
|
33 |
<table width="100%">
|
34 |
<tr>
|
35 |
<td width="33%">
|
36 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
37 |
+
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/offers/html5-service.jpg", dirname(__FILE__)); ?>" alt="HTML5 Advert setup" width="228" height="120"></div></a>
|
38 |
+
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><div class="title">HTML5 Advert setup</div></a>
|
39 |
<div class="sub_title">Professional service</div>
|
40 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/adrotate-html5-setup-service/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">Learn more</a></div>
|
41 |
<hr>
|
42 |
<div class="description">Did you get a HTML5 advert and can’t get it to work in AdRotate? I’ll install and configure it for you.</div>
|
43 |
</div>
|
44 |
</td>
|
45 |
<td width="33%">
|
46 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
47 |
+
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/offers/wordpress-maintenance.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance" width="228" height="120"></div></a>
|
48 |
+
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><div class="title">Maintenance</div></a>
|
49 |
<div class="sub_title">Professional service</div>
|
50 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">Get started</a></div>
|
51 |
<hr>
|
52 |
+
<div class="description">Get the latest updates for WordPress or ClassicPress and installed plugins.</div>
|
53 |
</div>
|
54 |
</td>
|
55 |
<td>
|
56 |
<div class="ajdg-sales-widget" style="display: inline-block;">
|
57 |
+
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/offers/single-page-checkout.jpg", dirname(__FILE__)); ?>" alt="WooCommerce Single Page Checkout" width="228" height="120"></div></a>
|
58 |
+
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank"><div class="title">Single Page Checkout</div></a>
|
59 |
<div class="sub_title">WooCommerce Plugin</div>
|
60 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?mtm_campaign=adrotatefree&mtm_keyword=support_page" target="_blank">View product page</a></div>
|
61 |
<hr>
|
62 |
+
<div class="description">Merge your cart and checkout pages into one single page in seconds with no setup required.</div>
|
63 |
</div>
|
64 |
</td>
|
65 |
</tr>
|
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-04
|
6 |
-
"PO-Revision-Date: 2022-04
|
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"
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
|
|
|
|
|
|
|
|
20 |
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Werbeanzeige gespeichert"
|
@@ -170,15 +174,15 @@ msgstr ""
|
|
170 |
msgid "Unexpected error"
|
171 |
msgstr "Unerwarteter Fehler"
|
172 |
|
173 |
-
#: adrotate-manage-publisher.php:
|
174 |
msgid "AdRotate Advertiser"
|
175 |
msgstr "AdRotate Advertiser"
|
176 |
|
177 |
-
#: adrotate-output.php:
|
178 |
msgid "Oh no! Something went wrong!"
|
179 |
msgstr "Oha! Da ist etwas schief gelaufen!"
|
180 |
|
181 |
-
#: adrotate-output.php:
|
182 |
msgid ""
|
183 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
184 |
"Verify if the url used is valid or log in via your browser."
|
@@ -187,7 +191,7 @@ msgstr ""
|
|
187 |
"haben, zu prüfen. Überprüfen Sie, ob die verwendete Url gültig ist oder "
|
188 |
"loggen Sie sich über Ihren Browser ein."
|
189 |
|
190 |
-
#: adrotate-output.php:
|
191 |
msgid ""
|
192 |
"If you have received the url you want to visit via email, you are being "
|
193 |
"tricked!"
|
@@ -195,11 +199,11 @@ msgstr ""
|
|
195 |
"Wenn Sie eine URL per E-Mail erhalten, die Sie besuchen sollen, dann werden "
|
196 |
"Sie betrogen!"
|
197 |
|
198 |
-
#: adrotate-output.php:
|
199 |
msgid "Contact support if the issue persists:"
|
200 |
msgstr "Kontaktiere den Support, wenn das Problem weiterhin besteht:"
|
201 |
|
202 |
-
#: adrotate-output.php:
|
203 |
msgid ""
|
204 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
205 |
"restrictions!"
|
@@ -207,7 +211,7 @@ msgstr ""
|
|
207 |
"Fehler, Anzeige ist derzeit aufgrund von Zeitplan-/Geolocation-"
|
208 |
"Einschränkungen nicht verfügbar!"
|
209 |
|
210 |
-
#: adrotate-output.php:
|
211 |
msgid ""
|
212 |
"Either there are no banners, they are disabled or none qualified for this "
|
213 |
"location!"
|
@@ -215,19 +219,19 @@ msgstr ""
|
|
215 |
"Entweder gibt es keine banner, oder die banner sind deaktiviert oder hier "
|
216 |
"nicht entsprechend eingestellt!"
|
217 |
|
218 |
-
#: adrotate-output.php:
|
219 |
msgid "Error, no Advert ID set! Check your syntax!"
|
220 |
msgstr "Fehler, kein Anzeigen-ID-Satz! Überprüfen Sie Ihre Syntax!"
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
msgid "Error, no group ID set! Check your syntax!"
|
224 |
msgstr "Fehler, keine Gruppen-ID gesetzt! Überprüfen Sie Ihre Syntax!"
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid "Error, group does not exist! Check your syntax!"
|
228 |
msgstr "Fehler, Gruppe existiert nicht! Überprüfen Sie Ihre Syntax!"
|
229 |
|
230 |
-
#: adrotate-output.php:
|
231 |
msgid ""
|
232 |
"There was an error locating the database tables for AdRotate. Please "
|
233 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -235,11 +239,12 @@ msgstr ""
|
|
235 |
"Es ist ein Fehler in den Datenbanktabellen für AdRotate aufgetreten. Bitte "
|
236 |
"deaktivieren und reaktivieren Sie AdRotate aus der Plugin-Seite!!"
|
237 |
|
238 |
-
#: adrotate-output.php:
|
239 |
-
msgid "If this does not solve the issue please seek support
|
240 |
-
msgstr "
|
|
|
241 |
|
242 |
-
#: adrotate-output.php:
|
243 |
msgid ""
|
244 |
"There was an error loading the page. Please try again by reloading the page "
|
245 |
"via the menu on the left."
|
@@ -247,20 +252,20 @@ msgstr ""
|
|
247 |
"Beim Laden der Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es "
|
248 |
"erneut, indem Sie die Seite über das Menü auf der linken Seite neu laden."
|
249 |
|
250 |
-
#: adrotate-output.php:
|
251 |
-
msgid "If the issue persists please seek help
|
252 |
-
msgstr "Wenn das Problem weiterhin besteht,
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
msgid "An unknown error occured."
|
256 |
msgstr "Ein unbekannter Fehler ist aufgetreten."
|
257 |
|
258 |
-
#: adrotate-output.php:
|
259 |
#: dashboard/settings/maintenance.php:20
|
260 |
msgid "Check adverts"
|
261 |
msgstr "Anzeigen überprüfen"
|
262 |
|
263 |
-
#: adrotate-output.php:
|
264 |
msgid ""
|
265 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
266 |
"site!"
|
@@ -268,11 +273,11 @@ msgstr ""
|
|
268 |
"Sie haben die Caching-Unterstützung aktiviert, aber W3 Total Cache ist auf "
|
269 |
"Ihrer Website nicht aktiv!"
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid "Disable W3 Total Cache Support"
|
273 |
msgstr "Deaktivieren von W3 Total Cache Support"
|
274 |
|
275 |
-
#: adrotate-output.php:
|
276 |
msgid ""
|
277 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
278 |
"not set."
|
@@ -280,42 +285,42 @@ msgstr ""
|
|
280 |
"Sie haben Unterstützung Zwischenspeicherung aktiviert, aber die "
|
281 |
"W3TC_DYNAMIC_SECURITY Definition ist nicht festgelegt."
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid "How to configure W3 Total Cache"
|
285 |
msgstr "Konfigurieren von W3 Total Cache"
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid ""
|
289 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
290 |
msgstr ""
|
291 |
"Sie haben Caching-Unterstützung aktiviert, aber Borlabs Cache ist auf Ihrer "
|
292 |
"Website nicht aktiv!"
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
msgid "Disable Borlabs Cache Support"
|
296 |
msgstr "Deaktivieren der Borlabs-Cache-Unterstützung"
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
msgid ""
|
300 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
301 |
msgstr ""
|
302 |
"Sie haben die Borlabs Cache-Unterstützung aktiviert, aber die "
|
303 |
"Fragmentzwischenspeicherung ist nicht aktiviert!"
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
msgid "Enable Fragment Caching"
|
307 |
msgstr "Aktivieren der Fragmentzwischenspeicherung"
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
311 |
msgstr ""
|
312 |
"Ihre AdRotate Banner-Ordner ist nicht beschreibbar ist oder nicht vorhanden."
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
msgid "Set up your banner folder"
|
316 |
msgstr "Einrichten des Bannerordners"
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
msgid ""
|
320 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
321 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -323,11 +328,11 @@ msgstr ""
|
|
323 |
"Sie haben AdRotate Professional installiert. Bitte wechseln Sie zu AdRotate "
|
324 |
"Pro! Sie können dieses Plugin löschen, nachdem AdRotate Pro aktiviert wurde."
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid "Switch plugins"
|
328 |
msgstr "Wechseln von Plugins"
|
329 |
|
330 |
-
#: adrotate-output.php:
|
331 |
msgid ""
|
332 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
333 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -337,15 +342,15 @@ msgstr ""
|
|
337 |
"Plugin zweimal installiert oder Ihre aktuelle Installation hat den falschen "
|
338 |
"Ordnernamen. Bitte installieren Sie das Plugin richtig!"
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
msgid "Installation instructions"
|
342 |
msgstr "Installationsanweisungen"
|
343 |
|
344 |
-
#: adrotate-output.php:
|
345 |
msgid "your attention:"
|
346 |
msgstr "Ihre Aufmerksamkeit:"
|
347 |
|
348 |
-
#: adrotate-output.php:
|
349 |
msgid ""
|
350 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
351 |
"menu. If you need help getting started take a look at the"
|
@@ -354,47 +359,47 @@ msgstr ""
|
|
354 |
"AdRotate zu tun hat, befindet sich in diesem Menü. Wenn Sie Hilfe bei den "
|
355 |
"ersten"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid "manuals"
|
359 |
msgstr "Handbücher"
|
360 |
|
361 |
-
#: adrotate-output.php:
|
362 |
msgid "and"
|
363 |
msgstr "und"
|
364 |
|
365 |
-
#: adrotate-output.php:
|
366 |
msgid "forums"
|
367 |
msgstr "Forum"
|
368 |
|
369 |
-
#: adrotate-output.php:
|
370 |
msgid "Post Tweet"
|
371 |
msgstr "Tweet posten"
|
372 |
|
373 |
-
#: adrotate-output.php:
|
374 |
msgid "Share on Facebook"
|
375 |
msgstr "Auf Facebook teilen"
|
376 |
|
377 |
-
#: adrotate-output.php:
|
378 |
msgid "Write review on wordpress.org"
|
379 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
380 |
|
381 |
-
#: adrotate-output.php:
|
382 |
msgid "Thank you very much for your help and support!"
|
383 |
msgstr "Vielen Dank für Ihre Hilfe und Unterstützung!"
|
384 |
|
385 |
-
#: adrotate-output.php:
|
386 |
msgid "Need help fast? Or do you have a question?"
|
387 |
msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
|
388 |
|
389 |
-
#: adrotate-output.php:
|
390 |
msgid "Help AdRotate Grow"
|
391 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
392 |
|
393 |
-
#: adrotate-output.php:
|
394 |
msgid "Get more features with AdRotate Pro"
|
395 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
|
396 |
|
397 |
-
#: adrotate-output.php:
|
398 |
msgid ""
|
399 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
400 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -405,15 +410,15 @@ msgstr ""
|
|
405 |
"Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
|
406 |
"in der ersten Antwort."
|
407 |
|
408 |
-
#: adrotate-output.php:
|
409 |
msgid "AdRotate Manuals"
|
410 |
msgstr "AdRotate-Handbücher"
|
411 |
|
412 |
-
#: adrotate-output.php:
|
413 |
msgid "Support Forums"
|
414 |
msgstr "Support-Foren"
|
415 |
|
416 |
-
#: adrotate-output.php:
|
417 |
msgid ""
|
418 |
"When posting on the forum, please include a brief description of the "
|
419 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -426,7 +431,7 @@ msgstr ""
|
|
426 |
"zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
|
427 |
"zu erhalten."
|
428 |
|
429 |
-
#: adrotate-output.php:
|
430 |
msgid ""
|
431 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
432 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -439,11 +444,11 @@ msgstr ""
|
|
439 |
"AdRotate in sozialen Medien kostet Sie nichts, aber dies ist sehr hilfreich, "
|
440 |
"da die Werbung dazu beiträgt, die zukünftige Entwicklung sicherzustellen."
|
441 |
|
442 |
-
#: adrotate-output.php:
|
443 |
msgid "Write review on WordPress.org"
|
444 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
445 |
|
446 |
-
#: adrotate-output.php:
|
447 |
msgid ""
|
448 |
"AdRotate Professional has a lot more functions for even better advertising "
|
449 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -454,27 +459,27 @@ msgstr ""
|
|
454 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
455 |
"hat!"
|
456 |
|
457 |
-
#: adrotate-output.php:
|
458 |
msgid "Compare Licenses"
|
459 |
msgstr "Lizenzen vergleichen"
|
460 |
|
461 |
-
#: adrotate-output.php:
|
462 |
msgid "Single License"
|
463 |
msgstr "Einzellizenz"
|
464 |
|
465 |
-
#: adrotate-output.php:
|
466 |
msgid "Use on ONE WordPress installation."
|
467 |
msgstr "Für eine Wordpress-Installation."
|
468 |
|
469 |
-
#: adrotate-output.php:
|
470 |
msgid "Buy now"
|
471 |
msgstr "Jetzt kaufen"
|
472 |
|
473 |
-
#: adrotate-output.php:
|
474 |
msgid "Multi License"
|
475 |
msgstr "Multi-Lizenz"
|
476 |
|
477 |
-
#: adrotate-output.php:
|
478 |
msgid "Use on up to FIVE WordPress installations."
|
479 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
480 |
|
@@ -588,66 +593,66 @@ msgstr "ID:"
|
|
588 |
msgid "Fill in the ID of the type you want to display!"
|
589 |
msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
|
590 |
|
591 |
-
#: adrotate.php:
|
592 |
msgid "Manage Adverts"
|
593 |
msgstr "Anzeigen verwalten"
|
594 |
|
595 |
-
#: adrotate.php:
|
596 |
msgid "Manage Groups"
|
597 |
msgstr "Gruppen verwalten"
|
598 |
|
599 |
-
#: adrotate.php:
|
600 |
msgid "Manage Schedules"
|
601 |
msgstr "Zeiträume verwalten"
|
602 |
|
603 |
-
#: adrotate.php:
|
604 |
msgid "Manage Media"
|
605 |
msgstr "Medien verwalten"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
#: dashboard/publisher/adverts-edit.php:178
|
609 |
#: dashboard/publisher/statistics-main.php:23
|
610 |
#: dashboard/settings/statistics.php:17
|
611 |
msgid "Statistics"
|
612 |
msgstr "Auswertungen"
|
613 |
|
614 |
-
#: adrotate.php:
|
615 |
msgid "Get AdRotate Pro"
|
616 |
msgstr "AdRotate Pro"
|
617 |
|
618 |
-
#: adrotate.php:
|
619 |
msgid "Support"
|
620 |
msgstr "Support"
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
msgid "Settings"
|
624 |
msgstr "Einstellungen"
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
msgid "Get AdRotate Professional"
|
628 |
msgstr "AdRotate Professional kaufen"
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
msgid "Manage"
|
632 |
msgstr "Verwalten"
|
633 |
|
634 |
-
#: adrotate.php:
|
635 |
msgid "Advert Generator"
|
636 |
msgstr "Anzeige generator"
|
637 |
|
638 |
-
#: adrotate.php:
|
639 |
msgid "New Advert"
|
640 |
msgstr "Neue Anzeige"
|
641 |
|
642 |
-
#: adrotate.php:
|
643 |
msgid "Add New"
|
644 |
msgstr "Neu hinzufügen"
|
645 |
|
646 |
-
#: adrotate.php:
|
647 |
msgid "Manage Media and Assets"
|
648 |
msgstr "Verwalten von Medien und Ressourcen"
|
649 |
|
650 |
-
#: adrotate.php:
|
651 |
msgid ""
|
652 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
653 |
"if you have HTML5 adverts containing multiple files."
|
@@ -656,39 +661,39 @@ msgstr ""
|
|
656 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
657 |
"mehrere Dateien enthalten."
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "Advert Statistics"
|
661 |
msgstr "Statistiken zur Anzeige"
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "AdRotate Support"
|
665 |
msgstr "AdRotate-Unterstützung"
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "AdRotate Settings"
|
669 |
msgstr "AdRotate Einstellungen"
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid "General"
|
673 |
msgstr "Allgemein"
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid "Notifications"
|
677 |
msgstr "Benachrichtigungen"
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
msgid "Geo Targeting"
|
681 |
msgstr "Geo Targeting"
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
msgid "Access Roles"
|
685 |
msgstr "Zugriffsrollen"
|
686 |
|
687 |
-
#: adrotate.php:
|
688 |
msgid "Miscellaneous"
|
689 |
msgstr "Sonstiges"
|
690 |
|
691 |
-
#: adrotate.php:
|
692 |
msgid "Maintenance"
|
693 |
msgstr "Wartung"
|
694 |
|
@@ -831,43 +836,59 @@ msgstr ""
|
|
831 |
msgid "Disabled Adverts"
|
832 |
msgstr "Deaktivierte Anzeigen"
|
833 |
|
834 |
-
#: dashboard/publisher/adverts-disabled.php:
|
835 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
#: dashboard/publisher/adverts-main.php:20
|
837 |
#: dashboard/publisher/groups-main.php:20
|
838 |
#: dashboard/publisher/schedules-main.php:21
|
839 |
msgid "Bulk Actions"
|
840 |
msgstr "Bulk-Aktionen"
|
841 |
|
842 |
-
#: dashboard/publisher/adverts-disabled.php:
|
843 |
#: dashboard/publisher/adverts-edit.php:186
|
844 |
msgid "Activate"
|
845 |
msgstr "Aktivieren"
|
846 |
|
847 |
-
#: dashboard/publisher/adverts-disabled.php:
|
848 |
-
#: dashboard/publisher/adverts-error.php:
|
849 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
850 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
851 |
msgid "Delete"
|
852 |
msgstr "Löschen"
|
853 |
|
854 |
-
#: dashboard/publisher/adverts-disabled.php:
|
855 |
-
#: dashboard/publisher/adverts-error.php:
|
856 |
#: dashboard/publisher/adverts-main.php:23
|
857 |
msgid "Reset stats"
|
858 |
msgstr "Statistiken zurücksetzen"
|
859 |
|
860 |
-
#: dashboard/publisher/adverts-disabled.php:
|
861 |
-
#: dashboard/publisher/adverts-error.php:
|
862 |
#: dashboard/publisher/adverts-main.php:30
|
863 |
#: dashboard/publisher/groups-main.php:24
|
864 |
#: dashboard/publisher/schedules-main.php:22
|
865 |
msgid "Go"
|
866 |
msgstr "Los"
|
867 |
|
868 |
-
#: dashboard/publisher/adverts-disabled.php:
|
869 |
#: dashboard/publisher/adverts-edit.php:263
|
870 |
-
#: dashboard/publisher/adverts-error.php:
|
871 |
#: dashboard/publisher/adverts-main.php:39
|
872 |
#: dashboard/publisher/groups-edit.php:350
|
873 |
#: dashboard/publisher/groups-main.php:32
|
@@ -875,17 +896,17 @@ msgstr "Los"
|
|
875 |
msgid "ID"
|
876 |
msgstr "ID"
|
877 |
|
878 |
-
#: dashboard/publisher/adverts-disabled.php:
|
879 |
-
#: dashboard/publisher/adverts-error.php:
|
880 |
#: dashboard/publisher/adverts-main.php:40
|
881 |
#: dashboard/publisher/schedules-main.php:32
|
882 |
msgid "Start / End"
|
883 |
msgstr "Start / Ende"
|
884 |
|
885 |
-
#: dashboard/publisher/adverts-disabled.php:
|
886 |
#: dashboard/publisher/adverts-edit.php:116
|
887 |
#: dashboard/publisher/adverts-edit.php:264
|
888 |
-
#: dashboard/publisher/adverts-error.php:
|
889 |
#: dashboard/publisher/adverts-main.php:41
|
890 |
#: dashboard/publisher/groups-edit.php:65
|
891 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -894,14 +915,14 @@ msgstr "Start / Ende"
|
|
894 |
msgid "Name"
|
895 |
msgstr "Name"
|
896 |
|
897 |
-
#: dashboard/publisher/adverts-disabled.php:
|
898 |
#: dashboard/publisher/adverts-main.php:43
|
899 |
#: dashboard/publisher/groups-edit.php:355
|
900 |
#: dashboard/publisher/groups-main.php:36
|
901 |
msgid "Shown"
|
902 |
msgstr "Gezeigt"
|
903 |
|
904 |
-
#: dashboard/publisher/adverts-disabled.php:
|
905 |
#: dashboard/publisher/adverts-main.php:45
|
906 |
#: dashboard/publisher/groups-edit.php:356
|
907 |
#: dashboard/publisher/groups-main.php:38
|
@@ -922,7 +943,7 @@ msgstr "Gezeigt"
|
|
922 |
msgid "Clicks"
|
923 |
msgstr "Clicks"
|
924 |
|
925 |
-
#: dashboard/publisher/adverts-disabled.php:
|
926 |
#: dashboard/publisher/adverts-main.php:47
|
927 |
#: dashboard/publisher/statistics-advert.php:53
|
928 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -941,22 +962,22 @@ msgstr "Clicks"
|
|
941 |
msgid "CTR"
|
942 |
msgstr "CTR"
|
943 |
|
944 |
-
#: dashboard/publisher/adverts-disabled.php:
|
945 |
-
#: dashboard/publisher/adverts-error.php:
|
946 |
#: dashboard/publisher/adverts-main.php:69
|
947 |
#: dashboard/publisher/groups-main.php:70
|
948 |
msgid "Edit"
|
949 |
msgstr "Bearbeiten"
|
950 |
|
951 |
-
#: dashboard/publisher/adverts-disabled.php:
|
952 |
-
#: dashboard/publisher/adverts-error.php:
|
953 |
#: dashboard/publisher/adverts-main.php:69
|
954 |
#: dashboard/publisher/groups-main.php:70
|
955 |
msgid "Stats"
|
956 |
msgstr "Statistiken"
|
957 |
|
958 |
-
#: dashboard/publisher/adverts-disabled.php:
|
959 |
-
#: dashboard/publisher/adverts-error.php:
|
960 |
#: dashboard/publisher/adverts-main.php:69
|
961 |
msgid "Groups:"
|
962 |
msgstr "Gruppen:"
|
@@ -1356,45 +1377,63 @@ msgstr "Advert Hash"
|
|
1356 |
msgid "Adverts that need attention"
|
1357 |
msgstr "Werbung, die überprüft werden sollte"
|
1358 |
|
1359 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1360 |
#: dashboard/publisher/adverts-main.php:21
|
1361 |
msgid "Deactivate"
|
1362 |
msgstr "Deaktivieren"
|
1363 |
|
1364 |
-
#: dashboard/publisher/adverts-error.php:
|
1365 |
#: dashboard/publisher/adverts-main.php:25
|
1366 |
msgid "-- Renew --"
|
1367 |
msgstr "--Erneuern--"
|
1368 |
|
1369 |
-
#: dashboard/publisher/adverts-error.php:
|
1370 |
#: dashboard/publisher/adverts-main.php:26
|
1371 |
msgid "For 1 year"
|
1372 |
msgstr "Für 1 Jahr"
|
1373 |
|
1374 |
-
#: dashboard/publisher/adverts-error.php:
|
1375 |
#: dashboard/publisher/adverts-main.php:27
|
1376 |
msgid "For 180 days"
|
1377 |
msgstr "Für 180 Tage"
|
1378 |
|
1379 |
-
#: dashboard/publisher/adverts-error.php:
|
1380 |
#: dashboard/publisher/adverts-main.php:28
|
1381 |
msgid "For 30 days"
|
1382 |
msgstr "Für 30 Tage"
|
1383 |
|
1384 |
-
#: dashboard/publisher/adverts-error.php:
|
1385 |
#: dashboard/publisher/adverts-main.php:29
|
1386 |
msgid "For 7 days"
|
1387 |
msgstr "Für 7 Tage"
|
1388 |
|
1389 |
-
#: dashboard/publisher/adverts-error.php:
|
1390 |
msgid "Configuration errors"
|
1391 |
msgstr "Konfigurationsfehler"
|
1392 |
|
1393 |
-
#: dashboard/publisher/adverts-error.php:
|
1394 |
msgid "Expires soon"
|
1395 |
msgstr "Wird bald ablaufen"
|
1396 |
|
1397 |
-
#: dashboard/publisher/adverts-error.php:
|
1398 |
#: dashboard/settings/maintenance.php:45
|
1399 |
msgid "Expired"
|
1400 |
msgstr "Abgelaufen"
|
@@ -3190,54 +3229,54 @@ msgstr ""
|
|
3190 |
"Diese Zahl darf nicht leer sein, sollte niedriger sein als 60 oder mehr als "
|
3191 |
"86400 (24 Stunden)."
|
3192 |
|
3193 |
-
#: dashboard/support.php:
|
3194 |
msgid "Premium Support available in AdRotate Pro"
|
3195 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro"
|
3196 |
|
3197 |
-
#: dashboard/support.php:
|
3198 |
msgid "Premium support always comes first!"
|
3199 |
msgstr "Premium-Support steht immer an erster Stelle!"
|
3200 |
|
3201 |
-
#: dashboard/support.php:
|
3202 |
msgid "No queuing up on the forum..."
|
3203 |
msgstr "Kein Anstehen im Forum ..."
|
3204 |
|
3205 |
-
#: dashboard/support.php:
|
3206 |
msgid "Using this form includes essential information for a quick answer."
|
3207 |
msgstr ""
|
3208 |
"Die Verwendung dieses Formulars enthält wichtige Informationen für eine "
|
3209 |
"schnelle Antwort."
|
3210 |
|
3211 |
-
#: dashboard/support.php:
|
3212 |
msgid "Available in AdRotate Professional!"
|
3213 |
msgstr "Verfügbar in AdRotate Professional!"
|
3214 |
|
3215 |
-
#: dashboard/support.php:
|
3216 |
msgid "Your name:"
|
3217 |
msgstr "Ihr Name:"
|
3218 |
|
3219 |
-
#: dashboard/support.php:
|
3220 |
msgid "Your Email Address:"
|
3221 |
msgstr "Ihre E-Mail Adresse:"
|
3222 |
|
3223 |
-
#: dashboard/support.php:
|
3224 |
msgid "Subject:"
|
3225 |
msgstr "Betreff:"
|
3226 |
|
3227 |
-
#: dashboard/support.php:
|
3228 |
msgid "Problem description / Question:"
|
3229 |
msgstr "Beschreibung des Problems / Frage:"
|
3230 |
|
3231 |
-
#: dashboard/support.php:
|
3232 |
msgid "Please log in to my website and take a look."
|
3233 |
msgstr ""
|
3234 |
"Bitte loggen Sie sich auf meine Website ein und werfen Sie einen Blick."
|
3235 |
|
3236 |
-
#: dashboard/support.php:
|
3237 |
msgid "When you send this form the following data will be submitted:"
|
3238 |
msgstr "Wenn Sie dieses Formular senden, werden folgenden Daten übermittelt:"
|
3239 |
|
3240 |
-
#: dashboard/support.php:
|
3241 |
msgid ""
|
3242 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3243 |
"information will be included with the message."
|
@@ -3245,18 +3284,62 @@ msgstr ""
|
|
3245 |
"Ihr Name, Konto-E-Mail-Adresse, Ihre Website-URL und einige grundlegende "
|
3246 |
"WordPress-Informationen werden in die Nachricht aufgenommen."
|
3247 |
|
3248 |
-
#: dashboard/support.php:
|
3249 |
msgid "This information is treated as confidential and is mandatory."
|
3250 |
msgstr "Diese Informationen ist vertraulich und obligatorisch."
|
3251 |
|
3252 |
-
#: dashboard/support.php:
|
3253 |
msgid "Get Help"
|
3254 |
msgstr "Hilfe erhalten"
|
3255 |
|
3256 |
-
#: dashboard/support.php:
|
3257 |
msgid "Premium Support is available in AdRotate Pro!"
|
3258 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
3259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3260 |
#~ msgid "Check all adverts for configuration errors"
|
3261 |
#~ msgstr "Überprüfen Sie alle Anzeigen auf Konfigurationsfehler"
|
3262 |
|
@@ -3637,9 +3720,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
3637 |
#~ msgid "Schedules"
|
3638 |
#~ msgstr "Zeitpläne"
|
3639 |
|
3640 |
-
#~ msgid "AdRotate Pro"
|
3641 |
-
#~ msgstr "AdRotate Pro"
|
3642 |
-
|
3643 |
#~ msgid "Get more features"
|
3644 |
#~ msgstr "Holen Sie sich mehr Funktionen"
|
3645 |
|
@@ -4797,20 +4877,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
4797 |
#~ msgid "Advertiser:"
|
4798 |
#~ msgstr "Inserent:"
|
4799 |
|
4800 |
-
#~ msgid ""
|
4801 |
-
#~ "These adverts are temporarily disabled. You can archive adverts to "
|
4802 |
-
#~ "permanently disable them."
|
4803 |
-
#~ msgstr ""
|
4804 |
-
#~ "Diese Anzeigen sind vorübergehend deaktiviert. Werbung kann archiviert "
|
4805 |
-
#~ "und dauerhaft deaktiviert werden."
|
4806 |
-
|
4807 |
-
#~ msgid ""
|
4808 |
-
#~ "Archiving adverts moves gathered statistics away from the live database "
|
4809 |
-
#~ "which may speed up your website."
|
4810 |
-
#~ msgstr ""
|
4811 |
-
#~ "Die Archivierung von Anzeigen entfernt die gesammelten Statistiken aus "
|
4812 |
-
#~ "der Live-Datenbank, dies kann Ihre Website beschleunigen."
|
4813 |
-
|
4814 |
#~ msgid "Archive (Permanently)"
|
4815 |
#~ msgstr "Archiv (dauerhaft)"
|
4816 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:22-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-10-04 21:23-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: de\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-block.php:49
|
21 |
+
msgid "AdRotate - Advertisements"
|
22 |
+
msgstr "AdRotate - Anzeigen"
|
23 |
+
|
24 |
#: adrotate-functions.php:800
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Werbeanzeige gespeichert"
|
174 |
msgid "Unexpected error"
|
175 |
msgstr "Unerwarteter Fehler"
|
176 |
|
177 |
+
#: adrotate-manage-publisher.php:877
|
178 |
msgid "AdRotate Advertiser"
|
179 |
msgstr "AdRotate Advertiser"
|
180 |
|
181 |
+
#: adrotate-output.php:552
|
182 |
msgid "Oh no! Something went wrong!"
|
183 |
msgstr "Oha! Da ist etwas schief gelaufen!"
|
184 |
|
185 |
+
#: adrotate-output.php:553
|
186 |
msgid ""
|
187 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
188 |
"Verify if the url used is valid or log in via your browser."
|
191 |
"haben, zu prüfen. Überprüfen Sie, ob die verwendete Url gültig ist oder "
|
192 |
"loggen Sie sich über Ihren Browser ein."
|
193 |
|
194 |
+
#: adrotate-output.php:554
|
195 |
msgid ""
|
196 |
"If you have received the url you want to visit via email, you are being "
|
197 |
"tricked!"
|
199 |
"Wenn Sie eine URL per E-Mail erhalten, die Sie besuchen sollen, dann werden "
|
200 |
"Sie betrogen!"
|
201 |
|
202 |
+
#: adrotate-output.php:555
|
203 |
msgid "Contact support if the issue persists:"
|
204 |
msgstr "Kontaktiere den Support, wenn das Problem weiterhin besteht:"
|
205 |
|
206 |
+
#: adrotate-output.php:567
|
207 |
msgid ""
|
208 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
209 |
"restrictions!"
|
211 |
"Fehler, Anzeige ist derzeit aufgrund von Zeitplan-/Geolocation-"
|
212 |
"Einschränkungen nicht verfügbar!"
|
213 |
|
214 |
+
#: adrotate-output.php:572
|
215 |
msgid ""
|
216 |
"Either there are no banners, they are disabled or none qualified for this "
|
217 |
"location!"
|
219 |
"Entweder gibt es keine banner, oder die banner sind deaktiviert oder hier "
|
220 |
"nicht entsprechend eingestellt!"
|
221 |
|
222 |
+
#: adrotate-output.php:577
|
223 |
msgid "Error, no Advert ID set! Check your syntax!"
|
224 |
msgstr "Fehler, kein Anzeigen-ID-Satz! Überprüfen Sie Ihre Syntax!"
|
225 |
|
226 |
+
#: adrotate-output.php:583
|
227 |
msgid "Error, no group ID set! Check your syntax!"
|
228 |
msgstr "Fehler, keine Gruppen-ID gesetzt! Überprüfen Sie Ihre Syntax!"
|
229 |
|
230 |
+
#: adrotate-output.php:588
|
231 |
msgid "Error, group does not exist! Check your syntax!"
|
232 |
msgstr "Fehler, Gruppe existiert nicht! Überprüfen Sie Ihre Syntax!"
|
233 |
|
234 |
+
#: adrotate-output.php:594
|
235 |
msgid ""
|
236 |
"There was an error locating the database tables for AdRotate. Please "
|
237 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
239 |
"Es ist ein Fehler in den Datenbanktabellen für AdRotate aufgetreten. Bitte "
|
240 |
"deaktivieren und reaktivieren Sie AdRotate aus der Plugin-Seite!!"
|
241 |
|
242 |
+
#: adrotate-output.php:594
|
243 |
+
msgid "If this does not solve the issue please seek support on the"
|
244 |
+
msgstr ""
|
245 |
+
"Wenn dies das Problem nicht löst, suchen Sie bitte Unterstützung auf der"
|
246 |
|
247 |
+
#: adrotate-output.php:600
|
248 |
msgid ""
|
249 |
"There was an error loading the page. Please try again by reloading the page "
|
250 |
"via the menu on the left."
|
252 |
"Beim Laden der Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es "
|
253 |
"erneut, indem Sie die Seite über das Menü auf der linken Seite neu laden."
|
254 |
|
255 |
+
#: adrotate-output.php:600
|
256 |
+
msgid "If the issue persists please seek help on the"
|
257 |
+
msgstr "Wenn das Problem weiterhin besteht, suchen Sie bitte Hilfe auf der"
|
258 |
|
259 |
+
#: adrotate-output.php:606
|
260 |
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:20
|
265 |
msgid "Check adverts"
|
266 |
msgstr "Anzeigen überprüfen"
|
267 |
|
268 |
+
#: adrotate-output.php:638
|
269 |
msgid ""
|
270 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
271 |
"site!"
|
273 |
"Sie haben die Caching-Unterstützung aktiviert, aber W3 Total Cache ist auf "
|
274 |
"Ihrer Website nicht aktiv!"
|
275 |
|
276 |
+
#: adrotate-output.php:638
|
277 |
msgid "Disable W3 Total Cache Support"
|
278 |
msgstr "Deaktivieren von W3 Total Cache Support"
|
279 |
|
280 |
+
#: adrotate-output.php:641
|
281 |
msgid ""
|
282 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
283 |
"not set."
|
285 |
"Sie haben Unterstützung Zwischenspeicherung aktiviert, aber die "
|
286 |
"W3TC_DYNAMIC_SECURITY Definition ist nicht festgelegt."
|
287 |
|
288 |
+
#: adrotate-output.php:641
|
289 |
msgid "How to configure W3 Total Cache"
|
290 |
msgstr "Konfigurieren von W3 Total Cache"
|
291 |
|
292 |
+
#: adrotate-output.php:645
|
293 |
msgid ""
|
294 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
295 |
msgstr ""
|
296 |
"Sie haben Caching-Unterstützung aktiviert, aber Borlabs Cache ist auf Ihrer "
|
297 |
"Website nicht aktiv!"
|
298 |
|
299 |
+
#: adrotate-output.php:645
|
300 |
msgid "Disable Borlabs Cache Support"
|
301 |
msgstr "Deaktivieren der Borlabs-Cache-Unterstützung"
|
302 |
|
303 |
+
#: adrotate-output.php:650
|
304 |
msgid ""
|
305 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
306 |
msgstr ""
|
307 |
"Sie haben die Borlabs Cache-Unterstützung aktiviert, aber die "
|
308 |
"Fragmentzwischenspeicherung ist nicht aktiviert!"
|
309 |
|
310 |
+
#: adrotate-output.php:650
|
311 |
msgid "Enable Fragment Caching"
|
312 |
msgstr "Aktivieren der Fragmentzwischenspeicherung"
|
313 |
|
314 |
+
#: adrotate-output.php:657
|
315 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
316 |
msgstr ""
|
317 |
"Ihre AdRotate Banner-Ordner ist nicht beschreibbar ist oder nicht vorhanden."
|
318 |
|
319 |
+
#: adrotate-output.php:657
|
320 |
msgid "Set up your banner folder"
|
321 |
msgstr "Einrichten des Bannerordners"
|
322 |
|
323 |
+
#: adrotate-output.php:660
|
324 |
msgid ""
|
325 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
326 |
"can delete this plugin after AdRotate Pro is activated."
|
328 |
"Sie haben AdRotate Professional installiert. Bitte wechseln Sie zu AdRotate "
|
329 |
"Pro! Sie können dieses Plugin löschen, nachdem AdRotate Pro aktiviert wurde."
|
330 |
|
331 |
+
#: adrotate-output.php:660
|
332 |
msgid "Switch plugins"
|
333 |
msgstr "Wechseln von Plugins"
|
334 |
|
335 |
+
#: adrotate-output.php:663
|
336 |
msgid ""
|
337 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
338 |
"installed twice or your current installation has the wrong folder name. "
|
342 |
"Plugin zweimal installiert oder Ihre aktuelle Installation hat den falschen "
|
343 |
"Ordnernamen. Bitte installieren Sie das Plugin richtig!"
|
344 |
|
345 |
+
#: adrotate-output.php:663
|
346 |
msgid "Installation instructions"
|
347 |
msgstr "Installationsanweisungen"
|
348 |
|
349 |
+
#: adrotate-output.php:739
|
350 |
msgid "your attention:"
|
351 |
msgstr "Ihre Aufmerksamkeit:"
|
352 |
|
353 |
+
#: adrotate-output.php:778
|
354 |
msgid ""
|
355 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
356 |
"menu. If you need help getting started take a look at the"
|
359 |
"AdRotate zu tun hat, befindet sich in diesem Menü. Wenn Sie Hilfe bei den "
|
360 |
"ersten"
|
361 |
|
362 |
+
#: adrotate-output.php:778
|
363 |
msgid "manuals"
|
364 |
msgstr "Handbücher"
|
365 |
|
366 |
+
#: adrotate-output.php:778
|
367 |
msgid "and"
|
368 |
msgstr "und"
|
369 |
|
370 |
+
#: adrotate-output.php:778
|
371 |
msgid "forums"
|
372 |
msgstr "Forum"
|
373 |
|
374 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
375 |
msgid "Post Tweet"
|
376 |
msgstr "Tweet posten"
|
377 |
|
378 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
379 |
msgid "Share on Facebook"
|
380 |
msgstr "Auf Facebook teilen"
|
381 |
|
382 |
+
#: adrotate-output.php:833
|
383 |
msgid "Write review on wordpress.org"
|
384 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
385 |
|
386 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
387 |
msgid "Thank you very much for your help and support!"
|
388 |
msgstr "Vielen Dank für Ihre Hilfe und Unterstützung!"
|
389 |
|
390 |
+
#: adrotate-output.php:864
|
391 |
msgid "Need help fast? Or do you have a question?"
|
392 |
msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
|
393 |
|
394 |
+
#: adrotate-output.php:865
|
395 |
msgid "Help AdRotate Grow"
|
396 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
397 |
|
398 |
+
#: adrotate-output.php:866
|
399 |
msgid "Get more features with AdRotate Pro"
|
400 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
|
401 |
|
402 |
+
#: adrotate-output.php:872
|
403 |
msgid ""
|
404 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
405 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
410 |
"Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
|
411 |
"in der ersten Antwort."
|
412 |
|
413 |
+
#: adrotate-output.php:873
|
414 |
msgid "AdRotate Manuals"
|
415 |
msgstr "AdRotate-Handbücher"
|
416 |
|
417 |
+
#: adrotate-output.php:873
|
418 |
msgid "Support Forums"
|
419 |
msgstr "Support-Foren"
|
420 |
|
421 |
+
#: adrotate-output.php:874
|
422 |
msgid ""
|
423 |
"When posting on the forum, please include a brief description of the "
|
424 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
431 |
"zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
|
432 |
"zu erhalten."
|
433 |
|
434 |
+
#: adrotate-output.php:876
|
435 |
msgid ""
|
436 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
437 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
444 |
"AdRotate in sozialen Medien kostet Sie nichts, aber dies ist sehr hilfreich, "
|
445 |
"da die Werbung dazu beiträgt, die zukünftige Entwicklung sicherzustellen."
|
446 |
|
447 |
+
#: adrotate-output.php:877
|
448 |
msgid "Write review on WordPress.org"
|
449 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
450 |
|
451 |
+
#: adrotate-output.php:880
|
452 |
msgid ""
|
453 |
"AdRotate Professional has a lot more functions for even better advertising "
|
454 |
"management. Check out the feature comparison tab on any of the product pages "
|
459 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
460 |
"hat!"
|
461 |
|
462 |
+
#: adrotate-output.php:880
|
463 |
msgid "Compare Licenses"
|
464 |
msgstr "Lizenzen vergleichen"
|
465 |
|
466 |
+
#: adrotate-output.php:881
|
467 |
msgid "Single License"
|
468 |
msgstr "Einzellizenz"
|
469 |
|
470 |
+
#: adrotate-output.php:881
|
471 |
msgid "Use on ONE WordPress installation."
|
472 |
msgstr "Für eine Wordpress-Installation."
|
473 |
|
474 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
475 |
msgid "Buy now"
|
476 |
msgstr "Jetzt kaufen"
|
477 |
|
478 |
+
#: adrotate-output.php:882
|
479 |
msgid "Multi License"
|
480 |
msgstr "Multi-Lizenz"
|
481 |
|
482 |
+
#: adrotate-output.php:882
|
483 |
msgid "Use on up to FIVE WordPress installations."
|
484 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
485 |
|
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:106 adrotate.php:176
|
597 |
msgid "Manage Adverts"
|
598 |
msgstr "Anzeigen verwalten"
|
599 |
|
600 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
601 |
msgid "Manage Groups"
|
602 |
msgstr "Gruppen verwalten"
|
603 |
|
604 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
605 |
msgid "Manage Schedules"
|
606 |
msgstr "Zeiträume verwalten"
|
607 |
|
608 |
+
#: adrotate.php:109
|
609 |
msgid "Manage Media"
|
610 |
msgstr "Medien verwalten"
|
611 |
|
612 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
620 |
msgid "Get AdRotate Pro"
|
621 |
msgstr "AdRotate Pro"
|
622 |
|
623 |
+
#: adrotate.php:112
|
624 |
msgid "Support"
|
625 |
msgstr "Support"
|
626 |
|
627 |
+
#: adrotate.php:113
|
628 |
msgid "Settings"
|
629 |
msgstr "Einstellungen"
|
630 |
|
631 |
+
#: adrotate.php:132
|
632 |
msgid "Get AdRotate Professional"
|
633 |
msgstr "AdRotate Professional kaufen"
|
634 |
|
635 |
+
#: adrotate.php:236 adrotate.php:308
|
636 |
msgid "Manage"
|
637 |
msgstr "Verwalten"
|
638 |
|
639 |
+
#: adrotate.php:237
|
640 |
msgid "Advert Generator"
|
641 |
msgstr "Anzeige generator"
|
642 |
|
643 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
644 |
msgid "New Advert"
|
645 |
msgstr "Neue Anzeige"
|
646 |
|
647 |
+
#: adrotate.php:309
|
648 |
msgid "Add New"
|
649 |
msgstr "Neu hinzufügen"
|
650 |
|
651 |
+
#: adrotate.php:377
|
652 |
msgid "Manage Media and Assets"
|
653 |
msgstr "Verwalten von Medien und Ressourcen"
|
654 |
|
655 |
+
#: adrotate.php:381
|
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 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
662 |
"mehrere Dateien enthalten."
|
663 |
|
664 |
+
#: adrotate.php:423
|
665 |
msgid "Advert Statistics"
|
666 |
msgstr "Statistiken zur Anzeige"
|
667 |
|
668 |
+
#: adrotate.php:466
|
669 |
msgid "AdRotate Support"
|
670 |
msgstr "AdRotate-Unterstützung"
|
671 |
|
672 |
+
#: adrotate.php:498
|
673 |
msgid "AdRotate Settings"
|
674 |
msgstr "AdRotate Einstellungen"
|
675 |
|
676 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
677 |
msgid "General"
|
678 |
msgstr "Allgemein"
|
679 |
|
680 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
681 |
msgid "Notifications"
|
682 |
msgstr "Benachrichtigungen"
|
683 |
|
684 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
685 |
msgid "Geo Targeting"
|
686 |
msgstr "Geo Targeting"
|
687 |
|
688 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
689 |
msgid "Access Roles"
|
690 |
msgstr "Zugriffsrollen"
|
691 |
|
692 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
693 |
msgid "Miscellaneous"
|
694 |
msgstr "Sonstiges"
|
695 |
|
696 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
697 |
msgid "Maintenance"
|
698 |
msgstr "Wartung"
|
699 |
|
836 |
msgid "Disabled Adverts"
|
837 |
msgstr "Deaktivierte Anzeigen"
|
838 |
|
839 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
840 |
+
msgid ""
|
841 |
+
"These adverts are temporarily disabled. You can archive adverts to "
|
842 |
+
"permanently disable them."
|
843 |
+
msgstr ""
|
844 |
+
"Diese Anzeigen sind vorübergehend deaktiviert. Werbung kann archiviert und "
|
845 |
+
"dauerhaft deaktiviert werden."
|
846 |
+
|
847 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
848 |
+
msgid ""
|
849 |
+
"Archiving adverts moves gathered statistics away from the live database "
|
850 |
+
"which may speed up your website."
|
851 |
+
msgstr ""
|
852 |
+
"Die Archivierung von Anzeigen entfernt die gesammelten Statistiken aus der "
|
853 |
+
"Live-Datenbank, dies kann Ihre Website beschleunigen."
|
854 |
+
|
855 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
856 |
+
#: dashboard/publisher/adverts-error.php:20
|
857 |
#: dashboard/publisher/adverts-main.php:20
|
858 |
#: dashboard/publisher/groups-main.php:20
|
859 |
#: dashboard/publisher/schedules-main.php:21
|
860 |
msgid "Bulk Actions"
|
861 |
msgstr "Bulk-Aktionen"
|
862 |
|
863 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
864 |
#: dashboard/publisher/adverts-edit.php:186
|
865 |
msgid "Activate"
|
866 |
msgstr "Aktivieren"
|
867 |
|
868 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
869 |
+
#: dashboard/publisher/adverts-error.php:22
|
870 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
871 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
872 |
msgid "Delete"
|
873 |
msgstr "Löschen"
|
874 |
|
875 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
876 |
+
#: dashboard/publisher/adverts-error.php:23
|
877 |
#: dashboard/publisher/adverts-main.php:23
|
878 |
msgid "Reset stats"
|
879 |
msgstr "Statistiken zurücksetzen"
|
880 |
|
881 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
882 |
+
#: dashboard/publisher/adverts-error.php:30
|
883 |
#: dashboard/publisher/adverts-main.php:30
|
884 |
#: dashboard/publisher/groups-main.php:24
|
885 |
#: dashboard/publisher/schedules-main.php:22
|
886 |
msgid "Go"
|
887 |
msgstr "Los"
|
888 |
|
889 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
890 |
#: dashboard/publisher/adverts-edit.php:263
|
891 |
+
#: dashboard/publisher/adverts-error.php:40
|
892 |
#: dashboard/publisher/adverts-main.php:39
|
893 |
#: dashboard/publisher/groups-edit.php:350
|
894 |
#: dashboard/publisher/groups-main.php:32
|
896 |
msgid "ID"
|
897 |
msgstr "ID"
|
898 |
|
899 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
900 |
+
#: dashboard/publisher/adverts-error.php:42
|
901 |
#: dashboard/publisher/adverts-main.php:40
|
902 |
#: dashboard/publisher/schedules-main.php:32
|
903 |
msgid "Start / End"
|
904 |
msgstr "Start / Ende"
|
905 |
|
906 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
907 |
#: dashboard/publisher/adverts-edit.php:116
|
908 |
#: dashboard/publisher/adverts-edit.php:264
|
909 |
+
#: dashboard/publisher/adverts-error.php:41
|
910 |
#: dashboard/publisher/adverts-main.php:41
|
911 |
#: dashboard/publisher/groups-edit.php:65
|
912 |
#: dashboard/publisher/groups-edit.php:351
|
915 |
msgid "Name"
|
916 |
msgstr "Name"
|
917 |
|
918 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
919 |
#: dashboard/publisher/adverts-main.php:43
|
920 |
#: dashboard/publisher/groups-edit.php:355
|
921 |
#: dashboard/publisher/groups-main.php:36
|
922 |
msgid "Shown"
|
923 |
msgstr "Gezeigt"
|
924 |
|
925 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
926 |
#: dashboard/publisher/adverts-main.php:45
|
927 |
#: dashboard/publisher/groups-edit.php:356
|
928 |
#: dashboard/publisher/groups-main.php:38
|
943 |
msgid "Clicks"
|
944 |
msgstr "Clicks"
|
945 |
|
946 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
947 |
#: dashboard/publisher/adverts-main.php:47
|
948 |
#: dashboard/publisher/statistics-advert.php:53
|
949 |
#: dashboard/publisher/statistics-advert.php:59
|
962 |
msgid "CTR"
|
963 |
msgstr "CTR"
|
964 |
|
965 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
966 |
+
#: dashboard/publisher/adverts-error.php:57
|
967 |
#: dashboard/publisher/adverts-main.php:69
|
968 |
#: dashboard/publisher/groups-main.php:70
|
969 |
msgid "Edit"
|
970 |
msgstr "Bearbeiten"
|
971 |
|
972 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
973 |
+
#: dashboard/publisher/adverts-error.php:57
|
974 |
#: dashboard/publisher/adverts-main.php:69
|
975 |
#: dashboard/publisher/groups-main.php:70
|
976 |
msgid "Stats"
|
977 |
msgstr "Statistiken"
|
978 |
|
979 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
980 |
+
#: dashboard/publisher/adverts-error.php:57
|
981 |
#: dashboard/publisher/adverts-main.php:69
|
982 |
msgid "Groups:"
|
983 |
msgstr "Gruppen:"
|
1377 |
msgid "Adverts that need attention"
|
1378 |
msgstr "Werbung, die überprüft werden sollte"
|
1379 |
|
1380 |
+
#: dashboard/publisher/adverts-error.php:13
|
1381 |
+
msgid ""
|
1382 |
+
"The adverts listed here are currently not showing on your website. This is "
|
1383 |
+
"because they are almost expired, have expired or have configuration issues."
|
1384 |
+
msgstr ""
|
1385 |
+
"Die hier aufgeführten Anzeigen werden derzeit nicht auf Ihrer Website "
|
1386 |
+
"geschaltet. Dies liegt daran, dass sie fast abgelaufen sind, abgelaufen sind "
|
1387 |
+
"oder Konfigurationsprobleme haben."
|
1388 |
+
|
1389 |
+
#: dashboard/publisher/adverts-error.php:13
|
1390 |
+
msgid ""
|
1391 |
+
"To fix the issue edit each advert and look for one or more notification at "
|
1392 |
+
"the top to see what AdRotate thinks is wrong with it."
|
1393 |
+
msgstr ""
|
1394 |
+
"Um das Problem zu beheben, bearbeite jede Werbeanzeige und suche oben nach "
|
1395 |
+
"einer oder mehreren Benachrichtigungen, um zu sehen, was AdRotate daran für "
|
1396 |
+
"falsch hält."
|
1397 |
+
|
1398 |
+
#: dashboard/publisher/adverts-error.php:21
|
1399 |
#: dashboard/publisher/adverts-main.php:21
|
1400 |
msgid "Deactivate"
|
1401 |
msgstr "Deaktivieren"
|
1402 |
|
1403 |
+
#: dashboard/publisher/adverts-error.php:24
|
1404 |
#: dashboard/publisher/adverts-main.php:25
|
1405 |
msgid "-- Renew --"
|
1406 |
msgstr "--Erneuern--"
|
1407 |
|
1408 |
+
#: dashboard/publisher/adverts-error.php:25
|
1409 |
#: dashboard/publisher/adverts-main.php:26
|
1410 |
msgid "For 1 year"
|
1411 |
msgstr "Für 1 Jahr"
|
1412 |
|
1413 |
+
#: dashboard/publisher/adverts-error.php:26
|
1414 |
#: dashboard/publisher/adverts-main.php:27
|
1415 |
msgid "For 180 days"
|
1416 |
msgstr "Für 180 Tage"
|
1417 |
|
1418 |
+
#: dashboard/publisher/adverts-error.php:27
|
1419 |
#: dashboard/publisher/adverts-main.php:28
|
1420 |
msgid "For 30 days"
|
1421 |
msgstr "Für 30 Tage"
|
1422 |
|
1423 |
+
#: dashboard/publisher/adverts-error.php:28
|
1424 |
#: dashboard/publisher/adverts-main.php:29
|
1425 |
msgid "For 7 days"
|
1426 |
msgstr "Für 7 Tage"
|
1427 |
|
1428 |
+
#: dashboard/publisher/adverts-error.php:65
|
1429 |
msgid "Configuration errors"
|
1430 |
msgstr "Konfigurationsfehler"
|
1431 |
|
1432 |
+
#: dashboard/publisher/adverts-error.php:66
|
1433 |
msgid "Expires soon"
|
1434 |
msgstr "Wird bald ablaufen"
|
1435 |
|
1436 |
+
#: dashboard/publisher/adverts-error.php:67
|
1437 |
#: dashboard/settings/maintenance.php:45
|
1438 |
msgid "Expired"
|
1439 |
msgstr "Abgelaufen"
|
3229 |
"Diese Zahl darf nicht leer sein, sollte niedriger sein als 60 oder mehr als "
|
3230 |
"86400 (24 Stunden)."
|
3231 |
|
3232 |
+
#: dashboard/support.php:74
|
3233 |
msgid "Premium Support available in AdRotate Pro"
|
3234 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro"
|
3235 |
|
3236 |
+
#: dashboard/support.php:77
|
3237 |
msgid "Premium support always comes first!"
|
3238 |
msgstr "Premium-Support steht immer an erster Stelle!"
|
3239 |
|
3240 |
+
#: dashboard/support.php:77
|
3241 |
msgid "No queuing up on the forum..."
|
3242 |
msgstr "Kein Anstehen im Forum ..."
|
3243 |
|
3244 |
+
#: dashboard/support.php:77
|
3245 |
msgid "Using this form includes essential information for a quick answer."
|
3246 |
msgstr ""
|
3247 |
"Die Verwendung dieses Formulars enthält wichtige Informationen für eine "
|
3248 |
"schnelle Antwort."
|
3249 |
|
3250 |
+
#: dashboard/support.php:77
|
3251 |
msgid "Available in AdRotate Professional!"
|
3252 |
msgstr "Verfügbar in AdRotate Professional!"
|
3253 |
|
3254 |
+
#: dashboard/support.php:79
|
3255 |
msgid "Your name:"
|
3256 |
msgstr "Ihr Name:"
|
3257 |
|
3258 |
+
#: dashboard/support.php:80
|
3259 |
msgid "Your Email Address:"
|
3260 |
msgstr "Ihre E-Mail Adresse:"
|
3261 |
|
3262 |
+
#: dashboard/support.php:81
|
3263 |
msgid "Subject:"
|
3264 |
msgstr "Betreff:"
|
3265 |
|
3266 |
+
#: dashboard/support.php:82
|
3267 |
msgid "Problem description / Question:"
|
3268 |
msgstr "Beschreibung des Problems / Frage:"
|
3269 |
|
3270 |
+
#: dashboard/support.php:83
|
3271 |
msgid "Please log in to my website and take a look."
|
3272 |
msgstr ""
|
3273 |
"Bitte loggen Sie sich auf meine Website ein und werfen Sie einen Blick."
|
3274 |
|
3275 |
+
#: dashboard/support.php:85
|
3276 |
msgid "When you send this form the following data will be submitted:"
|
3277 |
msgstr "Wenn Sie dieses Formular senden, werden folgenden Daten übermittelt:"
|
3278 |
|
3279 |
+
#: dashboard/support.php:86
|
3280 |
msgid ""
|
3281 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3282 |
"information will be included with the message."
|
3284 |
"Ihr Name, Konto-E-Mail-Adresse, Ihre Website-URL und einige grundlegende "
|
3285 |
"WordPress-Informationen werden in die Nachricht aufgenommen."
|
3286 |
|
3287 |
+
#: dashboard/support.php:86
|
3288 |
msgid "This information is treated as confidential and is mandatory."
|
3289 |
msgstr "Diese Informationen ist vertraulich und obligatorisch."
|
3290 |
|
3291 |
+
#: dashboard/support.php:89
|
3292 |
msgid "Get Help"
|
3293 |
msgstr "Hilfe erhalten"
|
3294 |
|
3295 |
+
#: dashboard/support.php:89
|
3296 |
msgid "Premium Support is available in AdRotate Pro!"
|
3297 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
3298 |
|
3299 |
+
#: library/block.js:19 library/block.js:49
|
3300 |
+
msgid "AdRotate Advert"
|
3301 |
+
msgstr "AdRotate-Anzeige"
|
3302 |
+
|
3303 |
+
#: library/block.js:22
|
3304 |
+
msgid "Show a single advert by entering an advert ID."
|
3305 |
+
msgstr "Zeige eine einzelne Werbeanzeige, indem du eine Werbe-ID eingibst."
|
3306 |
+
|
3307 |
+
#: library/block.js:52
|
3308 |
+
msgid "Enter an Advert ID (numbers only):"
|
3309 |
+
msgstr "Geben Sie eine Anzeigen-ID ein (nur Nummern):"
|
3310 |
+
|
3311 |
+
#: library/block.js:63
|
3312 |
+
msgid ""
|
3313 |
+
"You can find the advert ID in Manage Adverts. Any special markup, code or "
|
3314 |
+
"layout styles can be applied in the advert itself or by placing the advert "
|
3315 |
+
"in a group."
|
3316 |
+
msgstr ""
|
3317 |
+
"Du findest die Werbeanzeigen-ID unter Werbeanzeigen verwalten. Alle "
|
3318 |
+
"speziellen Markup-, Code- oder Layoutstile können in der Anzeige selbst oder "
|
3319 |
+
"durch Platzieren der Anzeige in einer Gruppe angewendet werden."
|
3320 |
+
|
3321 |
+
#: library/block.js:73 library/block.js:103
|
3322 |
+
msgid "AdRotate Group"
|
3323 |
+
msgstr "AdRotate-Gruppe"
|
3324 |
+
|
3325 |
+
#: library/block.js:76
|
3326 |
+
msgid "Show a group of adverts by entering a group ID."
|
3327 |
+
msgstr ""
|
3328 |
+
"Zeige eine Gruppe von Werbeanzeigen, indem du eine Gruppen-ID eingibst."
|
3329 |
+
|
3330 |
+
#: library/block.js:106
|
3331 |
+
msgid "Enter a group ID (numbers only):"
|
3332 |
+
msgstr "Geben Sie eine Gruppen-ID ein (nur Nummern):"
|
3333 |
+
|
3334 |
+
#: library/block.js:117
|
3335 |
+
msgid ""
|
3336 |
+
"You can find the group ID in Manage Groups. Any special markup, code or "
|
3337 |
+
"layout styles can be applied in the group wrapper when editing the group."
|
3338 |
+
msgstr ""
|
3339 |
+
"Sie finden die Gruppen-ID unter Gruppen verwalten. Alle speziellen Markup-, "
|
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 |
|
3720 |
#~ msgid "Schedules"
|
3721 |
#~ msgstr "Zeitpläne"
|
3722 |
|
|
|
|
|
|
|
3723 |
#~ msgid "Get more features"
|
3724 |
#~ msgstr "Holen Sie sich mehr Funktionen"
|
3725 |
|
4877 |
#~ msgid "Advertiser:"
|
4878 |
#~ msgstr "Inserent:"
|
4879 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4880 |
#~ msgid "Archive (Permanently)"
|
4881 |
#~ msgstr "Archiv (dauerhaft)"
|
4882 |
|
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-04
|
6 |
-
"PO-Revision-Date: 2022-04
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
|
|
|
|
|
|
|
|
20 |
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Annonce enregistré"
|
@@ -169,15 +173,15 @@ msgstr ""
|
|
169 |
msgid "Unexpected error"
|
170 |
msgstr "Erreur inattendue"
|
171 |
|
172 |
-
#: adrotate-manage-publisher.php:
|
173 |
msgid "AdRotate Advertiser"
|
174 |
msgstr "AdRotate annonceur"
|
175 |
|
176 |
-
#: adrotate-output.php:
|
177 |
msgid "Oh no! Something went wrong!"
|
178 |
msgstr "Oh no! Un problème est survenu!"
|
179 |
|
180 |
-
#: adrotate-output.php:
|
181 |
msgid ""
|
182 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
183 |
"Verify if the url used is valid or log in via your browser."
|
@@ -186,17 +190,17 @@ msgstr ""
|
|
186 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
187 |
"votre navigateur."
|
188 |
|
189 |
-
#: adrotate-output.php:
|
190 |
msgid ""
|
191 |
"If you have received the url you want to visit via email, you are being "
|
192 |
"tricked!"
|
193 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
msgid "Contact support if the issue persists:"
|
197 |
msgstr "Contactez le support si le soucis persiste :"
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid ""
|
201 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
202 |
"restrictions!"
|
@@ -204,7 +208,7 @@ msgstr ""
|
|
204 |
"Erreur, Annonce n’est pas disponible pour le moment en raison de "
|
205 |
"restrictions de calendrier / géolocalisation!"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid ""
|
209 |
"Either there are no banners, they are disabled or none qualified for this "
|
210 |
"location!"
|
@@ -212,19 +216,19 @@ msgstr ""
|
|
212 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
213 |
"cet endroit!"
|
214 |
|
215 |
-
#: adrotate-output.php:
|
216 |
msgid "Error, no Advert ID set! Check your syntax!"
|
217 |
msgstr "Erreur, pas de jeu d’identité publicitaire! Vérifiez votre syntaxe!"
|
218 |
|
219 |
-
#: adrotate-output.php:
|
220 |
msgid "Error, no group ID set! Check your syntax!"
|
221 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
222 |
|
223 |
-
#: adrotate-output.php:
|
224 |
msgid "Error, group does not exist! Check your syntax!"
|
225 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
226 |
|
227 |
-
#: adrotate-output.php:
|
228 |
msgid ""
|
229 |
"There was an error locating the database tables for AdRotate. Please "
|
230 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -232,13 +236,11 @@ msgstr ""
|
|
232 |
"AdRotate ne peut pas trouver la table de la base de données dont elle a "
|
233 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des extensions!"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
-
msgid "If this does not solve the issue please seek support
|
237 |
-
msgstr ""
|
238 |
-
"Si les instructions ne résoudent pas le soucis, veuillez contacter le "
|
239 |
-
"support à"
|
240 |
|
241 |
-
#: adrotate-output.php:
|
242 |
msgid ""
|
243 |
"There was an error loading the page. Please try again by reloading the page "
|
244 |
"via the menu on the left."
|
@@ -246,20 +248,20 @@ msgstr ""
|
|
246 |
"Il y a eu une erreur de chargement de la page. S’il vous plaît essayer à "
|
247 |
"nouveau en rechargeant la page via le menu sur la gauche."
|
248 |
|
249 |
-
#: adrotate-output.php:
|
250 |
-
msgid "If the issue persists please seek help
|
251 |
-
msgstr "Si le problème persiste, veuillez demander de l’aide"
|
252 |
|
253 |
-
#: adrotate-output.php:
|
254 |
msgid "An unknown error occured."
|
255 |
msgstr "Une erreur inconnue s'est produite."
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
#: dashboard/settings/maintenance.php:20
|
259 |
msgid "Check adverts"
|
260 |
msgstr "Vérifier les annonces"
|
261 |
|
262 |
-
#: adrotate-output.php:
|
263 |
msgid ""
|
264 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
265 |
"site!"
|
@@ -267,11 +269,11 @@ msgstr ""
|
|
267 |
"Vous avez activé la prise en charge mise en cache, mais W3 Total Cache n’est "
|
268 |
"pas actif sur votre site !"
|
269 |
|
270 |
-
#: adrotate-output.php:
|
271 |
msgid "Disable W3 Total Cache Support"
|
272 |
msgstr "Désactiver W3 Total Cache Support"
|
273 |
|
274 |
-
#: adrotate-output.php:
|
275 |
msgid ""
|
276 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
277 |
"not set."
|
@@ -279,43 +281,43 @@ msgstr ""
|
|
279 |
"Vous avez activer le support de mise en cache, mais la définition "
|
280 |
"W3TC_DYNAMIC_SECURITY n’est pas définie."
|
281 |
|
282 |
-
#: adrotate-output.php:
|
283 |
msgid "How to configure W3 Total Cache"
|
284 |
msgstr "Comment configurer W3 Total Cache"
|
285 |
|
286 |
-
#: adrotate-output.php:
|
287 |
msgid ""
|
288 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
289 |
msgstr ""
|
290 |
"Vous avez permis de mettre en cache le support mais Borlabs Cache n’est pas "
|
291 |
"actif sur votre site !"
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "Disable Borlabs Cache Support"
|
295 |
msgstr "Désactiver borlabs Cache Support"
|
296 |
|
297 |
-
#: adrotate-output.php:
|
298 |
msgid ""
|
299 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
300 |
msgstr ""
|
301 |
"Vous avez activé le support Borlabs Cache mais la mise en cache Fragment "
|
302 |
"n’est pas activée !"
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
msgid "Enable Fragment Caching"
|
306 |
msgstr "Permettre aux annonceurs"
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
310 |
msgstr ""
|
311 |
"Votre dossier AdRotate bannière n’est pas accessible en écriture ou n’existe "
|
312 |
"pas."
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
msgid "Set up your banner folder"
|
316 |
msgstr "Configurez votre dossier de bannière"
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
msgid ""
|
320 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
321 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -323,11 +325,11 @@ msgstr ""
|
|
323 |
"Vous avez installé AdRotate Professional. S’il vous plaît passer à AdRotate "
|
324 |
"Pro! Vous pouvez supprimer ce plugin après L’activation d’AdRotate Pro."
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid "Switch plugins"
|
328 |
msgstr "Switch plugins"
|
329 |
|
330 |
-
#: adrotate-output.php:
|
331 |
msgid ""
|
332 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
333 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -337,15 +339,15 @@ msgstr ""
|
|
337 |
"est installé deux fois, soit votre installation actuelle a le mauvais nom de "
|
338 |
"dossier. S’il vous plaît installer le plugin correctement!"
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
msgid "Installation instructions"
|
342 |
msgstr "Instructions d’installation"
|
343 |
|
344 |
-
#: adrotate-output.php:
|
345 |
msgid "your attention:"
|
346 |
msgstr "votre attention:"
|
347 |
|
348 |
-
#: adrotate-output.php:
|
349 |
msgid ""
|
350 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
351 |
"menu. If you need help getting started take a look at the"
|
@@ -353,47 +355,47 @@ msgstr ""
|
|
353 |
"Merci d’avoir choisi AdRotate. Tout ce qui concerne AdRotate est dans ce "
|
354 |
"menu. Si vous avez besoin d’aide pour commencer, jetez un coup d’œil à la"
|
355 |
|
356 |
-
#: adrotate-output.php:
|
357 |
msgid "manuals"
|
358 |
msgstr "manuels"
|
359 |
|
360 |
-
#: adrotate-output.php:
|
361 |
msgid "and"
|
362 |
msgstr "et"
|
363 |
|
364 |
-
#: adrotate-output.php:
|
365 |
msgid "forums"
|
366 |
msgstr "forums"
|
367 |
|
368 |
-
#: adrotate-output.php:
|
369 |
msgid "Post Tweet"
|
370 |
msgstr "Publier un tweet"
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
msgid "Share on Facebook"
|
374 |
msgstr "Partager sur Facebook"
|
375 |
|
376 |
-
#: adrotate-output.php:
|
377 |
msgid "Write review on wordpress.org"
|
378 |
msgstr "Écrire un avis sur WordPress.org"
|
379 |
|
380 |
-
#: adrotate-output.php:
|
381 |
msgid "Thank you very much for your help and support!"
|
382 |
msgstr "Merci beaucoup pour votre aide et votre soutien!"
|
383 |
|
384 |
-
#: adrotate-output.php:
|
385 |
msgid "Need help fast? Or do you have a question?"
|
386 |
msgstr "Besoin d’aide rapidement ? Ou avez-vous une question?"
|
387 |
|
388 |
-
#: adrotate-output.php:
|
389 |
msgid "Help AdRotate Grow"
|
390 |
msgstr "AdRotate Pro"
|
391 |
|
392 |
-
#: adrotate-output.php:
|
393 |
msgid "Get more features with AdRotate Pro"
|
394 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
395 |
|
396 |
-
#: adrotate-output.php:
|
397 |
msgid ""
|
398 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
399 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -404,15 +406,15 @@ msgstr ""
|
|
404 |
"d’assistance AdRotate. Habituellement, je réponds aux questions le jour "
|
405 |
"même, souvent avec une solution dans la première réponse."
|
406 |
|
407 |
-
#: adrotate-output.php:
|
408 |
msgid "AdRotate Manuals"
|
409 |
msgstr "Manuels AdRotate"
|
410 |
|
411 |
-
#: adrotate-output.php:
|
412 |
msgid "Support Forums"
|
413 |
msgstr "Forums de support"
|
414 |
|
415 |
-
#: adrotate-output.php:
|
416 |
msgid ""
|
417 |
"When posting on the forum, please include a brief description of the "
|
418 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -425,7 +427,7 @@ msgstr ""
|
|
425 |
"supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
|
426 |
"conseil."
|
427 |
|
428 |
-
#: adrotate-output.php:
|
429 |
msgid ""
|
430 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
431 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -438,11 +440,11 @@ msgstr ""
|
|
438 |
"le faire est très utile en tant que promotion qui aide à assurer le "
|
439 |
"développement futur."
|
440 |
|
441 |
-
#: adrotate-output.php:
|
442 |
msgid "Write review on WordPress.org"
|
443 |
msgstr "Écrire un avis sur WordPress.org"
|
444 |
|
445 |
-
#: adrotate-output.php:
|
446 |
msgid ""
|
447 |
"AdRotate Professional has a lot more functions for even better advertising "
|
448 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -453,27 +455,27 @@ msgstr ""
|
|
453 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
454 |
"vous!"
|
455 |
|
456 |
-
#: adrotate-output.php:
|
457 |
msgid "Compare Licenses"
|
458 |
msgstr "Comparer les licences"
|
459 |
|
460 |
-
#: adrotate-output.php:
|
461 |
msgid "Single License"
|
462 |
msgstr "Licence unique"
|
463 |
|
464 |
-
#: adrotate-output.php:
|
465 |
msgid "Use on ONE WordPress installation."
|
466 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
467 |
|
468 |
-
#: adrotate-output.php:
|
469 |
msgid "Buy now"
|
470 |
msgstr "Acheter maintenant"
|
471 |
|
472 |
-
#: adrotate-output.php:
|
473 |
msgid "Multi License"
|
474 |
msgstr "Licence Multiple"
|
475 |
|
476 |
-
#: adrotate-output.php:
|
477 |
msgid "Use on up to FIVE WordPress installations."
|
478 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
479 |
|
@@ -589,66 +591,66 @@ msgstr "ID :"
|
|
589 |
msgid "Fill in the ID of the type you want to display!"
|
590 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
msgid "Manage Adverts"
|
594 |
msgstr "Gérer Annonces"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
msgid "Manage Groups"
|
598 |
msgstr "Gérer les groupes"
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
msgid "Manage Schedules"
|
602 |
msgstr "Gérer les horaires"
|
603 |
|
604 |
-
#: adrotate.php:
|
605 |
msgid "Manage Media"
|
606 |
msgstr "Gérer les médias"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
#: dashboard/publisher/adverts-edit.php:178
|
610 |
#: dashboard/publisher/statistics-main.php:23
|
611 |
#: dashboard/settings/statistics.php:17
|
612 |
msgid "Statistics"
|
613 |
msgstr "Statistiques"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
msgid "Get AdRotate Pro"
|
617 |
msgstr "Obtenez AdRotate Pro"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
msgid "Support"
|
621 |
msgstr "Support"
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
msgid "Settings"
|
625 |
msgstr "Paramètres"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
msgid "Get AdRotate Professional"
|
629 |
msgstr "Obtenez AdRotate Professional"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
msgid "Manage"
|
633 |
msgstr "Gérer"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "Advert Generator"
|
637 |
msgstr "Générateur d’annonces"
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid "New Advert"
|
641 |
msgstr "Nouvelle Annonce"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid "Add New"
|
645 |
msgstr "Ajouter"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid "Manage Media and Assets"
|
649 |
msgstr "Gérer les médias et les actifs"
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid ""
|
653 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
654 |
"if you have HTML5 adverts containing multiple files."
|
@@ -657,39 +659,39 @@ msgstr ""
|
|
657 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
658 |
"fichiers."
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "Advert Statistics"
|
662 |
msgstr "Statistiques de publicité"
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "AdRotate Support"
|
666 |
msgstr "Assistance AdRotate"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "AdRotate Settings"
|
670 |
msgstr "Paramètres de AdRotate"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "General"
|
674 |
msgstr "Général"
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "Notifications"
|
678 |
msgstr "Notifications"
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid "Geo Targeting"
|
682 |
msgstr "Ciblage géo"
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid "Access Roles"
|
686 |
msgstr "Niveaux d’accès"
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid "Miscellaneous"
|
690 |
msgstr "Divers"
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
msgid "Maintenance"
|
694 |
msgstr "Maintenance"
|
695 |
|
@@ -834,43 +836,59 @@ msgstr ""
|
|
834 |
msgid "Disabled Adverts"
|
835 |
msgstr "Annonce désactivée"
|
836 |
|
837 |
-
#: dashboard/publisher/adverts-disabled.php:
|
838 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
839 |
#: dashboard/publisher/adverts-main.php:20
|
840 |
#: dashboard/publisher/groups-main.php:20
|
841 |
#: dashboard/publisher/schedules-main.php:21
|
842 |
msgid "Bulk Actions"
|
843 |
msgstr "Actions en vrac"
|
844 |
|
845 |
-
#: dashboard/publisher/adverts-disabled.php:
|
846 |
#: dashboard/publisher/adverts-edit.php:186
|
847 |
msgid "Activate"
|
848 |
msgstr "Activer"
|
849 |
|
850 |
-
#: dashboard/publisher/adverts-disabled.php:
|
851 |
-
#: dashboard/publisher/adverts-error.php:
|
852 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
853 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
854 |
msgid "Delete"
|
855 |
msgstr "Effacer"
|
856 |
|
857 |
-
#: dashboard/publisher/adverts-disabled.php:
|
858 |
-
#: dashboard/publisher/adverts-error.php:
|
859 |
#: dashboard/publisher/adverts-main.php:23
|
860 |
msgid "Reset stats"
|
861 |
msgstr "Mettre à zéro les statistiques"
|
862 |
|
863 |
-
#: dashboard/publisher/adverts-disabled.php:
|
864 |
-
#: dashboard/publisher/adverts-error.php:
|
865 |
#: dashboard/publisher/adverts-main.php:30
|
866 |
#: dashboard/publisher/groups-main.php:24
|
867 |
#: dashboard/publisher/schedules-main.php:22
|
868 |
msgid "Go"
|
869 |
msgstr "Aller"
|
870 |
|
871 |
-
#: dashboard/publisher/adverts-disabled.php:
|
872 |
#: dashboard/publisher/adverts-edit.php:263
|
873 |
-
#: dashboard/publisher/adverts-error.php:
|
874 |
#: dashboard/publisher/adverts-main.php:39
|
875 |
#: dashboard/publisher/groups-edit.php:350
|
876 |
#: dashboard/publisher/groups-main.php:32
|
@@ -878,17 +896,17 @@ msgstr "Aller"
|
|
878 |
msgid "ID"
|
879 |
msgstr "ID"
|
880 |
|
881 |
-
#: dashboard/publisher/adverts-disabled.php:
|
882 |
-
#: dashboard/publisher/adverts-error.php:
|
883 |
#: dashboard/publisher/adverts-main.php:40
|
884 |
#: dashboard/publisher/schedules-main.php:32
|
885 |
msgid "Start / End"
|
886 |
msgstr "Début / Fin"
|
887 |
|
888 |
-
#: dashboard/publisher/adverts-disabled.php:
|
889 |
#: dashboard/publisher/adverts-edit.php:116
|
890 |
#: dashboard/publisher/adverts-edit.php:264
|
891 |
-
#: dashboard/publisher/adverts-error.php:
|
892 |
#: dashboard/publisher/adverts-main.php:41
|
893 |
#: dashboard/publisher/groups-edit.php:65
|
894 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -897,14 +915,14 @@ msgstr "Début / Fin"
|
|
897 |
msgid "Name"
|
898 |
msgstr "Nom"
|
899 |
|
900 |
-
#: dashboard/publisher/adverts-disabled.php:
|
901 |
#: dashboard/publisher/adverts-main.php:43
|
902 |
#: dashboard/publisher/groups-edit.php:355
|
903 |
#: dashboard/publisher/groups-main.php:36
|
904 |
msgid "Shown"
|
905 |
msgstr "Montré"
|
906 |
|
907 |
-
#: dashboard/publisher/adverts-disabled.php:
|
908 |
#: dashboard/publisher/adverts-main.php:45
|
909 |
#: dashboard/publisher/groups-edit.php:356
|
910 |
#: dashboard/publisher/groups-main.php:38
|
@@ -925,7 +943,7 @@ msgstr "Montré"
|
|
925 |
msgid "Clicks"
|
926 |
msgstr "Clicks"
|
927 |
|
928 |
-
#: dashboard/publisher/adverts-disabled.php:
|
929 |
#: dashboard/publisher/adverts-main.php:47
|
930 |
#: dashboard/publisher/statistics-advert.php:53
|
931 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -944,22 +962,22 @@ msgstr "Clicks"
|
|
944 |
msgid "CTR"
|
945 |
msgstr "CTR"
|
946 |
|
947 |
-
#: dashboard/publisher/adverts-disabled.php:
|
948 |
-
#: dashboard/publisher/adverts-error.php:
|
949 |
#: dashboard/publisher/adverts-main.php:69
|
950 |
#: dashboard/publisher/groups-main.php:70
|
951 |
msgid "Edit"
|
952 |
msgstr "Modifier"
|
953 |
|
954 |
-
#: dashboard/publisher/adverts-disabled.php:
|
955 |
-
#: dashboard/publisher/adverts-error.php:
|
956 |
#: dashboard/publisher/adverts-main.php:69
|
957 |
#: dashboard/publisher/groups-main.php:70
|
958 |
msgid "Stats"
|
959 |
msgstr "Statistiques"
|
960 |
|
961 |
-
#: dashboard/publisher/adverts-disabled.php:
|
962 |
-
#: dashboard/publisher/adverts-error.php:
|
963 |
#: dashboard/publisher/adverts-main.php:69
|
964 |
msgid "Groups:"
|
965 |
msgstr "Groupes:"
|
@@ -1358,45 +1376,63 @@ msgstr "Annonce hachage"
|
|
1358 |
msgid "Adverts that need attention"
|
1359 |
msgstr "Annonces qui nécessitent une attention"
|
1360 |
|
1361 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1362 |
#: dashboard/publisher/adverts-main.php:21
|
1363 |
msgid "Deactivate"
|
1364 |
msgstr "Désactiver"
|
1365 |
|
1366 |
-
#: dashboard/publisher/adverts-error.php:
|
1367 |
#: dashboard/publisher/adverts-main.php:25
|
1368 |
msgid "-- Renew --"
|
1369 |
msgstr "-- Renouveller --"
|
1370 |
|
1371 |
-
#: dashboard/publisher/adverts-error.php:
|
1372 |
#: dashboard/publisher/adverts-main.php:26
|
1373 |
msgid "For 1 year"
|
1374 |
msgstr "Pour 1 année"
|
1375 |
|
1376 |
-
#: dashboard/publisher/adverts-error.php:
|
1377 |
#: dashboard/publisher/adverts-main.php:27
|
1378 |
msgid "For 180 days"
|
1379 |
msgstr "Pour 180 jours"
|
1380 |
|
1381 |
-
#: dashboard/publisher/adverts-error.php:
|
1382 |
#: dashboard/publisher/adverts-main.php:28
|
1383 |
msgid "For 30 days"
|
1384 |
msgstr "Pour 30 jours"
|
1385 |
|
1386 |
-
#: dashboard/publisher/adverts-error.php:
|
1387 |
#: dashboard/publisher/adverts-main.php:29
|
1388 |
msgid "For 7 days"
|
1389 |
msgstr "Pour 7 jours"
|
1390 |
|
1391 |
-
#: dashboard/publisher/adverts-error.php:
|
1392 |
msgid "Configuration errors"
|
1393 |
msgstr "Erreurs de configuration"
|
1394 |
|
1395 |
-
#: dashboard/publisher/adverts-error.php:
|
1396 |
msgid "Expires soon"
|
1397 |
msgstr "Expire bientôt"
|
1398 |
|
1399 |
-
#: dashboard/publisher/adverts-error.php:
|
1400 |
#: dashboard/settings/maintenance.php:45
|
1401 |
msgid "Expired"
|
1402 |
msgstr "Expiré"
|
@@ -3199,53 +3235,53 @@ msgstr ""
|
|
3199 |
"Ce nombre ne peut pas être vide, être inférieure à 60 ou dépasser 86400 (24 "
|
3200 |
"heures)."
|
3201 |
|
3202 |
-
#: dashboard/support.php:
|
3203 |
msgid "Premium Support available in AdRotate Pro"
|
3204 |
msgstr "Support Premium disponible en AdRotate Pro"
|
3205 |
|
3206 |
-
#: dashboard/support.php:
|
3207 |
msgid "Premium support always comes first!"
|
3208 |
msgstr "Le support Premium passe toujours en premier !"
|
3209 |
|
3210 |
-
#: dashboard/support.php:
|
3211 |
msgid "No queuing up on the forum..."
|
3212 |
msgstr "Pas de file d’attente sur le forum..."
|
3213 |
|
3214 |
-
#: dashboard/support.php:
|
3215 |
msgid "Using this form includes essential information for a quick answer."
|
3216 |
msgstr ""
|
3217 |
"L’utilisation de ce formulaire comprend des informations essentielles pour "
|
3218 |
"une réponse rapide."
|
3219 |
|
3220 |
-
#: dashboard/support.php:
|
3221 |
msgid "Available in AdRotate Professional!"
|
3222 |
msgstr "Disponible en AdRotate Professional!"
|
3223 |
|
3224 |
-
#: dashboard/support.php:
|
3225 |
msgid "Your name:"
|
3226 |
msgstr "Votre nom :"
|
3227 |
|
3228 |
-
#: dashboard/support.php:
|
3229 |
msgid "Your Email Address:"
|
3230 |
msgstr "Votre adresse électronique:"
|
3231 |
|
3232 |
-
#: dashboard/support.php:
|
3233 |
msgid "Subject:"
|
3234 |
msgstr "Sujet:"
|
3235 |
|
3236 |
-
#: dashboard/support.php:
|
3237 |
msgid "Problem description / Question:"
|
3238 |
msgstr "Description du problème / Question :"
|
3239 |
|
3240 |
-
#: dashboard/support.php:
|
3241 |
msgid "Please log in to my website and take a look."
|
3242 |
msgstr "S’il vous plaît connectez-vous à mon site Web et jetez un oeil."
|
3243 |
|
3244 |
-
#: dashboard/support.php:
|
3245 |
msgid "When you send this form the following data will be submitted:"
|
3246 |
msgstr "Lorsque vous envoyez ce formulaire, les données suivantes est soumis :"
|
3247 |
|
3248 |
-
#: dashboard/support.php:
|
3249 |
msgid ""
|
3250 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3251 |
"information will be included with the message."
|
@@ -3253,18 +3289,61 @@ msgstr ""
|
|
3253 |
"Votre nom, adresse e-mail de compte, URL de votre site Web et quelques "
|
3254 |
"informations WordPress de base seront inclus dans le message."
|
3255 |
|
3256 |
-
#: dashboard/support.php:
|
3257 |
msgid "This information is treated as confidential and is mandatory."
|
3258 |
msgstr "Cette information est traitée comme confidentielle et est obligatoire."
|
3259 |
|
3260 |
-
#: dashboard/support.php:
|
3261 |
msgid "Get Help"
|
3262 |
msgstr "Aide"
|
3263 |
|
3264 |
-
#: dashboard/support.php:
|
3265 |
msgid "Premium Support is available in AdRotate Pro!"
|
3266 |
msgstr "Premium Support est disponible dans AdRotate Pro!"
|
3267 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3268 |
#~ msgid "Check all adverts for configuration errors"
|
3269 |
#~ msgstr "Vérifiez toutes les annonces pour les erreurs de configuration"
|
3270 |
|
@@ -3614,9 +3693,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
3614 |
#~ msgid "Schedules"
|
3615 |
#~ msgstr "Planifications"
|
3616 |
|
3617 |
-
#~ msgid "AdRotate Pro"
|
3618 |
-
#~ msgstr "AdRotate Pro"
|
3619 |
-
|
3620 |
#~ msgid "Get more features"
|
3621 |
#~ msgstr "Obtenez plus de fonctionnalités"
|
3622 |
|
@@ -4802,20 +4878,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
4802 |
#~ msgid "Advertiser:"
|
4803 |
#~ msgstr "Annonceur:"
|
4804 |
|
4805 |
-
#~ msgid ""
|
4806 |
-
#~ "These adverts are temporarily disabled. You can archive adverts to "
|
4807 |
-
#~ "permanently disable them."
|
4808 |
-
#~ msgstr ""
|
4809 |
-
#~ "Ces publicités sont temporairement désactivées. Vous pouvez archiver les "
|
4810 |
-
#~ "annonces pour les désactiver en permanence."
|
4811 |
-
|
4812 |
-
#~ msgid ""
|
4813 |
-
#~ "Archiving adverts moves gathered statistics away from the live database "
|
4814 |
-
#~ "which may speed up your website."
|
4815 |
-
#~ msgstr ""
|
4816 |
-
#~ "Archivage des annonces déplace statistiques loin de la base de données "
|
4817 |
-
#~ "active qui peut accélérer votre site Web."
|
4818 |
-
|
4819 |
#~ msgid "Archive (Permanently)"
|
4820 |
#~ msgstr "Archive (en permanence)"
|
4821 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:22-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-10-04 21:22-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-block.php:49
|
21 |
+
msgid "AdRotate - Advertisements"
|
22 |
+
msgstr "AdRotate - Publicités"
|
23 |
+
|
24 |
#: adrotate-functions.php:800
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Annonce enregistré"
|
173 |
msgid "Unexpected error"
|
174 |
msgstr "Erreur inattendue"
|
175 |
|
176 |
+
#: adrotate-manage-publisher.php:877
|
177 |
msgid "AdRotate Advertiser"
|
178 |
msgstr "AdRotate annonceur"
|
179 |
|
180 |
+
#: adrotate-output.php:552
|
181 |
msgid "Oh no! Something went wrong!"
|
182 |
msgstr "Oh no! Un problème est survenu!"
|
183 |
|
184 |
+
#: adrotate-output.php:553
|
185 |
msgid ""
|
186 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
187 |
"Verify if the url used is valid or log in via your browser."
|
190 |
"Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
|
191 |
"votre navigateur."
|
192 |
|
193 |
+
#: adrotate-output.php:554
|
194 |
msgid ""
|
195 |
"If you have received the url you want to visit via email, you are being "
|
196 |
"tricked!"
|
197 |
msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
|
198 |
|
199 |
+
#: adrotate-output.php:555
|
200 |
msgid "Contact support if the issue persists:"
|
201 |
msgstr "Contactez le support si le soucis persiste :"
|
202 |
|
203 |
+
#: adrotate-output.php:567
|
204 |
msgid ""
|
205 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
206 |
"restrictions!"
|
208 |
"Erreur, Annonce n’est pas disponible pour le moment en raison de "
|
209 |
"restrictions de calendrier / géolocalisation!"
|
210 |
|
211 |
+
#: adrotate-output.php:572
|
212 |
msgid ""
|
213 |
"Either there are no banners, they are disabled or none qualified for this "
|
214 |
"location!"
|
216 |
"Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
|
217 |
"cet endroit!"
|
218 |
|
219 |
+
#: adrotate-output.php:577
|
220 |
msgid "Error, no Advert ID set! Check your syntax!"
|
221 |
msgstr "Erreur, pas de jeu d’identité publicitaire! Vérifiez votre syntaxe!"
|
222 |
|
223 |
+
#: adrotate-output.php:583
|
224 |
msgid "Error, no group ID set! Check your syntax!"
|
225 |
msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
|
226 |
|
227 |
+
#: adrotate-output.php:588
|
228 |
msgid "Error, group does not exist! Check your syntax!"
|
229 |
msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
|
230 |
|
231 |
+
#: adrotate-output.php:594
|
232 |
msgid ""
|
233 |
"There was an error locating the database tables for AdRotate. Please "
|
234 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
236 |
"AdRotate ne peut pas trouver la table de la base de données dont elle a "
|
237 |
"besoin. Veuillez désactiver et ré-activer AdRotate de la page des extensions!"
|
238 |
|
239 |
+
#: adrotate-output.php:594
|
240 |
+
msgid "If this does not solve the issue please seek support on the"
|
241 |
+
msgstr "Si cela ne résout pas le problème, veuillez demander de l’aide sur le"
|
|
|
|
|
242 |
|
243 |
+
#: adrotate-output.php:600
|
244 |
msgid ""
|
245 |
"There was an error loading the page. Please try again by reloading the page "
|
246 |
"via the menu on the left."
|
248 |
"Il y a eu une erreur de chargement de la page. S’il vous plaît essayer à "
|
249 |
"nouveau en rechargeant la page via le menu sur la gauche."
|
250 |
|
251 |
+
#: adrotate-output.php:600
|
252 |
+
msgid "If the issue persists please seek help on the"
|
253 |
+
msgstr "Si le problème persiste, veuillez demander de l’aide sur le"
|
254 |
|
255 |
+
#: adrotate-output.php:606
|
256 |
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:20
|
261 |
msgid "Check adverts"
|
262 |
msgstr "Vérifier les annonces"
|
263 |
|
264 |
+
#: adrotate-output.php:638
|
265 |
msgid ""
|
266 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
267 |
"site!"
|
269 |
"Vous avez activé la prise en charge mise en cache, mais W3 Total Cache n’est "
|
270 |
"pas actif sur votre site !"
|
271 |
|
272 |
+
#: adrotate-output.php:638
|
273 |
msgid "Disable W3 Total Cache Support"
|
274 |
msgstr "Désactiver W3 Total Cache Support"
|
275 |
|
276 |
+
#: adrotate-output.php:641
|
277 |
msgid ""
|
278 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
279 |
"not set."
|
281 |
"Vous avez activer le support de mise en cache, mais la définition "
|
282 |
"W3TC_DYNAMIC_SECURITY n’est pas définie."
|
283 |
|
284 |
+
#: adrotate-output.php:641
|
285 |
msgid "How to configure W3 Total Cache"
|
286 |
msgstr "Comment configurer W3 Total Cache"
|
287 |
|
288 |
+
#: adrotate-output.php:645
|
289 |
msgid ""
|
290 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
291 |
msgstr ""
|
292 |
"Vous avez permis de mettre en cache le support mais Borlabs Cache n’est pas "
|
293 |
"actif sur votre site !"
|
294 |
|
295 |
+
#: adrotate-output.php:645
|
296 |
msgid "Disable Borlabs Cache Support"
|
297 |
msgstr "Désactiver borlabs Cache Support"
|
298 |
|
299 |
+
#: adrotate-output.php:650
|
300 |
msgid ""
|
301 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
302 |
msgstr ""
|
303 |
"Vous avez activé le support Borlabs Cache mais la mise en cache Fragment "
|
304 |
"n’est pas activée !"
|
305 |
|
306 |
+
#: adrotate-output.php:650
|
307 |
msgid "Enable Fragment Caching"
|
308 |
msgstr "Permettre aux annonceurs"
|
309 |
|
310 |
+
#: adrotate-output.php:657
|
311 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
312 |
msgstr ""
|
313 |
"Votre dossier AdRotate bannière n’est pas accessible en écriture ou n’existe "
|
314 |
"pas."
|
315 |
|
316 |
+
#: adrotate-output.php:657
|
317 |
msgid "Set up your banner folder"
|
318 |
msgstr "Configurez votre dossier de bannière"
|
319 |
|
320 |
+
#: adrotate-output.php:660
|
321 |
msgid ""
|
322 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
323 |
"can delete this plugin after AdRotate Pro is activated."
|
325 |
"Vous avez installé AdRotate Professional. S’il vous plaît passer à AdRotate "
|
326 |
"Pro! Vous pouvez supprimer ce plugin après L’activation d’AdRotate Pro."
|
327 |
|
328 |
+
#: adrotate-output.php:660
|
329 |
msgid "Switch plugins"
|
330 |
msgstr "Switch plugins"
|
331 |
|
332 |
+
#: adrotate-output.php:663
|
333 |
msgid ""
|
334 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
335 |
"installed twice or your current installation has the wrong folder name. "
|
339 |
"est installé deux fois, soit votre installation actuelle a le mauvais nom de "
|
340 |
"dossier. S’il vous plaît installer le plugin correctement!"
|
341 |
|
342 |
+
#: adrotate-output.php:663
|
343 |
msgid "Installation instructions"
|
344 |
msgstr "Instructions d’installation"
|
345 |
|
346 |
+
#: adrotate-output.php:739
|
347 |
msgid "your attention:"
|
348 |
msgstr "votre attention:"
|
349 |
|
350 |
+
#: adrotate-output.php:778
|
351 |
msgid ""
|
352 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
353 |
"menu. If you need help getting started take a look at the"
|
355 |
"Merci d’avoir choisi AdRotate. Tout ce qui concerne AdRotate est dans ce "
|
356 |
"menu. Si vous avez besoin d’aide pour commencer, jetez un coup d’œil à la"
|
357 |
|
358 |
+
#: adrotate-output.php:778
|
359 |
msgid "manuals"
|
360 |
msgstr "manuels"
|
361 |
|
362 |
+
#: adrotate-output.php:778
|
363 |
msgid "and"
|
364 |
msgstr "et"
|
365 |
|
366 |
+
#: adrotate-output.php:778
|
367 |
msgid "forums"
|
368 |
msgstr "forums"
|
369 |
|
370 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
371 |
msgid "Post Tweet"
|
372 |
msgstr "Publier un tweet"
|
373 |
|
374 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
375 |
msgid "Share on Facebook"
|
376 |
msgstr "Partager sur Facebook"
|
377 |
|
378 |
+
#: adrotate-output.php:833
|
379 |
msgid "Write review on wordpress.org"
|
380 |
msgstr "Écrire un avis sur WordPress.org"
|
381 |
|
382 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
383 |
msgid "Thank you very much for your help and support!"
|
384 |
msgstr "Merci beaucoup pour votre aide et votre soutien!"
|
385 |
|
386 |
+
#: adrotate-output.php:864
|
387 |
msgid "Need help fast? Or do you have a question?"
|
388 |
msgstr "Besoin d’aide rapidement ? Ou avez-vous une question?"
|
389 |
|
390 |
+
#: adrotate-output.php:865
|
391 |
msgid "Help AdRotate Grow"
|
392 |
msgstr "AdRotate Pro"
|
393 |
|
394 |
+
#: adrotate-output.php:866
|
395 |
msgid "Get more features with AdRotate Pro"
|
396 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
397 |
|
398 |
+
#: adrotate-output.php:872
|
399 |
msgid ""
|
400 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
401 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
406 |
"d’assistance AdRotate. Habituellement, je réponds aux questions le jour "
|
407 |
"même, souvent avec une solution dans la première réponse."
|
408 |
|
409 |
+
#: adrotate-output.php:873
|
410 |
msgid "AdRotate Manuals"
|
411 |
msgstr "Manuels AdRotate"
|
412 |
|
413 |
+
#: adrotate-output.php:873
|
414 |
msgid "Support Forums"
|
415 |
msgstr "Forums de support"
|
416 |
|
417 |
+
#: adrotate-output.php:874
|
418 |
msgid ""
|
419 |
"When posting on the forum, please include a brief description of the "
|
420 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
427 |
"supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
|
428 |
"conseil."
|
429 |
|
430 |
+
#: adrotate-output.php:876
|
431 |
msgid ""
|
432 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
433 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
440 |
"le faire est très utile en tant que promotion qui aide à assurer le "
|
441 |
"développement futur."
|
442 |
|
443 |
+
#: adrotate-output.php:877
|
444 |
msgid "Write review on WordPress.org"
|
445 |
msgstr "Écrire un avis sur WordPress.org"
|
446 |
|
447 |
+
#: adrotate-output.php:880
|
448 |
msgid ""
|
449 |
"AdRotate Professional has a lot more functions for even better advertising "
|
450 |
"management. Check out the feature comparison tab on any of the product pages "
|
455 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
456 |
"vous!"
|
457 |
|
458 |
+
#: adrotate-output.php:880
|
459 |
msgid "Compare Licenses"
|
460 |
msgstr "Comparer les licences"
|
461 |
|
462 |
+
#: adrotate-output.php:881
|
463 |
msgid "Single License"
|
464 |
msgstr "Licence unique"
|
465 |
|
466 |
+
#: adrotate-output.php:881
|
467 |
msgid "Use on ONE WordPress installation."
|
468 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
469 |
|
470 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
471 |
msgid "Buy now"
|
472 |
msgstr "Acheter maintenant"
|
473 |
|
474 |
+
#: adrotate-output.php:882
|
475 |
msgid "Multi License"
|
476 |
msgstr "Licence Multiple"
|
477 |
|
478 |
+
#: adrotate-output.php:882
|
479 |
msgid "Use on up to FIVE WordPress installations."
|
480 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
481 |
|
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:106 adrotate.php:176
|
595 |
msgid "Manage Adverts"
|
596 |
msgstr "Gérer Annonces"
|
597 |
|
598 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
599 |
msgid "Manage Groups"
|
600 |
msgstr "Gérer les groupes"
|
601 |
|
602 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
603 |
msgid "Manage Schedules"
|
604 |
msgstr "Gérer les horaires"
|
605 |
|
606 |
+
#: adrotate.php:109
|
607 |
msgid "Manage Media"
|
608 |
msgstr "Gérer les médias"
|
609 |
|
610 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
618 |
msgid "Get AdRotate Pro"
|
619 |
msgstr "Obtenez AdRotate Pro"
|
620 |
|
621 |
+
#: adrotate.php:112
|
622 |
msgid "Support"
|
623 |
msgstr "Support"
|
624 |
|
625 |
+
#: adrotate.php:113
|
626 |
msgid "Settings"
|
627 |
msgstr "Paramètres"
|
628 |
|
629 |
+
#: adrotate.php:132
|
630 |
msgid "Get AdRotate Professional"
|
631 |
msgstr "Obtenez AdRotate Professional"
|
632 |
|
633 |
+
#: adrotate.php:236 adrotate.php:308
|
634 |
msgid "Manage"
|
635 |
msgstr "Gérer"
|
636 |
|
637 |
+
#: adrotate.php:237
|
638 |
msgid "Advert Generator"
|
639 |
msgstr "Générateur d’annonces"
|
640 |
|
641 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
642 |
msgid "New Advert"
|
643 |
msgstr "Nouvelle Annonce"
|
644 |
|
645 |
+
#: adrotate.php:309
|
646 |
msgid "Add New"
|
647 |
msgstr "Ajouter"
|
648 |
|
649 |
+
#: adrotate.php:377
|
650 |
msgid "Manage Media and Assets"
|
651 |
msgstr "Gérer les médias et les actifs"
|
652 |
|
653 |
+
#: adrotate.php:381
|
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 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
660 |
"fichiers."
|
661 |
|
662 |
+
#: adrotate.php:423
|
663 |
msgid "Advert Statistics"
|
664 |
msgstr "Statistiques de publicité"
|
665 |
|
666 |
+
#: adrotate.php:466
|
667 |
msgid "AdRotate Support"
|
668 |
msgstr "Assistance AdRotate"
|
669 |
|
670 |
+
#: adrotate.php:498
|
671 |
msgid "AdRotate Settings"
|
672 |
msgstr "Paramètres de AdRotate"
|
673 |
|
674 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
675 |
msgid "General"
|
676 |
msgstr "Général"
|
677 |
|
678 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
679 |
msgid "Notifications"
|
680 |
msgstr "Notifications"
|
681 |
|
682 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
683 |
msgid "Geo Targeting"
|
684 |
msgstr "Ciblage géo"
|
685 |
|
686 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
687 |
msgid "Access Roles"
|
688 |
msgstr "Niveaux d’accès"
|
689 |
|
690 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
691 |
msgid "Miscellaneous"
|
692 |
msgstr "Divers"
|
693 |
|
694 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
695 |
msgid "Maintenance"
|
696 |
msgstr "Maintenance"
|
697 |
|
836 |
msgid "Disabled Adverts"
|
837 |
msgstr "Annonce désactivée"
|
838 |
|
839 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
840 |
+
msgid ""
|
841 |
+
"These adverts are temporarily disabled. You can archive adverts to "
|
842 |
+
"permanently disable them."
|
843 |
+
msgstr ""
|
844 |
+
"Ces publicités sont temporairement désactivées. Vous pouvez archiver les "
|
845 |
+
"annonces pour les désactiver en permanence."
|
846 |
+
|
847 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
848 |
+
msgid ""
|
849 |
+
"Archiving adverts moves gathered statistics away from the live database "
|
850 |
+
"which may speed up your website."
|
851 |
+
msgstr ""
|
852 |
+
"Archivage des annonces déplace statistiques loin de la base de données "
|
853 |
+
"active qui peut accélérer votre site Web."
|
854 |
+
|
855 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
856 |
+
#: dashboard/publisher/adverts-error.php:20
|
857 |
#: dashboard/publisher/adverts-main.php:20
|
858 |
#: dashboard/publisher/groups-main.php:20
|
859 |
#: dashboard/publisher/schedules-main.php:21
|
860 |
msgid "Bulk Actions"
|
861 |
msgstr "Actions en vrac"
|
862 |
|
863 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
864 |
#: dashboard/publisher/adverts-edit.php:186
|
865 |
msgid "Activate"
|
866 |
msgstr "Activer"
|
867 |
|
868 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
869 |
+
#: dashboard/publisher/adverts-error.php:22
|
870 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
871 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
872 |
msgid "Delete"
|
873 |
msgstr "Effacer"
|
874 |
|
875 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
876 |
+
#: dashboard/publisher/adverts-error.php:23
|
877 |
#: dashboard/publisher/adverts-main.php:23
|
878 |
msgid "Reset stats"
|
879 |
msgstr "Mettre à zéro les statistiques"
|
880 |
|
881 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
882 |
+
#: dashboard/publisher/adverts-error.php:30
|
883 |
#: dashboard/publisher/adverts-main.php:30
|
884 |
#: dashboard/publisher/groups-main.php:24
|
885 |
#: dashboard/publisher/schedules-main.php:22
|
886 |
msgid "Go"
|
887 |
msgstr "Aller"
|
888 |
|
889 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
890 |
#: dashboard/publisher/adverts-edit.php:263
|
891 |
+
#: dashboard/publisher/adverts-error.php:40
|
892 |
#: dashboard/publisher/adverts-main.php:39
|
893 |
#: dashboard/publisher/groups-edit.php:350
|
894 |
#: dashboard/publisher/groups-main.php:32
|
896 |
msgid "ID"
|
897 |
msgstr "ID"
|
898 |
|
899 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
900 |
+
#: dashboard/publisher/adverts-error.php:42
|
901 |
#: dashboard/publisher/adverts-main.php:40
|
902 |
#: dashboard/publisher/schedules-main.php:32
|
903 |
msgid "Start / End"
|
904 |
msgstr "Début / Fin"
|
905 |
|
906 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
907 |
#: dashboard/publisher/adverts-edit.php:116
|
908 |
#: dashboard/publisher/adverts-edit.php:264
|
909 |
+
#: dashboard/publisher/adverts-error.php:41
|
910 |
#: dashboard/publisher/adverts-main.php:41
|
911 |
#: dashboard/publisher/groups-edit.php:65
|
912 |
#: dashboard/publisher/groups-edit.php:351
|
915 |
msgid "Name"
|
916 |
msgstr "Nom"
|
917 |
|
918 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
919 |
#: dashboard/publisher/adverts-main.php:43
|
920 |
#: dashboard/publisher/groups-edit.php:355
|
921 |
#: dashboard/publisher/groups-main.php:36
|
922 |
msgid "Shown"
|
923 |
msgstr "Montré"
|
924 |
|
925 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
926 |
#: dashboard/publisher/adverts-main.php:45
|
927 |
#: dashboard/publisher/groups-edit.php:356
|
928 |
#: dashboard/publisher/groups-main.php:38
|
943 |
msgid "Clicks"
|
944 |
msgstr "Clicks"
|
945 |
|
946 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
947 |
#: dashboard/publisher/adverts-main.php:47
|
948 |
#: dashboard/publisher/statistics-advert.php:53
|
949 |
#: dashboard/publisher/statistics-advert.php:59
|
962 |
msgid "CTR"
|
963 |
msgstr "CTR"
|
964 |
|
965 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
966 |
+
#: dashboard/publisher/adverts-error.php:57
|
967 |
#: dashboard/publisher/adverts-main.php:69
|
968 |
#: dashboard/publisher/groups-main.php:70
|
969 |
msgid "Edit"
|
970 |
msgstr "Modifier"
|
971 |
|
972 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
973 |
+
#: dashboard/publisher/adverts-error.php:57
|
974 |
#: dashboard/publisher/adverts-main.php:69
|
975 |
#: dashboard/publisher/groups-main.php:70
|
976 |
msgid "Stats"
|
977 |
msgstr "Statistiques"
|
978 |
|
979 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
980 |
+
#: dashboard/publisher/adverts-error.php:57
|
981 |
#: dashboard/publisher/adverts-main.php:69
|
982 |
msgid "Groups:"
|
983 |
msgstr "Groupes:"
|
1376 |
msgid "Adverts that need attention"
|
1377 |
msgstr "Annonces qui nécessitent une attention"
|
1378 |
|
1379 |
+
#: dashboard/publisher/adverts-error.php:13
|
1380 |
+
msgid ""
|
1381 |
+
"The adverts listed here are currently not showing on your website. This is "
|
1382 |
+
"because they are almost expired, have expired or have configuration issues."
|
1383 |
+
msgstr ""
|
1384 |
+
"Les publicités répertoriées ici ne sont actuellement pas affichées sur votre "
|
1385 |
+
"site Web. En effet, ils sont presque expirés, ont expiré ou ont des "
|
1386 |
+
"problèmes de configuration."
|
1387 |
+
|
1388 |
+
#: dashboard/publisher/adverts-error.php:13
|
1389 |
+
msgid ""
|
1390 |
+
"To fix the issue edit each advert and look for one or more notification at "
|
1391 |
+
"the top to see what AdRotate thinks is wrong with it."
|
1392 |
+
msgstr ""
|
1393 |
+
"Pour résoudre le problème, modifiez chaque publicité et recherchez une ou "
|
1394 |
+
"plusieurs notifications en haut pour voir ce qu’AdRotate pense être un "
|
1395 |
+
"problème."
|
1396 |
+
|
1397 |
+
#: dashboard/publisher/adverts-error.php:21
|
1398 |
#: dashboard/publisher/adverts-main.php:21
|
1399 |
msgid "Deactivate"
|
1400 |
msgstr "Désactiver"
|
1401 |
|
1402 |
+
#: dashboard/publisher/adverts-error.php:24
|
1403 |
#: dashboard/publisher/adverts-main.php:25
|
1404 |
msgid "-- Renew --"
|
1405 |
msgstr "-- Renouveller --"
|
1406 |
|
1407 |
+
#: dashboard/publisher/adverts-error.php:25
|
1408 |
#: dashboard/publisher/adverts-main.php:26
|
1409 |
msgid "For 1 year"
|
1410 |
msgstr "Pour 1 année"
|
1411 |
|
1412 |
+
#: dashboard/publisher/adverts-error.php:26
|
1413 |
#: dashboard/publisher/adverts-main.php:27
|
1414 |
msgid "For 180 days"
|
1415 |
msgstr "Pour 180 jours"
|
1416 |
|
1417 |
+
#: dashboard/publisher/adverts-error.php:27
|
1418 |
#: dashboard/publisher/adverts-main.php:28
|
1419 |
msgid "For 30 days"
|
1420 |
msgstr "Pour 30 jours"
|
1421 |
|
1422 |
+
#: dashboard/publisher/adverts-error.php:28
|
1423 |
#: dashboard/publisher/adverts-main.php:29
|
1424 |
msgid "For 7 days"
|
1425 |
msgstr "Pour 7 jours"
|
1426 |
|
1427 |
+
#: dashboard/publisher/adverts-error.php:65
|
1428 |
msgid "Configuration errors"
|
1429 |
msgstr "Erreurs de configuration"
|
1430 |
|
1431 |
+
#: dashboard/publisher/adverts-error.php:66
|
1432 |
msgid "Expires soon"
|
1433 |
msgstr "Expire bientôt"
|
1434 |
|
1435 |
+
#: dashboard/publisher/adverts-error.php:67
|
1436 |
#: dashboard/settings/maintenance.php:45
|
1437 |
msgid "Expired"
|
1438 |
msgstr "Expiré"
|
3235 |
"Ce nombre ne peut pas être vide, être inférieure à 60 ou dépasser 86400 (24 "
|
3236 |
"heures)."
|
3237 |
|
3238 |
+
#: dashboard/support.php:74
|
3239 |
msgid "Premium Support available in AdRotate Pro"
|
3240 |
msgstr "Support Premium disponible en AdRotate Pro"
|
3241 |
|
3242 |
+
#: dashboard/support.php:77
|
3243 |
msgid "Premium support always comes first!"
|
3244 |
msgstr "Le support Premium passe toujours en premier !"
|
3245 |
|
3246 |
+
#: dashboard/support.php:77
|
3247 |
msgid "No queuing up on the forum..."
|
3248 |
msgstr "Pas de file d’attente sur le forum..."
|
3249 |
|
3250 |
+
#: dashboard/support.php:77
|
3251 |
msgid "Using this form includes essential information for a quick answer."
|
3252 |
msgstr ""
|
3253 |
"L’utilisation de ce formulaire comprend des informations essentielles pour "
|
3254 |
"une réponse rapide."
|
3255 |
|
3256 |
+
#: dashboard/support.php:77
|
3257 |
msgid "Available in AdRotate Professional!"
|
3258 |
msgstr "Disponible en AdRotate Professional!"
|
3259 |
|
3260 |
+
#: dashboard/support.php:79
|
3261 |
msgid "Your name:"
|
3262 |
msgstr "Votre nom :"
|
3263 |
|
3264 |
+
#: dashboard/support.php:80
|
3265 |
msgid "Your Email Address:"
|
3266 |
msgstr "Votre adresse électronique:"
|
3267 |
|
3268 |
+
#: dashboard/support.php:81
|
3269 |
msgid "Subject:"
|
3270 |
msgstr "Sujet:"
|
3271 |
|
3272 |
+
#: dashboard/support.php:82
|
3273 |
msgid "Problem description / Question:"
|
3274 |
msgstr "Description du problème / Question :"
|
3275 |
|
3276 |
+
#: dashboard/support.php:83
|
3277 |
msgid "Please log in to my website and take a look."
|
3278 |
msgstr "S’il vous plaît connectez-vous à mon site Web et jetez un oeil."
|
3279 |
|
3280 |
+
#: dashboard/support.php:85
|
3281 |
msgid "When you send this form the following data will be submitted:"
|
3282 |
msgstr "Lorsque vous envoyez ce formulaire, les données suivantes est soumis :"
|
3283 |
|
3284 |
+
#: dashboard/support.php:86
|
3285 |
msgid ""
|
3286 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3287 |
"information will be included with the message."
|
3289 |
"Votre nom, adresse e-mail de compte, URL de votre site Web et quelques "
|
3290 |
"informations WordPress de base seront inclus dans le message."
|
3291 |
|
3292 |
+
#: dashboard/support.php:86
|
3293 |
msgid "This information is treated as confidential and is mandatory."
|
3294 |
msgstr "Cette information est traitée comme confidentielle et est obligatoire."
|
3295 |
|
3296 |
+
#: dashboard/support.php:89
|
3297 |
msgid "Get Help"
|
3298 |
msgstr "Aide"
|
3299 |
|
3300 |
+
#: dashboard/support.php:89
|
3301 |
msgid "Premium Support is available in AdRotate Pro!"
|
3302 |
msgstr "Premium Support est disponible dans AdRotate Pro!"
|
3303 |
|
3304 |
+
#: library/block.js:19 library/block.js:49
|
3305 |
+
msgid "AdRotate Advert"
|
3306 |
+
msgstr "Publicité AdRotate"
|
3307 |
+
|
3308 |
+
#: library/block.js:22
|
3309 |
+
msgid "Show a single advert by entering an advert ID."
|
3310 |
+
msgstr "Affichez une seule annonce en entrant un ID d’annonce."
|
3311 |
+
|
3312 |
+
#: library/block.js:52
|
3313 |
+
msgid "Enter an Advert ID (numbers only):"
|
3314 |
+
msgstr "Entrez un ID d’annonce (numéros uniquement) :"
|
3315 |
+
|
3316 |
+
#: library/block.js:63
|
3317 |
+
msgid ""
|
3318 |
+
"You can find the advert ID in Manage Adverts. Any special markup, code or "
|
3319 |
+
"layout styles can be applied in the advert itself or by placing the advert "
|
3320 |
+
"in a group."
|
3321 |
+
msgstr ""
|
3322 |
+
"Vous trouverez l’ID de la publicité dans Gérer les publicités. Tout "
|
3323 |
+
"balisage, code ou style de mise en page spécial peut être appliqué dans "
|
3324 |
+
"l’annonce elle-même ou en plaçant l’annonce dans un groupe."
|
3325 |
+
|
3326 |
+
#: library/block.js:73 library/block.js:103
|
3327 |
+
msgid "AdRotate Group"
|
3328 |
+
msgstr "Groupe AdRotate"
|
3329 |
+
|
3330 |
+
#: library/block.js:76
|
3331 |
+
msgid "Show a group of adverts by entering a group ID."
|
3332 |
+
msgstr "Affichez un groupe d’annonces en entrant un ID de groupe."
|
3333 |
+
|
3334 |
+
#: library/block.js:106
|
3335 |
+
msgid "Enter a group ID (numbers only):"
|
3336 |
+
msgstr "Entrez un ID de groupe (numéros uniquement) :"
|
3337 |
+
|
3338 |
+
#: library/block.js:117
|
3339 |
+
msgid ""
|
3340 |
+
"You can find the group ID in Manage Groups. Any special markup, code or "
|
3341 |
+
"layout styles can be applied in the group wrapper when editing the group."
|
3342 |
+
msgstr ""
|
3343 |
+
"Vous trouverez l’ID de groupe dans Gérer les groupes. Tous les styles de "
|
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 |
|
3693 |
#~ msgid "Schedules"
|
3694 |
#~ msgstr "Planifications"
|
3695 |
|
|
|
|
|
|
|
3696 |
#~ msgid "Get more features"
|
3697 |
#~ msgstr "Obtenez plus de fonctionnalités"
|
3698 |
|
4878 |
#~ msgid "Advertiser:"
|
4879 |
#~ msgstr "Annonceur:"
|
4880 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4881 |
#~ msgid "Archive (Permanently)"
|
4882 |
#~ msgstr "Archive (en permanence)"
|
4883 |
|
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-04
|
6 |
-
"PO-Revision-Date: 2022-04
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
|
|
|
|
|
|
|
|
20 |
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Annuncio salvato"
|
@@ -168,15 +172,15 @@ msgstr ""
|
|
168 |
msgid "Unexpected error"
|
169 |
msgstr "Errore inatteso"
|
170 |
|
171 |
-
#: adrotate-manage-publisher.php:
|
172 |
msgid "AdRotate Advertiser"
|
173 |
msgstr "Inserzionista AdRotate"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
msgid "Oh no! Something went wrong!"
|
177 |
msgstr "Oh no! Qualcosa è andato storto!"
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid ""
|
181 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
182 |
"Verify if the url used is valid or log in via your browser."
|
@@ -185,17 +189,17 @@ msgstr ""
|
|
185 |
"hai fatto clic. Verifica se l'URL utilizzato è valido o accedi tramite il "
|
186 |
"tuo browser."
|
187 |
|
188 |
-
#: adrotate-output.php:
|
189 |
msgid ""
|
190 |
"If you have received the url you want to visit via email, you are being "
|
191 |
"tricked!"
|
192 |
msgstr "Se hai ricevuto l'URL che vuoi visitare via e-mail, vieni ingannato!"
|
193 |
|
194 |
-
#: adrotate-output.php:
|
195 |
msgid "Contact support if the issue persists:"
|
196 |
msgstr "Contattare il supporto tecnico se il problema persiste:"
|
197 |
|
198 |
-
#: adrotate-output.php:
|
199 |
msgid ""
|
200 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
201 |
"restrictions!"
|
@@ -203,7 +207,7 @@ msgstr ""
|
|
203 |
"Errore, Advert al momento non è disponibile a causa di restrizioni di "
|
204 |
"pianificazione / geolocalizzazione!"
|
205 |
|
206 |
-
#: adrotate-output.php:
|
207 |
msgid ""
|
208 |
"Either there are no banners, they are disabled or none qualified for this "
|
209 |
"location!"
|
@@ -211,19 +215,19 @@ msgstr ""
|
|
211 |
"O non ci sono banner, sono disabilitati o nessuno qualificato per questa "
|
212 |
"posizione!"
|
213 |
|
214 |
-
#: adrotate-output.php:
|
215 |
msgid "Error, no Advert ID set! Check your syntax!"
|
216 |
msgstr "Errore, nessun ID annuncio impostato! Controlla la tua sintassi!"
|
217 |
|
218 |
-
#: adrotate-output.php:
|
219 |
msgid "Error, no group ID set! Check your syntax!"
|
220 |
msgstr "Errore, nessun ID gruppo impostato! Controlla la tua sintassi!"
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
msgid "Error, group does not exist! Check your syntax!"
|
224 |
msgstr "Errore, il gruppo non esiste! Controlla la tua sintassi!"
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid ""
|
228 |
"There was an error locating the database tables for AdRotate. Please "
|
229 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -232,11 +236,11 @@ msgstr ""
|
|
232 |
"per AdRotate. Si prega di disattivare e riattivare AdRotate dalla pagina del "
|
233 |
"plugin !!"
|
234 |
|
235 |
-
#: adrotate-output.php:
|
236 |
-
msgid "If this does not solve the issue please seek support
|
237 |
-
msgstr "Se il problema
|
238 |
|
239 |
-
#: adrotate-output.php:
|
240 |
msgid ""
|
241 |
"There was an error loading the page. Please try again by reloading the page "
|
242 |
"via the menu on the left."
|
@@ -244,20 +248,20 @@ msgstr ""
|
|
244 |
"C'è stato un errore nel caricamento della pagina. Si prega di provare "
|
245 |
"nuovamente ricaricando la pagina tramite il menù a sinistra."
|
246 |
|
247 |
-
#: adrotate-output.php:
|
248 |
-
msgid "If the issue persists please seek help
|
249 |
-
msgstr "Se
|
250 |
|
251 |
-
#: adrotate-output.php:
|
252 |
msgid "An unknown error occured."
|
253 |
msgstr "Si è verificato un errore sconosciuto."
|
254 |
|
255 |
-
#: adrotate-output.php:
|
256 |
#: dashboard/settings/maintenance.php:20
|
257 |
msgid "Check adverts"
|
258 |
msgstr "Controllo inserzioni"
|
259 |
|
260 |
-
#: adrotate-output.php:
|
261 |
msgid ""
|
262 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
263 |
"site!"
|
@@ -265,11 +269,11 @@ msgstr ""
|
|
265 |
"Hai abilitato il supporto della memorizzazione nella cache, ma W3 Total "
|
266 |
"Cache non è attiva sul tuo sito!"
|
267 |
|
268 |
-
#: adrotate-output.php:
|
269 |
msgid "Disable W3 Total Cache Support"
|
270 |
msgstr "Disabilitare il supporto della W3 Total Cache"
|
271 |
|
272 |
-
#: adrotate-output.php:
|
273 |
msgid ""
|
274 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
275 |
"not set."
|
@@ -277,41 +281,41 @@ msgstr ""
|
|
277 |
"Hai abilitato il supporto caching ma la definizione W3TC_DYNAMIC_SECURITY "
|
278 |
"non è impostata."
|
279 |
|
280 |
-
#: adrotate-output.php:
|
281 |
msgid "How to configure W3 Total Cache"
|
282 |
msgstr "Come configurare la W3 Total Cache"
|
283 |
|
284 |
-
#: adrotate-output.php:
|
285 |
msgid ""
|
286 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
287 |
msgstr ""
|
288 |
"Hai attivato il supporto della memorizzazione nella cache, ma Borlabs Cache "
|
289 |
"non è attivo sul tuo sito!"
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "Disable Borlabs Cache Support"
|
293 |
msgstr "Disabilitare il supporto della Borlabs Cache"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
msgid ""
|
297 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
298 |
msgstr ""
|
299 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
300 |
"nella cache dei frammenti non è abilitata!"
|
301 |
|
302 |
-
#: adrotate-output.php:
|
303 |
msgid "Enable Fragment Caching"
|
304 |
msgstr "Abilitare la Fragment Caching"
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
308 |
msgstr "La tua cartella AdRotate Banner non è scrivibile o non esiste."
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
msgid "Set up your banner folder"
|
312 |
msgstr "Configurare la banner folder"
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
msgid ""
|
316 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
317 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -319,11 +323,11 @@ msgstr ""
|
|
319 |
"AdRotate Professional è installato. Si prega di passare ad AdRotate Pro! "
|
320 |
"Puoi eliminare questo plugin dopo l'attivazione di AdRotate Pro."
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
msgid "Switch plugins"
|
324 |
msgstr "Passare da un plug-in all'altro"
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid ""
|
328 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
329 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -333,15 +337,15 @@ msgstr ""
|
|
333 |
"installato due volte o l'installazione corrente ha il nome della cartella "
|
334 |
"errata. Si prega di installare il plugin correttamente!"
|
335 |
|
336 |
-
#: adrotate-output.php:
|
337 |
msgid "Installation instructions"
|
338 |
msgstr "Istruzioni per l'installazione"
|
339 |
|
340 |
-
#: adrotate-output.php:
|
341 |
msgid "your attention:"
|
342 |
msgstr "la vostra attenzione:"
|
343 |
|
344 |
-
#: adrotate-output.php:
|
345 |
msgid ""
|
346 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
347 |
"menu. If you need help getting started take a look at the"
|
@@ -349,47 +353,47 @@ msgstr ""
|
|
349 |
"Grazie per avere scelto AdRotate. Tutto ciò che concerne AdRotate si trova "
|
350 |
"in questo menù. Se hai bisogno di aiuto per cominciare da uno sguardo a"
|
351 |
|
352 |
-
#: adrotate-output.php:
|
353 |
msgid "manuals"
|
354 |
msgstr "manuali"
|
355 |
|
356 |
-
#: adrotate-output.php:
|
357 |
msgid "and"
|
358 |
msgstr "e"
|
359 |
|
360 |
-
#: adrotate-output.php:
|
361 |
msgid "forums"
|
362 |
msgstr "forum"
|
363 |
|
364 |
-
#: adrotate-output.php:
|
365 |
msgid "Post Tweet"
|
366 |
msgstr "Pubblica Tweet"
|
367 |
|
368 |
-
#: adrotate-output.php:
|
369 |
msgid "Share on Facebook"
|
370 |
msgstr "Condividi su Facebook"
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
msgid "Write review on wordpress.org"
|
374 |
msgstr "Scrivi una recensione su WordPress.org"
|
375 |
|
376 |
-
#: adrotate-output.php:
|
377 |
msgid "Thank you very much for your help and support!"
|
378 |
msgstr "Grazie mille per il vostro aiuto e supporto!"
|
379 |
|
380 |
-
#: adrotate-output.php:
|
381 |
msgid "Need help fast? Or do you have a question?"
|
382 |
msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
|
383 |
|
384 |
-
#: adrotate-output.php:
|
385 |
msgid "Help AdRotate Grow"
|
386 |
msgstr "Aiuta AdRotate a crescere"
|
387 |
|
388 |
-
#: adrotate-output.php:
|
389 |
msgid "Get more features with AdRotate Pro"
|
390 |
msgstr "Ottieni più funzionalità con AdRotate Pro"
|
391 |
|
392 |
-
#: adrotate-output.php:
|
393 |
msgid ""
|
394 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
395 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -400,15 +404,15 @@ msgstr ""
|
|
400 |
"solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
|
401 |
"nella prima risposta."
|
402 |
|
403 |
-
#: adrotate-output.php:
|
404 |
msgid "AdRotate Manuals"
|
405 |
msgstr "Manuali AdRotate"
|
406 |
|
407 |
-
#: adrotate-output.php:
|
408 |
msgid "Support Forums"
|
409 |
msgstr "Forum di supporto"
|
410 |
|
411 |
-
#: adrotate-output.php:
|
412 |
msgid ""
|
413 |
"When posting on the forum, please include a brief description of the "
|
414 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -420,7 +424,7 @@ msgstr ""
|
|
420 |
"stai cercando di fare. Fornire alcune informazioni extra aiuta sempre a "
|
421 |
"ottenere una risposta o un consiglio migliore."
|
422 |
|
423 |
-
#: adrotate-output.php:
|
424 |
msgid ""
|
425 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
426 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -433,11 +437,11 @@ msgstr ""
|
|
433 |
"sui social media non ti costa altro che farlo è super utile come promozione "
|
434 |
"che aiuta a garantire lo sviluppo futuro."
|
435 |
|
436 |
-
#: adrotate-output.php:
|
437 |
msgid "Write review on WordPress.org"
|
438 |
msgstr "Scrivi una recensione su WordPress.org"
|
439 |
|
440 |
-
#: adrotate-output.php:
|
441 |
msgid ""
|
442 |
"AdRotate Professional has a lot more functions for even better advertising "
|
443 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -448,27 +452,27 @@ msgstr ""
|
|
448 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
449 |
"offrire per te!"
|
450 |
|
451 |
-
#: adrotate-output.php:
|
452 |
msgid "Compare Licenses"
|
453 |
msgstr "Confronta le licenze"
|
454 |
|
455 |
-
#: adrotate-output.php:
|
456 |
msgid "Single License"
|
457 |
msgstr "Licenza singola"
|
458 |
|
459 |
-
#: adrotate-output.php:
|
460 |
msgid "Use on ONE WordPress installation."
|
461 |
msgstr "Utilizzare su un'installazione WordPress."
|
462 |
|
463 |
-
#: adrotate-output.php:
|
464 |
msgid "Buy now"
|
465 |
msgstr "Acquista ora"
|
466 |
|
467 |
-
#: adrotate-output.php:
|
468 |
msgid "Multi License"
|
469 |
msgstr "Licenza multipla"
|
470 |
|
471 |
-
#: adrotate-output.php:
|
472 |
msgid "Use on up to FIVE WordPress installations."
|
473 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
474 |
|
@@ -582,66 +586,66 @@ msgstr "ID:"
|
|
582 |
msgid "Fill in the ID of the type you want to display!"
|
583 |
msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
|
584 |
|
585 |
-
#: adrotate.php:
|
586 |
msgid "Manage Adverts"
|
587 |
msgstr "Gestisci Inserzioni"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
msgid "Manage Groups"
|
591 |
msgstr "Gestisci Gruppi"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
msgid "Manage Schedules"
|
595 |
msgstr "Gestisci pianificazioni"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Manage Media"
|
599 |
msgstr "Gestisci Media"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
#: dashboard/publisher/adverts-edit.php:178
|
603 |
#: dashboard/publisher/statistics-main.php:23
|
604 |
#: dashboard/settings/statistics.php:17
|
605 |
msgid "Statistics"
|
606 |
msgstr "Statistiche"
|
607 |
|
608 |
-
#: adrotate.php:
|
609 |
msgid "Get AdRotate Pro"
|
610 |
msgstr "Ottieni AdRotate Pro"
|
611 |
|
612 |
-
#: adrotate.php:
|
613 |
msgid "Support"
|
614 |
msgstr "Supporto"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
msgid "Settings"
|
618 |
msgstr "Impostazioni"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
msgid "Get AdRotate Professional"
|
622 |
msgstr "Ottieni AdRotate Professional"
|
623 |
|
624 |
-
#: adrotate.php:
|
625 |
msgid "Manage"
|
626 |
msgstr "Gestisci"
|
627 |
|
628 |
-
#: adrotate.php:
|
629 |
msgid "Advert Generator"
|
630 |
msgstr "Generatore pubblicitario"
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
msgid "New Advert"
|
634 |
msgstr "Nuova inserzione"
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid "Add New"
|
638 |
msgstr "Aggiungi Nuovo"
|
639 |
|
640 |
-
#: adrotate.php:
|
641 |
msgid "Manage Media and Assets"
|
642 |
msgstr "Gestire supporti e risorse"
|
643 |
|
644 |
-
#: adrotate.php:
|
645 |
msgid ""
|
646 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
647 |
"if you have HTML5 adverts containing multiple files."
|
@@ -649,39 +653,39 @@ msgstr ""
|
|
649 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
650 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
651 |
|
652 |
-
#: adrotate.php:
|
653 |
msgid "Advert Statistics"
|
654 |
msgstr "Statistiche delle inserzioni"
|
655 |
|
656 |
-
#: adrotate.php:
|
657 |
msgid "AdRotate Support"
|
658 |
msgstr "Supporto per AdRotate"
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "AdRotate Settings"
|
662 |
msgstr "Impostazioni AdRotate"
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "General"
|
666 |
msgstr "Generale"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "Notifications"
|
670 |
msgstr "Notifiche"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "Geo Targeting"
|
674 |
msgstr "Geo Targeting"
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "Access Roles"
|
678 |
msgstr "Ruoli di accesso"
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid "Miscellaneous"
|
682 |
msgstr "Varie"
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid "Maintenance"
|
686 |
msgstr "Manutenzione"
|
687 |
|
@@ -825,43 +829,59 @@ msgstr ""
|
|
825 |
msgid "Disabled Adverts"
|
826 |
msgstr "Inserzioni Disabilitate"
|
827 |
|
828 |
-
#: dashboard/publisher/adverts-disabled.php:
|
829 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
#: dashboard/publisher/adverts-main.php:20
|
831 |
#: dashboard/publisher/groups-main.php:20
|
832 |
#: dashboard/publisher/schedules-main.php:21
|
833 |
msgid "Bulk Actions"
|
834 |
msgstr "Azioni in blocco"
|
835 |
|
836 |
-
#: dashboard/publisher/adverts-disabled.php:
|
837 |
#: dashboard/publisher/adverts-edit.php:186
|
838 |
msgid "Activate"
|
839 |
msgstr "Attiva"
|
840 |
|
841 |
-
#: dashboard/publisher/adverts-disabled.php:
|
842 |
-
#: dashboard/publisher/adverts-error.php:
|
843 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
844 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
845 |
msgid "Delete"
|
846 |
msgstr "Elimina"
|
847 |
|
848 |
-
#: dashboard/publisher/adverts-disabled.php:
|
849 |
-
#: dashboard/publisher/adverts-error.php:
|
850 |
#: dashboard/publisher/adverts-main.php:23
|
851 |
msgid "Reset stats"
|
852 |
msgstr "Azzera statistiche"
|
853 |
|
854 |
-
#: dashboard/publisher/adverts-disabled.php:
|
855 |
-
#: dashboard/publisher/adverts-error.php:
|
856 |
#: dashboard/publisher/adverts-main.php:30
|
857 |
#: dashboard/publisher/groups-main.php:24
|
858 |
#: dashboard/publisher/schedules-main.php:22
|
859 |
msgid "Go"
|
860 |
msgstr "Vai"
|
861 |
|
862 |
-
#: dashboard/publisher/adverts-disabled.php:
|
863 |
#: dashboard/publisher/adverts-edit.php:263
|
864 |
-
#: dashboard/publisher/adverts-error.php:
|
865 |
#: dashboard/publisher/adverts-main.php:39
|
866 |
#: dashboard/publisher/groups-edit.php:350
|
867 |
#: dashboard/publisher/groups-main.php:32
|
@@ -869,17 +889,17 @@ msgstr "Vai"
|
|
869 |
msgid "ID"
|
870 |
msgstr "ID"
|
871 |
|
872 |
-
#: dashboard/publisher/adverts-disabled.php:
|
873 |
-
#: dashboard/publisher/adverts-error.php:
|
874 |
#: dashboard/publisher/adverts-main.php:40
|
875 |
#: dashboard/publisher/schedules-main.php:32
|
876 |
msgid "Start / End"
|
877 |
msgstr "Inizio / Fine"
|
878 |
|
879 |
-
#: dashboard/publisher/adverts-disabled.php:
|
880 |
#: dashboard/publisher/adverts-edit.php:116
|
881 |
#: dashboard/publisher/adverts-edit.php:264
|
882 |
-
#: dashboard/publisher/adverts-error.php:
|
883 |
#: dashboard/publisher/adverts-main.php:41
|
884 |
#: dashboard/publisher/groups-edit.php:65
|
885 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -888,14 +908,14 @@ msgstr "Inizio / Fine"
|
|
888 |
msgid "Name"
|
889 |
msgstr "Nome"
|
890 |
|
891 |
-
#: dashboard/publisher/adverts-disabled.php:
|
892 |
#: dashboard/publisher/adverts-main.php:43
|
893 |
#: dashboard/publisher/groups-edit.php:355
|
894 |
#: dashboard/publisher/groups-main.php:36
|
895 |
msgid "Shown"
|
896 |
msgstr "Visibile"
|
897 |
|
898 |
-
#: dashboard/publisher/adverts-disabled.php:
|
899 |
#: dashboard/publisher/adverts-main.php:45
|
900 |
#: dashboard/publisher/groups-edit.php:356
|
901 |
#: dashboard/publisher/groups-main.php:38
|
@@ -916,7 +936,7 @@ msgstr "Visibile"
|
|
916 |
msgid "Clicks"
|
917 |
msgstr "Clic"
|
918 |
|
919 |
-
#: dashboard/publisher/adverts-disabled.php:
|
920 |
#: dashboard/publisher/adverts-main.php:47
|
921 |
#: dashboard/publisher/statistics-advert.php:53
|
922 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -935,22 +955,22 @@ msgstr "Clic"
|
|
935 |
msgid "CTR"
|
936 |
msgstr "CTR"
|
937 |
|
938 |
-
#: dashboard/publisher/adverts-disabled.php:
|
939 |
-
#: dashboard/publisher/adverts-error.php:
|
940 |
#: dashboard/publisher/adverts-main.php:69
|
941 |
#: dashboard/publisher/groups-main.php:70
|
942 |
msgid "Edit"
|
943 |
msgstr "Modifica"
|
944 |
|
945 |
-
#: dashboard/publisher/adverts-disabled.php:
|
946 |
-
#: dashboard/publisher/adverts-error.php:
|
947 |
#: dashboard/publisher/adverts-main.php:69
|
948 |
#: dashboard/publisher/groups-main.php:70
|
949 |
msgid "Stats"
|
950 |
msgstr "Statistiche"
|
951 |
|
952 |
-
#: dashboard/publisher/adverts-disabled.php:
|
953 |
-
#: dashboard/publisher/adverts-error.php:
|
954 |
#: dashboard/publisher/adverts-main.php:69
|
955 |
msgid "Groups:"
|
956 |
msgstr "Gruppi:"
|
@@ -1346,45 +1366,62 @@ msgstr "Hash dell'annuncio"
|
|
1346 |
msgid "Adverts that need attention"
|
1347 |
msgstr "Inserzioni che necessitano di attenzione"
|
1348 |
|
1349 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1350 |
#: dashboard/publisher/adverts-main.php:21
|
1351 |
msgid "Deactivate"
|
1352 |
msgstr "Disattiva"
|
1353 |
|
1354 |
-
#: dashboard/publisher/adverts-error.php:
|
1355 |
#: dashboard/publisher/adverts-main.php:25
|
1356 |
msgid "-- Renew --"
|
1357 |
msgstr "-- Rinnova --"
|
1358 |
|
1359 |
-
#: dashboard/publisher/adverts-error.php:
|
1360 |
#: dashboard/publisher/adverts-main.php:26
|
1361 |
msgid "For 1 year"
|
1362 |
msgstr "Per 1 anno"
|
1363 |
|
1364 |
-
#: dashboard/publisher/adverts-error.php:
|
1365 |
#: dashboard/publisher/adverts-main.php:27
|
1366 |
msgid "For 180 days"
|
1367 |
msgstr "Per 180 giorni"
|
1368 |
|
1369 |
-
#: dashboard/publisher/adverts-error.php:
|
1370 |
#: dashboard/publisher/adverts-main.php:28
|
1371 |
msgid "For 30 days"
|
1372 |
msgstr "Per 30 giorni"
|
1373 |
|
1374 |
-
#: dashboard/publisher/adverts-error.php:
|
1375 |
#: dashboard/publisher/adverts-main.php:29
|
1376 |
msgid "For 7 days"
|
1377 |
msgstr "Per 7 giorni"
|
1378 |
|
1379 |
-
#: dashboard/publisher/adverts-error.php:
|
1380 |
msgid "Configuration errors"
|
1381 |
msgstr "Errori di configurazione"
|
1382 |
|
1383 |
-
#: dashboard/publisher/adverts-error.php:
|
1384 |
msgid "Expires soon"
|
1385 |
msgstr "Scadrà presto"
|
1386 |
|
1387 |
-
#: dashboard/publisher/adverts-error.php:
|
1388 |
#: dashboard/settings/maintenance.php:45
|
1389 |
msgid "Expired"
|
1390 |
msgstr "Scaduto"
|
@@ -3181,53 +3218,53 @@ msgstr ""
|
|
3181 |
"Questo numero non può essere vuoto, essere inferiore a 60 o superiore a "
|
3182 |
"86400 (24 ore)."
|
3183 |
|
3184 |
-
#: dashboard/support.php:
|
3185 |
msgid "Premium Support available in AdRotate Pro"
|
3186 |
msgstr "Supporto Premium disponibile in AdRotate Pro"
|
3187 |
|
3188 |
-
#: dashboard/support.php:
|
3189 |
msgid "Premium support always comes first!"
|
3190 |
msgstr "Il supporto Premium viene sempre al primo posto!"
|
3191 |
|
3192 |
-
#: dashboard/support.php:
|
3193 |
msgid "No queuing up on the forum..."
|
3194 |
msgstr "Nessuna coda sul forum..."
|
3195 |
|
3196 |
-
#: dashboard/support.php:
|
3197 |
msgid "Using this form includes essential information for a quick answer."
|
3198 |
msgstr ""
|
3199 |
"L'utilizzo di questo modulo include informazioni essenziali per una risposta "
|
3200 |
"rapida."
|
3201 |
|
3202 |
-
#: dashboard/support.php:
|
3203 |
msgid "Available in AdRotate Professional!"
|
3204 |
msgstr "Disponibile in AdRotate Professional!"
|
3205 |
|
3206 |
-
#: dashboard/support.php:
|
3207 |
msgid "Your name:"
|
3208 |
msgstr "Il tuo nome:"
|
3209 |
|
3210 |
-
#: dashboard/support.php:
|
3211 |
msgid "Your Email Address:"
|
3212 |
msgstr "Il tuo indirizzo e-mail:"
|
3213 |
|
3214 |
-
#: dashboard/support.php:
|
3215 |
msgid "Subject:"
|
3216 |
msgstr "Oggetto:"
|
3217 |
|
3218 |
-
#: dashboard/support.php:
|
3219 |
msgid "Problem description / Question:"
|
3220 |
msgstr "Descrizione del problema / Domanda:"
|
3221 |
|
3222 |
-
#: dashboard/support.php:
|
3223 |
msgid "Please log in to my website and take a look."
|
3224 |
msgstr "Si prega di accedere al mio sito web e dare un'occhiata."
|
3225 |
|
3226 |
-
#: dashboard/support.php:
|
3227 |
msgid "When you send this form the following data will be submitted:"
|
3228 |
msgstr "Quando si invia questo modulo verranno inviati i seguenti dati:"
|
3229 |
|
3230 |
-
#: dashboard/support.php:
|
3231 |
msgid ""
|
3232 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3233 |
"information will be included with the message."
|
@@ -3235,18 +3272,61 @@ msgstr ""
|
|
3235 |
"Il tuo nome, l'indirizzo email dell'account, l'URL del tuo sito web e alcune "
|
3236 |
"informazioni di base di WordPress saranno inclusi nel messaggio."
|
3237 |
|
3238 |
-
#: dashboard/support.php:
|
3239 |
msgid "This information is treated as confidential and is mandatory."
|
3240 |
msgstr "Queste informazioni sono trattate come riservate ed è obbligatoria."
|
3241 |
|
3242 |
-
#: dashboard/support.php:
|
3243 |
msgid "Get Help"
|
3244 |
msgstr "Chiedi Supporto"
|
3245 |
|
3246 |
-
#: dashboard/support.php:
|
3247 |
msgid "Premium Support is available in AdRotate Pro!"
|
3248 |
msgstr "Premium Support è disponibile in AdRotate Pro!"
|
3249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3250 |
#~ msgid "Check all adverts for configuration errors"
|
3251 |
#~ msgstr ""
|
3252 |
#~ "Controllare la presenza di errori di configurazione per tutte le "
|
@@ -3602,9 +3682,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
|
|
3602 |
#~ msgid "Schedules"
|
3603 |
#~ msgstr "Pianificazioni"
|
3604 |
|
3605 |
-
#~ msgid "AdRotate Pro"
|
3606 |
-
#~ msgstr "AdRotate Pro"
|
3607 |
-
|
3608 |
#~ msgid "Get more features"
|
3609 |
#~ msgstr "Ottenga più caratteristiche"
|
3610 |
|
@@ -4836,22 +4913,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
|
|
4836 |
#~ msgid "Advertiser:"
|
4837 |
#~ msgstr "Inserzionista:"
|
4838 |
|
4839 |
-
#, fuzzy
|
4840 |
-
#~ msgid ""
|
4841 |
-
#~ "These adverts are temporarily disabled. You can archive adverts to "
|
4842 |
-
#~ "permanently disable them."
|
4843 |
-
#~ msgstr ""
|
4844 |
-
#~ "Queste inserzioni sono temporaneamente disabilitate. Puoi archiviare le "
|
4845 |
-
#~ "inserzioni per disabilitarle definitivamente."
|
4846 |
-
|
4847 |
-
#, fuzzy
|
4848 |
-
#~ msgid ""
|
4849 |
-
#~ "Archiving adverts moves gathered statistics away from the live database "
|
4850 |
-
#~ "which may speed up your website."
|
4851 |
-
#~ msgstr ""
|
4852 |
-
#~ "L'archiviazione delle inserzioni sposta le statistiche raccolte dal "
|
4853 |
-
#~ "database live che possono accelerare il tuo sito web."
|
4854 |
-
|
4855 |
#, fuzzy
|
4856 |
#~ msgid "Archive (Permanently)"
|
4857 |
#~ msgstr "Archivio (permanente)"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:21-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-10-04 21:22-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-block.php:49
|
21 |
+
msgid "AdRotate - Advertisements"
|
22 |
+
msgstr "AdRotate - Pubblicità"
|
23 |
+
|
24 |
#: adrotate-functions.php:800
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Annuncio salvato"
|
172 |
msgid "Unexpected error"
|
173 |
msgstr "Errore inatteso"
|
174 |
|
175 |
+
#: adrotate-manage-publisher.php:877
|
176 |
msgid "AdRotate Advertiser"
|
177 |
msgstr "Inserzionista AdRotate"
|
178 |
|
179 |
+
#: adrotate-output.php:552
|
180 |
msgid "Oh no! Something went wrong!"
|
181 |
msgstr "Oh no! Qualcosa è andato storto!"
|
182 |
|
183 |
+
#: adrotate-output.php:553
|
184 |
msgid ""
|
185 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
186 |
"Verify if the url used is valid or log in via your browser."
|
189 |
"hai fatto clic. Verifica se l'URL utilizzato è valido o accedi tramite il "
|
190 |
"tuo browser."
|
191 |
|
192 |
+
#: adrotate-output.php:554
|
193 |
msgid ""
|
194 |
"If you have received the url you want to visit via email, you are being "
|
195 |
"tricked!"
|
196 |
msgstr "Se hai ricevuto l'URL che vuoi visitare via e-mail, vieni ingannato!"
|
197 |
|
198 |
+
#: adrotate-output.php:555
|
199 |
msgid "Contact support if the issue persists:"
|
200 |
msgstr "Contattare il supporto tecnico se il problema persiste:"
|
201 |
|
202 |
+
#: adrotate-output.php:567
|
203 |
msgid ""
|
204 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
205 |
"restrictions!"
|
207 |
"Errore, Advert al momento non è disponibile a causa di restrizioni di "
|
208 |
"pianificazione / geolocalizzazione!"
|
209 |
|
210 |
+
#: adrotate-output.php:572
|
211 |
msgid ""
|
212 |
"Either there are no banners, they are disabled or none qualified for this "
|
213 |
"location!"
|
215 |
"O non ci sono banner, sono disabilitati o nessuno qualificato per questa "
|
216 |
"posizione!"
|
217 |
|
218 |
+
#: adrotate-output.php:577
|
219 |
msgid "Error, no Advert ID set! Check your syntax!"
|
220 |
msgstr "Errore, nessun ID annuncio impostato! Controlla la tua sintassi!"
|
221 |
|
222 |
+
#: adrotate-output.php:583
|
223 |
msgid "Error, no group ID set! Check your syntax!"
|
224 |
msgstr "Errore, nessun ID gruppo impostato! Controlla la tua sintassi!"
|
225 |
|
226 |
+
#: adrotate-output.php:588
|
227 |
msgid "Error, group does not exist! Check your syntax!"
|
228 |
msgstr "Errore, il gruppo non esiste! Controlla la tua sintassi!"
|
229 |
|
230 |
+
#: adrotate-output.php:594
|
231 |
msgid ""
|
232 |
"There was an error locating the database tables for AdRotate. Please "
|
233 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
236 |
"per AdRotate. Si prega di disattivare e riattivare AdRotate dalla pagina del "
|
237 |
"plugin !!"
|
238 |
|
239 |
+
#: adrotate-output.php:594
|
240 |
+
msgid "If this does not solve the issue please seek support on the"
|
241 |
+
msgstr "Se questo non risolve il problema, si prega di cercare supporto sul"
|
242 |
|
243 |
+
#: adrotate-output.php:600
|
244 |
msgid ""
|
245 |
"There was an error loading the page. Please try again by reloading the page "
|
246 |
"via the menu on the left."
|
248 |
"C'è stato un errore nel caricamento della pagina. Si prega di provare "
|
249 |
"nuovamente ricaricando la pagina tramite il menù a sinistra."
|
250 |
|
251 |
+
#: adrotate-output.php:600
|
252 |
+
msgid "If the issue persists please seek help on the"
|
253 |
+
msgstr "Se il problema persiste, si prega di chiedere aiuto sul"
|
254 |
|
255 |
+
#: adrotate-output.php:606
|
256 |
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:20
|
261 |
msgid "Check adverts"
|
262 |
msgstr "Controllo inserzioni"
|
263 |
|
264 |
+
#: adrotate-output.php:638
|
265 |
msgid ""
|
266 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
267 |
"site!"
|
269 |
"Hai abilitato il supporto della memorizzazione nella cache, ma W3 Total "
|
270 |
"Cache non è attiva sul tuo sito!"
|
271 |
|
272 |
+
#: adrotate-output.php:638
|
273 |
msgid "Disable W3 Total Cache Support"
|
274 |
msgstr "Disabilitare il supporto della W3 Total Cache"
|
275 |
|
276 |
+
#: adrotate-output.php:641
|
277 |
msgid ""
|
278 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
279 |
"not set."
|
281 |
"Hai abilitato il supporto caching ma la definizione W3TC_DYNAMIC_SECURITY "
|
282 |
"non è impostata."
|
283 |
|
284 |
+
#: adrotate-output.php:641
|
285 |
msgid "How to configure W3 Total Cache"
|
286 |
msgstr "Come configurare la W3 Total Cache"
|
287 |
|
288 |
+
#: adrotate-output.php:645
|
289 |
msgid ""
|
290 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
291 |
msgstr ""
|
292 |
"Hai attivato il supporto della memorizzazione nella cache, ma Borlabs Cache "
|
293 |
"non è attivo sul tuo sito!"
|
294 |
|
295 |
+
#: adrotate-output.php:645
|
296 |
msgid "Disable Borlabs Cache Support"
|
297 |
msgstr "Disabilitare il supporto della Borlabs Cache"
|
298 |
|
299 |
+
#: adrotate-output.php:650
|
300 |
msgid ""
|
301 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
302 |
msgstr ""
|
303 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
304 |
"nella cache dei frammenti non è abilitata!"
|
305 |
|
306 |
+
#: adrotate-output.php:650
|
307 |
msgid "Enable Fragment Caching"
|
308 |
msgstr "Abilitare la Fragment Caching"
|
309 |
|
310 |
+
#: adrotate-output.php:657
|
311 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
312 |
msgstr "La tua cartella AdRotate Banner non è scrivibile o non esiste."
|
313 |
|
314 |
+
#: adrotate-output.php:657
|
315 |
msgid "Set up your banner folder"
|
316 |
msgstr "Configurare la banner folder"
|
317 |
|
318 |
+
#: adrotate-output.php:660
|
319 |
msgid ""
|
320 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
321 |
"can delete this plugin after AdRotate Pro is activated."
|
323 |
"AdRotate Professional è installato. Si prega di passare ad AdRotate Pro! "
|
324 |
"Puoi eliminare questo plugin dopo l'attivazione di AdRotate Pro."
|
325 |
|
326 |
+
#: adrotate-output.php:660
|
327 |
msgid "Switch plugins"
|
328 |
msgstr "Passare da un plug-in all'altro"
|
329 |
|
330 |
+
#: adrotate-output.php:663
|
331 |
msgid ""
|
332 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
333 |
"installed twice or your current installation has the wrong folder name. "
|
337 |
"installato due volte o l'installazione corrente ha il nome della cartella "
|
338 |
"errata. Si prega di installare il plugin correttamente!"
|
339 |
|
340 |
+
#: adrotate-output.php:663
|
341 |
msgid "Installation instructions"
|
342 |
msgstr "Istruzioni per l'installazione"
|
343 |
|
344 |
+
#: adrotate-output.php:739
|
345 |
msgid "your attention:"
|
346 |
msgstr "la vostra attenzione:"
|
347 |
|
348 |
+
#: adrotate-output.php:778
|
349 |
msgid ""
|
350 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
351 |
"menu. If you need help getting started take a look at the"
|
353 |
"Grazie per avere scelto AdRotate. Tutto ciò che concerne AdRotate si trova "
|
354 |
"in questo menù. Se hai bisogno di aiuto per cominciare da uno sguardo a"
|
355 |
|
356 |
+
#: adrotate-output.php:778
|
357 |
msgid "manuals"
|
358 |
msgstr "manuali"
|
359 |
|
360 |
+
#: adrotate-output.php:778
|
361 |
msgid "and"
|
362 |
msgstr "e"
|
363 |
|
364 |
+
#: adrotate-output.php:778
|
365 |
msgid "forums"
|
366 |
msgstr "forum"
|
367 |
|
368 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
369 |
msgid "Post Tweet"
|
370 |
msgstr "Pubblica Tweet"
|
371 |
|
372 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
373 |
msgid "Share on Facebook"
|
374 |
msgstr "Condividi su Facebook"
|
375 |
|
376 |
+
#: adrotate-output.php:833
|
377 |
msgid "Write review on wordpress.org"
|
378 |
msgstr "Scrivi una recensione su WordPress.org"
|
379 |
|
380 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
381 |
msgid "Thank you very much for your help and support!"
|
382 |
msgstr "Grazie mille per il vostro aiuto e supporto!"
|
383 |
|
384 |
+
#: adrotate-output.php:864
|
385 |
msgid "Need help fast? Or do you have a question?"
|
386 |
msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
|
387 |
|
388 |
+
#: adrotate-output.php:865
|
389 |
msgid "Help AdRotate Grow"
|
390 |
msgstr "Aiuta AdRotate a crescere"
|
391 |
|
392 |
+
#: adrotate-output.php:866
|
393 |
msgid "Get more features with AdRotate Pro"
|
394 |
msgstr "Ottieni più funzionalità con AdRotate Pro"
|
395 |
|
396 |
+
#: adrotate-output.php:872
|
397 |
msgid ""
|
398 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
399 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
404 |
"solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
|
405 |
"nella prima risposta."
|
406 |
|
407 |
+
#: adrotate-output.php:873
|
408 |
msgid "AdRotate Manuals"
|
409 |
msgstr "Manuali AdRotate"
|
410 |
|
411 |
+
#: adrotate-output.php:873
|
412 |
msgid "Support Forums"
|
413 |
msgstr "Forum di supporto"
|
414 |
|
415 |
+
#: adrotate-output.php:874
|
416 |
msgid ""
|
417 |
"When posting on the forum, please include a brief description of the "
|
418 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
424 |
"stai cercando di fare. Fornire alcune informazioni extra aiuta sempre a "
|
425 |
"ottenere una risposta o un consiglio migliore."
|
426 |
|
427 |
+
#: adrotate-output.php:876
|
428 |
msgid ""
|
429 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
430 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
437 |
"sui social media non ti costa altro che farlo è super utile come promozione "
|
438 |
"che aiuta a garantire lo sviluppo futuro."
|
439 |
|
440 |
+
#: adrotate-output.php:877
|
441 |
msgid "Write review on WordPress.org"
|
442 |
msgstr "Scrivi una recensione su WordPress.org"
|
443 |
|
444 |
+
#: adrotate-output.php:880
|
445 |
msgid ""
|
446 |
"AdRotate Professional has a lot more functions for even better advertising "
|
447 |
"management. Check out the feature comparison tab on any of the product pages "
|
452 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
453 |
"offrire per te!"
|
454 |
|
455 |
+
#: adrotate-output.php:880
|
456 |
msgid "Compare Licenses"
|
457 |
msgstr "Confronta le licenze"
|
458 |
|
459 |
+
#: adrotate-output.php:881
|
460 |
msgid "Single License"
|
461 |
msgstr "Licenza singola"
|
462 |
|
463 |
+
#: adrotate-output.php:881
|
464 |
msgid "Use on ONE WordPress installation."
|
465 |
msgstr "Utilizzare su un'installazione WordPress."
|
466 |
|
467 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
468 |
msgid "Buy now"
|
469 |
msgstr "Acquista ora"
|
470 |
|
471 |
+
#: adrotate-output.php:882
|
472 |
msgid "Multi License"
|
473 |
msgstr "Licenza multipla"
|
474 |
|
475 |
+
#: adrotate-output.php:882
|
476 |
msgid "Use on up to FIVE WordPress installations."
|
477 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
478 |
|
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:106 adrotate.php:176
|
590 |
msgid "Manage Adverts"
|
591 |
msgstr "Gestisci Inserzioni"
|
592 |
|
593 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
594 |
msgid "Manage Groups"
|
595 |
msgstr "Gestisci Gruppi"
|
596 |
|
597 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
598 |
msgid "Manage Schedules"
|
599 |
msgstr "Gestisci pianificazioni"
|
600 |
|
601 |
+
#: adrotate.php:109
|
602 |
msgid "Manage Media"
|
603 |
msgstr "Gestisci Media"
|
604 |
|
605 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
613 |
msgid "Get AdRotate Pro"
|
614 |
msgstr "Ottieni AdRotate Pro"
|
615 |
|
616 |
+
#: adrotate.php:112
|
617 |
msgid "Support"
|
618 |
msgstr "Supporto"
|
619 |
|
620 |
+
#: adrotate.php:113
|
621 |
msgid "Settings"
|
622 |
msgstr "Impostazioni"
|
623 |
|
624 |
+
#: adrotate.php:132
|
625 |
msgid "Get AdRotate Professional"
|
626 |
msgstr "Ottieni AdRotate Professional"
|
627 |
|
628 |
+
#: adrotate.php:236 adrotate.php:308
|
629 |
msgid "Manage"
|
630 |
msgstr "Gestisci"
|
631 |
|
632 |
+
#: adrotate.php:237
|
633 |
msgid "Advert Generator"
|
634 |
msgstr "Generatore pubblicitario"
|
635 |
|
636 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
637 |
msgid "New Advert"
|
638 |
msgstr "Nuova inserzione"
|
639 |
|
640 |
+
#: adrotate.php:309
|
641 |
msgid "Add New"
|
642 |
msgstr "Aggiungi Nuovo"
|
643 |
|
644 |
+
#: adrotate.php:377
|
645 |
msgid "Manage Media and Assets"
|
646 |
msgstr "Gestire supporti e risorse"
|
647 |
|
648 |
+
#: adrotate.php:381
|
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 |
"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:423
|
657 |
msgid "Advert Statistics"
|
658 |
msgstr "Statistiche delle inserzioni"
|
659 |
|
660 |
+
#: adrotate.php:466
|
661 |
msgid "AdRotate Support"
|
662 |
msgstr "Supporto per AdRotate"
|
663 |
|
664 |
+
#: adrotate.php:498
|
665 |
msgid "AdRotate Settings"
|
666 |
msgstr "Impostazioni AdRotate"
|
667 |
|
668 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
669 |
msgid "General"
|
670 |
msgstr "Generale"
|
671 |
|
672 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
673 |
msgid "Notifications"
|
674 |
msgstr "Notifiche"
|
675 |
|
676 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
677 |
msgid "Geo Targeting"
|
678 |
msgstr "Geo Targeting"
|
679 |
|
680 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
681 |
msgid "Access Roles"
|
682 |
msgstr "Ruoli di accesso"
|
683 |
|
684 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
685 |
msgid "Miscellaneous"
|
686 |
msgstr "Varie"
|
687 |
|
688 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
689 |
msgid "Maintenance"
|
690 |
msgstr "Manutenzione"
|
691 |
|
829 |
msgid "Disabled Adverts"
|
830 |
msgstr "Inserzioni Disabilitate"
|
831 |
|
832 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
833 |
+
msgid ""
|
834 |
+
"These adverts are temporarily disabled. You can archive adverts to "
|
835 |
+
"permanently disable them."
|
836 |
+
msgstr ""
|
837 |
+
"Queste inserzioni sono temporaneamente disabilitate. Puoi archiviare gli "
|
838 |
+
"annunci per disabilitarli in modo permanente."
|
839 |
+
|
840 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
841 |
+
msgid ""
|
842 |
+
"Archiving adverts moves gathered statistics away from the live database "
|
843 |
+
"which may speed up your website."
|
844 |
+
msgstr ""
|
845 |
+
"L'archiviazione degli annunci sposta le statistiche raccolte lontano dal "
|
846 |
+
"database live che potrebbe velocizzare il tuo sito web."
|
847 |
+
|
848 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
849 |
+
#: dashboard/publisher/adverts-error.php:20
|
850 |
#: dashboard/publisher/adverts-main.php:20
|
851 |
#: dashboard/publisher/groups-main.php:20
|
852 |
#: dashboard/publisher/schedules-main.php:21
|
853 |
msgid "Bulk Actions"
|
854 |
msgstr "Azioni in blocco"
|
855 |
|
856 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
857 |
#: dashboard/publisher/adverts-edit.php:186
|
858 |
msgid "Activate"
|
859 |
msgstr "Attiva"
|
860 |
|
861 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
862 |
+
#: dashboard/publisher/adverts-error.php:22
|
863 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
864 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
865 |
msgid "Delete"
|
866 |
msgstr "Elimina"
|
867 |
|
868 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
869 |
+
#: dashboard/publisher/adverts-error.php:23
|
870 |
#: dashboard/publisher/adverts-main.php:23
|
871 |
msgid "Reset stats"
|
872 |
msgstr "Azzera statistiche"
|
873 |
|
874 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
875 |
+
#: dashboard/publisher/adverts-error.php:30
|
876 |
#: dashboard/publisher/adverts-main.php:30
|
877 |
#: dashboard/publisher/groups-main.php:24
|
878 |
#: dashboard/publisher/schedules-main.php:22
|
879 |
msgid "Go"
|
880 |
msgstr "Vai"
|
881 |
|
882 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
883 |
#: dashboard/publisher/adverts-edit.php:263
|
884 |
+
#: dashboard/publisher/adverts-error.php:40
|
885 |
#: dashboard/publisher/adverts-main.php:39
|
886 |
#: dashboard/publisher/groups-edit.php:350
|
887 |
#: dashboard/publisher/groups-main.php:32
|
889 |
msgid "ID"
|
890 |
msgstr "ID"
|
891 |
|
892 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
893 |
+
#: dashboard/publisher/adverts-error.php:42
|
894 |
#: dashboard/publisher/adverts-main.php:40
|
895 |
#: dashboard/publisher/schedules-main.php:32
|
896 |
msgid "Start / End"
|
897 |
msgstr "Inizio / Fine"
|
898 |
|
899 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
900 |
#: dashboard/publisher/adverts-edit.php:116
|
901 |
#: dashboard/publisher/adverts-edit.php:264
|
902 |
+
#: dashboard/publisher/adverts-error.php:41
|
903 |
#: dashboard/publisher/adverts-main.php:41
|
904 |
#: dashboard/publisher/groups-edit.php:65
|
905 |
#: dashboard/publisher/groups-edit.php:351
|
908 |
msgid "Name"
|
909 |
msgstr "Nome"
|
910 |
|
911 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
912 |
#: dashboard/publisher/adverts-main.php:43
|
913 |
#: dashboard/publisher/groups-edit.php:355
|
914 |
#: dashboard/publisher/groups-main.php:36
|
915 |
msgid "Shown"
|
916 |
msgstr "Visibile"
|
917 |
|
918 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
919 |
#: dashboard/publisher/adverts-main.php:45
|
920 |
#: dashboard/publisher/groups-edit.php:356
|
921 |
#: dashboard/publisher/groups-main.php:38
|
936 |
msgid "Clicks"
|
937 |
msgstr "Clic"
|
938 |
|
939 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
940 |
#: dashboard/publisher/adverts-main.php:47
|
941 |
#: dashboard/publisher/statistics-advert.php:53
|
942 |
#: dashboard/publisher/statistics-advert.php:59
|
955 |
msgid "CTR"
|
956 |
msgstr "CTR"
|
957 |
|
958 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
959 |
+
#: dashboard/publisher/adverts-error.php:57
|
960 |
#: dashboard/publisher/adverts-main.php:69
|
961 |
#: dashboard/publisher/groups-main.php:70
|
962 |
msgid "Edit"
|
963 |
msgstr "Modifica"
|
964 |
|
965 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
966 |
+
#: dashboard/publisher/adverts-error.php:57
|
967 |
#: dashboard/publisher/adverts-main.php:69
|
968 |
#: dashboard/publisher/groups-main.php:70
|
969 |
msgid "Stats"
|
970 |
msgstr "Statistiche"
|
971 |
|
972 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
973 |
+
#: dashboard/publisher/adverts-error.php:57
|
974 |
#: dashboard/publisher/adverts-main.php:69
|
975 |
msgid "Groups:"
|
976 |
msgstr "Gruppi:"
|
1366 |
msgid "Adverts that need attention"
|
1367 |
msgstr "Inserzioni che necessitano di attenzione"
|
1368 |
|
1369 |
+
#: dashboard/publisher/adverts-error.php:13
|
1370 |
+
msgid ""
|
1371 |
+
"The adverts listed here are currently not showing on your website. This is "
|
1372 |
+
"because they are almost expired, have expired or have configuration issues."
|
1373 |
+
msgstr ""
|
1374 |
+
"Gli annunci elencati qui non vengono attualmente visualizzati sul tuo sito "
|
1375 |
+
"web. Questo perché sono quasi scaduti, sono scaduti o hanno problemi di "
|
1376 |
+
"configurazione."
|
1377 |
+
|
1378 |
+
#: dashboard/publisher/adverts-error.php:13
|
1379 |
+
msgid ""
|
1380 |
+
"To fix the issue edit each advert and look for one or more notification at "
|
1381 |
+
"the top to see what AdRotate thinks is wrong with it."
|
1382 |
+
msgstr ""
|
1383 |
+
"Per risolvere il problema, modifica ogni annuncio e cerca una o più "
|
1384 |
+
"notifiche in alto per vedere cosa AdRotate pensa che non vada."
|
1385 |
+
|
1386 |
+
#: dashboard/publisher/adverts-error.php:21
|
1387 |
#: dashboard/publisher/adverts-main.php:21
|
1388 |
msgid "Deactivate"
|
1389 |
msgstr "Disattiva"
|
1390 |
|
1391 |
+
#: dashboard/publisher/adverts-error.php:24
|
1392 |
#: dashboard/publisher/adverts-main.php:25
|
1393 |
msgid "-- Renew --"
|
1394 |
msgstr "-- Rinnova --"
|
1395 |
|
1396 |
+
#: dashboard/publisher/adverts-error.php:25
|
1397 |
#: dashboard/publisher/adverts-main.php:26
|
1398 |
msgid "For 1 year"
|
1399 |
msgstr "Per 1 anno"
|
1400 |
|
1401 |
+
#: dashboard/publisher/adverts-error.php:26
|
1402 |
#: dashboard/publisher/adverts-main.php:27
|
1403 |
msgid "For 180 days"
|
1404 |
msgstr "Per 180 giorni"
|
1405 |
|
1406 |
+
#: dashboard/publisher/adverts-error.php:27
|
1407 |
#: dashboard/publisher/adverts-main.php:28
|
1408 |
msgid "For 30 days"
|
1409 |
msgstr "Per 30 giorni"
|
1410 |
|
1411 |
+
#: dashboard/publisher/adverts-error.php:28
|
1412 |
#: dashboard/publisher/adverts-main.php:29
|
1413 |
msgid "For 7 days"
|
1414 |
msgstr "Per 7 giorni"
|
1415 |
|
1416 |
+
#: dashboard/publisher/adverts-error.php:65
|
1417 |
msgid "Configuration errors"
|
1418 |
msgstr "Errori di configurazione"
|
1419 |
|
1420 |
+
#: dashboard/publisher/adverts-error.php:66
|
1421 |
msgid "Expires soon"
|
1422 |
msgstr "Scadrà presto"
|
1423 |
|
1424 |
+
#: dashboard/publisher/adverts-error.php:67
|
1425 |
#: dashboard/settings/maintenance.php:45
|
1426 |
msgid "Expired"
|
1427 |
msgstr "Scaduto"
|
3218 |
"Questo numero non può essere vuoto, essere inferiore a 60 o superiore a "
|
3219 |
"86400 (24 ore)."
|
3220 |
|
3221 |
+
#: dashboard/support.php:74
|
3222 |
msgid "Premium Support available in AdRotate Pro"
|
3223 |
msgstr "Supporto Premium disponibile in AdRotate Pro"
|
3224 |
|
3225 |
+
#: dashboard/support.php:77
|
3226 |
msgid "Premium support always comes first!"
|
3227 |
msgstr "Il supporto Premium viene sempre al primo posto!"
|
3228 |
|
3229 |
+
#: dashboard/support.php:77
|
3230 |
msgid "No queuing up on the forum..."
|
3231 |
msgstr "Nessuna coda sul forum..."
|
3232 |
|
3233 |
+
#: dashboard/support.php:77
|
3234 |
msgid "Using this form includes essential information for a quick answer."
|
3235 |
msgstr ""
|
3236 |
"L'utilizzo di questo modulo include informazioni essenziali per una risposta "
|
3237 |
"rapida."
|
3238 |
|
3239 |
+
#: dashboard/support.php:77
|
3240 |
msgid "Available in AdRotate Professional!"
|
3241 |
msgstr "Disponibile in AdRotate Professional!"
|
3242 |
|
3243 |
+
#: dashboard/support.php:79
|
3244 |
msgid "Your name:"
|
3245 |
msgstr "Il tuo nome:"
|
3246 |
|
3247 |
+
#: dashboard/support.php:80
|
3248 |
msgid "Your Email Address:"
|
3249 |
msgstr "Il tuo indirizzo e-mail:"
|
3250 |
|
3251 |
+
#: dashboard/support.php:81
|
3252 |
msgid "Subject:"
|
3253 |
msgstr "Oggetto:"
|
3254 |
|
3255 |
+
#: dashboard/support.php:82
|
3256 |
msgid "Problem description / Question:"
|
3257 |
msgstr "Descrizione del problema / Domanda:"
|
3258 |
|
3259 |
+
#: dashboard/support.php:83
|
3260 |
msgid "Please log in to my website and take a look."
|
3261 |
msgstr "Si prega di accedere al mio sito web e dare un'occhiata."
|
3262 |
|
3263 |
+
#: dashboard/support.php:85
|
3264 |
msgid "When you send this form the following data will be submitted:"
|
3265 |
msgstr "Quando si invia questo modulo verranno inviati i seguenti dati:"
|
3266 |
|
3267 |
+
#: dashboard/support.php:86
|
3268 |
msgid ""
|
3269 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3270 |
"information will be included with the message."
|
3272 |
"Il tuo nome, l'indirizzo email dell'account, l'URL del tuo sito web e alcune "
|
3273 |
"informazioni di base di WordPress saranno inclusi nel messaggio."
|
3274 |
|
3275 |
+
#: dashboard/support.php:86
|
3276 |
msgid "This information is treated as confidential and is mandatory."
|
3277 |
msgstr "Queste informazioni sono trattate come riservate ed è obbligatoria."
|
3278 |
|
3279 |
+
#: dashboard/support.php:89
|
3280 |
msgid "Get Help"
|
3281 |
msgstr "Chiedi Supporto"
|
3282 |
|
3283 |
+
#: dashboard/support.php:89
|
3284 |
msgid "Premium Support is available in AdRotate Pro!"
|
3285 |
msgstr "Premium Support è disponibile in AdRotate Pro!"
|
3286 |
|
3287 |
+
#: library/block.js:19 library/block.js:49
|
3288 |
+
msgid "AdRotate Advert"
|
3289 |
+
msgstr "Annuncio AdRotate"
|
3290 |
+
|
3291 |
+
#: library/block.js:22
|
3292 |
+
msgid "Show a single advert by entering an advert ID."
|
3293 |
+
msgstr "Mostra una singola inserzione inserendo un ID annuncio."
|
3294 |
+
|
3295 |
+
#: library/block.js:52
|
3296 |
+
msgid "Enter an Advert ID (numbers only):"
|
3297 |
+
msgstr "Inserisci un ID annuncio (solo numeri):"
|
3298 |
+
|
3299 |
+
#: library/block.js:63
|
3300 |
+
msgid ""
|
3301 |
+
"You can find the advert ID in Manage Adverts. Any special markup, code or "
|
3302 |
+
"layout styles can be applied in the advert itself or by placing the advert "
|
3303 |
+
"in a group."
|
3304 |
+
msgstr ""
|
3305 |
+
"Puoi trovare l'ID dell'inserzione in Gestisci inserzioni. Qualsiasi markup, "
|
3306 |
+
"codice o stile di layout speciale può essere applicato nell'annuncio stesso "
|
3307 |
+
"o inserendo l'annuncio in un gruppo."
|
3308 |
+
|
3309 |
+
#: library/block.js:73 library/block.js:103
|
3310 |
+
msgid "AdRotate Group"
|
3311 |
+
msgstr "Gruppo AdRotate"
|
3312 |
+
|
3313 |
+
#: library/block.js:76
|
3314 |
+
msgid "Show a group of adverts by entering a group ID."
|
3315 |
+
msgstr "Mostra un gruppo di inserzioni inserendo un ID gruppo."
|
3316 |
+
|
3317 |
+
#: library/block.js:106
|
3318 |
+
msgid "Enter a group ID (numbers only):"
|
3319 |
+
msgstr "Inserisci un ID gruppo (solo numeri):"
|
3320 |
+
|
3321 |
+
#: library/block.js:117
|
3322 |
+
msgid ""
|
3323 |
+
"You can find the group ID in Manage Groups. Any special markup, code or "
|
3324 |
+
"layout styles can be applied in the group wrapper when editing the group."
|
3325 |
+
msgstr ""
|
3326 |
+
"Puoi trovare l'ID del gruppo in Gestisci gruppi. Eventuali stili speciali di "
|
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 "
|
3682 |
#~ msgid "Schedules"
|
3683 |
#~ msgstr "Pianificazioni"
|
3684 |
|
|
|
|
|
|
|
3685 |
#~ msgid "Get more features"
|
3686 |
#~ msgstr "Ottenga più caratteristiche"
|
3687 |
|
4913 |
#~ msgid "Advertiser:"
|
4914 |
#~ msgstr "Inserzionista:"
|
4915 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4916 |
#, fuzzy
|
4917 |
#~ msgid "Archive (Permanently)"
|
4918 |
#~ msgstr "Archivio (permanente)"
|
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-04
|
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"
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
|
|
|
|
|
|
|
|
20 |
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Advertentie opgeslagen"
|
@@ -169,15 +173,15 @@ msgstr ""
|
|
169 |
msgid "Unexpected error"
|
170 |
msgstr "Onverwachte fout"
|
171 |
|
172 |
-
#: adrotate-manage-publisher.php:
|
173 |
msgid "AdRotate Advertiser"
|
174 |
msgstr "AdRotate Adverteerder"
|
175 |
|
176 |
-
#: adrotate-output.php:
|
177 |
msgid "Oh no! Something went wrong!"
|
178 |
msgstr "Ohjee! Er ging iets mis!"
|
179 |
|
180 |
-
#: adrotate-output.php:
|
181 |
msgid ""
|
182 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
183 |
"Verify if the url used is valid or log in via your browser."
|
@@ -186,7 +190,7 @@ msgstr ""
|
|
186 |
"verifieren. Controleer of de gebruikte URL geldig is of log in via je "
|
187 |
"browser."
|
188 |
|
189 |
-
#: adrotate-output.php:
|
190 |
msgid ""
|
191 |
"If you have received the url you want to visit via email, you are being "
|
192 |
"tricked!"
|
@@ -194,11 +198,11 @@ msgstr ""
|
|
194 |
"Als je de URL die je wilt laden hebt ontvangen via email, wordt je wellicht "
|
195 |
"voor de gek gehouden!"
|
196 |
|
197 |
-
#: adrotate-output.php:
|
198 |
msgid "Contact support if the issue persists:"
|
199 |
msgstr "Neem contact op met de helpdesk als het probleem zich blijft voordoen:"
|
200 |
|
201 |
-
#: adrotate-output.php:
|
202 |
msgid ""
|
203 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
204 |
"restrictions!"
|
@@ -206,7 +210,7 @@ msgstr ""
|
|
206 |
"Fout, Ad is op dit moment niet beschikbaar vanwege schema/geolocatie "
|
207 |
"beperkingen!"
|
208 |
|
209 |
-
#: adrotate-output.php:
|
210 |
msgid ""
|
211 |
"Either there are no banners, they are disabled or none qualified for this "
|
212 |
"location!"
|
@@ -214,19 +218,19 @@ msgstr ""
|
|
214 |
"Ofwel zijn er geen banners, ze zijn uitgeschakeld of er zijn geen "
|
215 |
"advertenties beschikbaar voor deze locatie!"
|
216 |
|
217 |
-
#: adrotate-output.php:
|
218 |
msgid "Error, no Advert ID set! Check your syntax!"
|
219 |
msgstr "Fout, geen Ad-ID ingesteld! Controleer de code!"
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid "Error, no group ID set! Check your syntax!"
|
223 |
msgstr "Fout, geen groeps-ID ingesteld! Controleer de code!"
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
msgid "Error, group does not exist! Check your syntax!"
|
227 |
msgstr "Fout, groep bestaat niet! Controleer de code!"
|
228 |
|
229 |
-
#: adrotate-output.php:
|
230 |
msgid ""
|
231 |
"There was an error locating the database tables for AdRotate. Please "
|
232 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -235,12 +239,11 @@ msgstr ""
|
|
235 |
"AdRotate. Dit is meestal op te lossen door AdRotate te deactiveren en "
|
236 |
"opnieuw activeren!!"
|
237 |
|
238 |
-
#: adrotate-output.php:
|
239 |
-
msgid "If this does not solve the issue please seek support
|
240 |
-
msgstr ""
|
241 |
-
"Als dit het probleem niet oplost, neem dan contact op met de helpdesk via"
|
242 |
|
243 |
-
#: adrotate-output.php:
|
244 |
msgid ""
|
245 |
"There was an error loading the page. Please try again by reloading the page "
|
246 |
"via the menu on the left."
|
@@ -248,20 +251,20 @@ msgstr ""
|
|
248 |
"Er is een fout opgetreden bij het laden van de pagina. Probeer het opnieuw "
|
249 |
"door de pagina te herladen via het menu aan de linkerkant."
|
250 |
|
251 |
-
#: adrotate-output.php:
|
252 |
-
msgid "If the issue persists please seek help
|
253 |
-
msgstr "Als het probleem aanhoudt, zoek dan hulp
|
254 |
|
255 |
-
#: adrotate-output.php:
|
256 |
msgid "An unknown error occured."
|
257 |
msgstr "Er is een onbekende fout opgetreden."
|
258 |
|
259 |
-
#: adrotate-output.php:
|
260 |
#: dashboard/settings/maintenance.php:20
|
261 |
msgid "Check adverts"
|
262 |
msgstr "Controleer advertenties"
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
msgid ""
|
266 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
267 |
"site!"
|
@@ -269,11 +272,11 @@ msgstr ""
|
|
269 |
"Je hebt ondersteuning voor caching ingeschakeld, maar W3 Total Cache is niet "
|
270 |
"actief op de site!"
|
271 |
|
272 |
-
#: adrotate-output.php:
|
273 |
msgid "Disable W3 Total Cache Support"
|
274 |
msgstr "Schakel W3 Total Cache support uit"
|
275 |
|
276 |
-
#: adrotate-output.php:
|
277 |
msgid ""
|
278 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
279 |
"not set."
|
@@ -281,42 +284,42 @@ msgstr ""
|
|
281 |
"Je hebt ondersteuning voor caching ingeschakelt, maar de definitie "
|
282 |
"W3TC_DYNAMIC_SECURITY is niet ingesteld."
|
283 |
|
284 |
-
#: adrotate-output.php:
|
285 |
msgid "How to configure W3 Total Cache"
|
286 |
msgstr "W3 Total Cache configureren"
|
287 |
|
288 |
-
#: adrotate-output.php:
|
289 |
msgid ""
|
290 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
291 |
msgstr ""
|
292 |
"Je hebt ondersteuning voor caching ingeschakeld, maar Borlabs Cache is niet "
|
293 |
"actief op de site!"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
msgid "Disable Borlabs Cache Support"
|
297 |
msgstr "Ondersteuning voor Borlabs cache uitschakelen"
|
298 |
|
299 |
-
#: adrotate-output.php:
|
300 |
msgid ""
|
301 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
302 |
msgstr ""
|
303 |
"Je hebt de ondersteuning voor Borlabs cache ingeschakeld, maar "
|
304 |
"Fragmentcaching is niet ingeschakeld!"
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
msgid "Enable Fragment Caching"
|
308 |
msgstr "Fragmentcaching inschakelen"
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
312 |
msgstr ""
|
313 |
"De map voor de banner van AdRotate is niet beschrijfbaar of bestaat niet."
|
314 |
|
315 |
-
#: adrotate-output.php:
|
316 |
msgid "Set up your banner folder"
|
317 |
msgstr "De banner map instellen"
|
318 |
|
319 |
-
#: adrotate-output.php:
|
320 |
msgid ""
|
321 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
322 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -324,11 +327,11 @@ msgstr ""
|
|
324 |
"Je hebt AdRotate Professional geïnstalleerd. Stap over naar AdRotate Pro! Je "
|
325 |
"kunt deze plug-in verwijderen nadat AdRotate Pro is geactiveerd."
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid "Switch plugins"
|
329 |
msgstr "Stap over"
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid ""
|
333 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
334 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -338,15 +341,15 @@ msgstr ""
|
|
338 |
"geïnstalleerd of uw huidige installatie heeft de verkeerde map naam. "
|
339 |
"Installeer de plugin goed!"
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "Installation instructions"
|
343 |
msgstr "Installatie-instructies"
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "your attention:"
|
347 |
msgstr "jouw aandacht:"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid ""
|
351 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
352 |
"menu. If you need help getting started take a look at the"
|
@@ -355,47 +358,47 @@ msgstr ""
|
|
355 |
"te maken heeft, zit in dit menu. Als je hulp nodig hebt om aan de slag te "
|
356 |
"gaan, kijk dan eens naar de"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
msgid "manuals"
|
360 |
msgstr "handleidingen"
|
361 |
|
362 |
-
#: adrotate-output.php:
|
363 |
msgid "and"
|
364 |
msgstr "en"
|
365 |
|
366 |
-
#: adrotate-output.php:
|
367 |
msgid "forums"
|
368 |
msgstr "forums"
|
369 |
|
370 |
-
#: adrotate-output.php:
|
371 |
msgid "Post Tweet"
|
372 |
msgstr "Tweet plaatsen"
|
373 |
|
374 |
-
#: adrotate-output.php:
|
375 |
msgid "Share on Facebook"
|
376 |
msgstr "Deel op Facebook"
|
377 |
|
378 |
-
#: adrotate-output.php:
|
379 |
msgid "Write review on wordpress.org"
|
380 |
msgstr "Schrijf een review op WordPress.org"
|
381 |
|
382 |
-
#: adrotate-output.php:
|
383 |
msgid "Thank you very much for your help and support!"
|
384 |
msgstr "Hartelijk dank voor je hulp!"
|
385 |
|
386 |
-
#: adrotate-output.php:
|
387 |
msgid "Need help fast? Or do you have a question?"
|
388 |
msgstr "Snel hulp nodig? Of heb je een vraag?"
|
389 |
|
390 |
-
#: adrotate-output.php:
|
391 |
msgid "Help AdRotate Grow"
|
392 |
msgstr "Help AdRotate groeien"
|
393 |
|
394 |
-
#: adrotate-output.php:
|
395 |
msgid "Get more features with AdRotate Pro"
|
396 |
msgstr "Beschik over meer functies met AdRotate Pro"
|
397 |
|
398 |
-
#: adrotate-output.php:
|
399 |
msgid ""
|
400 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
401 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -405,15 +408,15 @@ msgstr ""
|
|
405 |
"manier om je antwoord te krijgen via het AdRotate-forum. Meestal beantwoord "
|
406 |
"ik vragen dezelfde dag, vaak met een oplossing in het eerste antwoord."
|
407 |
|
408 |
-
#: adrotate-output.php:
|
409 |
msgid "AdRotate Manuals"
|
410 |
msgstr "AdRotate Handleidingen"
|
411 |
|
412 |
-
#: adrotate-output.php:
|
413 |
msgid "Support Forums"
|
414 |
msgstr "Supportfora"
|
415 |
|
416 |
-
#: adrotate-output.php:
|
417 |
msgid ""
|
418 |
"When posting on the forum, please include a brief description of the "
|
419 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -426,7 +429,7 @@ msgstr ""
|
|
426 |
"extra informatie helpt altijd bij het krijgen van een beter antwoord of "
|
427 |
"advies."
|
428 |
|
429 |
-
#: adrotate-output.php:
|
430 |
msgid ""
|
431 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
432 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -439,11 +442,11 @@ msgstr ""
|
|
439 |
"maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
|
440 |
"te garanderen."
|
441 |
|
442 |
-
#: adrotate-output.php:
|
443 |
msgid "Write review on WordPress.org"
|
444 |
msgstr "Schrijf een review op WordPress.org"
|
445 |
|
446 |
-
#: adrotate-output.php:
|
447 |
msgid ""
|
448 |
"AdRotate Professional has a lot more functions for even better advertising "
|
449 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -454,27 +457,27 @@ msgstr ""
|
|
454 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
455 |
"heeft!"
|
456 |
|
457 |
-
#: adrotate-output.php:
|
458 |
msgid "Compare Licenses"
|
459 |
msgstr "Licenties vergelijken"
|
460 |
|
461 |
-
#: adrotate-output.php:
|
462 |
msgid "Single License"
|
463 |
msgstr "Enkele licentie"
|
464 |
|
465 |
-
#: adrotate-output.php:
|
466 |
msgid "Use on ONE WordPress installation."
|
467 |
msgstr "Gebruik op één WordPress-installatie."
|
468 |
|
469 |
-
#: adrotate-output.php:
|
470 |
msgid "Buy now"
|
471 |
msgstr "Koop nu"
|
472 |
|
473 |
-
#: adrotate-output.php:
|
474 |
msgid "Multi License"
|
475 |
msgstr "Multi Licentie"
|
476 |
|
477 |
-
#: adrotate-output.php:
|
478 |
msgid "Use on up to FIVE WordPress installations."
|
479 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
480 |
|
@@ -590,66 +593,66 @@ msgstr "ID:"
|
|
590 |
msgid "Fill in the ID of the type you want to display!"
|
591 |
msgstr "Vul het ID in van het type dat je wilt weergeven!"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
msgid "Manage Adverts"
|
595 |
msgstr "Advertenties beheren"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Manage Groups"
|
599 |
msgstr "Beheer Groepen"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
msgid "Manage Schedules"
|
603 |
msgstr "Schema's beheren"
|
604 |
|
605 |
-
#: adrotate.php:
|
606 |
msgid "Manage Media"
|
607 |
msgstr "Beheer Media"
|
608 |
|
609 |
-
#: adrotate.php:
|
610 |
#: dashboard/publisher/adverts-edit.php:178
|
611 |
#: dashboard/publisher/statistics-main.php:23
|
612 |
#: dashboard/settings/statistics.php:17
|
613 |
msgid "Statistics"
|
614 |
msgstr "Statistieken"
|
615 |
|
616 |
-
#: adrotate.php:
|
617 |
msgid "Get AdRotate Pro"
|
618 |
msgstr "Koop AdRotate Pro"
|
619 |
|
620 |
-
#: adrotate.php:
|
621 |
msgid "Support"
|
622 |
msgstr "Ondersteuning"
|
623 |
|
624 |
-
#: adrotate.php:
|
625 |
msgid "Settings"
|
626 |
msgstr "Instellingen"
|
627 |
|
628 |
-
#: adrotate.php:
|
629 |
msgid "Get AdRotate Professional"
|
630 |
msgstr "Koop AdRotate Professional"
|
631 |
|
632 |
-
#: adrotate.php:
|
633 |
msgid "Manage"
|
634 |
msgstr "Beheren"
|
635 |
|
636 |
-
#: adrotate.php:
|
637 |
msgid "Advert Generator"
|
638 |
msgstr "Advertentie Generator"
|
639 |
|
640 |
-
#: adrotate.php:
|
641 |
msgid "New Advert"
|
642 |
msgstr "Nieuwe advertentie"
|
643 |
|
644 |
-
#: adrotate.php:
|
645 |
msgid "Add New"
|
646 |
msgstr "Nieuw"
|
647 |
|
648 |
-
#: adrotate.php:
|
649 |
msgid "Manage Media and Assets"
|
650 |
msgstr "Media en assets beheren"
|
651 |
|
652 |
-
#: adrotate.php:
|
653 |
msgid ""
|
654 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
655 |
"if you have HTML5 adverts containing multiple files."
|
@@ -657,39 +660,39 @@ msgstr ""
|
|
657 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
658 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
659 |
|
660 |
-
#: adrotate.php:
|
661 |
msgid "Advert Statistics"
|
662 |
msgstr "Statistieken voor advertenties"
|
663 |
|
664 |
-
#: adrotate.php:
|
665 |
msgid "AdRotate Support"
|
666 |
msgstr "Ondersteuning voor AdRotate"
|
667 |
|
668 |
-
#: adrotate.php:
|
669 |
msgid "AdRotate Settings"
|
670 |
msgstr "AdRotate-instellingen"
|
671 |
|
672 |
-
#: adrotate.php:
|
673 |
msgid "General"
|
674 |
msgstr "Algemeen"
|
675 |
|
676 |
-
#: adrotate.php:
|
677 |
msgid "Notifications"
|
678 |
msgstr "Meldingen"
|
679 |
|
680 |
-
#: adrotate.php:
|
681 |
msgid "Geo Targeting"
|
682 |
msgstr "Geo-targeting"
|
683 |
|
684 |
-
#: adrotate.php:
|
685 |
msgid "Access Roles"
|
686 |
msgstr "Rollen"
|
687 |
|
688 |
-
#: adrotate.php:
|
689 |
msgid "Miscellaneous"
|
690 |
msgstr "Diversen"
|
691 |
|
692 |
-
#: adrotate.php:
|
693 |
msgid "Maintenance"
|
694 |
msgstr "Onderhoud"
|
695 |
|
@@ -830,43 +833,59 @@ msgstr ""
|
|
830 |
msgid "Disabled Adverts"
|
831 |
msgstr "Uitgeschakelde Advertenties"
|
832 |
|
833 |
-
#: dashboard/publisher/adverts-disabled.php:
|
834 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
#: dashboard/publisher/adverts-main.php:20
|
836 |
#: dashboard/publisher/groups-main.php:20
|
837 |
#: dashboard/publisher/schedules-main.php:21
|
838 |
msgid "Bulk Actions"
|
839 |
msgstr "Bulk acties"
|
840 |
|
841 |
-
#: dashboard/publisher/adverts-disabled.php:
|
842 |
#: dashboard/publisher/adverts-edit.php:186
|
843 |
msgid "Activate"
|
844 |
msgstr "Activeren"
|
845 |
|
846 |
-
#: dashboard/publisher/adverts-disabled.php:
|
847 |
-
#: dashboard/publisher/adverts-error.php:
|
848 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
849 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
850 |
msgid "Delete"
|
851 |
msgstr "Verwijderen"
|
852 |
|
853 |
-
#: dashboard/publisher/adverts-disabled.php:
|
854 |
-
#: dashboard/publisher/adverts-error.php:
|
855 |
#: dashboard/publisher/adverts-main.php:23
|
856 |
msgid "Reset stats"
|
857 |
msgstr "Reset statistieken"
|
858 |
|
859 |
-
#: dashboard/publisher/adverts-disabled.php:
|
860 |
-
#: dashboard/publisher/adverts-error.php:
|
861 |
#: dashboard/publisher/adverts-main.php:30
|
862 |
#: dashboard/publisher/groups-main.php:24
|
863 |
#: dashboard/publisher/schedules-main.php:22
|
864 |
msgid "Go"
|
865 |
msgstr "Ga"
|
866 |
|
867 |
-
#: dashboard/publisher/adverts-disabled.php:
|
868 |
#: dashboard/publisher/adverts-edit.php:263
|
869 |
-
#: dashboard/publisher/adverts-error.php:
|
870 |
#: dashboard/publisher/adverts-main.php:39
|
871 |
#: dashboard/publisher/groups-edit.php:350
|
872 |
#: dashboard/publisher/groups-main.php:32
|
@@ -874,17 +893,17 @@ msgstr "Ga"
|
|
874 |
msgid "ID"
|
875 |
msgstr "ID"
|
876 |
|
877 |
-
#: dashboard/publisher/adverts-disabled.php:
|
878 |
-
#: dashboard/publisher/adverts-error.php:
|
879 |
#: dashboard/publisher/adverts-main.php:40
|
880 |
#: dashboard/publisher/schedules-main.php:32
|
881 |
msgid "Start / End"
|
882 |
msgstr "Begin/einde"
|
883 |
|
884 |
-
#: dashboard/publisher/adverts-disabled.php:
|
885 |
#: dashboard/publisher/adverts-edit.php:116
|
886 |
#: dashboard/publisher/adverts-edit.php:264
|
887 |
-
#: dashboard/publisher/adverts-error.php:
|
888 |
#: dashboard/publisher/adverts-main.php:41
|
889 |
#: dashboard/publisher/groups-edit.php:65
|
890 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -893,14 +912,14 @@ msgstr "Begin/einde"
|
|
893 |
msgid "Name"
|
894 |
msgstr "Naam"
|
895 |
|
896 |
-
#: dashboard/publisher/adverts-disabled.php:
|
897 |
#: dashboard/publisher/adverts-main.php:43
|
898 |
#: dashboard/publisher/groups-edit.php:355
|
899 |
#: dashboard/publisher/groups-main.php:36
|
900 |
msgid "Shown"
|
901 |
msgstr "Getoonde"
|
902 |
|
903 |
-
#: dashboard/publisher/adverts-disabled.php:
|
904 |
#: dashboard/publisher/adverts-main.php:45
|
905 |
#: dashboard/publisher/groups-edit.php:356
|
906 |
#: dashboard/publisher/groups-main.php:38
|
@@ -921,7 +940,7 @@ msgstr "Getoonde"
|
|
921 |
msgid "Clicks"
|
922 |
msgstr "Kliks"
|
923 |
|
924 |
-
#: dashboard/publisher/adverts-disabled.php:
|
925 |
#: dashboard/publisher/adverts-main.php:47
|
926 |
#: dashboard/publisher/statistics-advert.php:53
|
927 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -940,22 +959,22 @@ msgstr "Kliks"
|
|
940 |
msgid "CTR"
|
941 |
msgstr "CTR"
|
942 |
|
943 |
-
#: dashboard/publisher/adverts-disabled.php:
|
944 |
-
#: dashboard/publisher/adverts-error.php:
|
945 |
#: dashboard/publisher/adverts-main.php:69
|
946 |
#: dashboard/publisher/groups-main.php:70
|
947 |
msgid "Edit"
|
948 |
msgstr "Bewerken"
|
949 |
|
950 |
-
#: dashboard/publisher/adverts-disabled.php:
|
951 |
-
#: dashboard/publisher/adverts-error.php:
|
952 |
#: dashboard/publisher/adverts-main.php:69
|
953 |
#: dashboard/publisher/groups-main.php:70
|
954 |
msgid "Stats"
|
955 |
msgstr "Statistieken"
|
956 |
|
957 |
-
#: dashboard/publisher/adverts-disabled.php:
|
958 |
-
#: dashboard/publisher/adverts-error.php:
|
959 |
#: dashboard/publisher/adverts-main.php:69
|
960 |
msgid "Groups:"
|
961 |
msgstr "Groepen:"
|
@@ -1352,45 +1371,63 @@ msgstr "Advertentie hash"
|
|
1352 |
msgid "Adverts that need attention"
|
1353 |
msgstr "Advertenties die aandacht nodig hebben"
|
1354 |
|
1355 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1356 |
#: dashboard/publisher/adverts-main.php:21
|
1357 |
msgid "Deactivate"
|
1358 |
msgstr "Deactiveren"
|
1359 |
|
1360 |
-
#: dashboard/publisher/adverts-error.php:
|
1361 |
#: dashboard/publisher/adverts-main.php:25
|
1362 |
msgid "-- Renew --"
|
1363 |
msgstr "-- Verlengen --"
|
1364 |
|
1365 |
-
#: dashboard/publisher/adverts-error.php:
|
1366 |
#: dashboard/publisher/adverts-main.php:26
|
1367 |
msgid "For 1 year"
|
1368 |
msgstr "Voor 1 jaar"
|
1369 |
|
1370 |
-
#: dashboard/publisher/adverts-error.php:
|
1371 |
#: dashboard/publisher/adverts-main.php:27
|
1372 |
msgid "For 180 days"
|
1373 |
msgstr "Gedurende 180 dagen"
|
1374 |
|
1375 |
-
#: dashboard/publisher/adverts-error.php:
|
1376 |
#: dashboard/publisher/adverts-main.php:28
|
1377 |
msgid "For 30 days"
|
1378 |
msgstr "Gedurende 30 dagen"
|
1379 |
|
1380 |
-
#: dashboard/publisher/adverts-error.php:
|
1381 |
#: dashboard/publisher/adverts-main.php:29
|
1382 |
msgid "For 7 days"
|
1383 |
msgstr "Gedurende 7 dagen"
|
1384 |
|
1385 |
-
#: dashboard/publisher/adverts-error.php:
|
1386 |
msgid "Configuration errors"
|
1387 |
msgstr "Configuratiefouten"
|
1388 |
|
1389 |
-
#: dashboard/publisher/adverts-error.php:
|
1390 |
msgid "Expires soon"
|
1391 |
msgstr "Verloopt binnenkort"
|
1392 |
|
1393 |
-
#: dashboard/publisher/adverts-error.php:
|
1394 |
#: dashboard/settings/maintenance.php:45
|
1395 |
msgid "Expired"
|
1396 |
msgstr "Verlopen"
|
@@ -3166,54 +3203,54 @@ msgstr ""
|
|
3166 |
"Dit aantal mag niet leeg zijn, lager zijn dan 60 of hoger zijn dan 86400 (24 "
|
3167 |
"uur)."
|
3168 |
|
3169 |
-
#: dashboard/support.php:
|
3170 |
msgid "Premium Support available in AdRotate Pro"
|
3171 |
msgstr "Premium-ondersteuning beschikbaar in AdRotate Pro"
|
3172 |
|
3173 |
-
#: dashboard/support.php:
|
3174 |
msgid "Premium support always comes first!"
|
3175 |
msgstr "Premium ondersteuning staat altijd op de eerste plaats!"
|
3176 |
|
3177 |
-
#: dashboard/support.php:
|
3178 |
msgid "No queuing up on the forum..."
|
3179 |
msgstr "Geen rij op het forum ..."
|
3180 |
|
3181 |
-
#: dashboard/support.php:
|
3182 |
msgid "Using this form includes essential information for a quick answer."
|
3183 |
msgstr ""
|
3184 |
"Het gebruik van dit formulier bevat essentiële informatie voor een snel "
|
3185 |
"antwoord."
|
3186 |
|
3187 |
-
#: dashboard/support.php:
|
3188 |
msgid "Available in AdRotate Professional!"
|
3189 |
msgstr "Beschikbaar in AdRotate Professional!"
|
3190 |
|
3191 |
-
#: dashboard/support.php:
|
3192 |
msgid "Your name:"
|
3193 |
msgstr "Jouw naam:"
|
3194 |
|
3195 |
-
#: dashboard/support.php:
|
3196 |
msgid "Your Email Address:"
|
3197 |
msgstr "Jouw e-mailadres:"
|
3198 |
|
3199 |
-
#: dashboard/support.php:
|
3200 |
msgid "Subject:"
|
3201 |
msgstr "Onderwerp:"
|
3202 |
|
3203 |
-
#: dashboard/support.php:
|
3204 |
msgid "Problem description / Question:"
|
3205 |
msgstr "Probleembeschrijving / Vraag:"
|
3206 |
|
3207 |
-
#: dashboard/support.php:
|
3208 |
msgid "Please log in to my website and take a look."
|
3209 |
msgstr "Log dan in op mijn website en neem een kijkje."
|
3210 |
|
3211 |
-
#: dashboard/support.php:
|
3212 |
msgid "When you send this form the following data will be submitted:"
|
3213 |
msgstr ""
|
3214 |
"Wanneer u dit formulier verzendt, worden de volgende gegevens ingediend:"
|
3215 |
|
3216 |
-
#: dashboard/support.php:
|
3217 |
msgid ""
|
3218 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3219 |
"information will be included with the message."
|
@@ -3221,18 +3258,61 @@ msgstr ""
|
|
3221 |
"Jouw naam, account e-mailadres, het website adres en een aantal WordPress "
|
3222 |
"gegevens zullen worden meegestuurd in het bericht."
|
3223 |
|
3224 |
-
#: dashboard/support.php:
|
3225 |
msgid "This information is treated as confidential and is mandatory."
|
3226 |
msgstr "Deze informatie wordt als vertrouwelijk behandeld en is verplicht."
|
3227 |
|
3228 |
-
#: dashboard/support.php:
|
3229 |
msgid "Get Help"
|
3230 |
msgstr "Hulp vragen"
|
3231 |
|
3232 |
-
#: dashboard/support.php:
|
3233 |
msgid "Premium Support is available in AdRotate Pro!"
|
3234 |
msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
3235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3236 |
#~ msgid "Check all adverts for configuration errors"
|
3237 |
#~ msgstr "Alle advertenties controleren op configuratiefouten"
|
3238 |
|
@@ -3587,9 +3667,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
|
3587 |
#~ msgid "Schedules"
|
3588 |
#~ msgstr "Schema’s"
|
3589 |
|
3590 |
-
#~ msgid "AdRotate Pro"
|
3591 |
-
#~ msgstr "AdRotate Pro"
|
3592 |
-
|
3593 |
#~ msgid "Get more features"
|
3594 |
#~ msgstr "Krijg meer functies"
|
3595 |
|
@@ -4709,20 +4786,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
|
4709 |
#~ msgid "Advertiser:"
|
4710 |
#~ msgstr "Adverteerder:"
|
4711 |
|
4712 |
-
#~ msgid ""
|
4713 |
-
#~ "These adverts are temporarily disabled. You can archive adverts to "
|
4714 |
-
#~ "permanently disable them."
|
4715 |
-
#~ msgstr ""
|
4716 |
-
#~ "Deze advertenties zijn tijdelijk uitgeschakeld. U advertenties archiveren "
|
4717 |
-
#~ "om ze permanent uit te schakelen."
|
4718 |
-
|
4719 |
-
#~ msgid ""
|
4720 |
-
#~ "Archiving adverts moves gathered statistics away from the live database "
|
4721 |
-
#~ "which may speed up your website."
|
4722 |
-
#~ msgstr ""
|
4723 |
-
#~ "Het archiveren van advertenties verplaatst verzamelde statistieken uit de "
|
4724 |
-
#~ "buurt van de live database die uw website kan versnellen."
|
4725 |
-
|
4726 |
#~ msgid "Archive (Permanently)"
|
4727 |
#~ msgstr "Archief (Permanent)"
|
4728 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:21-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-10-04 21:21-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-block.php:49
|
21 |
+
msgid "AdRotate - Advertisements"
|
22 |
+
msgstr "AdRotate - Advertenties"
|
23 |
+
|
24 |
#: adrotate-functions.php:800
|
25 |
msgid "Advert saved"
|
26 |
msgstr "Advertentie opgeslagen"
|
173 |
msgid "Unexpected error"
|
174 |
msgstr "Onverwachte fout"
|
175 |
|
176 |
+
#: adrotate-manage-publisher.php:877
|
177 |
msgid "AdRotate Advertiser"
|
178 |
msgstr "AdRotate Adverteerder"
|
179 |
|
180 |
+
#: adrotate-output.php:552
|
181 |
msgid "Oh no! Something went wrong!"
|
182 |
msgstr "Ohjee! Er ging iets mis!"
|
183 |
|
184 |
+
#: adrotate-output.php:553
|
185 |
msgid ""
|
186 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
187 |
"Verify if the url used is valid or log in via your browser."
|
190 |
"verifieren. Controleer of de gebruikte URL geldig is of log in via je "
|
191 |
"browser."
|
192 |
|
193 |
+
#: adrotate-output.php:554
|
194 |
msgid ""
|
195 |
"If you have received the url you want to visit via email, you are being "
|
196 |
"tricked!"
|
198 |
"Als je de URL die je wilt laden hebt ontvangen via email, wordt je wellicht "
|
199 |
"voor de gek gehouden!"
|
200 |
|
201 |
+
#: adrotate-output.php:555
|
202 |
msgid "Contact support if the issue persists:"
|
203 |
msgstr "Neem contact op met de helpdesk als het probleem zich blijft voordoen:"
|
204 |
|
205 |
+
#: adrotate-output.php:567
|
206 |
msgid ""
|
207 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
208 |
"restrictions!"
|
210 |
"Fout, Ad is op dit moment niet beschikbaar vanwege schema/geolocatie "
|
211 |
"beperkingen!"
|
212 |
|
213 |
+
#: adrotate-output.php:572
|
214 |
msgid ""
|
215 |
"Either there are no banners, they are disabled or none qualified for this "
|
216 |
"location!"
|
218 |
"Ofwel zijn er geen banners, ze zijn uitgeschakeld of er zijn geen "
|
219 |
"advertenties beschikbaar voor deze locatie!"
|
220 |
|
221 |
+
#: adrotate-output.php:577
|
222 |
msgid "Error, no Advert ID set! Check your syntax!"
|
223 |
msgstr "Fout, geen Ad-ID ingesteld! Controleer de code!"
|
224 |
|
225 |
+
#: adrotate-output.php:583
|
226 |
msgid "Error, no group ID set! Check your syntax!"
|
227 |
msgstr "Fout, geen groeps-ID ingesteld! Controleer de code!"
|
228 |
|
229 |
+
#: adrotate-output.php:588
|
230 |
msgid "Error, group does not exist! Check your syntax!"
|
231 |
msgstr "Fout, groep bestaat niet! Controleer de code!"
|
232 |
|
233 |
+
#: adrotate-output.php:594
|
234 |
msgid ""
|
235 |
"There was an error locating the database tables for AdRotate. Please "
|
236 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
239 |
"AdRotate. Dit is meestal op te lossen door AdRotate te deactiveren en "
|
240 |
"opnieuw activeren!!"
|
241 |
|
242 |
+
#: adrotate-output.php:594
|
243 |
+
msgid "If this does not solve the issue please seek support on the"
|
244 |
+
msgstr "Als dit het probleem niet oplost, zoek dan ondersteuning op de"
|
|
|
245 |
|
246 |
+
#: adrotate-output.php:600
|
247 |
msgid ""
|
248 |
"There was an error loading the page. Please try again by reloading the page "
|
249 |
"via the menu on the left."
|
251 |
"Er is een fout opgetreden bij het laden van de pagina. Probeer het opnieuw "
|
252 |
"door de pagina te herladen via het menu aan de linkerkant."
|
253 |
|
254 |
+
#: adrotate-output.php:600
|
255 |
+
msgid "If the issue persists please seek help on the"
|
256 |
+
msgstr "Als het probleem aanhoudt, zoek dan hulp bij de"
|
257 |
|
258 |
+
#: adrotate-output.php:606
|
259 |
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:20
|
264 |
msgid "Check adverts"
|
265 |
msgstr "Controleer advertenties"
|
266 |
|
267 |
+
#: adrotate-output.php:638
|
268 |
msgid ""
|
269 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
270 |
"site!"
|
272 |
"Je hebt ondersteuning voor caching ingeschakeld, maar W3 Total Cache is niet "
|
273 |
"actief op de site!"
|
274 |
|
275 |
+
#: adrotate-output.php:638
|
276 |
msgid "Disable W3 Total Cache Support"
|
277 |
msgstr "Schakel W3 Total Cache support uit"
|
278 |
|
279 |
+
#: adrotate-output.php:641
|
280 |
msgid ""
|
281 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
282 |
"not set."
|
284 |
"Je hebt ondersteuning voor caching ingeschakelt, maar de definitie "
|
285 |
"W3TC_DYNAMIC_SECURITY is niet ingesteld."
|
286 |
|
287 |
+
#: adrotate-output.php:641
|
288 |
msgid "How to configure W3 Total Cache"
|
289 |
msgstr "W3 Total Cache configureren"
|
290 |
|
291 |
+
#: adrotate-output.php:645
|
292 |
msgid ""
|
293 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
294 |
msgstr ""
|
295 |
"Je hebt ondersteuning voor caching ingeschakeld, maar Borlabs Cache is niet "
|
296 |
"actief op de site!"
|
297 |
|
298 |
+
#: adrotate-output.php:645
|
299 |
msgid "Disable Borlabs Cache Support"
|
300 |
msgstr "Ondersteuning voor Borlabs cache uitschakelen"
|
301 |
|
302 |
+
#: adrotate-output.php:650
|
303 |
msgid ""
|
304 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
305 |
msgstr ""
|
306 |
"Je hebt de ondersteuning voor Borlabs cache ingeschakeld, maar "
|
307 |
"Fragmentcaching is niet ingeschakeld!"
|
308 |
|
309 |
+
#: adrotate-output.php:650
|
310 |
msgid "Enable Fragment Caching"
|
311 |
msgstr "Fragmentcaching inschakelen"
|
312 |
|
313 |
+
#: adrotate-output.php:657
|
314 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
315 |
msgstr ""
|
316 |
"De map voor de banner van AdRotate is niet beschrijfbaar of bestaat niet."
|
317 |
|
318 |
+
#: adrotate-output.php:657
|
319 |
msgid "Set up your banner folder"
|
320 |
msgstr "De banner map instellen"
|
321 |
|
322 |
+
#: adrotate-output.php:660
|
323 |
msgid ""
|
324 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
325 |
"can delete this plugin after AdRotate Pro is activated."
|
327 |
"Je hebt AdRotate Professional geïnstalleerd. Stap over naar AdRotate Pro! Je "
|
328 |
"kunt deze plug-in verwijderen nadat AdRotate Pro is geactiveerd."
|
329 |
|
330 |
+
#: adrotate-output.php:660
|
331 |
msgid "Switch plugins"
|
332 |
msgstr "Stap over"
|
333 |
|
334 |
+
#: adrotate-output.php:663
|
335 |
msgid ""
|
336 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
337 |
"installed twice or your current installation has the wrong folder name. "
|
341 |
"geïnstalleerd of uw huidige installatie heeft de verkeerde map naam. "
|
342 |
"Installeer de plugin goed!"
|
343 |
|
344 |
+
#: adrotate-output.php:663
|
345 |
msgid "Installation instructions"
|
346 |
msgstr "Installatie-instructies"
|
347 |
|
348 |
+
#: adrotate-output.php:739
|
349 |
msgid "your attention:"
|
350 |
msgstr "jouw aandacht:"
|
351 |
|
352 |
+
#: adrotate-output.php:778
|
353 |
msgid ""
|
354 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
355 |
"menu. If you need help getting started take a look at the"
|
358 |
"te maken heeft, zit in dit menu. Als je hulp nodig hebt om aan de slag te "
|
359 |
"gaan, kijk dan eens naar de"
|
360 |
|
361 |
+
#: adrotate-output.php:778
|
362 |
msgid "manuals"
|
363 |
msgstr "handleidingen"
|
364 |
|
365 |
+
#: adrotate-output.php:778
|
366 |
msgid "and"
|
367 |
msgstr "en"
|
368 |
|
369 |
+
#: adrotate-output.php:778
|
370 |
msgid "forums"
|
371 |
msgstr "forums"
|
372 |
|
373 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
374 |
msgid "Post Tweet"
|
375 |
msgstr "Tweet plaatsen"
|
376 |
|
377 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
378 |
msgid "Share on Facebook"
|
379 |
msgstr "Deel op Facebook"
|
380 |
|
381 |
+
#: adrotate-output.php:833
|
382 |
msgid "Write review on wordpress.org"
|
383 |
msgstr "Schrijf een review op WordPress.org"
|
384 |
|
385 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
386 |
msgid "Thank you very much for your help and support!"
|
387 |
msgstr "Hartelijk dank voor je hulp!"
|
388 |
|
389 |
+
#: adrotate-output.php:864
|
390 |
msgid "Need help fast? Or do you have a question?"
|
391 |
msgstr "Snel hulp nodig? Of heb je een vraag?"
|
392 |
|
393 |
+
#: adrotate-output.php:865
|
394 |
msgid "Help AdRotate Grow"
|
395 |
msgstr "Help AdRotate groeien"
|
396 |
|
397 |
+
#: adrotate-output.php:866
|
398 |
msgid "Get more features with AdRotate Pro"
|
399 |
msgstr "Beschik over meer functies met AdRotate Pro"
|
400 |
|
401 |
+
#: adrotate-output.php:872
|
402 |
msgid ""
|
403 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
404 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
408 |
"manier om je antwoord te krijgen via het AdRotate-forum. Meestal beantwoord "
|
409 |
"ik vragen dezelfde dag, vaak met een oplossing in het eerste antwoord."
|
410 |
|
411 |
+
#: adrotate-output.php:873
|
412 |
msgid "AdRotate Manuals"
|
413 |
msgstr "AdRotate Handleidingen"
|
414 |
|
415 |
+
#: adrotate-output.php:873
|
416 |
msgid "Support Forums"
|
417 |
msgstr "Supportfora"
|
418 |
|
419 |
+
#: adrotate-output.php:874
|
420 |
msgid ""
|
421 |
"When posting on the forum, please include a brief description of the "
|
422 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
429 |
"extra informatie helpt altijd bij het krijgen van een beter antwoord of "
|
430 |
"advies."
|
431 |
|
432 |
+
#: adrotate-output.php:876
|
433 |
msgid ""
|
434 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
435 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
442 |
"maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
|
443 |
"te garanderen."
|
444 |
|
445 |
+
#: adrotate-output.php:877
|
446 |
msgid "Write review on WordPress.org"
|
447 |
msgstr "Schrijf een review op WordPress.org"
|
448 |
|
449 |
+
#: adrotate-output.php:880
|
450 |
msgid ""
|
451 |
"AdRotate Professional has a lot more functions for even better advertising "
|
452 |
"management. Check out the feature comparison tab on any of the product pages "
|
457 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
458 |
"heeft!"
|
459 |
|
460 |
+
#: adrotate-output.php:880
|
461 |
msgid "Compare Licenses"
|
462 |
msgstr "Licenties vergelijken"
|
463 |
|
464 |
+
#: adrotate-output.php:881
|
465 |
msgid "Single License"
|
466 |
msgstr "Enkele licentie"
|
467 |
|
468 |
+
#: adrotate-output.php:881
|
469 |
msgid "Use on ONE WordPress installation."
|
470 |
msgstr "Gebruik op één WordPress-installatie."
|
471 |
|
472 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
473 |
msgid "Buy now"
|
474 |
msgstr "Koop nu"
|
475 |
|
476 |
+
#: adrotate-output.php:882
|
477 |
msgid "Multi License"
|
478 |
msgstr "Multi Licentie"
|
479 |
|
480 |
+
#: adrotate-output.php:882
|
481 |
msgid "Use on up to FIVE WordPress installations."
|
482 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
483 |
|
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:106 adrotate.php:176
|
597 |
msgid "Manage Adverts"
|
598 |
msgstr "Advertenties beheren"
|
599 |
|
600 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
601 |
msgid "Manage Groups"
|
602 |
msgstr "Beheer Groepen"
|
603 |
|
604 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
605 |
msgid "Manage Schedules"
|
606 |
msgstr "Schema's beheren"
|
607 |
|
608 |
+
#: adrotate.php:109
|
609 |
msgid "Manage Media"
|
610 |
msgstr "Beheer Media"
|
611 |
|
612 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
620 |
msgid "Get AdRotate Pro"
|
621 |
msgstr "Koop AdRotate Pro"
|
622 |
|
623 |
+
#: adrotate.php:112
|
624 |
msgid "Support"
|
625 |
msgstr "Ondersteuning"
|
626 |
|
627 |
+
#: adrotate.php:113
|
628 |
msgid "Settings"
|
629 |
msgstr "Instellingen"
|
630 |
|
631 |
+
#: adrotate.php:132
|
632 |
msgid "Get AdRotate Professional"
|
633 |
msgstr "Koop AdRotate Professional"
|
634 |
|
635 |
+
#: adrotate.php:236 adrotate.php:308
|
636 |
msgid "Manage"
|
637 |
msgstr "Beheren"
|
638 |
|
639 |
+
#: adrotate.php:237
|
640 |
msgid "Advert Generator"
|
641 |
msgstr "Advertentie Generator"
|
642 |
|
643 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
644 |
msgid "New Advert"
|
645 |
msgstr "Nieuwe advertentie"
|
646 |
|
647 |
+
#: adrotate.php:309
|
648 |
msgid "Add New"
|
649 |
msgstr "Nieuw"
|
650 |
|
651 |
+
#: adrotate.php:377
|
652 |
msgid "Manage Media and Assets"
|
653 |
msgstr "Media en assets beheren"
|
654 |
|
655 |
+
#: adrotate.php:381
|
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 |
"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:423
|
664 |
msgid "Advert Statistics"
|
665 |
msgstr "Statistieken voor advertenties"
|
666 |
|
667 |
+
#: adrotate.php:466
|
668 |
msgid "AdRotate Support"
|
669 |
msgstr "Ondersteuning voor AdRotate"
|
670 |
|
671 |
+
#: adrotate.php:498
|
672 |
msgid "AdRotate Settings"
|
673 |
msgstr "AdRotate-instellingen"
|
674 |
|
675 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
676 |
msgid "General"
|
677 |
msgstr "Algemeen"
|
678 |
|
679 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
680 |
msgid "Notifications"
|
681 |
msgstr "Meldingen"
|
682 |
|
683 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
684 |
msgid "Geo Targeting"
|
685 |
msgstr "Geo-targeting"
|
686 |
|
687 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
688 |
msgid "Access Roles"
|
689 |
msgstr "Rollen"
|
690 |
|
691 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
692 |
msgid "Miscellaneous"
|
693 |
msgstr "Diversen"
|
694 |
|
695 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
696 |
msgid "Maintenance"
|
697 |
msgstr "Onderhoud"
|
698 |
|
833 |
msgid "Disabled Adverts"
|
834 |
msgstr "Uitgeschakelde Advertenties"
|
835 |
|
836 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
837 |
+
msgid ""
|
838 |
+
"These adverts are temporarily disabled. You can archive adverts to "
|
839 |
+
"permanently disable them."
|
840 |
+
msgstr ""
|
841 |
+
"Deze advertenties zijn tijdelijk uitgeschakeld. U advertenties archiveren om "
|
842 |
+
"ze permanent uit te schakelen."
|
843 |
+
|
844 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
845 |
+
msgid ""
|
846 |
+
"Archiving adverts moves gathered statistics away from the live database "
|
847 |
+
"which may speed up your website."
|
848 |
+
msgstr ""
|
849 |
+
"Het archiveren van advertenties verplaatst verzamelde statistieken uit de "
|
850 |
+
"buurt van de live database die uw website kan versnellen."
|
851 |
+
|
852 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
853 |
+
#: dashboard/publisher/adverts-error.php:20
|
854 |
#: dashboard/publisher/adverts-main.php:20
|
855 |
#: dashboard/publisher/groups-main.php:20
|
856 |
#: dashboard/publisher/schedules-main.php:21
|
857 |
msgid "Bulk Actions"
|
858 |
msgstr "Bulk acties"
|
859 |
|
860 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
861 |
#: dashboard/publisher/adverts-edit.php:186
|
862 |
msgid "Activate"
|
863 |
msgstr "Activeren"
|
864 |
|
865 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
866 |
+
#: dashboard/publisher/adverts-error.php:22
|
867 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
868 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
869 |
msgid "Delete"
|
870 |
msgstr "Verwijderen"
|
871 |
|
872 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
873 |
+
#: dashboard/publisher/adverts-error.php:23
|
874 |
#: dashboard/publisher/adverts-main.php:23
|
875 |
msgid "Reset stats"
|
876 |
msgstr "Reset statistieken"
|
877 |
|
878 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
879 |
+
#: dashboard/publisher/adverts-error.php:30
|
880 |
#: dashboard/publisher/adverts-main.php:30
|
881 |
#: dashboard/publisher/groups-main.php:24
|
882 |
#: dashboard/publisher/schedules-main.php:22
|
883 |
msgid "Go"
|
884 |
msgstr "Ga"
|
885 |
|
886 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
887 |
#: dashboard/publisher/adverts-edit.php:263
|
888 |
+
#: dashboard/publisher/adverts-error.php:40
|
889 |
#: dashboard/publisher/adverts-main.php:39
|
890 |
#: dashboard/publisher/groups-edit.php:350
|
891 |
#: dashboard/publisher/groups-main.php:32
|
893 |
msgid "ID"
|
894 |
msgstr "ID"
|
895 |
|
896 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
897 |
+
#: dashboard/publisher/adverts-error.php:42
|
898 |
#: dashboard/publisher/adverts-main.php:40
|
899 |
#: dashboard/publisher/schedules-main.php:32
|
900 |
msgid "Start / End"
|
901 |
msgstr "Begin/einde"
|
902 |
|
903 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
904 |
#: dashboard/publisher/adverts-edit.php:116
|
905 |
#: dashboard/publisher/adverts-edit.php:264
|
906 |
+
#: dashboard/publisher/adverts-error.php:41
|
907 |
#: dashboard/publisher/adverts-main.php:41
|
908 |
#: dashboard/publisher/groups-edit.php:65
|
909 |
#: dashboard/publisher/groups-edit.php:351
|
912 |
msgid "Name"
|
913 |
msgstr "Naam"
|
914 |
|
915 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
916 |
#: dashboard/publisher/adverts-main.php:43
|
917 |
#: dashboard/publisher/groups-edit.php:355
|
918 |
#: dashboard/publisher/groups-main.php:36
|
919 |
msgid "Shown"
|
920 |
msgstr "Getoonde"
|
921 |
|
922 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
923 |
#: dashboard/publisher/adverts-main.php:45
|
924 |
#: dashboard/publisher/groups-edit.php:356
|
925 |
#: dashboard/publisher/groups-main.php:38
|
940 |
msgid "Clicks"
|
941 |
msgstr "Kliks"
|
942 |
|
943 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
944 |
#: dashboard/publisher/adverts-main.php:47
|
945 |
#: dashboard/publisher/statistics-advert.php:53
|
946 |
#: dashboard/publisher/statistics-advert.php:59
|
959 |
msgid "CTR"
|
960 |
msgstr "CTR"
|
961 |
|
962 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
963 |
+
#: dashboard/publisher/adverts-error.php:57
|
964 |
#: dashboard/publisher/adverts-main.php:69
|
965 |
#: dashboard/publisher/groups-main.php:70
|
966 |
msgid "Edit"
|
967 |
msgstr "Bewerken"
|
968 |
|
969 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
970 |
+
#: dashboard/publisher/adverts-error.php:57
|
971 |
#: dashboard/publisher/adverts-main.php:69
|
972 |
#: dashboard/publisher/groups-main.php:70
|
973 |
msgid "Stats"
|
974 |
msgstr "Statistieken"
|
975 |
|
976 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
977 |
+
#: dashboard/publisher/adverts-error.php:57
|
978 |
#: dashboard/publisher/adverts-main.php:69
|
979 |
msgid "Groups:"
|
980 |
msgstr "Groepen:"
|
1371 |
msgid "Adverts that need attention"
|
1372 |
msgstr "Advertenties die aandacht nodig hebben"
|
1373 |
|
1374 |
+
#: dashboard/publisher/adverts-error.php:13
|
1375 |
+
msgid ""
|
1376 |
+
"The adverts listed here are currently not showing on your website. This is "
|
1377 |
+
"because they are almost expired, have expired or have configuration issues."
|
1378 |
+
msgstr ""
|
1379 |
+
"De advertenties die hier worden vermeld, worden momenteel niet weergegeven "
|
1380 |
+
"op je website. Dit komt omdat ze bijna verlopen zijn, zijn verlopen of "
|
1381 |
+
"configuratieproblemen hebben."
|
1382 |
+
|
1383 |
+
#: dashboard/publisher/adverts-error.php:13
|
1384 |
+
msgid ""
|
1385 |
+
"To fix the issue edit each advert and look for one or more notification at "
|
1386 |
+
"the top to see what AdRotate thinks is wrong with it."
|
1387 |
+
msgstr ""
|
1388 |
+
"Om het probleem op te lossen, bewerk je elke advertentie en refereer je naar "
|
1389 |
+
"één of meer meldingen bovenaan om te zien wat AdRotate denkt dat er mis mee "
|
1390 |
+
"is."
|
1391 |
+
|
1392 |
+
#: dashboard/publisher/adverts-error.php:21
|
1393 |
#: dashboard/publisher/adverts-main.php:21
|
1394 |
msgid "Deactivate"
|
1395 |
msgstr "Deactiveren"
|
1396 |
|
1397 |
+
#: dashboard/publisher/adverts-error.php:24
|
1398 |
#: dashboard/publisher/adverts-main.php:25
|
1399 |
msgid "-- Renew --"
|
1400 |
msgstr "-- Verlengen --"
|
1401 |
|
1402 |
+
#: dashboard/publisher/adverts-error.php:25
|
1403 |
#: dashboard/publisher/adverts-main.php:26
|
1404 |
msgid "For 1 year"
|
1405 |
msgstr "Voor 1 jaar"
|
1406 |
|
1407 |
+
#: dashboard/publisher/adverts-error.php:26
|
1408 |
#: dashboard/publisher/adverts-main.php:27
|
1409 |
msgid "For 180 days"
|
1410 |
msgstr "Gedurende 180 dagen"
|
1411 |
|
1412 |
+
#: dashboard/publisher/adverts-error.php:27
|
1413 |
#: dashboard/publisher/adverts-main.php:28
|
1414 |
msgid "For 30 days"
|
1415 |
msgstr "Gedurende 30 dagen"
|
1416 |
|
1417 |
+
#: dashboard/publisher/adverts-error.php:28
|
1418 |
#: dashboard/publisher/adverts-main.php:29
|
1419 |
msgid "For 7 days"
|
1420 |
msgstr "Gedurende 7 dagen"
|
1421 |
|
1422 |
+
#: dashboard/publisher/adverts-error.php:65
|
1423 |
msgid "Configuration errors"
|
1424 |
msgstr "Configuratiefouten"
|
1425 |
|
1426 |
+
#: dashboard/publisher/adverts-error.php:66
|
1427 |
msgid "Expires soon"
|
1428 |
msgstr "Verloopt binnenkort"
|
1429 |
|
1430 |
+
#: dashboard/publisher/adverts-error.php:67
|
1431 |
#: dashboard/settings/maintenance.php:45
|
1432 |
msgid "Expired"
|
1433 |
msgstr "Verlopen"
|
3203 |
"Dit aantal mag niet leeg zijn, lager zijn dan 60 of hoger zijn dan 86400 (24 "
|
3204 |
"uur)."
|
3205 |
|
3206 |
+
#: dashboard/support.php:74
|
3207 |
msgid "Premium Support available in AdRotate Pro"
|
3208 |
msgstr "Premium-ondersteuning beschikbaar in AdRotate Pro"
|
3209 |
|
3210 |
+
#: dashboard/support.php:77
|
3211 |
msgid "Premium support always comes first!"
|
3212 |
msgstr "Premium ondersteuning staat altijd op de eerste plaats!"
|
3213 |
|
3214 |
+
#: dashboard/support.php:77
|
3215 |
msgid "No queuing up on the forum..."
|
3216 |
msgstr "Geen rij op het forum ..."
|
3217 |
|
3218 |
+
#: dashboard/support.php:77
|
3219 |
msgid "Using this form includes essential information for a quick answer."
|
3220 |
msgstr ""
|
3221 |
"Het gebruik van dit formulier bevat essentiële informatie voor een snel "
|
3222 |
"antwoord."
|
3223 |
|
3224 |
+
#: dashboard/support.php:77
|
3225 |
msgid "Available in AdRotate Professional!"
|
3226 |
msgstr "Beschikbaar in AdRotate Professional!"
|
3227 |
|
3228 |
+
#: dashboard/support.php:79
|
3229 |
msgid "Your name:"
|
3230 |
msgstr "Jouw naam:"
|
3231 |
|
3232 |
+
#: dashboard/support.php:80
|
3233 |
msgid "Your Email Address:"
|
3234 |
msgstr "Jouw e-mailadres:"
|
3235 |
|
3236 |
+
#: dashboard/support.php:81
|
3237 |
msgid "Subject:"
|
3238 |
msgstr "Onderwerp:"
|
3239 |
|
3240 |
+
#: dashboard/support.php:82
|
3241 |
msgid "Problem description / Question:"
|
3242 |
msgstr "Probleembeschrijving / Vraag:"
|
3243 |
|
3244 |
+
#: dashboard/support.php:83
|
3245 |
msgid "Please log in to my website and take a look."
|
3246 |
msgstr "Log dan in op mijn website en neem een kijkje."
|
3247 |
|
3248 |
+
#: dashboard/support.php:85
|
3249 |
msgid "When you send this form the following data will be submitted:"
|
3250 |
msgstr ""
|
3251 |
"Wanneer u dit formulier verzendt, worden de volgende gegevens ingediend:"
|
3252 |
|
3253 |
+
#: dashboard/support.php:86
|
3254 |
msgid ""
|
3255 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3256 |
"information will be included with the message."
|
3258 |
"Jouw naam, account e-mailadres, het website adres en een aantal WordPress "
|
3259 |
"gegevens zullen worden meegestuurd in het bericht."
|
3260 |
|
3261 |
+
#: dashboard/support.php:86
|
3262 |
msgid "This information is treated as confidential and is mandatory."
|
3263 |
msgstr "Deze informatie wordt als vertrouwelijk behandeld en is verplicht."
|
3264 |
|
3265 |
+
#: dashboard/support.php:89
|
3266 |
msgid "Get Help"
|
3267 |
msgstr "Hulp vragen"
|
3268 |
|
3269 |
+
#: dashboard/support.php:89
|
3270 |
msgid "Premium Support is available in AdRotate Pro!"
|
3271 |
msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
3272 |
|
3273 |
+
#: library/block.js:19 library/block.js:49
|
3274 |
+
msgid "AdRotate Advert"
|
3275 |
+
msgstr "AdRotate Advertentie"
|
3276 |
+
|
3277 |
+
#: library/block.js:22
|
3278 |
+
msgid "Show a single advert by entering an advert ID."
|
3279 |
+
msgstr "Geef één advertentie weer door een advertentie-ID in te voeren."
|
3280 |
+
|
3281 |
+
#: library/block.js:52
|
3282 |
+
msgid "Enter an Advert ID (numbers only):"
|
3283 |
+
msgstr "Voer een advertentie-ID in (alleen cijfers):"
|
3284 |
+
|
3285 |
+
#: library/block.js:63
|
3286 |
+
msgid ""
|
3287 |
+
"You can find the advert ID in Manage Adverts. Any special markup, code or "
|
3288 |
+
"layout styles can be applied in the advert itself or by placing the advert "
|
3289 |
+
"in a group."
|
3290 |
+
msgstr ""
|
3291 |
+
"Je kunt de advertentie-ID vinden in het Advertenties beheren dashboard. "
|
3292 |
+
"Eventuele speciale codes of lay-outstijlen kunnen worden toegepast in de "
|
3293 |
+
"advertentie zelf of door de advertentie in een groep te plaatsen."
|
3294 |
+
|
3295 |
+
#: library/block.js:73 library/block.js:103
|
3296 |
+
msgid "AdRotate Group"
|
3297 |
+
msgstr "AdRotate Groep"
|
3298 |
+
|
3299 |
+
#: library/block.js:76
|
3300 |
+
msgid "Show a group of adverts by entering a group ID."
|
3301 |
+
msgstr "Geef een groep advertenties weer door een groeps-ID in te voeren."
|
3302 |
+
|
3303 |
+
#: library/block.js:106
|
3304 |
+
msgid "Enter a group ID (numbers only):"
|
3305 |
+
msgstr "Voer een groeps-ID in (alleen nummers):"
|
3306 |
+
|
3307 |
+
#: library/block.js:117
|
3308 |
+
msgid ""
|
3309 |
+
"You can find the group ID in Manage Groups. Any special markup, code or "
|
3310 |
+
"layout styles can be applied in the group wrapper when editing the group."
|
3311 |
+
msgstr ""
|
3312 |
+
"Je vindt het groeps-id in het Groepen beheren dashboard. Eventuele speciale "
|
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 |
|
3667 |
#~ msgid "Schedules"
|
3668 |
#~ msgstr "Schema’s"
|
3669 |
|
|
|
|
|
|
|
3670 |
#~ msgid "Get more features"
|
3671 |
#~ msgstr "Krijg meer functies"
|
3672 |
|
4786 |
#~ msgid "Advertiser:"
|
4787 |
#~ msgstr "Adverteerder:"
|
4788 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4789 |
#~ msgid "Archive (Permanently)"
|
4790 |
#~ msgstr "Archief (Permanent)"
|
4791 |
|
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-04
|
6 |
-
"PO-Revision-Date: 2022-04
|
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"
|
@@ -22,6 +22,10 @@ msgstr ""
|
|
22 |
"X-Source-Language: C\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
|
|
|
|
|
|
|
|
25 |
#: adrotate-functions.php:800
|
26 |
msgid "Advert saved"
|
27 |
msgstr "Reklama zapisana"
|
@@ -171,15 +175,15 @@ msgstr ""
|
|
171 |
msgid "Unexpected error"
|
172 |
msgstr "Nieoczekiwany błąd"
|
173 |
|
174 |
-
#: adrotate-manage-publisher.php:
|
175 |
msgid "AdRotate Advertiser"
|
176 |
msgstr "Reklamodawca AdRotate"
|
177 |
|
178 |
-
#: adrotate-output.php:
|
179 |
msgid "Oh no! Something went wrong!"
|
180 |
msgstr "Uwaga! Coś poszło nie tak!"
|
181 |
|
182 |
-
#: adrotate-output.php:
|
183 |
msgid ""
|
184 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
185 |
"Verify if the url used is valid or log in via your browser."
|
@@ -187,7 +191,7 @@ msgstr ""
|
|
187 |
"Wordpress nie mógł sprawdzić poprawności klikniętego odnośnika. Sprawdź, czy "
|
188 |
"odnośnik jest prawidłowy lub zaloguj się w przeglądarce."
|
189 |
|
190 |
-
#: adrotate-output.php:
|
191 |
msgid ""
|
192 |
"If you have received the url you want to visit via email, you are being "
|
193 |
"tricked!"
|
@@ -195,11 +199,11 @@ msgstr ""
|
|
195 |
"Jeśli otrzymałeś e-mail z odnośnikiem, który chciałeś odwiedzić, zostałeś "
|
196 |
"oszukany!"
|
197 |
|
198 |
-
#: adrotate-output.php:
|
199 |
msgid "Contact support if the issue persists:"
|
200 |
msgstr "Skontaktuj się z pomocą techniczną, jeśli problem się powtórzy:"
|
201 |
|
202 |
-
#: adrotate-output.php:
|
203 |
msgid ""
|
204 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
205 |
"restrictions!"
|
@@ -207,25 +211,25 @@ msgstr ""
|
|
207 |
"Błąd, ogłoszenie nie jest obecnie dostępne z powodu ograniczeń harmonogramu/"
|
208 |
"geolokalizacji!"
|
209 |
|
210 |
-
#: adrotate-output.php:
|
211 |
msgid ""
|
212 |
"Either there are no banners, they are disabled or none qualified for this "
|
213 |
"location!"
|
214 |
msgstr "Brak banerów, są wyłączone lub brak ich tej lokalizacji!"
|
215 |
|
216 |
-
#: adrotate-output.php:
|
217 |
msgid "Error, no Advert ID set! Check your syntax!"
|
218 |
msgstr "Błąd, brak ustawionego identyfikatora reklamy! Sprawdź składnię!"
|
219 |
|
220 |
-
#: adrotate-output.php:
|
221 |
msgid "Error, no group ID set! Check your syntax!"
|
222 |
msgstr "Błąd, nie wybrano żadnego ID grupy! Sprawdź składnię!"
|
223 |
|
224 |
-
#: adrotate-output.php:
|
225 |
msgid "Error, group does not exist! Check your syntax!"
|
226 |
msgstr "Błąd, grupa nie istnieje! Sprawdź składnię!"
|
227 |
|
228 |
-
#: adrotate-output.php:
|
229 |
msgid ""
|
230 |
"There was an error locating the database tables for AdRotate. Please "
|
231 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -233,11 +237,11 @@ msgstr ""
|
|
233 |
"Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz, a potem "
|
234 |
"włącz AdRote w panelu wtyczek!"
|
235 |
|
236 |
-
#: adrotate-output.php:
|
237 |
-
msgid "If this does not solve the issue please seek support
|
238 |
-
msgstr "Jeśli to nie
|
239 |
|
240 |
-
#: adrotate-output.php:
|
241 |
msgid ""
|
242 |
"There was an error loading the page. Please try again by reloading the page "
|
243 |
"via the menu on the left."
|
@@ -245,15 +249,15 @@ msgstr ""
|
|
245 |
"Problem podczas wczytywania strony. Proszę odświeżyć stronę za pomocą menu "
|
246 |
"po lewej."
|
247 |
|
248 |
-
#: adrotate-output.php:
|
249 |
-
msgid "If the issue persists please seek help
|
250 |
-
msgstr "Jeśli
|
251 |
|
252 |
-
#: adrotate-output.php:
|
253 |
msgid "An unknown error occured."
|
254 |
msgstr "Wystąpił nieznany błąd."
|
255 |
|
256 |
-
#: adrotate-output.php:
|
257 |
#, php-format
|
258 |
msgid "One advert is expired."
|
259 |
msgid_plural "%1$s adverts expired!"
|
@@ -261,12 +265,12 @@ msgstr[0] "%1$s reklama wygasła."
|
|
261 |
msgstr[1] "%1$s reklamy wygasły!"
|
262 |
msgstr[2] "%1$s reklam wygasło!"
|
263 |
|
264 |
-
#: adrotate-output.php:
|
265 |
#: dashboard/settings/maintenance.php:20
|
266 |
msgid "Check adverts"
|
267 |
msgstr "Sprawdź reklamy"
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
#, php-format
|
271 |
msgid "One advert expires soon."
|
272 |
msgid_plural "%1$s adverts are almost expiring!"
|
@@ -274,7 +278,7 @@ msgstr[0] "%1$s reklama wkrótce wygaśnie."
|
|
274 |
msgstr[1] "%1$s reklamy wkrótce wygasną!"
|
275 |
msgstr[2] "%1$s reklam wkrótce wygaśnie!"
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
#, php-format
|
279 |
msgid "One advert with configuration errors."
|
280 |
msgid_plural "%1$s adverts have configuration errors!"
|
@@ -282,57 +286,57 @@ msgstr[0] "%1s reklama z błędami konfiguracji."
|
|
282 |
msgstr[1] "%1s reklam z błędami konfiguracji!"
|
283 |
msgstr[2] "%1s reklam z błędami konfiguracji!"
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid ""
|
287 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
288 |
"site!"
|
289 |
msgstr "Włączyłeś obsługę cache, ale W3 Total Cache nie jest włączone!"
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "Disable W3 Total Cache Support"
|
293 |
msgstr "Wyłącz wsparcie dla W3 Total Cache"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
msgid ""
|
297 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
298 |
"not set."
|
299 |
msgstr ""
|
300 |
"Włączyłeś obsługę cache, ale nie ustawiono definicji W3TC_DYNAMIC_SECURITY."
|
301 |
|
302 |
-
#: adrotate-output.php:
|
303 |
msgid "How to configure W3 Total Cache"
|
304 |
msgstr "Jak skonfigurować W3 Total Cache"
|
305 |
|
306 |
-
#: adrotate-output.php:
|
307 |
msgid ""
|
308 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
309 |
msgstr ""
|
310 |
"Włączyłeś obsługę cache, ale Borlabs Cache nie jest włączone w Twojej "
|
311 |
"witrynie!"
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
msgid "Disable Borlabs Cache Support"
|
315 |
msgstr "Wyłącz obsługę Borlabs Cache"
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
msgid ""
|
319 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
320 |
msgstr ""
|
321 |
"Włączyłeś obsługę Borlabs Cache, ale Fragment caching nie jest włączony!"
|
322 |
|
323 |
-
#: adrotate-output.php:
|
324 |
msgid "Enable Fragment Caching"
|
325 |
msgstr "Włącz Fragment Caching"
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
329 |
msgstr "Folder banerów AdRotate jest chroniony przed zapisem lub nie istnieje."
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid "Set up your banner folder"
|
333 |
msgstr "Ustaw folder banerów"
|
334 |
|
335 |
-
#: adrotate-output.php:
|
336 |
msgid ""
|
337 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
338 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -340,11 +344,11 @@ msgstr ""
|
|
340 |
"Masz zainstalowany AdRotate Professional. Proszę przełączyć się na AdRotate "
|
341 |
"Pro! Możesz usunąć tę wtyczkę po aktywacji AdRotate Pro."
|
342 |
|
343 |
-
#: adrotate-output.php:
|
344 |
msgid "Switch plugins"
|
345 |
msgstr "Przełączanie wtyczek"
|
346 |
|
347 |
-
#: adrotate-output.php:
|
348 |
msgid ""
|
349 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
350 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -354,22 +358,22 @@ msgstr ""
|
|
354 |
"razy lub bieżąca instalacja ma niewłaściwą nazwę folderu. Proszę "
|
355 |
"zainstalować wtyczkę poprawnie!"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid "Installation instructions"
|
359 |
msgstr "Instrukcje montażowe"
|
360 |
|
361 |
-
#: adrotate-output.php:
|
362 |
msgid "one issue that requires"
|
363 |
msgid_plural "several issues that require"
|
364 |
msgstr[0] "jeden problem wymagający"
|
365 |
msgstr[1] "kilka problemów wymagających"
|
366 |
msgstr[2] "wiele problemów wymagających"
|
367 |
|
368 |
-
#: adrotate-output.php:
|
369 |
msgid "your attention:"
|
370 |
msgstr "twoją uwagę:"
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
msgid ""
|
374 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
375 |
"menu. If you need help getting started take a look at the"
|
@@ -377,47 +381,47 @@ msgstr ""
|
|
377 |
"Dziękujemy za wybranie AdRotate Professional. Wszystko związane z AdRotate "
|
378 |
"jest w tym menu. Jeśli potrzebujesz pomocy przy rozpoczęciu"
|
379 |
|
380 |
-
#: adrotate-output.php:
|
381 |
msgid "manuals"
|
382 |
msgstr "podręczników"
|
383 |
|
384 |
-
#: adrotate-output.php:
|
385 |
msgid "and"
|
386 |
msgstr "i"
|
387 |
|
388 |
-
#: adrotate-output.php:
|
389 |
msgid "forums"
|
390 |
msgstr "forum"
|
391 |
|
392 |
-
#: adrotate-output.php:
|
393 |
msgid "Post Tweet"
|
394 |
msgstr "Opublikuj tweet"
|
395 |
|
396 |
-
#: adrotate-output.php:
|
397 |
msgid "Share on Facebook"
|
398 |
msgstr "Udostępnij na Facebooku"
|
399 |
|
400 |
-
#: adrotate-output.php:
|
401 |
msgid "Write review on wordpress.org"
|
402 |
msgstr "Napisz recenzję firmy WordPress.org"
|
403 |
|
404 |
-
#: adrotate-output.php:
|
405 |
msgid "Thank you very much for your help and support!"
|
406 |
msgstr "Dziękuję bardzo za pomoc i wsparcie!"
|
407 |
|
408 |
-
#: adrotate-output.php:
|
409 |
msgid "Need help fast? Or do you have a question?"
|
410 |
msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
|
411 |
|
412 |
-
#: adrotate-output.php:
|
413 |
msgid "Help AdRotate Grow"
|
414 |
msgstr "Pomóż AdRotate rosnąć"
|
415 |
|
416 |
-
#: adrotate-output.php:
|
417 |
msgid "Get more features with AdRotate Pro"
|
418 |
msgstr "Więcej ustawień z AdRotate Pro"
|
419 |
|
420 |
-
#: adrotate-output.php:
|
421 |
msgid ""
|
422 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
423 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -428,15 +432,15 @@ msgstr ""
|
|
428 |
"AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
|
429 |
"rozwiązaniem w pierwszej odpowiedzi."
|
430 |
|
431 |
-
#: adrotate-output.php:
|
432 |
msgid "AdRotate Manuals"
|
433 |
msgstr "Podręczniki AdRotate"
|
434 |
|
435 |
-
#: adrotate-output.php:
|
436 |
msgid "Support Forums"
|
437 |
msgstr "Forum wsparcia"
|
438 |
|
439 |
-
#: adrotate-output.php:
|
440 |
msgid ""
|
441 |
"When posting on the forum, please include a brief description of the "
|
442 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -448,7 +452,7 @@ msgstr ""
|
|
448 |
"wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
|
449 |
"pomaga uzyskać lepszą odpowiedź lub poradę."
|
450 |
|
451 |
-
#: adrotate-output.php:
|
452 |
msgid ""
|
453 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
454 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -461,11 +465,11 @@ msgstr ""
|
|
461 |
"mediach społecznościowych nic cię nie kosztuje, ale robienie tego jest "
|
462 |
"bardzo pomocne jako promocja, która pomaga zapewnić przyszły rozwój."
|
463 |
|
464 |
-
#: adrotate-output.php:
|
465 |
msgid "Write review on WordPress.org"
|
466 |
msgstr "Napisz recenzję firmy WordPress.org"
|
467 |
|
468 |
-
#: adrotate-output.php:
|
469 |
msgid ""
|
470 |
"AdRotate Professional has a lot more functions for even better advertising "
|
471 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -476,27 +480,27 @@ msgstr ""
|
|
476 |
"stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
|
477 |
"Ciebie!"
|
478 |
|
479 |
-
#: adrotate-output.php:
|
480 |
msgid "Compare Licenses"
|
481 |
msgstr "Porównaj licencje"
|
482 |
|
483 |
-
#: adrotate-output.php:
|
484 |
msgid "Single License"
|
485 |
msgstr "Licencja"
|
486 |
|
487 |
-
#: adrotate-output.php:
|
488 |
msgid "Use on ONE WordPress installation."
|
489 |
msgstr "Użyj na JEDNEJ instalacji WordPress."
|
490 |
|
491 |
-
#: adrotate-output.php:
|
492 |
msgid "Buy now"
|
493 |
msgstr "Kup teraz"
|
494 |
|
495 |
-
#: adrotate-output.php:
|
496 |
msgid "Multi License"
|
497 |
msgstr "Multi licencja"
|
498 |
|
499 |
-
#: adrotate-output.php:
|
500 |
msgid "Use on up to FIVE WordPress installations."
|
501 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
502 |
|
@@ -611,66 +615,66 @@ msgstr "ID:"
|
|
611 |
msgid "Fill in the ID of the type you want to display!"
|
612 |
msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
|
613 |
|
614 |
-
#: adrotate.php:
|
615 |
msgid "Manage Adverts"
|
616 |
msgstr "Zarządzaj reklamami"
|
617 |
|
618 |
-
#: adrotate.php:
|
619 |
msgid "Manage Groups"
|
620 |
msgstr "Zarządzaj grupami"
|
621 |
|
622 |
-
#: adrotate.php:
|
623 |
msgid "Manage Schedules"
|
624 |
msgstr "Zarządzaj harmonogramami"
|
625 |
|
626 |
-
#: adrotate.php:
|
627 |
msgid "Manage Media"
|
628 |
msgstr "Zarządzaj mediami"
|
629 |
|
630 |
-
#: adrotate.php:
|
631 |
#: dashboard/publisher/adverts-edit.php:178
|
632 |
#: dashboard/publisher/statistics-main.php:23
|
633 |
#: dashboard/settings/statistics.php:17
|
634 |
msgid "Statistics"
|
635 |
msgstr "Statystyka"
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
msgid "Get AdRotate Pro"
|
639 |
msgstr "Pobierz AdRotate Pro"
|
640 |
|
641 |
-
#: adrotate.php:
|
642 |
msgid "Support"
|
643 |
msgstr "Wsparcie"
|
644 |
|
645 |
-
#: adrotate.php:
|
646 |
msgid "Settings"
|
647 |
msgstr "Ustawienia"
|
648 |
|
649 |
-
#: adrotate.php:
|
650 |
msgid "Get AdRotate Professional"
|
651 |
msgstr "Uzyskaj AdRotate Professional"
|
652 |
|
653 |
-
#: adrotate.php:
|
654 |
msgid "Manage"
|
655 |
msgstr "Zarządzaj"
|
656 |
|
657 |
-
#: adrotate.php:
|
658 |
msgid "Advert Generator"
|
659 |
msgstr "Generator reklam"
|
660 |
|
661 |
-
#: adrotate.php:
|
662 |
msgid "New Advert"
|
663 |
msgstr "Nowa reklama"
|
664 |
|
665 |
-
#: adrotate.php:
|
666 |
msgid "Add New"
|
667 |
msgstr "Dodaj nową"
|
668 |
|
669 |
-
#: adrotate.php:
|
670 |
msgid "Manage Media and Assets"
|
671 |
msgstr "Zarządzanie multimediami i zasobami"
|
672 |
|
673 |
-
#: adrotate.php:
|
674 |
msgid ""
|
675 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
676 |
"if you have HTML5 adverts containing multiple files."
|
@@ -678,39 +682,39 @@ msgstr ""
|
|
678 |
"Przesyłać obrazy do folderu banery AdRotate Pro stąd. Jest to przydatne, "
|
679 |
"jeśli masz reklamy HTML5, zawierające wiele plików."
|
680 |
|
681 |
-
#: adrotate.php:
|
682 |
msgid "Advert Statistics"
|
683 |
msgstr "Statystyki reklam"
|
684 |
|
685 |
-
#: adrotate.php:
|
686 |
msgid "AdRotate Support"
|
687 |
msgstr "Pomoc techniczna adrotate"
|
688 |
|
689 |
-
#: adrotate.php:
|
690 |
msgid "AdRotate Settings"
|
691 |
msgstr "Ustawienia AdRotate"
|
692 |
|
693 |
-
#: adrotate.php:
|
694 |
msgid "General"
|
695 |
msgstr "Ogólne"
|
696 |
|
697 |
-
#: adrotate.php:
|
698 |
msgid "Notifications"
|
699 |
msgstr "Powiadomienia"
|
700 |
|
701 |
-
#: adrotate.php:
|
702 |
msgid "Geo Targeting"
|
703 |
msgstr "Geolokalizacja"
|
704 |
|
705 |
-
#: adrotate.php:
|
706 |
msgid "Access Roles"
|
707 |
msgstr "Rola programu Access"
|
708 |
|
709 |
-
#: adrotate.php:
|
710 |
msgid "Miscellaneous"
|
711 |
msgstr "Różne"
|
712 |
|
713 |
-
#: adrotate.php:
|
714 |
msgid "Maintenance"
|
715 |
msgstr "Obsługa"
|
716 |
|
@@ -852,43 +856,59 @@ msgstr ""
|
|
852 |
msgid "Disabled Adverts"
|
853 |
msgstr "Wyłączone reklamy"
|
854 |
|
855 |
-
#: dashboard/publisher/adverts-disabled.php:
|
856 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
#: dashboard/publisher/adverts-main.php:20
|
858 |
#: dashboard/publisher/groups-main.php:20
|
859 |
#: dashboard/publisher/schedules-main.php:21
|
860 |
msgid "Bulk Actions"
|
861 |
msgstr "Masowe działania"
|
862 |
|
863 |
-
#: dashboard/publisher/adverts-disabled.php:
|
864 |
#: dashboard/publisher/adverts-edit.php:186
|
865 |
msgid "Activate"
|
866 |
msgstr "Aktywuj"
|
867 |
|
868 |
-
#: dashboard/publisher/adverts-disabled.php:
|
869 |
-
#: dashboard/publisher/adverts-error.php:
|
870 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
871 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
872 |
msgid "Delete"
|
873 |
msgstr "Usuń"
|
874 |
|
875 |
-
#: dashboard/publisher/adverts-disabled.php:
|
876 |
-
#: dashboard/publisher/adverts-error.php:
|
877 |
#: dashboard/publisher/adverts-main.php:23
|
878 |
msgid "Reset stats"
|
879 |
msgstr "Wyzeruj statystykę"
|
880 |
|
881 |
-
#: dashboard/publisher/adverts-disabled.php:
|
882 |
-
#: dashboard/publisher/adverts-error.php:
|
883 |
#: dashboard/publisher/adverts-main.php:30
|
884 |
#: dashboard/publisher/groups-main.php:24
|
885 |
#: dashboard/publisher/schedules-main.php:22
|
886 |
msgid "Go"
|
887 |
msgstr "Idź"
|
888 |
|
889 |
-
#: dashboard/publisher/adverts-disabled.php:
|
890 |
#: dashboard/publisher/adverts-edit.php:263
|
891 |
-
#: dashboard/publisher/adverts-error.php:
|
892 |
#: dashboard/publisher/adverts-main.php:39
|
893 |
#: dashboard/publisher/groups-edit.php:350
|
894 |
#: dashboard/publisher/groups-main.php:32
|
@@ -896,17 +916,17 @@ msgstr "Idź"
|
|
896 |
msgid "ID"
|
897 |
msgstr "ID"
|
898 |
|
899 |
-
#: dashboard/publisher/adverts-disabled.php:
|
900 |
-
#: dashboard/publisher/adverts-error.php:
|
901 |
#: dashboard/publisher/adverts-main.php:40
|
902 |
#: dashboard/publisher/schedules-main.php:32
|
903 |
msgid "Start / End"
|
904 |
msgstr "Początek/koniec"
|
905 |
|
906 |
-
#: dashboard/publisher/adverts-disabled.php:
|
907 |
#: dashboard/publisher/adverts-edit.php:116
|
908 |
#: dashboard/publisher/adverts-edit.php:264
|
909 |
-
#: dashboard/publisher/adverts-error.php:
|
910 |
#: dashboard/publisher/adverts-main.php:41
|
911 |
#: dashboard/publisher/groups-edit.php:65
|
912 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -915,14 +935,14 @@ msgstr "Początek/koniec"
|
|
915 |
msgid "Name"
|
916 |
msgstr "Nazwa"
|
917 |
|
918 |
-
#: dashboard/publisher/adverts-disabled.php:
|
919 |
#: dashboard/publisher/adverts-main.php:43
|
920 |
#: dashboard/publisher/groups-edit.php:355
|
921 |
#: dashboard/publisher/groups-main.php:36
|
922 |
msgid "Shown"
|
923 |
msgstr "Wyświetlane"
|
924 |
|
925 |
-
#: dashboard/publisher/adverts-disabled.php:
|
926 |
#: dashboard/publisher/adverts-main.php:45
|
927 |
#: dashboard/publisher/groups-edit.php:356
|
928 |
#: dashboard/publisher/groups-main.php:38
|
@@ -943,7 +963,7 @@ msgstr "Wyświetlane"
|
|
943 |
msgid "Clicks"
|
944 |
msgstr "Kliknięcia"
|
945 |
|
946 |
-
#: dashboard/publisher/adverts-disabled.php:
|
947 |
#: dashboard/publisher/adverts-main.php:47
|
948 |
#: dashboard/publisher/statistics-advert.php:53
|
949 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -962,22 +982,22 @@ msgstr "Kliknięcia"
|
|
962 |
msgid "CTR"
|
963 |
msgstr "CTR"
|
964 |
|
965 |
-
#: dashboard/publisher/adverts-disabled.php:
|
966 |
-
#: dashboard/publisher/adverts-error.php:
|
967 |
#: dashboard/publisher/adverts-main.php:69
|
968 |
#: dashboard/publisher/groups-main.php:70
|
969 |
msgid "Edit"
|
970 |
msgstr "Edytuj"
|
971 |
|
972 |
-
#: dashboard/publisher/adverts-disabled.php:
|
973 |
-
#: dashboard/publisher/adverts-error.php:
|
974 |
#: dashboard/publisher/adverts-main.php:69
|
975 |
#: dashboard/publisher/groups-main.php:70
|
976 |
msgid "Stats"
|
977 |
msgstr "Statystyka"
|
978 |
|
979 |
-
#: dashboard/publisher/adverts-disabled.php:
|
980 |
-
#: dashboard/publisher/adverts-error.php:
|
981 |
#: dashboard/publisher/adverts-main.php:69
|
982 |
msgid "Groups:"
|
983 |
msgstr "Grupy:"
|
@@ -1357,45 +1377,62 @@ msgstr "Skrót reklamy"
|
|
1357 |
msgid "Adverts that need attention"
|
1358 |
msgstr "Reklamy wymagające uwagi"
|
1359 |
|
1360 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1361 |
#: dashboard/publisher/adverts-main.php:21
|
1362 |
msgid "Deactivate"
|
1363 |
msgstr "Wyłącz"
|
1364 |
|
1365 |
-
#: dashboard/publisher/adverts-error.php:
|
1366 |
#: dashboard/publisher/adverts-main.php:25
|
1367 |
msgid "-- Renew --"
|
1368 |
msgstr "-- Odnów --"
|
1369 |
|
1370 |
-
#: dashboard/publisher/adverts-error.php:
|
1371 |
#: dashboard/publisher/adverts-main.php:26
|
1372 |
msgid "For 1 year"
|
1373 |
msgstr "Na rok"
|
1374 |
|
1375 |
-
#: dashboard/publisher/adverts-error.php:
|
1376 |
#: dashboard/publisher/adverts-main.php:27
|
1377 |
msgid "For 180 days"
|
1378 |
msgstr "Na 180 dni"
|
1379 |
|
1380 |
-
#: dashboard/publisher/adverts-error.php:
|
1381 |
#: dashboard/publisher/adverts-main.php:28
|
1382 |
msgid "For 30 days"
|
1383 |
msgstr "Na 30 dni"
|
1384 |
|
1385 |
-
#: dashboard/publisher/adverts-error.php:
|
1386 |
#: dashboard/publisher/adverts-main.php:29
|
1387 |
msgid "For 7 days"
|
1388 |
msgstr "Na 7 dni"
|
1389 |
|
1390 |
-
#: dashboard/publisher/adverts-error.php:
|
1391 |
msgid "Configuration errors"
|
1392 |
msgstr "Błędy konfiguracji"
|
1393 |
|
1394 |
-
#: dashboard/publisher/adverts-error.php:
|
1395 |
msgid "Expires soon"
|
1396 |
msgstr "Wygasa wkrótce"
|
1397 |
|
1398 |
-
#: dashboard/publisher/adverts-error.php:
|
1399 |
#: dashboard/settings/maintenance.php:45
|
1400 |
msgid "Expired"
|
1401 |
msgstr "Wygasa"
|
@@ -3148,53 +3185,53 @@ msgstr ""
|
|
3148 |
"Ta liczba nie może być pusta, mniejsza od 60 lub większa od 86400 (24 "
|
3149 |
"godziny)."
|
3150 |
|
3151 |
-
#: dashboard/support.php:
|
3152 |
msgid "Premium Support available in AdRotate Pro"
|
3153 |
msgstr "Wsparcie Premium dostępne w AdRotate Pro"
|
3154 |
|
3155 |
-
#: dashboard/support.php:
|
3156 |
msgid "Premium support always comes first!"
|
3157 |
msgstr "Wsparcie premium zawsze jest na pierwszym miejscu!"
|
3158 |
|
3159 |
-
#: dashboard/support.php:
|
3160 |
msgid "No queuing up on the forum..."
|
3161 |
msgstr "Bez kolejek na forum..."
|
3162 |
|
3163 |
-
#: dashboard/support.php:
|
3164 |
msgid "Using this form includes essential information for a quick answer."
|
3165 |
msgstr ""
|
3166 |
"Korzystanie z tego formularza zawiera niezbędne informacje do szybkiej "
|
3167 |
"odpowiedzi."
|
3168 |
|
3169 |
-
#: dashboard/support.php:
|
3170 |
msgid "Available in AdRotate Professional!"
|
3171 |
msgstr "Dostępne w AdRotate Professional!"
|
3172 |
|
3173 |
-
#: dashboard/support.php:
|
3174 |
msgid "Your name:"
|
3175 |
msgstr "Twoje imię:"
|
3176 |
|
3177 |
-
#: dashboard/support.php:
|
3178 |
msgid "Your Email Address:"
|
3179 |
msgstr "Twój adres email:"
|
3180 |
|
3181 |
-
#: dashboard/support.php:
|
3182 |
msgid "Subject:"
|
3183 |
msgstr "Temat:"
|
3184 |
|
3185 |
-
#: dashboard/support.php:
|
3186 |
msgid "Problem description / Question:"
|
3187 |
msgstr "Opis problemu/pytanie:"
|
3188 |
|
3189 |
-
#: dashboard/support.php:
|
3190 |
msgid "Please log in to my website and take a look."
|
3191 |
msgstr "Zaloguj się do mojej strony i rozejrzyj się."
|
3192 |
|
3193 |
-
#: dashboard/support.php:
|
3194 |
msgid "When you send this form the following data will be submitted:"
|
3195 |
msgstr "Do tego formularza dołączone zostaną następujące dane:"
|
3196 |
|
3197 |
-
#: dashboard/support.php:
|
3198 |
msgid ""
|
3199 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3200 |
"information will be included with the message."
|
@@ -3202,18 +3239,61 @@ msgstr ""
|
|
3202 |
"Twoje zgłoszenie będzie zawierać Twoje imię i nazwisko, adres e-mail, adres "
|
3203 |
"Twojej strony www i niektóre podstawowe informacje WordPress."
|
3204 |
|
3205 |
-
#: dashboard/support.php:
|
3206 |
msgid "This information is treated as confidential and is mandatory."
|
3207 |
msgstr "Te informacje są traktowane jako poufne i są wymagane."
|
3208 |
|
3209 |
-
#: dashboard/support.php:
|
3210 |
msgid "Get Help"
|
3211 |
msgstr "Uzyskaj pomoc"
|
3212 |
|
3213 |
-
#: dashboard/support.php:
|
3214 |
msgid "Premium Support is available in AdRotate Pro!"
|
3215 |
msgstr "Wsparcie Premium jest dostępne w AdRotate Pro!"
|
3216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3217 |
#~ msgid "Check all adverts for configuration errors"
|
3218 |
#~ msgstr "Sprawdź wszystkie ogłoszenia pod kątem błędów konfiguracji"
|
3219 |
|
@@ -3588,11 +3668,6 @@ msgstr "Wsparcie Premium jest dostępne w AdRotate Pro!"
|
|
3588 |
#~ msgid "Schedules"
|
3589 |
#~ msgstr "Harmonogramy"
|
3590 |
|
3591 |
-
#, fuzzy
|
3592 |
-
#~| msgid "AdRotate Info"
|
3593 |
-
#~ msgid "AdRotate Pro"
|
3594 |
-
#~ msgstr "Informacja AdRotate"
|
3595 |
-
|
3596 |
#, fuzzy
|
3597 |
#~| msgid "AdRotate Professional"
|
3598 |
#~ msgid "Buy AdRotate Professional"
|
@@ -4681,20 +4756,6 @@ msgstr "Wsparcie Premium jest dostępne w AdRotate Pro!"
|
|
4681 |
#~ msgid "Advertiser:"
|
4682 |
#~ msgstr "Reklamodawca:"
|
4683 |
|
4684 |
-
#~ msgid ""
|
4685 |
-
#~ "These adverts are temporarily disabled. You can archive adverts to "
|
4686 |
-
#~ "permanently disable them."
|
4687 |
-
#~ msgstr ""
|
4688 |
-
#~ "Te reklamy są tymczasowo wyłączone. Można zarchiwizować reklamy, aby je "
|
4689 |
-
#~ "trwale wyłączyć."
|
4690 |
-
|
4691 |
-
#~ msgid ""
|
4692 |
-
#~ "Archiving adverts moves gathered statistics away from the live database "
|
4693 |
-
#~ "which may speed up your website."
|
4694 |
-
#~ msgstr ""
|
4695 |
-
#~ "Zarchiwizowanie reklam przenosi ich statystykę poza bazę danych, co może "
|
4696 |
-
#~ "przyspieszyć działanie witryny."
|
4697 |
-
|
4698 |
#~ msgid "Archive (Permanently)"
|
4699 |
#~ msgstr "Zarchiwizuj (na stałe)"
|
4700 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:20-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-10-04 21:21-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Michal Rudolf <michal@rudolf.waw.pl>\n"
|
9 |
"Language: pl_PL\n"
|
22 |
"X-Source-Language: C\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
+
#: adrotate-block.php:49
|
26 |
+
msgid "AdRotate - Advertisements"
|
27 |
+
msgstr "AdRotate - Ogłoszenia"
|
28 |
+
|
29 |
#: adrotate-functions.php:800
|
30 |
msgid "Advert saved"
|
31 |
msgstr "Reklama zapisana"
|
175 |
msgid "Unexpected error"
|
176 |
msgstr "Nieoczekiwany błąd"
|
177 |
|
178 |
+
#: adrotate-manage-publisher.php:877
|
179 |
msgid "AdRotate Advertiser"
|
180 |
msgstr "Reklamodawca AdRotate"
|
181 |
|
182 |
+
#: adrotate-output.php:552
|
183 |
msgid "Oh no! Something went wrong!"
|
184 |
msgstr "Uwaga! Coś poszło nie tak!"
|
185 |
|
186 |
+
#: adrotate-output.php:553
|
187 |
msgid ""
|
188 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
189 |
"Verify if the url used is valid or log in via your browser."
|
191 |
"Wordpress nie mógł sprawdzić poprawności klikniętego odnośnika. Sprawdź, czy "
|
192 |
"odnośnik jest prawidłowy lub zaloguj się w przeglądarce."
|
193 |
|
194 |
+
#: adrotate-output.php:554
|
195 |
msgid ""
|
196 |
"If you have received the url you want to visit via email, you are being "
|
197 |
"tricked!"
|
199 |
"Jeśli otrzymałeś e-mail z odnośnikiem, który chciałeś odwiedzić, zostałeś "
|
200 |
"oszukany!"
|
201 |
|
202 |
+
#: adrotate-output.php:555
|
203 |
msgid "Contact support if the issue persists:"
|
204 |
msgstr "Skontaktuj się z pomocą techniczną, jeśli problem się powtórzy:"
|
205 |
|
206 |
+
#: adrotate-output.php:567
|
207 |
msgid ""
|
208 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
209 |
"restrictions!"
|
211 |
"Błąd, ogłoszenie nie jest obecnie dostępne z powodu ograniczeń harmonogramu/"
|
212 |
"geolokalizacji!"
|
213 |
|
214 |
+
#: adrotate-output.php:572
|
215 |
msgid ""
|
216 |
"Either there are no banners, they are disabled or none qualified for this "
|
217 |
"location!"
|
218 |
msgstr "Brak banerów, są wyłączone lub brak ich tej lokalizacji!"
|
219 |
|
220 |
+
#: adrotate-output.php:577
|
221 |
msgid "Error, no Advert ID set! Check your syntax!"
|
222 |
msgstr "Błąd, brak ustawionego identyfikatora reklamy! Sprawdź składnię!"
|
223 |
|
224 |
+
#: adrotate-output.php:583
|
225 |
msgid "Error, no group ID set! Check your syntax!"
|
226 |
msgstr "Błąd, nie wybrano żadnego ID grupy! Sprawdź składnię!"
|
227 |
|
228 |
+
#: adrotate-output.php:588
|
229 |
msgid "Error, group does not exist! Check your syntax!"
|
230 |
msgstr "Błąd, grupa nie istnieje! Sprawdź składnię!"
|
231 |
|
232 |
+
#: adrotate-output.php:594
|
233 |
msgid ""
|
234 |
"There was an error locating the database tables for AdRotate. Please "
|
235 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
237 |
"Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz, a potem "
|
238 |
"włącz AdRote w panelu wtyczek!"
|
239 |
|
240 |
+
#: adrotate-output.php:594
|
241 |
+
msgid "If this does not solve the issue please seek support on the"
|
242 |
+
msgstr "Jeśli to nie rozwiąże problemu, poszukaj wsparcia na"
|
243 |
|
244 |
+
#: adrotate-output.php:600
|
245 |
msgid ""
|
246 |
"There was an error loading the page. Please try again by reloading the page "
|
247 |
"via the menu on the left."
|
249 |
"Problem podczas wczytywania strony. Proszę odświeżyć stronę za pomocą menu "
|
250 |
"po lewej."
|
251 |
|
252 |
+
#: adrotate-output.php:600
|
253 |
+
msgid "If the issue persists please seek help on the"
|
254 |
+
msgstr "Jeśli problem będzie się powtarzał, poszukaj pomocy na"
|
255 |
|
256 |
+
#: adrotate-output.php:606
|
257 |
msgid "An unknown error occured."
|
258 |
msgstr "Wystąpił nieznany błąd."
|
259 |
|
260 |
+
#: adrotate-output.php:626
|
261 |
#, php-format
|
262 |
msgid "One advert is expired."
|
263 |
msgid_plural "%1$s adverts expired!"
|
265 |
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:20
|
270 |
msgid "Check adverts"
|
271 |
msgstr "Sprawdź reklamy"
|
272 |
|
273 |
+
#: adrotate-output.php:629
|
274 |
#, php-format
|
275 |
msgid "One advert expires soon."
|
276 |
msgid_plural "%1$s adverts are almost expiring!"
|
278 |
msgstr[1] "%1$s reklamy wkrótce wygasną!"
|
279 |
msgstr[2] "%1$s reklam wkrótce wygaśnie!"
|
280 |
|
281 |
+
#: adrotate-output.php:633
|
282 |
#, php-format
|
283 |
msgid "One advert with configuration errors."
|
284 |
msgid_plural "%1$s adverts have configuration errors!"
|
286 |
msgstr[1] "%1s reklam z błędami konfiguracji!"
|
287 |
msgstr[2] "%1s reklam z błędami konfiguracji!"
|
288 |
|
289 |
+
#: adrotate-output.php:638
|
290 |
msgid ""
|
291 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
292 |
"site!"
|
293 |
msgstr "Włączyłeś obsługę cache, ale W3 Total Cache nie jest włączone!"
|
294 |
|
295 |
+
#: adrotate-output.php:638
|
296 |
msgid "Disable W3 Total Cache Support"
|
297 |
msgstr "Wyłącz wsparcie dla W3 Total Cache"
|
298 |
|
299 |
+
#: adrotate-output.php:641
|
300 |
msgid ""
|
301 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
302 |
"not set."
|
303 |
msgstr ""
|
304 |
"Włączyłeś obsługę cache, ale nie ustawiono definicji W3TC_DYNAMIC_SECURITY."
|
305 |
|
306 |
+
#: adrotate-output.php:641
|
307 |
msgid "How to configure W3 Total Cache"
|
308 |
msgstr "Jak skonfigurować W3 Total Cache"
|
309 |
|
310 |
+
#: adrotate-output.php:645
|
311 |
msgid ""
|
312 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
313 |
msgstr ""
|
314 |
"Włączyłeś obsługę cache, ale Borlabs Cache nie jest włączone w Twojej "
|
315 |
"witrynie!"
|
316 |
|
317 |
+
#: adrotate-output.php:645
|
318 |
msgid "Disable Borlabs Cache Support"
|
319 |
msgstr "Wyłącz obsługę Borlabs Cache"
|
320 |
|
321 |
+
#: adrotate-output.php:650
|
322 |
msgid ""
|
323 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
324 |
msgstr ""
|
325 |
"Włączyłeś obsługę Borlabs Cache, ale Fragment caching nie jest włączony!"
|
326 |
|
327 |
+
#: adrotate-output.php:650
|
328 |
msgid "Enable Fragment Caching"
|
329 |
msgstr "Włącz Fragment Caching"
|
330 |
|
331 |
+
#: adrotate-output.php:657
|
332 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
333 |
msgstr "Folder banerów AdRotate jest chroniony przed zapisem lub nie istnieje."
|
334 |
|
335 |
+
#: adrotate-output.php:657
|
336 |
msgid "Set up your banner folder"
|
337 |
msgstr "Ustaw folder banerów"
|
338 |
|
339 |
+
#: adrotate-output.php:660
|
340 |
msgid ""
|
341 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
342 |
"can delete this plugin after AdRotate Pro is activated."
|
344 |
"Masz zainstalowany AdRotate Professional. Proszę przełączyć się na AdRotate "
|
345 |
"Pro! Możesz usunąć tę wtyczkę po aktywacji AdRotate Pro."
|
346 |
|
347 |
+
#: adrotate-output.php:660
|
348 |
msgid "Switch plugins"
|
349 |
msgstr "Przełączanie wtyczek"
|
350 |
|
351 |
+
#: adrotate-output.php:663
|
352 |
msgid ""
|
353 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
354 |
"installed twice or your current installation has the wrong folder name. "
|
358 |
"razy lub bieżąca instalacja ma niewłaściwą nazwę folderu. Proszę "
|
359 |
"zainstalować wtyczkę poprawnie!"
|
360 |
|
361 |
+
#: adrotate-output.php:663
|
362 |
msgid "Installation instructions"
|
363 |
msgstr "Instrukcje montażowe"
|
364 |
|
365 |
+
#: adrotate-output.php:739
|
366 |
msgid "one issue that requires"
|
367 |
msgid_plural "several issues that require"
|
368 |
msgstr[0] "jeden problem wymagający"
|
369 |
msgstr[1] "kilka problemów wymagających"
|
370 |
msgstr[2] "wiele problemów wymagających"
|
371 |
|
372 |
+
#: adrotate-output.php:739
|
373 |
msgid "your attention:"
|
374 |
msgstr "twoją uwagę:"
|
375 |
|
376 |
+
#: adrotate-output.php:778
|
377 |
msgid ""
|
378 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
379 |
"menu. If you need help getting started take a look at the"
|
381 |
"Dziękujemy za wybranie AdRotate Professional. Wszystko związane z AdRotate "
|
382 |
"jest w tym menu. Jeśli potrzebujesz pomocy przy rozpoczęciu"
|
383 |
|
384 |
+
#: adrotate-output.php:778
|
385 |
msgid "manuals"
|
386 |
msgstr "podręczników"
|
387 |
|
388 |
+
#: adrotate-output.php:778
|
389 |
msgid "and"
|
390 |
msgstr "i"
|
391 |
|
392 |
+
#: adrotate-output.php:778
|
393 |
msgid "forums"
|
394 |
msgstr "forum"
|
395 |
|
396 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
397 |
msgid "Post Tweet"
|
398 |
msgstr "Opublikuj tweet"
|
399 |
|
400 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
401 |
msgid "Share on Facebook"
|
402 |
msgstr "Udostępnij na Facebooku"
|
403 |
|
404 |
+
#: adrotate-output.php:833
|
405 |
msgid "Write review on wordpress.org"
|
406 |
msgstr "Napisz recenzję firmy WordPress.org"
|
407 |
|
408 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
409 |
msgid "Thank you very much for your help and support!"
|
410 |
msgstr "Dziękuję bardzo za pomoc i wsparcie!"
|
411 |
|
412 |
+
#: adrotate-output.php:864
|
413 |
msgid "Need help fast? Or do you have a question?"
|
414 |
msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
|
415 |
|
416 |
+
#: adrotate-output.php:865
|
417 |
msgid "Help AdRotate Grow"
|
418 |
msgstr "Pomóż AdRotate rosnąć"
|
419 |
|
420 |
+
#: adrotate-output.php:866
|
421 |
msgid "Get more features with AdRotate Pro"
|
422 |
msgstr "Więcej ustawień z AdRotate Pro"
|
423 |
|
424 |
+
#: adrotate-output.php:872
|
425 |
msgid ""
|
426 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
427 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
432 |
"AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
|
433 |
"rozwiązaniem w pierwszej odpowiedzi."
|
434 |
|
435 |
+
#: adrotate-output.php:873
|
436 |
msgid "AdRotate Manuals"
|
437 |
msgstr "Podręczniki AdRotate"
|
438 |
|
439 |
+
#: adrotate-output.php:873
|
440 |
msgid "Support Forums"
|
441 |
msgstr "Forum wsparcia"
|
442 |
|
443 |
+
#: adrotate-output.php:874
|
444 |
msgid ""
|
445 |
"When posting on the forum, please include a brief description of the "
|
446 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
452 |
"wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
|
453 |
"pomaga uzyskać lepszą odpowiedź lub poradę."
|
454 |
|
455 |
+
#: adrotate-output.php:876
|
456 |
msgid ""
|
457 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
458 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
465 |
"mediach społecznościowych nic cię nie kosztuje, ale robienie tego jest "
|
466 |
"bardzo pomocne jako promocja, która pomaga zapewnić przyszły rozwój."
|
467 |
|
468 |
+
#: adrotate-output.php:877
|
469 |
msgid "Write review on WordPress.org"
|
470 |
msgstr "Napisz recenzję firmy WordPress.org"
|
471 |
|
472 |
+
#: adrotate-output.php:880
|
473 |
msgid ""
|
474 |
"AdRotate Professional has a lot more functions for even better advertising "
|
475 |
"management. Check out the feature comparison tab on any of the product pages "
|
480 |
"stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
|
481 |
"Ciebie!"
|
482 |
|
483 |
+
#: adrotate-output.php:880
|
484 |
msgid "Compare Licenses"
|
485 |
msgstr "Porównaj licencje"
|
486 |
|
487 |
+
#: adrotate-output.php:881
|
488 |
msgid "Single License"
|
489 |
msgstr "Licencja"
|
490 |
|
491 |
+
#: adrotate-output.php:881
|
492 |
msgid "Use on ONE WordPress installation."
|
493 |
msgstr "Użyj na JEDNEJ instalacji WordPress."
|
494 |
|
495 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
496 |
msgid "Buy now"
|
497 |
msgstr "Kup teraz"
|
498 |
|
499 |
+
#: adrotate-output.php:882
|
500 |
msgid "Multi License"
|
501 |
msgstr "Multi licencja"
|
502 |
|
503 |
+
#: adrotate-output.php:882
|
504 |
msgid "Use on up to FIVE WordPress installations."
|
505 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
506 |
|
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:106 adrotate.php:176
|
619 |
msgid "Manage Adverts"
|
620 |
msgstr "Zarządzaj reklamami"
|
621 |
|
622 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
623 |
msgid "Manage Groups"
|
624 |
msgstr "Zarządzaj grupami"
|
625 |
|
626 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
627 |
msgid "Manage Schedules"
|
628 |
msgstr "Zarządzaj harmonogramami"
|
629 |
|
630 |
+
#: adrotate.php:109
|
631 |
msgid "Manage Media"
|
632 |
msgstr "Zarządzaj mediami"
|
633 |
|
634 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
642 |
msgid "Get AdRotate Pro"
|
643 |
msgstr "Pobierz AdRotate Pro"
|
644 |
|
645 |
+
#: adrotate.php:112
|
646 |
msgid "Support"
|
647 |
msgstr "Wsparcie"
|
648 |
|
649 |
+
#: adrotate.php:113
|
650 |
msgid "Settings"
|
651 |
msgstr "Ustawienia"
|
652 |
|
653 |
+
#: adrotate.php:132
|
654 |
msgid "Get AdRotate Professional"
|
655 |
msgstr "Uzyskaj AdRotate Professional"
|
656 |
|
657 |
+
#: adrotate.php:236 adrotate.php:308
|
658 |
msgid "Manage"
|
659 |
msgstr "Zarządzaj"
|
660 |
|
661 |
+
#: adrotate.php:237
|
662 |
msgid "Advert Generator"
|
663 |
msgstr "Generator reklam"
|
664 |
|
665 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
666 |
msgid "New Advert"
|
667 |
msgstr "Nowa reklama"
|
668 |
|
669 |
+
#: adrotate.php:309
|
670 |
msgid "Add New"
|
671 |
msgstr "Dodaj nową"
|
672 |
|
673 |
+
#: adrotate.php:377
|
674 |
msgid "Manage Media and Assets"
|
675 |
msgstr "Zarządzanie multimediami i zasobami"
|
676 |
|
677 |
+
#: adrotate.php:381
|
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 |
"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:423
|
686 |
msgid "Advert Statistics"
|
687 |
msgstr "Statystyki reklam"
|
688 |
|
689 |
+
#: adrotate.php:466
|
690 |
msgid "AdRotate Support"
|
691 |
msgstr "Pomoc techniczna adrotate"
|
692 |
|
693 |
+
#: adrotate.php:498
|
694 |
msgid "AdRotate Settings"
|
695 |
msgstr "Ustawienia AdRotate"
|
696 |
|
697 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
698 |
msgid "General"
|
699 |
msgstr "Ogólne"
|
700 |
|
701 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
702 |
msgid "Notifications"
|
703 |
msgstr "Powiadomienia"
|
704 |
|
705 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
706 |
msgid "Geo Targeting"
|
707 |
msgstr "Geolokalizacja"
|
708 |
|
709 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
710 |
msgid "Access Roles"
|
711 |
msgstr "Rola programu Access"
|
712 |
|
713 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
714 |
msgid "Miscellaneous"
|
715 |
msgstr "Różne"
|
716 |
|
717 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
718 |
msgid "Maintenance"
|
719 |
msgstr "Obsługa"
|
720 |
|
856 |
msgid "Disabled Adverts"
|
857 |
msgstr "Wyłączone reklamy"
|
858 |
|
859 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
860 |
+
msgid ""
|
861 |
+
"These adverts are temporarily disabled. You can archive adverts to "
|
862 |
+
"permanently disable them."
|
863 |
+
msgstr ""
|
864 |
+
"Te reklamy są tymczasowo wyłączone. Można zarchiwizować reklamy, aby je "
|
865 |
+
"trwale wyłączyć."
|
866 |
+
|
867 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
868 |
+
msgid ""
|
869 |
+
"Archiving adverts moves gathered statistics away from the live database "
|
870 |
+
"which may speed up your website."
|
871 |
+
msgstr ""
|
872 |
+
"Zarchiwizowanie reklam przenosi ich statystykę poza bazę danych, co może "
|
873 |
+
"przyspieszyć działanie witryny."
|
874 |
+
|
875 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
876 |
+
#: dashboard/publisher/adverts-error.php:20
|
877 |
#: dashboard/publisher/adverts-main.php:20
|
878 |
#: dashboard/publisher/groups-main.php:20
|
879 |
#: dashboard/publisher/schedules-main.php:21
|
880 |
msgid "Bulk Actions"
|
881 |
msgstr "Masowe działania"
|
882 |
|
883 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
884 |
#: dashboard/publisher/adverts-edit.php:186
|
885 |
msgid "Activate"
|
886 |
msgstr "Aktywuj"
|
887 |
|
888 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
889 |
+
#: dashboard/publisher/adverts-error.php:22
|
890 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
891 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
892 |
msgid "Delete"
|
893 |
msgstr "Usuń"
|
894 |
|
895 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
896 |
+
#: dashboard/publisher/adverts-error.php:23
|
897 |
#: dashboard/publisher/adverts-main.php:23
|
898 |
msgid "Reset stats"
|
899 |
msgstr "Wyzeruj statystykę"
|
900 |
|
901 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
902 |
+
#: dashboard/publisher/adverts-error.php:30
|
903 |
#: dashboard/publisher/adverts-main.php:30
|
904 |
#: dashboard/publisher/groups-main.php:24
|
905 |
#: dashboard/publisher/schedules-main.php:22
|
906 |
msgid "Go"
|
907 |
msgstr "Idź"
|
908 |
|
909 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
910 |
#: dashboard/publisher/adverts-edit.php:263
|
911 |
+
#: dashboard/publisher/adverts-error.php:40
|
912 |
#: dashboard/publisher/adverts-main.php:39
|
913 |
#: dashboard/publisher/groups-edit.php:350
|
914 |
#: dashboard/publisher/groups-main.php:32
|
916 |
msgid "ID"
|
917 |
msgstr "ID"
|
918 |
|
919 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
920 |
+
#: dashboard/publisher/adverts-error.php:42
|
921 |
#: dashboard/publisher/adverts-main.php:40
|
922 |
#: dashboard/publisher/schedules-main.php:32
|
923 |
msgid "Start / End"
|
924 |
msgstr "Początek/koniec"
|
925 |
|
926 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
927 |
#: dashboard/publisher/adverts-edit.php:116
|
928 |
#: dashboard/publisher/adverts-edit.php:264
|
929 |
+
#: dashboard/publisher/adverts-error.php:41
|
930 |
#: dashboard/publisher/adverts-main.php:41
|
931 |
#: dashboard/publisher/groups-edit.php:65
|
932 |
#: dashboard/publisher/groups-edit.php:351
|
935 |
msgid "Name"
|
936 |
msgstr "Nazwa"
|
937 |
|
938 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
939 |
#: dashboard/publisher/adverts-main.php:43
|
940 |
#: dashboard/publisher/groups-edit.php:355
|
941 |
#: dashboard/publisher/groups-main.php:36
|
942 |
msgid "Shown"
|
943 |
msgstr "Wyświetlane"
|
944 |
|
945 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
946 |
#: dashboard/publisher/adverts-main.php:45
|
947 |
#: dashboard/publisher/groups-edit.php:356
|
948 |
#: dashboard/publisher/groups-main.php:38
|
963 |
msgid "Clicks"
|
964 |
msgstr "Kliknięcia"
|
965 |
|
966 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
967 |
#: dashboard/publisher/adverts-main.php:47
|
968 |
#: dashboard/publisher/statistics-advert.php:53
|
969 |
#: dashboard/publisher/statistics-advert.php:59
|
982 |
msgid "CTR"
|
983 |
msgstr "CTR"
|
984 |
|
985 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
986 |
+
#: dashboard/publisher/adverts-error.php:57
|
987 |
#: dashboard/publisher/adverts-main.php:69
|
988 |
#: dashboard/publisher/groups-main.php:70
|
989 |
msgid "Edit"
|
990 |
msgstr "Edytuj"
|
991 |
|
992 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
993 |
+
#: dashboard/publisher/adverts-error.php:57
|
994 |
#: dashboard/publisher/adverts-main.php:69
|
995 |
#: dashboard/publisher/groups-main.php:70
|
996 |
msgid "Stats"
|
997 |
msgstr "Statystyka"
|
998 |
|
999 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
1000 |
+
#: dashboard/publisher/adverts-error.php:57
|
1001 |
#: dashboard/publisher/adverts-main.php:69
|
1002 |
msgid "Groups:"
|
1003 |
msgstr "Grupy:"
|
1377 |
msgid "Adverts that need attention"
|
1378 |
msgstr "Reklamy wymagające uwagi"
|
1379 |
|
1380 |
+
#: dashboard/publisher/adverts-error.php:13
|
1381 |
+
msgid ""
|
1382 |
+
"The adverts listed here are currently not showing on your website. This is "
|
1383 |
+
"because they are almost expired, have expired or have configuration issues."
|
1384 |
+
msgstr ""
|
1385 |
+
"Reklamy wymienione tutaj nie są obecnie wyświetlane na Twojej stronie. "
|
1386 |
+
"Dzieje się tak, ponieważ są one prawie wygasłe, wygasły lub mają problemy z "
|
1387 |
+
"konfiguracją."
|
1388 |
+
|
1389 |
+
#: dashboard/publisher/adverts-error.php:13
|
1390 |
+
msgid ""
|
1391 |
+
"To fix the issue edit each advert and look for one or more notification at "
|
1392 |
+
"the top to see what AdRotate thinks is wrong with it."
|
1393 |
+
msgstr ""
|
1394 |
+
"Aby naprawić problem edytuj każdą reklamę i poszukaj jednego lub więcej "
|
1395 |
+
"powiadomień na górze, aby zobaczyć, co AdRotate uważa, że jest z nią nie tak."
|
1396 |
+
|
1397 |
+
#: dashboard/publisher/adverts-error.php:21
|
1398 |
#: dashboard/publisher/adverts-main.php:21
|
1399 |
msgid "Deactivate"
|
1400 |
msgstr "Wyłącz"
|
1401 |
|
1402 |
+
#: dashboard/publisher/adverts-error.php:24
|
1403 |
#: dashboard/publisher/adverts-main.php:25
|
1404 |
msgid "-- Renew --"
|
1405 |
msgstr "-- Odnów --"
|
1406 |
|
1407 |
+
#: dashboard/publisher/adverts-error.php:25
|
1408 |
#: dashboard/publisher/adverts-main.php:26
|
1409 |
msgid "For 1 year"
|
1410 |
msgstr "Na rok"
|
1411 |
|
1412 |
+
#: dashboard/publisher/adverts-error.php:26
|
1413 |
#: dashboard/publisher/adverts-main.php:27
|
1414 |
msgid "For 180 days"
|
1415 |
msgstr "Na 180 dni"
|
1416 |
|
1417 |
+
#: dashboard/publisher/adverts-error.php:27
|
1418 |
#: dashboard/publisher/adverts-main.php:28
|
1419 |
msgid "For 30 days"
|
1420 |
msgstr "Na 30 dni"
|
1421 |
|
1422 |
+
#: dashboard/publisher/adverts-error.php:28
|
1423 |
#: dashboard/publisher/adverts-main.php:29
|
1424 |
msgid "For 7 days"
|
1425 |
msgstr "Na 7 dni"
|
1426 |
|
1427 |
+
#: dashboard/publisher/adverts-error.php:65
|
1428 |
msgid "Configuration errors"
|
1429 |
msgstr "Błędy konfiguracji"
|
1430 |
|
1431 |
+
#: dashboard/publisher/adverts-error.php:66
|
1432 |
msgid "Expires soon"
|
1433 |
msgstr "Wygasa wkrótce"
|
1434 |
|
1435 |
+
#: dashboard/publisher/adverts-error.php:67
|
1436 |
#: dashboard/settings/maintenance.php:45
|
1437 |
msgid "Expired"
|
1438 |
msgstr "Wygasa"
|
3185 |
"Ta liczba nie może być pusta, mniejsza od 60 lub większa od 86400 (24 "
|
3186 |
"godziny)."
|
3187 |
|
3188 |
+
#: dashboard/support.php:74
|
3189 |
msgid "Premium Support available in AdRotate Pro"
|
3190 |
msgstr "Wsparcie Premium dostępne w AdRotate Pro"
|
3191 |
|
3192 |
+
#: dashboard/support.php:77
|
3193 |
msgid "Premium support always comes first!"
|
3194 |
msgstr "Wsparcie premium zawsze jest na pierwszym miejscu!"
|
3195 |
|
3196 |
+
#: dashboard/support.php:77
|
3197 |
msgid "No queuing up on the forum..."
|
3198 |
msgstr "Bez kolejek na forum..."
|
3199 |
|
3200 |
+
#: dashboard/support.php:77
|
3201 |
msgid "Using this form includes essential information for a quick answer."
|
3202 |
msgstr ""
|
3203 |
"Korzystanie z tego formularza zawiera niezbędne informacje do szybkiej "
|
3204 |
"odpowiedzi."
|
3205 |
|
3206 |
+
#: dashboard/support.php:77
|
3207 |
msgid "Available in AdRotate Professional!"
|
3208 |
msgstr "Dostępne w AdRotate Professional!"
|
3209 |
|
3210 |
+
#: dashboard/support.php:79
|
3211 |
msgid "Your name:"
|
3212 |
msgstr "Twoje imię:"
|
3213 |
|
3214 |
+
#: dashboard/support.php:80
|
3215 |
msgid "Your Email Address:"
|
3216 |
msgstr "Twój adres email:"
|
3217 |
|
3218 |
+
#: dashboard/support.php:81
|
3219 |
msgid "Subject:"
|
3220 |
msgstr "Temat:"
|
3221 |
|
3222 |
+
#: dashboard/support.php:82
|
3223 |
msgid "Problem description / Question:"
|
3224 |
msgstr "Opis problemu/pytanie:"
|
3225 |
|
3226 |
+
#: dashboard/support.php:83
|
3227 |
msgid "Please log in to my website and take a look."
|
3228 |
msgstr "Zaloguj się do mojej strony i rozejrzyj się."
|
3229 |
|
3230 |
+
#: dashboard/support.php:85
|
3231 |
msgid "When you send this form the following data will be submitted:"
|
3232 |
msgstr "Do tego formularza dołączone zostaną następujące dane:"
|
3233 |
|
3234 |
+
#: dashboard/support.php:86
|
3235 |
msgid ""
|
3236 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3237 |
"information will be included with the message."
|
3239 |
"Twoje zgłoszenie będzie zawierać Twoje imię i nazwisko, adres e-mail, adres "
|
3240 |
"Twojej strony www i niektóre podstawowe informacje WordPress."
|
3241 |
|
3242 |
+
#: dashboard/support.php:86
|
3243 |
msgid "This information is treated as confidential and is mandatory."
|
3244 |
msgstr "Te informacje są traktowane jako poufne i są wymagane."
|
3245 |
|
3246 |
+
#: dashboard/support.php:89
|
3247 |
msgid "Get Help"
|
3248 |
msgstr "Uzyskaj pomoc"
|
3249 |
|
3250 |
+
#: dashboard/support.php:89
|
3251 |
msgid "Premium Support is available in AdRotate Pro!"
|
3252 |
msgstr "Wsparcie Premium jest dostępne w AdRotate Pro!"
|
3253 |
|
3254 |
+
#: library/block.js:19 library/block.js:49
|
3255 |
+
msgid "AdRotate Advert"
|
3256 |
+
msgstr "Reklamodawca AdRotate"
|
3257 |
+
|
3258 |
+
#: library/block.js:22
|
3259 |
+
msgid "Show a single advert by entering an advert ID."
|
3260 |
+
msgstr "Pokaż pojedynczą reklamę, wpisując identyfikator reklamy."
|
3261 |
+
|
3262 |
+
#: library/block.js:52
|
3263 |
+
msgid "Enter an Advert ID (numbers only):"
|
3264 |
+
msgstr "Wpisz identyfikator ogłoszenia (tylko liczby):"
|
3265 |
+
|
3266 |
+
#: library/block.js:63
|
3267 |
+
msgid ""
|
3268 |
+
"You can find the advert ID in Manage Adverts. Any special markup, code or "
|
3269 |
+
"layout styles can be applied in the advert itself or by placing the advert "
|
3270 |
+
"in a group."
|
3271 |
+
msgstr ""
|
3272 |
+
"Identyfikator ogłoszenia znajdziesz w sekcji Zarządzaj reklamami. Wszelkie "
|
3273 |
+
"specjalne style znaczników, kodu lub układu można zastosować w samej "
|
3274 |
+
"reklamie lub umieszczając reklamę w grupie."
|
3275 |
+
|
3276 |
+
#: library/block.js:73 library/block.js:103
|
3277 |
+
msgid "AdRotate Group"
|
3278 |
+
msgstr "Grupa AdRotate"
|
3279 |
+
|
3280 |
+
#: library/block.js:76
|
3281 |
+
msgid "Show a group of adverts by entering a group ID."
|
3282 |
+
msgstr "Pokaż grupę reklam, wpisując identyfikator grupy."
|
3283 |
+
|
3284 |
+
#: library/block.js:106
|
3285 |
+
msgid "Enter a group ID (numbers only):"
|
3286 |
+
msgstr "Wprowadź identyfikator grupy (tylko numery):"
|
3287 |
+
|
3288 |
+
#: library/block.js:117
|
3289 |
+
msgid ""
|
3290 |
+
"You can find the group ID in Manage Groups. Any special markup, code or "
|
3291 |
+
"layout styles can be applied in the group wrapper when editing the group."
|
3292 |
+
msgstr ""
|
3293 |
+
"Identyfikator grupy można znaleźć w sekcji Zarządzanie grupami. Wszelkie "
|
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 |
|
3668 |
#~ msgid "Schedules"
|
3669 |
#~ msgstr "Harmonogramy"
|
3670 |
|
|
|
|
|
|
|
|
|
|
|
3671 |
#, fuzzy
|
3672 |
#~| msgid "AdRotate Professional"
|
3673 |
#~ msgid "Buy AdRotate Professional"
|
4756 |
#~ msgid "Advertiser:"
|
4757 |
#~ msgstr "Reklamodawca:"
|
4758 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4759 |
#~ msgid "Archive (Permanently)"
|
4760 |
#~ msgstr "Zarchiwizuj (na stałe)"
|
4761 |
|
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-04
|
6 |
-
"PO-Revision-Date: 2022-04
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
@@ -18,6 +18,10 @@ msgstr ""
|
|
18 |
"X-Loco-Version: 2.5.0; wp-5.6.2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
|
|
|
|
|
|
|
|
21 |
#: adrotate-functions.php:800
|
22 |
msgid "Advert saved"
|
23 |
msgstr "Anúncio salvo"
|
@@ -168,15 +172,15 @@ msgstr ""
|
|
168 |
msgid "Unexpected error"
|
169 |
msgstr "Erro inesperado"
|
170 |
|
171 |
-
#: adrotate-manage-publisher.php:
|
172 |
msgid "AdRotate Advertiser"
|
173 |
msgstr "AdRotate Anunciante"
|
174 |
|
175 |
-
#: adrotate-output.php:
|
176 |
msgid "Oh no! Something went wrong!"
|
177 |
msgstr "Oh, não! Algo deu errado!"
|
178 |
|
179 |
-
#: adrotate-output.php:
|
180 |
msgid ""
|
181 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
182 |
"Verify if the url used is valid or log in via your browser."
|
@@ -184,7 +188,7 @@ msgstr ""
|
|
184 |
"O WordPress foi possível verificar a autenticidade da url que você clicou. "
|
185 |
"Verifique se o url utilizado é válido fazer o login usando o seu browser."
|
186 |
|
187 |
-
#: adrotate-output.php:
|
188 |
msgid ""
|
189 |
"If you have received the url you want to visit via email, you are being "
|
190 |
"tricked!"
|
@@ -192,11 +196,11 @@ msgstr ""
|
|
192 |
"Se você tiver recebido o url que você deseja visitar, via e-mail, você está "
|
193 |
"sendo enganado!"
|
194 |
|
195 |
-
#: adrotate-output.php:
|
196 |
msgid "Contact support if the issue persists:"
|
197 |
msgstr "Contato com o suporte se o problema persistir:"
|
198 |
|
199 |
-
#: adrotate-output.php:
|
200 |
msgid ""
|
201 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
202 |
"restrictions!"
|
@@ -204,26 +208,26 @@ msgstr ""
|
|
204 |
"Erro, o Anúncio não está disponível neste momento devido às restrições de "
|
205 |
"agendamento/geolocalização!"
|
206 |
|
207 |
-
#: adrotate-output.php:
|
208 |
msgid ""
|
209 |
"Either there are no banners, they are disabled or none qualified for this "
|
210 |
"location!"
|
211 |
msgstr ""
|
212 |
"Há banners, eles são deficientes ou nenhum qualificado para este local!"
|
213 |
|
214 |
-
#: adrotate-output.php:
|
215 |
msgid "Error, no Advert ID set! Check your syntax!"
|
216 |
msgstr "Erro, sem conjunto de anúncios! Verifique sua sintaxe!"
|
217 |
|
218 |
-
#: adrotate-output.php:
|
219 |
msgid "Error, no group ID set! Check your syntax!"
|
220 |
msgstr "Erro, nenhum ID de grupo definido! Verifique sua sintaxe!"
|
221 |
|
222 |
-
#: adrotate-output.php:
|
223 |
msgid "Error, group does not exist! Check your syntax!"
|
224 |
msgstr "Erro, não existe o grupo! Verifique sua sintaxe!"
|
225 |
|
226 |
-
#: adrotate-output.php:
|
227 |
msgid ""
|
228 |
"There was an error locating the database tables for AdRotate. Please "
|
229 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
@@ -231,11 +235,11 @@ msgstr ""
|
|
231 |
"Houve um erro ao localizar o banco de dados de tabelas para AdRotate. Por "
|
232 |
"favor, desativar e reativar o AdRotate a partir da página do plugin!!"
|
233 |
|
234 |
-
#: adrotate-output.php:
|
235 |
-
msgid "If this does not solve the issue please seek support
|
236 |
msgstr "Se isso não resolver o problema, por favor, procure apoio em"
|
237 |
|
238 |
-
#: adrotate-output.php:
|
239 |
msgid ""
|
240 |
"There was an error loading the page. Please try again by reloading the page "
|
241 |
"via the menu on the left."
|
@@ -243,20 +247,20 @@ msgstr ""
|
|
243 |
"Ocorreu um erro ao carregar a página. Por favor, tente novamente ao "
|
244 |
"recarregar a página através do menu à esquerda."
|
245 |
|
246 |
-
#: adrotate-output.php:
|
247 |
-
msgid "If the issue persists please seek help
|
248 |
-
msgstr "Se o
|
249 |
|
250 |
-
#: adrotate-output.php:
|
251 |
msgid "An unknown error occured."
|
252 |
msgstr "Um erro desconhecido ocorreu."
|
253 |
|
254 |
-
#: adrotate-output.php:
|
255 |
#: dashboard/settings/maintenance.php:20
|
256 |
msgid "Check adverts"
|
257 |
msgstr "Verificação de anúncios"
|
258 |
|
259 |
-
#: adrotate-output.php:
|
260 |
msgid ""
|
261 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
262 |
"site!"
|
@@ -264,11 +268,11 @@ msgstr ""
|
|
264 |
"Você tiver ativado o cache de apoio, mas W3 Total Cache não estiver ativo no "
|
265 |
"seu site!"
|
266 |
|
267 |
-
#: adrotate-output.php:
|
268 |
msgid "Disable W3 Total Cache Support"
|
269 |
msgstr "Desativar O W3 Total Cache De Apoio"
|
270 |
|
271 |
-
#: adrotate-output.php:
|
272 |
msgid ""
|
273 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
274 |
"not set."
|
@@ -276,41 +280,41 @@ msgstr ""
|
|
276 |
"Você habilitar o cache de apoio, mas o W3TC_DYNAMIC_SECURITY definição não "
|
277 |
"está definido."
|
278 |
|
279 |
-
#: adrotate-output.php:
|
280 |
msgid "How to configure W3 Total Cache"
|
281 |
msgstr "Como configurar o W3 Total Cache"
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid ""
|
285 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
286 |
msgstr ""
|
287 |
"Você habilitar o cache de apoio, mas Borlabs Cache não estiver ativo no seu "
|
288 |
"site!"
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
msgid "Disable Borlabs Cache Support"
|
292 |
msgstr "Desativar Borlabs Suporte De Cache"
|
293 |
|
294 |
-
#: adrotate-output.php:
|
295 |
msgid ""
|
296 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
297 |
msgstr ""
|
298 |
"Você tiver ativado Borlabs suporte a Cache, mas o cache de Fragmento não "
|
299 |
"está habilitado!"
|
300 |
|
301 |
-
#: adrotate-output.php:
|
302 |
msgid "Enable Fragment Caching"
|
303 |
msgstr "Habilitar O Cache De Fragmento"
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
307 |
msgstr "O AdRotate Banner pasta não é gravável ou não existe."
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
msgid "Set up your banner folder"
|
311 |
msgstr "Configurar o seu banner pasta"
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
msgid ""
|
315 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
316 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -318,11 +322,11 @@ msgstr ""
|
|
318 |
"Você tem AdRotate Professional instalado. Por favor, mude para o AdRotate "
|
319 |
"Pro! Você pode excluir este plugin depois AdRotate Pro está ativado."
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
msgid "Switch plugins"
|
323 |
msgstr "Interruptor de plugins"
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
msgid ""
|
327 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
328 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -332,15 +336,15 @@ msgstr ""
|
|
332 |
"vezes ou a sua instalação atual tiver errado o nome da pasta. Por favor "
|
333 |
"instale o plugin corretamente!"
|
334 |
|
335 |
-
#: adrotate-output.php:
|
336 |
msgid "Installation instructions"
|
337 |
msgstr "Instruções de instalação"
|
338 |
|
339 |
-
#: adrotate-output.php:
|
340 |
msgid "your attention:"
|
341 |
msgstr "atenção:"
|
342 |
|
343 |
-
#: adrotate-output.php:
|
344 |
msgid ""
|
345 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
346 |
"menu. If you need help getting started take a look at the"
|
@@ -348,47 +352,47 @@ msgstr ""
|
|
348 |
"Obrigado por escolher AdRotate. Tudo relacionado com o AdRotate é neste "
|
349 |
"menu. Se você precisar de ajuda para começar, dê uma olhada no"
|
350 |
|
351 |
-
#: adrotate-output.php:
|
352 |
msgid "manuals"
|
353 |
msgstr "manuais"
|
354 |
|
355 |
-
#: adrotate-output.php:
|
356 |
msgid "and"
|
357 |
msgstr "e"
|
358 |
|
359 |
-
#: adrotate-output.php:
|
360 |
msgid "forums"
|
361 |
msgstr "fóruns"
|
362 |
|
363 |
-
#: adrotate-output.php:
|
364 |
msgid "Post Tweet"
|
365 |
msgstr "Postar Tweet"
|
366 |
|
367 |
-
#: adrotate-output.php:
|
368 |
msgid "Share on Facebook"
|
369 |
msgstr "Compartilhar no Facebook"
|
370 |
|
371 |
-
#: adrotate-output.php:
|
372 |
msgid "Write review on wordpress.org"
|
373 |
msgstr "Escreva revisão sobre WordPress.org"
|
374 |
|
375 |
-
#: adrotate-output.php:
|
376 |
msgid "Thank you very much for your help and support!"
|
377 |
msgstr "Muito obrigado por sua ajuda e apoio!"
|
378 |
|
379 |
-
#: adrotate-output.php:
|
380 |
msgid "Need help fast? Or do you have a question?"
|
381 |
msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
|
382 |
|
383 |
-
#: adrotate-output.php:
|
384 |
msgid "Help AdRotate Grow"
|
385 |
msgstr "Ajuda AdRotate Crescer"
|
386 |
|
387 |
-
#: adrotate-output.php:
|
388 |
msgid "Get more features with AdRotate Pro"
|
389 |
msgstr "Obter mais recursos com AdRotate Pro"
|
390 |
|
391 |
-
#: adrotate-output.php:
|
392 |
msgid ""
|
393 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
394 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -399,15 +403,15 @@ msgstr ""
|
|
399 |
"AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
|
400 |
"solução na primeira resposta."
|
401 |
|
402 |
-
#: adrotate-output.php:
|
403 |
msgid "AdRotate Manuals"
|
404 |
msgstr "Manuais de AdRotate"
|
405 |
|
406 |
-
#: adrotate-output.php:
|
407 |
msgid "Support Forums"
|
408 |
msgstr "Fóruns de suporte"
|
409 |
|
410 |
-
#: adrotate-output.php:
|
411 |
msgid ""
|
412 |
"When posting on the forum, please include a brief description of the "
|
413 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -419,7 +423,7 @@ msgstr ""
|
|
419 |
"está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
|
420 |
"obter uma melhor resposta ou aconselhamento."
|
421 |
|
422 |
-
#: adrotate-output.php:
|
423 |
msgid ""
|
424 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
425 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -432,11 +436,11 @@ msgstr ""
|
|
432 |
"de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
|
433 |
"futuro."
|
434 |
|
435 |
-
#: adrotate-output.php:
|
436 |
msgid "Write review on WordPress.org"
|
437 |
msgstr "Escreva revisão sobre WordPress.org"
|
438 |
|
439 |
-
#: adrotate-output.php:
|
440 |
msgid ""
|
441 |
"AdRotate Professional has a lot more functions for even better advertising "
|
442 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -447,27 +451,27 @@ msgstr ""
|
|
447 |
"qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
|
448 |
"oferecer para você!"
|
449 |
|
450 |
-
#: adrotate-output.php:
|
451 |
msgid "Compare Licenses"
|
452 |
msgstr "Comparar licenças"
|
453 |
|
454 |
-
#: adrotate-output.php:
|
455 |
msgid "Single License"
|
456 |
msgstr "Licença"
|
457 |
|
458 |
-
#: adrotate-output.php:
|
459 |
msgid "Use on ONE WordPress installation."
|
460 |
msgstr "O uso em UMA instalação do WordPress."
|
461 |
|
462 |
-
#: adrotate-output.php:
|
463 |
msgid "Buy now"
|
464 |
msgstr "Comprar agora"
|
465 |
|
466 |
-
#: adrotate-output.php:
|
467 |
msgid "Multi License"
|
468 |
msgstr "Multi-Licença"
|
469 |
|
470 |
-
#: adrotate-output.php:
|
471 |
msgid "Use on up to FIVE WordPress installations."
|
472 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
473 |
|
@@ -581,66 +585,66 @@ msgstr "IDENTIFICAÇÃO:"
|
|
581 |
msgid "Fill in the ID of the type you want to display!"
|
582 |
msgstr "Preencha o ID do tipo que você deseja exibir!"
|
583 |
|
584 |
-
#: adrotate.php:
|
585 |
msgid "Manage Adverts"
|
586 |
msgstr "Gerenciar Anúncios"
|
587 |
|
588 |
-
#: adrotate.php:
|
589 |
msgid "Manage Groups"
|
590 |
msgstr "Gerir Grupos"
|
591 |
|
592 |
-
#: adrotate.php:
|
593 |
msgid "Manage Schedules"
|
594 |
msgstr "Gerenciar Agendas"
|
595 |
|
596 |
-
#: adrotate.php:
|
597 |
msgid "Manage Media"
|
598 |
msgstr "Gerenciar Mídia"
|
599 |
|
600 |
-
#: adrotate.php:
|
601 |
#: dashboard/publisher/adverts-edit.php:178
|
602 |
#: dashboard/publisher/statistics-main.php:23
|
603 |
#: dashboard/settings/statistics.php:17
|
604 |
msgid "Statistics"
|
605 |
msgstr "Estatísticas"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
msgid "Get AdRotate Pro"
|
609 |
msgstr "Obter AdRotate Pro"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
msgid "Support"
|
613 |
msgstr "Suporte"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
msgid "Settings"
|
617 |
msgstr "Definições"
|
618 |
|
619 |
-
#: adrotate.php:
|
620 |
msgid "Get AdRotate Professional"
|
621 |
msgstr "Obter AdRotate Profissional"
|
622 |
|
623 |
-
#: adrotate.php:
|
624 |
msgid "Manage"
|
625 |
msgstr "Gerenciar"
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
msgid "Advert Generator"
|
629 |
msgstr "Gerador de anúncios"
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
msgid "New Advert"
|
633 |
msgstr "Novo Anúncio"
|
634 |
|
635 |
-
#: adrotate.php:
|
636 |
msgid "Add New"
|
637 |
msgstr "Adicionar Novo"
|
638 |
|
639 |
-
#: adrotate.php:
|
640 |
msgid "Manage Media and Assets"
|
641 |
msgstr "Gerenciar Mídia e Ativos"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid ""
|
645 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
646 |
"if you have HTML5 adverts containing multiple files."
|
@@ -648,39 +652,39 @@ msgstr ""
|
|
648 |
"Upload de imagens para o AdRotate Pro banners pasta a partir daqui. Isso é "
|
649 |
"útil se você tiver HTML5 anúncios que contém vários arquivos."
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
msgid "Advert Statistics"
|
653 |
msgstr "Anúncio Estatísticas"
|
654 |
|
655 |
-
#: adrotate.php:
|
656 |
msgid "AdRotate Support"
|
657 |
msgstr "AdRotate Suporte"
|
658 |
|
659 |
-
#: adrotate.php:
|
660 |
msgid "AdRotate Settings"
|
661 |
msgstr "AdRotate Definições"
|
662 |
|
663 |
-
#: adrotate.php:
|
664 |
msgid "General"
|
665 |
msgstr "Geral"
|
666 |
|
667 |
-
#: adrotate.php:
|
668 |
msgid "Notifications"
|
669 |
msgstr "Notificações"
|
670 |
|
671 |
-
#: adrotate.php:
|
672 |
msgid "Geo Targeting"
|
673 |
msgstr "Geo Targeting"
|
674 |
|
675 |
-
#: adrotate.php:
|
676 |
msgid "Access Roles"
|
677 |
msgstr "Funções De Acesso"
|
678 |
|
679 |
-
#: adrotate.php:
|
680 |
msgid "Miscellaneous"
|
681 |
msgstr "Diversos"
|
682 |
|
683 |
-
#: adrotate.php:
|
684 |
msgid "Maintenance"
|
685 |
msgstr "Manutenção"
|
686 |
|
@@ -822,43 +826,59 @@ msgstr ""
|
|
822 |
msgid "Disabled Adverts"
|
823 |
msgstr "Deficiência De Publicidade"
|
824 |
|
825 |
-
#: dashboard/publisher/adverts-disabled.php:
|
826 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
#: dashboard/publisher/adverts-main.php:20
|
828 |
#: dashboard/publisher/groups-main.php:20
|
829 |
#: dashboard/publisher/schedules-main.php:21
|
830 |
msgid "Bulk Actions"
|
831 |
msgstr "Ações Em Massa"
|
832 |
|
833 |
-
#: dashboard/publisher/adverts-disabled.php:
|
834 |
#: dashboard/publisher/adverts-edit.php:186
|
835 |
msgid "Activate"
|
836 |
msgstr "Activar"
|
837 |
|
838 |
-
#: dashboard/publisher/adverts-disabled.php:
|
839 |
-
#: dashboard/publisher/adverts-error.php:
|
840 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
841 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
842 |
msgid "Delete"
|
843 |
msgstr "Apagar"
|
844 |
|
845 |
-
#: dashboard/publisher/adverts-disabled.php:
|
846 |
-
#: dashboard/publisher/adverts-error.php:
|
847 |
#: dashboard/publisher/adverts-main.php:23
|
848 |
msgid "Reset stats"
|
849 |
msgstr "Repor estatísticas"
|
850 |
|
851 |
-
#: dashboard/publisher/adverts-disabled.php:
|
852 |
-
#: dashboard/publisher/adverts-error.php:
|
853 |
#: dashboard/publisher/adverts-main.php:30
|
854 |
#: dashboard/publisher/groups-main.php:24
|
855 |
#: dashboard/publisher/schedules-main.php:22
|
856 |
msgid "Go"
|
857 |
msgstr "Ir"
|
858 |
|
859 |
-
#: dashboard/publisher/adverts-disabled.php:
|
860 |
#: dashboard/publisher/adverts-edit.php:263
|
861 |
-
#: dashboard/publisher/adverts-error.php:
|
862 |
#: dashboard/publisher/adverts-main.php:39
|
863 |
#: dashboard/publisher/groups-edit.php:350
|
864 |
#: dashboard/publisher/groups-main.php:32
|
@@ -866,17 +886,17 @@ msgstr "Ir"
|
|
866 |
msgid "ID"
|
867 |
msgstr "ID"
|
868 |
|
869 |
-
#: dashboard/publisher/adverts-disabled.php:
|
870 |
-
#: dashboard/publisher/adverts-error.php:
|
871 |
#: dashboard/publisher/adverts-main.php:40
|
872 |
#: dashboard/publisher/schedules-main.php:32
|
873 |
msgid "Start / End"
|
874 |
msgstr "Início / Fim"
|
875 |
|
876 |
-
#: dashboard/publisher/adverts-disabled.php:
|
877 |
#: dashboard/publisher/adverts-edit.php:116
|
878 |
#: dashboard/publisher/adverts-edit.php:264
|
879 |
-
#: dashboard/publisher/adverts-error.php:
|
880 |
#: dashboard/publisher/adverts-main.php:41
|
881 |
#: dashboard/publisher/groups-edit.php:65
|
882 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -885,14 +905,14 @@ msgstr "Início / Fim"
|
|
885 |
msgid "Name"
|
886 |
msgstr "Nome"
|
887 |
|
888 |
-
#: dashboard/publisher/adverts-disabled.php:
|
889 |
#: dashboard/publisher/adverts-main.php:43
|
890 |
#: dashboard/publisher/groups-edit.php:355
|
891 |
#: dashboard/publisher/groups-main.php:36
|
892 |
msgid "Shown"
|
893 |
msgstr "Mostrado"
|
894 |
|
895 |
-
#: dashboard/publisher/adverts-disabled.php:
|
896 |
#: dashboard/publisher/adverts-main.php:45
|
897 |
#: dashboard/publisher/groups-edit.php:356
|
898 |
#: dashboard/publisher/groups-main.php:38
|
@@ -913,7 +933,7 @@ msgstr "Mostrado"
|
|
913 |
msgid "Clicks"
|
914 |
msgstr "Cliques"
|
915 |
|
916 |
-
#: dashboard/publisher/adverts-disabled.php:
|
917 |
#: dashboard/publisher/adverts-main.php:47
|
918 |
#: dashboard/publisher/statistics-advert.php:53
|
919 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -932,22 +952,22 @@ msgstr "Cliques"
|
|
932 |
msgid "CTR"
|
933 |
msgstr "CTR"
|
934 |
|
935 |
-
#: dashboard/publisher/adverts-disabled.php:
|
936 |
-
#: dashboard/publisher/adverts-error.php:
|
937 |
#: dashboard/publisher/adverts-main.php:69
|
938 |
#: dashboard/publisher/groups-main.php:70
|
939 |
msgid "Edit"
|
940 |
msgstr "Editar"
|
941 |
|
942 |
-
#: dashboard/publisher/adverts-disabled.php:
|
943 |
-
#: dashboard/publisher/adverts-error.php:
|
944 |
#: dashboard/publisher/adverts-main.php:69
|
945 |
#: dashboard/publisher/groups-main.php:70
|
946 |
msgid "Stats"
|
947 |
msgstr "Estatísticas"
|
948 |
|
949 |
-
#: dashboard/publisher/adverts-disabled.php:
|
950 |
-
#: dashboard/publisher/adverts-error.php:
|
951 |
#: dashboard/publisher/adverts-main.php:69
|
952 |
msgid "Groups:"
|
953 |
msgstr "Grupos:"
|
@@ -1338,45 +1358,62 @@ msgstr "Anúncio de hash"
|
|
1338 |
msgid "Adverts that need attention"
|
1339 |
msgstr "Anúncios que precisam de atenção"
|
1340 |
|
1341 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1342 |
#: dashboard/publisher/adverts-main.php:21
|
1343 |
msgid "Deactivate"
|
1344 |
msgstr "Desativar"
|
1345 |
|
1346 |
-
#: dashboard/publisher/adverts-error.php:
|
1347 |
#: dashboard/publisher/adverts-main.php:25
|
1348 |
msgid "-- Renew --"
|
1349 |
msgstr "-- Renovar --"
|
1350 |
|
1351 |
-
#: dashboard/publisher/adverts-error.php:
|
1352 |
#: dashboard/publisher/adverts-main.php:26
|
1353 |
msgid "For 1 year"
|
1354 |
msgstr "Há 1 ano"
|
1355 |
|
1356 |
-
#: dashboard/publisher/adverts-error.php:
|
1357 |
#: dashboard/publisher/adverts-main.php:27
|
1358 |
msgid "For 180 days"
|
1359 |
msgstr "180 dias"
|
1360 |
|
1361 |
-
#: dashboard/publisher/adverts-error.php:
|
1362 |
#: dashboard/publisher/adverts-main.php:28
|
1363 |
msgid "For 30 days"
|
1364 |
msgstr "Para 30 dias"
|
1365 |
|
1366 |
-
#: dashboard/publisher/adverts-error.php:
|
1367 |
#: dashboard/publisher/adverts-main.php:29
|
1368 |
msgid "For 7 days"
|
1369 |
msgstr "Para 7 dias"
|
1370 |
|
1371 |
-
#: dashboard/publisher/adverts-error.php:
|
1372 |
msgid "Configuration errors"
|
1373 |
msgstr "Erros de configuração"
|
1374 |
|
1375 |
-
#: dashboard/publisher/adverts-error.php:
|
1376 |
msgid "Expires soon"
|
1377 |
msgstr "Expira em breve"
|
1378 |
|
1379 |
-
#: dashboard/publisher/adverts-error.php:
|
1380 |
#: dashboard/settings/maintenance.php:45
|
1381 |
msgid "Expired"
|
1382 |
msgstr "Expirou"
|
@@ -3152,53 +3189,53 @@ msgstr ""
|
|
3152 |
"Este número não pode ser vazio, ser inferior a 60 ou exceder 86400 segundos "
|
3153 |
"(24 horas)."
|
3154 |
|
3155 |
-
#: dashboard/support.php:
|
3156 |
msgid "Premium Support available in AdRotate Pro"
|
3157 |
msgstr "Premium Suporte disponível em AdRotate Pro"
|
3158 |
|
3159 |
-
#: dashboard/support.php:
|
3160 |
msgid "Premium support always comes first!"
|
3161 |
msgstr "Premium suporte sempre vem em primeiro lugar!"
|
3162 |
|
3163 |
-
#: dashboard/support.php:
|
3164 |
msgid "No queuing up on the forum..."
|
3165 |
msgstr "Nenhum de enfileiramento de mensagens no fórum..."
|
3166 |
|
3167 |
-
#: dashboard/support.php:
|
3168 |
msgid "Using this form includes essential information for a quick answer."
|
3169 |
msgstr ""
|
3170 |
"Usando este formulário inclui informações essenciais para uma resposta "
|
3171 |
"rápida."
|
3172 |
|
3173 |
-
#: dashboard/support.php:
|
3174 |
msgid "Available in AdRotate Professional!"
|
3175 |
msgstr "Disponível em AdRotate Profissional!"
|
3176 |
|
3177 |
-
#: dashboard/support.php:
|
3178 |
msgid "Your name:"
|
3179 |
msgstr "Seu nome:"
|
3180 |
|
3181 |
-
#: dashboard/support.php:
|
3182 |
msgid "Your Email Address:"
|
3183 |
msgstr "O Seu Endereço De E-Mail:"
|
3184 |
|
3185 |
-
#: dashboard/support.php:
|
3186 |
msgid "Subject:"
|
3187 |
msgstr "Assunto:"
|
3188 |
|
3189 |
-
#: dashboard/support.php:
|
3190 |
msgid "Problem description / Question:"
|
3191 |
msgstr "Descrição do problema / Pergunta:"
|
3192 |
|
3193 |
-
#: dashboard/support.php:
|
3194 |
msgid "Please log in to my website and take a look."
|
3195 |
msgstr "Acesse o meu site e dar uma olhada."
|
3196 |
|
3197 |
-
#: dashboard/support.php:
|
3198 |
msgid "When you send this form the following data will be submitted:"
|
3199 |
msgstr "Quando você enviar este formulário os seguintes dados será enviado:"
|
3200 |
|
3201 |
-
#: dashboard/support.php:
|
3202 |
msgid ""
|
3203 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3204 |
"information will be included with the message."
|
@@ -3206,18 +3243,61 @@ msgstr ""
|
|
3206 |
"O seu nome, endereço de email da Conta, o url do Seu site e algumas "
|
3207 |
"informações básicas do WordPress informações serão incluídas com a mensagem."
|
3208 |
|
3209 |
-
#: dashboard/support.php:
|
3210 |
msgid "This information is treated as confidential and is mandatory."
|
3211 |
msgstr "Esta informação é tratada como confidencial e é obrigatória."
|
3212 |
|
3213 |
-
#: dashboard/support.php:
|
3214 |
msgid "Get Help"
|
3215 |
msgstr "Obter Ajuda"
|
3216 |
|
3217 |
-
#: dashboard/support.php:
|
3218 |
msgid "Premium Support is available in AdRotate Pro!"
|
3219 |
msgstr "Premium Suporte está disponível em AdRotate Pro!"
|
3220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3221 |
#~ msgid "Check all adverts for configuration errors"
|
3222 |
#~ msgstr "Verifique todos os anúncios erros de configuração"
|
3223 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:19-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-10-04 21:20-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
18 |
"X-Loco-Version: 2.5.0; wp-5.6.2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: adrotate-block.php:49
|
22 |
+
msgid "AdRotate - Advertisements"
|
23 |
+
msgstr "AdRotate - Anúncios"
|
24 |
+
|
25 |
#: adrotate-functions.php:800
|
26 |
msgid "Advert saved"
|
27 |
msgstr "Anúncio salvo"
|
172 |
msgid "Unexpected error"
|
173 |
msgstr "Erro inesperado"
|
174 |
|
175 |
+
#: adrotate-manage-publisher.php:877
|
176 |
msgid "AdRotate Advertiser"
|
177 |
msgstr "AdRotate Anunciante"
|
178 |
|
179 |
+
#: adrotate-output.php:552
|
180 |
msgid "Oh no! Something went wrong!"
|
181 |
msgstr "Oh, não! Algo deu errado!"
|
182 |
|
183 |
+
#: adrotate-output.php:553
|
184 |
msgid ""
|
185 |
"WordPress was unable to verify the authenticity of the url you have clicked. "
|
186 |
"Verify if the url used is valid or log in via your browser."
|
188 |
"O WordPress foi possível verificar a autenticidade da url que você clicou. "
|
189 |
"Verifique se o url utilizado é válido fazer o login usando o seu browser."
|
190 |
|
191 |
+
#: adrotate-output.php:554
|
192 |
msgid ""
|
193 |
"If you have received the url you want to visit via email, you are being "
|
194 |
"tricked!"
|
196 |
"Se você tiver recebido o url que você deseja visitar, via e-mail, você está "
|
197 |
"sendo enganado!"
|
198 |
|
199 |
+
#: adrotate-output.php:555
|
200 |
msgid "Contact support if the issue persists:"
|
201 |
msgstr "Contato com o suporte se o problema persistir:"
|
202 |
|
203 |
+
#: adrotate-output.php:567
|
204 |
msgid ""
|
205 |
"Error, Advert is not available at this time due to schedule/geolocation "
|
206 |
"restrictions!"
|
208 |
"Erro, o Anúncio não está disponível neste momento devido às restrições de "
|
209 |
"agendamento/geolocalização!"
|
210 |
|
211 |
+
#: adrotate-output.php:572
|
212 |
msgid ""
|
213 |
"Either there are no banners, they are disabled or none qualified for this "
|
214 |
"location!"
|
215 |
msgstr ""
|
216 |
"Há banners, eles são deficientes ou nenhum qualificado para este local!"
|
217 |
|
218 |
+
#: adrotate-output.php:577
|
219 |
msgid "Error, no Advert ID set! Check your syntax!"
|
220 |
msgstr "Erro, sem conjunto de anúncios! Verifique sua sintaxe!"
|
221 |
|
222 |
+
#: adrotate-output.php:583
|
223 |
msgid "Error, no group ID set! Check your syntax!"
|
224 |
msgstr "Erro, nenhum ID de grupo definido! Verifique sua sintaxe!"
|
225 |
|
226 |
+
#: adrotate-output.php:588
|
227 |
msgid "Error, group does not exist! Check your syntax!"
|
228 |
msgstr "Erro, não existe o grupo! Verifique sua sintaxe!"
|
229 |
|
230 |
+
#: adrotate-output.php:594
|
231 |
msgid ""
|
232 |
"There was an error locating the database tables for AdRotate. Please "
|
233 |
"deactivate and re-activate AdRotate from the plugin page!!"
|
235 |
"Houve um erro ao localizar o banco de dados de tabelas para AdRotate. Por "
|
236 |
"favor, desativar e reativar o AdRotate a partir da página do plugin!!"
|
237 |
|
238 |
+
#: adrotate-output.php:594
|
239 |
+
msgid "If this does not solve the issue please seek support on the"
|
240 |
msgstr "Se isso não resolver o problema, por favor, procure apoio em"
|
241 |
|
242 |
+
#: adrotate-output.php:600
|
243 |
msgid ""
|
244 |
"There was an error loading the page. Please try again by reloading the page "
|
245 |
"via the menu on the left."
|
247 |
"Ocorreu um erro ao carregar a página. Por favor, tente novamente ao "
|
248 |
"recarregar a página através do menu à esquerda."
|
249 |
|
250 |
+
#: adrotate-output.php:600
|
251 |
+
msgid "If the issue persists please seek help on the"
|
252 |
+
msgstr "Se o assunto persistir, por favor, procure ajuda no"
|
253 |
|
254 |
+
#: adrotate-output.php:606
|
255 |
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:20
|
260 |
msgid "Check adverts"
|
261 |
msgstr "Verificação de anúncios"
|
262 |
|
263 |
+
#: adrotate-output.php:638
|
264 |
msgid ""
|
265 |
"You have enabled caching support but W3 Total Cache is not active on your "
|
266 |
"site!"
|
268 |
"Você tiver ativado o cache de apoio, mas W3 Total Cache não estiver ativo no "
|
269 |
"seu site!"
|
270 |
|
271 |
+
#: adrotate-output.php:638
|
272 |
msgid "Disable W3 Total Cache Support"
|
273 |
msgstr "Desativar O W3 Total Cache De Apoio"
|
274 |
|
275 |
+
#: adrotate-output.php:641
|
276 |
msgid ""
|
277 |
"You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
|
278 |
"not set."
|
280 |
"Você habilitar o cache de apoio, mas o W3TC_DYNAMIC_SECURITY definição não "
|
281 |
"está definido."
|
282 |
|
283 |
+
#: adrotate-output.php:641
|
284 |
msgid "How to configure W3 Total Cache"
|
285 |
msgstr "Como configurar o W3 Total Cache"
|
286 |
|
287 |
+
#: adrotate-output.php:645
|
288 |
msgid ""
|
289 |
"You have enable caching support but Borlabs Cache is not active on your site!"
|
290 |
msgstr ""
|
291 |
"Você habilitar o cache de apoio, mas Borlabs Cache não estiver ativo no seu "
|
292 |
"site!"
|
293 |
|
294 |
+
#: adrotate-output.php:645
|
295 |
msgid "Disable Borlabs Cache Support"
|
296 |
msgstr "Desativar Borlabs Suporte De Cache"
|
297 |
|
298 |
+
#: adrotate-output.php:650
|
299 |
msgid ""
|
300 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
301 |
msgstr ""
|
302 |
"Você tiver ativado Borlabs suporte a Cache, mas o cache de Fragmento não "
|
303 |
"está habilitado!"
|
304 |
|
305 |
+
#: adrotate-output.php:650
|
306 |
msgid "Enable Fragment Caching"
|
307 |
msgstr "Habilitar O Cache De Fragmento"
|
308 |
|
309 |
+
#: adrotate-output.php:657
|
310 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
311 |
msgstr "O AdRotate Banner pasta não é gravável ou não existe."
|
312 |
|
313 |
+
#: adrotate-output.php:657
|
314 |
msgid "Set up your banner folder"
|
315 |
msgstr "Configurar o seu banner pasta"
|
316 |
|
317 |
+
#: adrotate-output.php:660
|
318 |
msgid ""
|
319 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
320 |
"can delete this plugin after AdRotate Pro is activated."
|
322 |
"Você tem AdRotate Professional instalado. Por favor, mude para o AdRotate "
|
323 |
"Pro! Você pode excluir este plugin depois AdRotate Pro está ativado."
|
324 |
|
325 |
+
#: adrotate-output.php:660
|
326 |
msgid "Switch plugins"
|
327 |
msgstr "Interruptor de plugins"
|
328 |
|
329 |
+
#: adrotate-output.php:663
|
330 |
msgid ""
|
331 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
332 |
"installed twice or your current installation has the wrong folder name. "
|
336 |
"vezes ou a sua instalação atual tiver errado o nome da pasta. Por favor "
|
337 |
"instale o plugin corretamente!"
|
338 |
|
339 |
+
#: adrotate-output.php:663
|
340 |
msgid "Installation instructions"
|
341 |
msgstr "Instruções de instalação"
|
342 |
|
343 |
+
#: adrotate-output.php:739
|
344 |
msgid "your attention:"
|
345 |
msgstr "atenção:"
|
346 |
|
347 |
+
#: adrotate-output.php:778
|
348 |
msgid ""
|
349 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
350 |
"menu. If you need help getting started take a look at the"
|
352 |
"Obrigado por escolher AdRotate. Tudo relacionado com o AdRotate é neste "
|
353 |
"menu. Se você precisar de ajuda para começar, dê uma olhada no"
|
354 |
|
355 |
+
#: adrotate-output.php:778
|
356 |
msgid "manuals"
|
357 |
msgstr "manuais"
|
358 |
|
359 |
+
#: adrotate-output.php:778
|
360 |
msgid "and"
|
361 |
msgstr "e"
|
362 |
|
363 |
+
#: adrotate-output.php:778
|
364 |
msgid "forums"
|
365 |
msgstr "fóruns"
|
366 |
|
367 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
368 |
msgid "Post Tweet"
|
369 |
msgstr "Postar Tweet"
|
370 |
|
371 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
372 |
msgid "Share on Facebook"
|
373 |
msgstr "Compartilhar no Facebook"
|
374 |
|
375 |
+
#: adrotate-output.php:833
|
376 |
msgid "Write review on wordpress.org"
|
377 |
msgstr "Escreva revisão sobre WordPress.org"
|
378 |
|
379 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
380 |
msgid "Thank you very much for your help and support!"
|
381 |
msgstr "Muito obrigado por sua ajuda e apoio!"
|
382 |
|
383 |
+
#: adrotate-output.php:864
|
384 |
msgid "Need help fast? Or do you have a question?"
|
385 |
msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
|
386 |
|
387 |
+
#: adrotate-output.php:865
|
388 |
msgid "Help AdRotate Grow"
|
389 |
msgstr "Ajuda AdRotate Crescer"
|
390 |
|
391 |
+
#: adrotate-output.php:866
|
392 |
msgid "Get more features with AdRotate Pro"
|
393 |
msgstr "Obter mais recursos com AdRotate Pro"
|
394 |
|
395 |
+
#: adrotate-output.php:872
|
396 |
msgid ""
|
397 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
398 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
403 |
"AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
|
404 |
"solução na primeira resposta."
|
405 |
|
406 |
+
#: adrotate-output.php:873
|
407 |
msgid "AdRotate Manuals"
|
408 |
msgstr "Manuais de AdRotate"
|
409 |
|
410 |
+
#: adrotate-output.php:873
|
411 |
msgid "Support Forums"
|
412 |
msgstr "Fóruns de suporte"
|
413 |
|
414 |
+
#: adrotate-output.php:874
|
415 |
msgid ""
|
416 |
"When posting on the forum, please include a brief description of the "
|
417 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
423 |
"está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
|
424 |
"obter uma melhor resposta ou aconselhamento."
|
425 |
|
426 |
+
#: adrotate-output.php:876
|
427 |
msgid ""
|
428 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
429 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
436 |
"de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
|
437 |
"futuro."
|
438 |
|
439 |
+
#: adrotate-output.php:877
|
440 |
msgid "Write review on WordPress.org"
|
441 |
msgstr "Escreva revisão sobre WordPress.org"
|
442 |
|
443 |
+
#: adrotate-output.php:880
|
444 |
msgid ""
|
445 |
"AdRotate Professional has a lot more functions for even better advertising "
|
446 |
"management. Check out the feature comparison tab on any of the product pages "
|
451 |
"qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
|
452 |
"oferecer para você!"
|
453 |
|
454 |
+
#: adrotate-output.php:880
|
455 |
msgid "Compare Licenses"
|
456 |
msgstr "Comparar licenças"
|
457 |
|
458 |
+
#: adrotate-output.php:881
|
459 |
msgid "Single License"
|
460 |
msgstr "Licença"
|
461 |
|
462 |
+
#: adrotate-output.php:881
|
463 |
msgid "Use on ONE WordPress installation."
|
464 |
msgstr "O uso em UMA instalação do WordPress."
|
465 |
|
466 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
467 |
msgid "Buy now"
|
468 |
msgstr "Comprar agora"
|
469 |
|
470 |
+
#: adrotate-output.php:882
|
471 |
msgid "Multi License"
|
472 |
msgstr "Multi-Licença"
|
473 |
|
474 |
+
#: adrotate-output.php:882
|
475 |
msgid "Use on up to FIVE WordPress installations."
|
476 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
477 |
|
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:106 adrotate.php:176
|
589 |
msgid "Manage Adverts"
|
590 |
msgstr "Gerenciar Anúncios"
|
591 |
|
592 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
593 |
msgid "Manage Groups"
|
594 |
msgstr "Gerir Grupos"
|
595 |
|
596 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
597 |
msgid "Manage Schedules"
|
598 |
msgstr "Gerenciar Agendas"
|
599 |
|
600 |
+
#: adrotate.php:109
|
601 |
msgid "Manage Media"
|
602 |
msgstr "Gerenciar Mídia"
|
603 |
|
604 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
612 |
msgid "Get AdRotate Pro"
|
613 |
msgstr "Obter AdRotate Pro"
|
614 |
|
615 |
+
#: adrotate.php:112
|
616 |
msgid "Support"
|
617 |
msgstr "Suporte"
|
618 |
|
619 |
+
#: adrotate.php:113
|
620 |
msgid "Settings"
|
621 |
msgstr "Definições"
|
622 |
|
623 |
+
#: adrotate.php:132
|
624 |
msgid "Get AdRotate Professional"
|
625 |
msgstr "Obter AdRotate Profissional"
|
626 |
|
627 |
+
#: adrotate.php:236 adrotate.php:308
|
628 |
msgid "Manage"
|
629 |
msgstr "Gerenciar"
|
630 |
|
631 |
+
#: adrotate.php:237
|
632 |
msgid "Advert Generator"
|
633 |
msgstr "Gerador de anúncios"
|
634 |
|
635 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
636 |
msgid "New Advert"
|
637 |
msgstr "Novo Anúncio"
|
638 |
|
639 |
+
#: adrotate.php:309
|
640 |
msgid "Add New"
|
641 |
msgstr "Adicionar Novo"
|
642 |
|
643 |
+
#: adrotate.php:377
|
644 |
msgid "Manage Media and Assets"
|
645 |
msgstr "Gerenciar Mídia e Ativos"
|
646 |
|
647 |
+
#: adrotate.php:381
|
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 |
"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:423
|
656 |
msgid "Advert Statistics"
|
657 |
msgstr "Anúncio Estatísticas"
|
658 |
|
659 |
+
#: adrotate.php:466
|
660 |
msgid "AdRotate Support"
|
661 |
msgstr "AdRotate Suporte"
|
662 |
|
663 |
+
#: adrotate.php:498
|
664 |
msgid "AdRotate Settings"
|
665 |
msgstr "AdRotate Definições"
|
666 |
|
667 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
668 |
msgid "General"
|
669 |
msgstr "Geral"
|
670 |
|
671 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
672 |
msgid "Notifications"
|
673 |
msgstr "Notificações"
|
674 |
|
675 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
676 |
msgid "Geo Targeting"
|
677 |
msgstr "Geo Targeting"
|
678 |
|
679 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
680 |
msgid "Access Roles"
|
681 |
msgstr "Funções De Acesso"
|
682 |
|
683 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
684 |
msgid "Miscellaneous"
|
685 |
msgstr "Diversos"
|
686 |
|
687 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
688 |
msgid "Maintenance"
|
689 |
msgstr "Manutenção"
|
690 |
|
826 |
msgid "Disabled Adverts"
|
827 |
msgstr "Deficiência De Publicidade"
|
828 |
|
829 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
830 |
+
msgid ""
|
831 |
+
"These adverts are temporarily disabled. You can archive adverts to "
|
832 |
+
"permanently disable them."
|
833 |
+
msgstr ""
|
834 |
+
"Estes anúncios estão temporariamente desativados. Você pode arquivar "
|
835 |
+
"anúncios para desativá-los permanentemente."
|
836 |
+
|
837 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
838 |
+
msgid ""
|
839 |
+
"Archiving adverts moves gathered statistics away from the live database "
|
840 |
+
"which may speed up your website."
|
841 |
+
msgstr ""
|
842 |
+
"Os anúncios de arquivamento movem estatísticas coletadas para longe do banco "
|
843 |
+
"de dados ao vivo, o que pode acelerar seu site."
|
844 |
+
|
845 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
846 |
+
#: dashboard/publisher/adverts-error.php:20
|
847 |
#: dashboard/publisher/adverts-main.php:20
|
848 |
#: dashboard/publisher/groups-main.php:20
|
849 |
#: dashboard/publisher/schedules-main.php:21
|
850 |
msgid "Bulk Actions"
|
851 |
msgstr "Ações Em Massa"
|
852 |
|
853 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
854 |
#: dashboard/publisher/adverts-edit.php:186
|
855 |
msgid "Activate"
|
856 |
msgstr "Activar"
|
857 |
|
858 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
859 |
+
#: dashboard/publisher/adverts-error.php:22
|
860 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
861 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
862 |
msgid "Delete"
|
863 |
msgstr "Apagar"
|
864 |
|
865 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
866 |
+
#: dashboard/publisher/adverts-error.php:23
|
867 |
#: dashboard/publisher/adverts-main.php:23
|
868 |
msgid "Reset stats"
|
869 |
msgstr "Repor estatísticas"
|
870 |
|
871 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
872 |
+
#: dashboard/publisher/adverts-error.php:30
|
873 |
#: dashboard/publisher/adverts-main.php:30
|
874 |
#: dashboard/publisher/groups-main.php:24
|
875 |
#: dashboard/publisher/schedules-main.php:22
|
876 |
msgid "Go"
|
877 |
msgstr "Ir"
|
878 |
|
879 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
880 |
#: dashboard/publisher/adverts-edit.php:263
|
881 |
+
#: dashboard/publisher/adverts-error.php:40
|
882 |
#: dashboard/publisher/adverts-main.php:39
|
883 |
#: dashboard/publisher/groups-edit.php:350
|
884 |
#: dashboard/publisher/groups-main.php:32
|
886 |
msgid "ID"
|
887 |
msgstr "ID"
|
888 |
|
889 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
890 |
+
#: dashboard/publisher/adverts-error.php:42
|
891 |
#: dashboard/publisher/adverts-main.php:40
|
892 |
#: dashboard/publisher/schedules-main.php:32
|
893 |
msgid "Start / End"
|
894 |
msgstr "Início / Fim"
|
895 |
|
896 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
897 |
#: dashboard/publisher/adverts-edit.php:116
|
898 |
#: dashboard/publisher/adverts-edit.php:264
|
899 |
+
#: dashboard/publisher/adverts-error.php:41
|
900 |
#: dashboard/publisher/adverts-main.php:41
|
901 |
#: dashboard/publisher/groups-edit.php:65
|
902 |
#: dashboard/publisher/groups-edit.php:351
|
905 |
msgid "Name"
|
906 |
msgstr "Nome"
|
907 |
|
908 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
909 |
#: dashboard/publisher/adverts-main.php:43
|
910 |
#: dashboard/publisher/groups-edit.php:355
|
911 |
#: dashboard/publisher/groups-main.php:36
|
912 |
msgid "Shown"
|
913 |
msgstr "Mostrado"
|
914 |
|
915 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
916 |
#: dashboard/publisher/adverts-main.php:45
|
917 |
#: dashboard/publisher/groups-edit.php:356
|
918 |
#: dashboard/publisher/groups-main.php:38
|
933 |
msgid "Clicks"
|
934 |
msgstr "Cliques"
|
935 |
|
936 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
937 |
#: dashboard/publisher/adverts-main.php:47
|
938 |
#: dashboard/publisher/statistics-advert.php:53
|
939 |
#: dashboard/publisher/statistics-advert.php:59
|
952 |
msgid "CTR"
|
953 |
msgstr "CTR"
|
954 |
|
955 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
956 |
+
#: dashboard/publisher/adverts-error.php:57
|
957 |
#: dashboard/publisher/adverts-main.php:69
|
958 |
#: dashboard/publisher/groups-main.php:70
|
959 |
msgid "Edit"
|
960 |
msgstr "Editar"
|
961 |
|
962 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
963 |
+
#: dashboard/publisher/adverts-error.php:57
|
964 |
#: dashboard/publisher/adverts-main.php:69
|
965 |
#: dashboard/publisher/groups-main.php:70
|
966 |
msgid "Stats"
|
967 |
msgstr "Estatísticas"
|
968 |
|
969 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
970 |
+
#: dashboard/publisher/adverts-error.php:57
|
971 |
#: dashboard/publisher/adverts-main.php:69
|
972 |
msgid "Groups:"
|
973 |
msgstr "Grupos:"
|
1358 |
msgid "Adverts that need attention"
|
1359 |
msgstr "Anúncios que precisam de atenção"
|
1360 |
|
1361 |
+
#: dashboard/publisher/adverts-error.php:13
|
1362 |
+
msgid ""
|
1363 |
+
"The adverts listed here are currently not showing on your website. This is "
|
1364 |
+
"because they are almost expired, have expired or have configuration issues."
|
1365 |
+
msgstr ""
|
1366 |
+
"Os anúncios listados aqui ainda não estão sendo exibidos em seu site. Isso "
|
1367 |
+
"porque eles estão quase vencidos, expiraram ou têm problemas de configuração."
|
1368 |
+
|
1369 |
+
#: dashboard/publisher/adverts-error.php:13
|
1370 |
+
msgid ""
|
1371 |
+
"To fix the issue edit each advert and look for one or more notification at "
|
1372 |
+
"the top to see what AdRotate thinks is wrong with it."
|
1373 |
+
msgstr ""
|
1374 |
+
"Para corrigir o problema edite cada anúncio e procure uma ou mais "
|
1375 |
+
"notificações na parte superior para ver o que o AdRotate acha que está "
|
1376 |
+
"errado com ele."
|
1377 |
+
|
1378 |
+
#: dashboard/publisher/adverts-error.php:21
|
1379 |
#: dashboard/publisher/adverts-main.php:21
|
1380 |
msgid "Deactivate"
|
1381 |
msgstr "Desativar"
|
1382 |
|
1383 |
+
#: dashboard/publisher/adverts-error.php:24
|
1384 |
#: dashboard/publisher/adverts-main.php:25
|
1385 |
msgid "-- Renew --"
|
1386 |
msgstr "-- Renovar --"
|
1387 |
|
1388 |
+
#: dashboard/publisher/adverts-error.php:25
|
1389 |
#: dashboard/publisher/adverts-main.php:26
|
1390 |
msgid "For 1 year"
|
1391 |
msgstr "Há 1 ano"
|
1392 |
|
1393 |
+
#: dashboard/publisher/adverts-error.php:26
|
1394 |
#: dashboard/publisher/adverts-main.php:27
|
1395 |
msgid "For 180 days"
|
1396 |
msgstr "180 dias"
|
1397 |
|
1398 |
+
#: dashboard/publisher/adverts-error.php:27
|
1399 |
#: dashboard/publisher/adverts-main.php:28
|
1400 |
msgid "For 30 days"
|
1401 |
msgstr "Para 30 dias"
|
1402 |
|
1403 |
+
#: dashboard/publisher/adverts-error.php:28
|
1404 |
#: dashboard/publisher/adverts-main.php:29
|
1405 |
msgid "For 7 days"
|
1406 |
msgstr "Para 7 dias"
|
1407 |
|
1408 |
+
#: dashboard/publisher/adverts-error.php:65
|
1409 |
msgid "Configuration errors"
|
1410 |
msgstr "Erros de configuração"
|
1411 |
|
1412 |
+
#: dashboard/publisher/adverts-error.php:66
|
1413 |
msgid "Expires soon"
|
1414 |
msgstr "Expira em breve"
|
1415 |
|
1416 |
+
#: dashboard/publisher/adverts-error.php:67
|
1417 |
#: dashboard/settings/maintenance.php:45
|
1418 |
msgid "Expired"
|
1419 |
msgstr "Expirou"
|
3189 |
"Este número não pode ser vazio, ser inferior a 60 ou exceder 86400 segundos "
|
3190 |
"(24 horas)."
|
3191 |
|
3192 |
+
#: dashboard/support.php:74
|
3193 |
msgid "Premium Support available in AdRotate Pro"
|
3194 |
msgstr "Premium Suporte disponível em AdRotate Pro"
|
3195 |
|
3196 |
+
#: dashboard/support.php:77
|
3197 |
msgid "Premium support always comes first!"
|
3198 |
msgstr "Premium suporte sempre vem em primeiro lugar!"
|
3199 |
|
3200 |
+
#: dashboard/support.php:77
|
3201 |
msgid "No queuing up on the forum..."
|
3202 |
msgstr "Nenhum de enfileiramento de mensagens no fórum..."
|
3203 |
|
3204 |
+
#: dashboard/support.php:77
|
3205 |
msgid "Using this form includes essential information for a quick answer."
|
3206 |
msgstr ""
|
3207 |
"Usando este formulário inclui informações essenciais para uma resposta "
|
3208 |
"rápida."
|
3209 |
|
3210 |
+
#: dashboard/support.php:77
|
3211 |
msgid "Available in AdRotate Professional!"
|
3212 |
msgstr "Disponível em AdRotate Profissional!"
|
3213 |
|
3214 |
+
#: dashboard/support.php:79
|
3215 |
msgid "Your name:"
|
3216 |
msgstr "Seu nome:"
|
3217 |
|
3218 |
+
#: dashboard/support.php:80
|
3219 |
msgid "Your Email Address:"
|
3220 |
msgstr "O Seu Endereço De E-Mail:"
|
3221 |
|
3222 |
+
#: dashboard/support.php:81
|
3223 |
msgid "Subject:"
|
3224 |
msgstr "Assunto:"
|
3225 |
|
3226 |
+
#: dashboard/support.php:82
|
3227 |
msgid "Problem description / Question:"
|
3228 |
msgstr "Descrição do problema / Pergunta:"
|
3229 |
|
3230 |
+
#: dashboard/support.php:83
|
3231 |
msgid "Please log in to my website and take a look."
|
3232 |
msgstr "Acesse o meu site e dar uma olhada."
|
3233 |
|
3234 |
+
#: dashboard/support.php:85
|
3235 |
msgid "When you send this form the following data will be submitted:"
|
3236 |
msgstr "Quando você enviar este formulário os seguintes dados será enviado:"
|
3237 |
|
3238 |
+
#: dashboard/support.php:86
|
3239 |
msgid ""
|
3240 |
"Your name, Account email address, Your website url and some basic WordPress "
|
3241 |
"information will be included with the message."
|
3243 |
"O seu nome, endereço de email da Conta, o url do Seu site e algumas "
|
3244 |
"informações básicas do WordPress informações serão incluídas com a mensagem."
|
3245 |
|
3246 |
+
#: dashboard/support.php:86
|
3247 |
msgid "This information is treated as confidential and is mandatory."
|
3248 |
msgstr "Esta informação é tratada como confidencial e é obrigatória."
|
3249 |
|
3250 |
+
#: dashboard/support.php:89
|
3251 |
msgid "Get Help"
|
3252 |
msgstr "Obter Ajuda"
|
3253 |
|
3254 |
+
#: dashboard/support.php:89
|
3255 |
msgid "Premium Support is available in AdRotate Pro!"
|
3256 |
msgstr "Premium Suporte está disponível em AdRotate Pro!"
|
3257 |
|
3258 |
+
#: library/block.js:19 library/block.js:49
|
3259 |
+
msgid "AdRotate Advert"
|
3260 |
+
msgstr "Anúncio do AdRotate"
|
3261 |
+
|
3262 |
+
#: library/block.js:22
|
3263 |
+
msgid "Show a single advert by entering an advert ID."
|
3264 |
+
msgstr "Mostre um único anúncio digitando um ID de anúncio."
|
3265 |
+
|
3266 |
+
#: library/block.js:52
|
3267 |
+
msgid "Enter an Advert ID (numbers only):"
|
3268 |
+
msgstr "Digite um ID de anúncio (somente números):"
|
3269 |
+
|
3270 |
+
#: library/block.js:63
|
3271 |
+
msgid ""
|
3272 |
+
"You can find the advert ID in Manage Adverts. Any special markup, code or "
|
3273 |
+
"layout styles can be applied in the advert itself or by placing the advert "
|
3274 |
+
"in a group."
|
3275 |
+
msgstr ""
|
3276 |
+
"Você pode encontrar o ID de anúncio em Gerenciar anúncios. Qualquer marcação "
|
3277 |
+
"especial, código ou estilos de layout podem ser aplicados no próprio anúncio "
|
3278 |
+
"ou colocando o anúncio em um grupo."
|
3279 |
+
|
3280 |
+
#: library/block.js:73 library/block.js:103
|
3281 |
+
msgid "AdRotate Group"
|
3282 |
+
msgstr "Grupo AdRotate"
|
3283 |
+
|
3284 |
+
#: library/block.js:76
|
3285 |
+
msgid "Show a group of adverts by entering a group ID."
|
3286 |
+
msgstr "Mostre um grupo de anúncios entrando em uma ID do grupo."
|
3287 |
+
|
3288 |
+
#: library/block.js:106
|
3289 |
+
msgid "Enter a group ID (numbers only):"
|
3290 |
+
msgstr "Digite um ID de grupo (somente números):"
|
3291 |
+
|
3292 |
+
#: library/block.js:117
|
3293 |
+
msgid ""
|
3294 |
+
"You can find the group ID in Manage Groups. Any special markup, code or "
|
3295 |
+
"layout styles can be applied in the group wrapper when editing the group."
|
3296 |
+
msgstr ""
|
3297 |
+
"Você pode encontrar o ID do grupo em Gerenciar grupos. Qualquer marcação "
|
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 |
|
language/adrotate.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
-
"POT-Creation-Date: 2022-04
|
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"
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
|
|
|
|
|
|
|
|
20 |
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr ""
|
@@ -145,224 +149,224 @@ msgstr ""
|
|
145 |
msgid "Unexpected error"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: adrotate-manage-publisher.php:
|
149 |
msgid "AdRotate Advertiser"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: adrotate-output.php:
|
153 |
msgid "Oh no! Something went wrong!"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: adrotate-output.php:
|
157 |
msgid "WordPress was unable to verify the authenticity of the url you have clicked. Verify if the url used is valid or log in via your browser."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: adrotate-output.php:
|
161 |
msgid "If you have received the url you want to visit via email, you are being tricked!"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: adrotate-output.php:
|
165 |
msgid "Contact support if the issue persists:"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: adrotate-output.php:
|
169 |
msgid "Error, Advert is not available at this time due to schedule/geolocation restrictions!"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: adrotate-output.php:
|
173 |
msgid "Either there are no banners, they are disabled or none qualified for this location!"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: adrotate-output.php:
|
177 |
msgid "Error, no Advert ID set! Check your syntax!"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: adrotate-output.php:
|
181 |
msgid "Error, no group ID set! Check your syntax!"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: adrotate-output.php:
|
185 |
msgid "Error, group does not exist! Check your syntax!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: adrotate-output.php:
|
189 |
msgid "There was an error locating the database tables for AdRotate. Please deactivate and re-activate AdRotate from the plugin page!!"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: adrotate-output.php:
|
193 |
-
msgid "If this does not solve the issue please seek support
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: adrotate-output.php:
|
197 |
msgid "There was an error loading the page. Please try again by reloading the page via the menu on the left."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: adrotate-output.php:
|
201 |
-
msgid "If the issue persists please seek help
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: adrotate-output.php:
|
205 |
msgid "An unknown error occured."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: adrotate-output.php:
|
209 |
#: dashboard/settings/maintenance.php:20
|
210 |
msgid "Check adverts"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: adrotate-output.php:
|
214 |
msgid "You have enabled caching support but W3 Total Cache is not active on your site!"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: adrotate-output.php:
|
218 |
msgid "Disable W3 Total Cache Support"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is not set."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
msgid "How to configure W3 Total Cache"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: adrotate-output.php:
|
230 |
msgid "You have enable caching support but Borlabs Cache is not active on your site!"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: adrotate-output.php:
|
234 |
msgid "Disable Borlabs Cache Support"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: adrotate-output.php:
|
238 |
msgid "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: adrotate-output.php:
|
242 |
msgid "Enable Fragment Caching"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: adrotate-output.php:
|
246 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: adrotate-output.php:
|
250 |
msgid "Set up your banner folder"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: adrotate-output.php:
|
254 |
msgid "You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
msgid "Switch plugins"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: adrotate-output.php:
|
262 |
msgid "Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: adrotate-output.php:
|
266 |
msgid "Installation instructions"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
msgid "your attention:"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
msgid "Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "manuals"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "and"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "forums"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
msgid "Post Tweet"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "Share on Facebook"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: adrotate-output.php:
|
298 |
msgid "Write review on wordpress.org"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: adrotate-output.php:
|
302 |
msgid "Thank you very much for your help and support!"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
msgid "Need help fast? Or do you have a question?"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
msgid "Help AdRotate Grow"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: adrotate-output.php:
|
314 |
msgid "Get more features with AdRotate Pro"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
msgid "If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
msgid "AdRotate Manuals"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
msgid "Support Forums"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: adrotate-output.php:
|
330 |
msgid "When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "Write review on WordPress.org"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "Compare Licenses"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "Single License"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "Use on ONE WordPress installation."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid "Buy now"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: adrotate-output.php:
|
362 |
msgid "Multi License"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: adrotate-output.php:
|
366 |
msgid "Use on up to FIVE WordPress installations."
|
367 |
msgstr ""
|
368 |
|
@@ -476,102 +480,102 @@ msgstr ""
|
|
476 |
msgid "Fill in the ID of the type you want to display!"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: adrotate.php:
|
480 |
msgid "Manage Adverts"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: adrotate.php:
|
484 |
msgid "Manage Groups"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: adrotate.php:
|
488 |
msgid "Manage Schedules"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: adrotate.php:
|
492 |
msgid "Manage Media"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: adrotate.php:
|
496 |
#: dashboard/publisher/adverts-edit.php:178
|
497 |
#: dashboard/publisher/statistics-main.php:23
|
498 |
#: dashboard/settings/statistics.php:17
|
499 |
msgid "Statistics"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: adrotate.php:
|
503 |
msgid "Get AdRotate Pro"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: adrotate.php:
|
507 |
msgid "Support"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: adrotate.php:
|
511 |
msgid "Settings"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: adrotate.php:
|
515 |
msgid "Get AdRotate Professional"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: adrotate.php:
|
519 |
msgid "Manage"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: adrotate.php:
|
523 |
msgid "Advert Generator"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: adrotate.php:
|
527 |
msgid "New Advert"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: adrotate.php:
|
531 |
msgid "Add New"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: adrotate.php:
|
535 |
msgid "Manage Media and Assets"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: adrotate.php:
|
539 |
msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: adrotate.php:
|
543 |
msgid "Advert Statistics"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
msgid "AdRotate Support"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: adrotate.php:
|
551 |
msgid "AdRotate Settings"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: adrotate.php:
|
555 |
msgid "General"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: adrotate.php:
|
559 |
msgid "Notifications"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: adrotate.php:
|
563 |
msgid "Geo Targeting"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: adrotate.php:
|
567 |
msgid "Access Roles"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: adrotate.php:
|
571 |
msgid "Miscellaneous"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: adrotate.php:
|
575 |
msgid "Maintenance"
|
576 |
msgstr ""
|
577 |
|
@@ -639,43 +643,51 @@ msgstr ""
|
|
639 |
msgid "Disabled Adverts"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: dashboard/publisher/adverts-disabled.php:
|
643 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
644 |
#: dashboard/publisher/adverts-main.php:20
|
645 |
#: dashboard/publisher/groups-main.php:20
|
646 |
#: dashboard/publisher/schedules-main.php:21
|
647 |
msgid "Bulk Actions"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: dashboard/publisher/adverts-disabled.php:
|
651 |
#: dashboard/publisher/adverts-edit.php:186
|
652 |
msgid "Activate"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: dashboard/publisher/adverts-disabled.php:
|
656 |
-
#: dashboard/publisher/adverts-error.php:
|
657 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
658 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
659 |
msgid "Delete"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: dashboard/publisher/adverts-disabled.php:
|
663 |
-
#: dashboard/publisher/adverts-error.php:
|
664 |
#: dashboard/publisher/adverts-main.php:23
|
665 |
msgid "Reset stats"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: dashboard/publisher/adverts-disabled.php:
|
669 |
-
#: dashboard/publisher/adverts-error.php:
|
670 |
#: dashboard/publisher/adverts-main.php:30
|
671 |
#: dashboard/publisher/groups-main.php:24
|
672 |
#: dashboard/publisher/schedules-main.php:22
|
673 |
msgid "Go"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: dashboard/publisher/adverts-disabled.php:
|
677 |
#: dashboard/publisher/adverts-edit.php:263
|
678 |
-
#: dashboard/publisher/adverts-error.php:
|
679 |
#: dashboard/publisher/adverts-main.php:39
|
680 |
#: dashboard/publisher/groups-edit.php:350
|
681 |
#: dashboard/publisher/groups-main.php:32
|
@@ -683,17 +695,17 @@ msgstr ""
|
|
683 |
msgid "ID"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: dashboard/publisher/adverts-disabled.php:
|
687 |
-
#: dashboard/publisher/adverts-error.php:
|
688 |
#: dashboard/publisher/adverts-main.php:40
|
689 |
#: dashboard/publisher/schedules-main.php:32
|
690 |
msgid "Start / End"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: dashboard/publisher/adverts-disabled.php:
|
694 |
#: dashboard/publisher/adverts-edit.php:116
|
695 |
#: dashboard/publisher/adverts-edit.php:264
|
696 |
-
#: dashboard/publisher/adverts-error.php:
|
697 |
#: dashboard/publisher/adverts-main.php:41
|
698 |
#: dashboard/publisher/groups-edit.php:65
|
699 |
#: dashboard/publisher/groups-edit.php:351
|
@@ -702,14 +714,14 @@ msgstr ""
|
|
702 |
msgid "Name"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: dashboard/publisher/adverts-disabled.php:
|
706 |
#: dashboard/publisher/adverts-main.php:43
|
707 |
#: dashboard/publisher/groups-edit.php:355
|
708 |
#: dashboard/publisher/groups-main.php:36
|
709 |
msgid "Shown"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: dashboard/publisher/adverts-disabled.php:
|
713 |
#: dashboard/publisher/adverts-main.php:45
|
714 |
#: dashboard/publisher/groups-edit.php:356
|
715 |
#: dashboard/publisher/groups-main.php:38
|
@@ -730,7 +742,7 @@ msgstr ""
|
|
730 |
msgid "Clicks"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: dashboard/publisher/adverts-disabled.php:
|
734 |
#: dashboard/publisher/adverts-main.php:47
|
735 |
#: dashboard/publisher/statistics-advert.php:53
|
736 |
#: dashboard/publisher/statistics-advert.php:59
|
@@ -749,22 +761,22 @@ msgstr ""
|
|
749 |
msgid "CTR"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: dashboard/publisher/adverts-disabled.php:
|
753 |
-
#: dashboard/publisher/adverts-error.php:
|
754 |
#: dashboard/publisher/adverts-main.php:69
|
755 |
#: dashboard/publisher/groups-main.php:70
|
756 |
msgid "Edit"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: dashboard/publisher/adverts-disabled.php:
|
760 |
-
#: dashboard/publisher/adverts-error.php:
|
761 |
#: dashboard/publisher/adverts-main.php:69
|
762 |
#: dashboard/publisher/groups-main.php:70
|
763 |
msgid "Stats"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: dashboard/publisher/adverts-disabled.php:
|
767 |
-
#: dashboard/publisher/adverts-error.php:
|
768 |
#: dashboard/publisher/adverts-main.php:69
|
769 |
msgid "Groups:"
|
770 |
msgstr ""
|
@@ -1085,45 +1097,53 @@ msgstr ""
|
|
1085 |
msgid "Adverts that need attention"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: dashboard/publisher/adverts-error.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1089 |
#: dashboard/publisher/adverts-main.php:21
|
1090 |
msgid "Deactivate"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: dashboard/publisher/adverts-error.php:
|
1094 |
#: dashboard/publisher/adverts-main.php:25
|
1095 |
msgid "-- Renew --"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: dashboard/publisher/adverts-error.php:
|
1099 |
#: dashboard/publisher/adverts-main.php:26
|
1100 |
msgid "For 1 year"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: dashboard/publisher/adverts-error.php:
|
1104 |
#: dashboard/publisher/adverts-main.php:27
|
1105 |
msgid "For 180 days"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: dashboard/publisher/adverts-error.php:
|
1109 |
#: dashboard/publisher/adverts-main.php:28
|
1110 |
msgid "For 30 days"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: dashboard/publisher/adverts-error.php:
|
1114 |
#: dashboard/publisher/adverts-main.php:29
|
1115 |
msgid "For 7 days"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: dashboard/publisher/adverts-error.php:
|
1119 |
msgid "Configuration errors"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: dashboard/publisher/adverts-error.php:
|
1123 |
msgid "Expires soon"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: dashboard/publisher/adverts-error.php:
|
1127 |
#: dashboard/settings/maintenance.php:45
|
1128 |
msgid "Expired"
|
1129 |
msgstr ""
|
@@ -2569,62 +2589,94 @@ msgstr ""
|
|
2569 |
msgid "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: dashboard/support.php:
|
2573 |
msgid "Premium Support available in AdRotate Pro"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: dashboard/support.php:
|
2577 |
msgid "Premium support always comes first!"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: dashboard/support.php:
|
2581 |
msgid "No queuing up on the forum..."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: dashboard/support.php:
|
2585 |
msgid "Using this form includes essential information for a quick answer."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: dashboard/support.php:
|
2589 |
msgid "Available in AdRotate Professional!"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: dashboard/support.php:
|
2593 |
msgid "Your name:"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: dashboard/support.php:
|
2597 |
msgid "Your Email Address:"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: dashboard/support.php:
|
2601 |
msgid "Subject:"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: dashboard/support.php:
|
2605 |
msgid "Problem description / Question:"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: dashboard/support.php:
|
2609 |
msgid "Please log in to my website and take a look."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: dashboard/support.php:
|
2613 |
msgid "When you send this form the following data will be submitted:"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: dashboard/support.php:
|
2617 |
msgid "Your name, Account email address, Your website url and some basic WordPress information will be included with the message."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: dashboard/support.php:
|
2621 |
msgid "This information is treated as confidential and is mandatory."
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: dashboard/support.php:
|
2625 |
msgid "Get Help"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: dashboard/support.php:
|
2629 |
msgid "Premium Support is available in AdRotate Pro!"
|
2630 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
+
"POT-Creation-Date: 2022-10-04 21:19-0600\n"
|
6 |
"PO-Revision-Date: 2019-09-20 12:05-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-block.php:49
|
21 |
+
msgid "AdRotate - Advertisements"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
#: adrotate-functions.php:800
|
25 |
msgid "Advert saved"
|
26 |
msgstr ""
|
149 |
msgid "Unexpected error"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: adrotate-manage-publisher.php:877
|
153 |
msgid "AdRotate Advertiser"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: adrotate-output.php:552
|
157 |
msgid "Oh no! Something went wrong!"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: adrotate-output.php:553
|
161 |
msgid "WordPress was unable to verify the authenticity of the url you have clicked. Verify if the url used is valid or log in via your browser."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: adrotate-output.php:554
|
165 |
msgid "If you have received the url you want to visit via email, you are being tricked!"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: adrotate-output.php:555
|
169 |
msgid "Contact support if the issue persists:"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: adrotate-output.php:567
|
173 |
msgid "Error, Advert is not available at this time due to schedule/geolocation restrictions!"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: adrotate-output.php:572
|
177 |
msgid "Either there are no banners, they are disabled or none qualified for this location!"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: adrotate-output.php:577
|
181 |
msgid "Error, no Advert ID set! Check your syntax!"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: adrotate-output.php:583
|
185 |
msgid "Error, no group ID set! Check your syntax!"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: adrotate-output.php:588
|
189 |
msgid "Error, group does not exist! Check your syntax!"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: adrotate-output.php:594
|
193 |
msgid "There was an error locating the database tables for AdRotate. Please deactivate and re-activate AdRotate from the plugin page!!"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: adrotate-output.php:594
|
197 |
+
msgid "If this does not solve the issue please seek support on the"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: adrotate-output.php:600
|
201 |
msgid "There was an error loading the page. Please try again by reloading the page via the menu on the left."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: adrotate-output.php:600
|
205 |
+
msgid "If the issue persists please seek help on the"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: adrotate-output.php:606
|
209 |
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:20
|
214 |
msgid "Check adverts"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: adrotate-output.php:638
|
218 |
msgid "You have enabled caching support but W3 Total Cache is not active on your site!"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: adrotate-output.php:638
|
222 |
msgid "Disable W3 Total Cache Support"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: adrotate-output.php:641
|
226 |
msgid "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is not set."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: adrotate-output.php:641
|
230 |
msgid "How to configure W3 Total Cache"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: adrotate-output.php:645
|
234 |
msgid "You have enable caching support but Borlabs Cache is not active on your site!"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:645
|
238 |
msgid "Disable Borlabs Cache Support"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: adrotate-output.php:650
|
242 |
msgid "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: adrotate-output.php:650
|
246 |
msgid "Enable Fragment Caching"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: adrotate-output.php:657
|
250 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:657
|
254 |
msgid "Set up your banner folder"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:660
|
258 |
msgid "You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:660
|
262 |
msgid "Switch plugins"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:663
|
266 |
msgid "Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: adrotate-output.php:663
|
270 |
msgid "Installation instructions"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:739
|
274 |
msgid "your attention:"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: adrotate-output.php:778
|
278 |
msgid "Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: adrotate-output.php:778
|
282 |
msgid "manuals"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: adrotate-output.php:778
|
286 |
msgid "and"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: adrotate-output.php:778
|
290 |
msgid "forums"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
294 |
msgid "Post Tweet"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: adrotate-output.php:833 adrotate-output.php:877
|
298 |
msgid "Share on Facebook"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: adrotate-output.php:833
|
302 |
msgid "Write review on wordpress.org"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: adrotate-output.php:834 adrotate-output.php:878
|
306 |
msgid "Thank you very much for your help and support!"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: adrotate-output.php:864
|
310 |
msgid "Need help fast? Or do you have a question?"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: adrotate-output.php:865
|
314 |
msgid "Help AdRotate Grow"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: adrotate-output.php:866
|
318 |
msgid "Get more features with AdRotate Pro"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: adrotate-output.php:872
|
322 |
msgid "If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:873
|
326 |
msgid "AdRotate Manuals"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:873
|
330 |
msgid "Support Forums"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:874
|
334 |
msgid "When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:876
|
338 |
msgid "Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: adrotate-output.php:877
|
342 |
msgid "Write review on WordPress.org"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: adrotate-output.php:880
|
346 |
msgid "AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: adrotate-output.php:880
|
350 |
msgid "Compare Licenses"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: adrotate-output.php:881
|
354 |
msgid "Single License"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: adrotate-output.php:881
|
358 |
msgid "Use on ONE WordPress installation."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: adrotate-output.php:881 adrotate-output.php:882
|
362 |
msgid "Buy now"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: adrotate-output.php:882
|
366 |
msgid "Multi License"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: adrotate-output.php:882
|
370 |
msgid "Use on up to FIVE WordPress installations."
|
371 |
msgstr ""
|
372 |
|
480 |
msgid "Fill in the ID of the type you want to display!"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: adrotate.php:106 adrotate.php:176
|
484 |
msgid "Manage Adverts"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: adrotate.php:107 adrotate.php:302 dashboard/publisher/groups-main.php:12
|
488 |
msgid "Manage Groups"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: adrotate.php:108 adrotate.php:340 dashboard/publisher/schedules-main.php:12
|
492 |
msgid "Manage Schedules"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: adrotate.php:109
|
496 |
msgid "Manage Media"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: adrotate.php:110 adrotate.php:505 dashboard/adrotatepro.php:98
|
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:111 adrotate.php:239 adrotate.php:310
|
507 |
msgid "Get AdRotate Pro"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: adrotate.php:112
|
511 |
msgid "Support"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: adrotate.php:113
|
515 |
msgid "Settings"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: adrotate.php:132
|
519 |
msgid "Get AdRotate Professional"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: adrotate.php:236 adrotate.php:308
|
523 |
msgid "Manage"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: adrotate.php:237
|
527 |
msgid "Advert Generator"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: adrotate.php:238 dashboard/publisher/adverts-edit.php:108
|
531 |
msgid "New Advert"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: adrotate.php:309
|
535 |
msgid "Add New"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: adrotate.php:377
|
539 |
msgid "Manage Media and Assets"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: adrotate.php:381
|
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:423
|
547 |
msgid "Advert Statistics"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: adrotate.php:466
|
551 |
msgid "AdRotate Support"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: adrotate.php:498
|
555 |
msgid "AdRotate Settings"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
559 |
msgid "General"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
563 |
msgid "Notifications"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: adrotate.php:506 dashboard/publisher/groups-edit.php:205
|
567 |
msgid "Geo Targeting"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: adrotate.php:507 dashboard/settings/roles.php:17
|
571 |
msgid "Access Roles"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: adrotate.php:508 dashboard/settings/misc.php:16
|
575 |
msgid "Miscellaneous"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: adrotate.php:509 dashboard/settings/maintenance.php:16
|
579 |
msgid "Maintenance"
|
580 |
msgstr ""
|
581 |
|
643 |
msgid "Disabled Adverts"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
647 |
+
msgid "These adverts are temporarily disabled. You can archive adverts to permanently disable them."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: dashboard/publisher/adverts-disabled.php:16
|
651 |
+
msgid "Archiving adverts moves gathered statistics away from the live database which may speed up your website."
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: dashboard/publisher/adverts-disabled.php:21
|
655 |
+
#: dashboard/publisher/adverts-error.php:20
|
656 |
#: dashboard/publisher/adverts-main.php:20
|
657 |
#: dashboard/publisher/groups-main.php:20
|
658 |
#: dashboard/publisher/schedules-main.php:21
|
659 |
msgid "Bulk Actions"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: dashboard/publisher/adverts-disabled.php:22
|
663 |
#: dashboard/publisher/adverts-edit.php:186
|
664 |
msgid "Activate"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: dashboard/publisher/adverts-disabled.php:23
|
668 |
+
#: dashboard/publisher/adverts-error.php:22
|
669 |
#: dashboard/publisher/adverts-main.php:22 dashboard/publisher/media.php:68
|
670 |
#: dashboard/publisher/media.php:73 dashboard/publisher/media.php:77
|
671 |
msgid "Delete"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: dashboard/publisher/adverts-disabled.php:24
|
675 |
+
#: dashboard/publisher/adverts-error.php:23
|
676 |
#: dashboard/publisher/adverts-main.php:23
|
677 |
msgid "Reset stats"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: dashboard/publisher/adverts-disabled.php:26
|
681 |
+
#: dashboard/publisher/adverts-error.php:30
|
682 |
#: dashboard/publisher/adverts-main.php:30
|
683 |
#: dashboard/publisher/groups-main.php:24
|
684 |
#: dashboard/publisher/schedules-main.php:22
|
685 |
msgid "Go"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: dashboard/publisher/adverts-disabled.php:36
|
689 |
#: dashboard/publisher/adverts-edit.php:263
|
690 |
+
#: dashboard/publisher/adverts-error.php:40
|
691 |
#: dashboard/publisher/adverts-main.php:39
|
692 |
#: dashboard/publisher/groups-edit.php:350
|
693 |
#: dashboard/publisher/groups-main.php:32
|
695 |
msgid "ID"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: dashboard/publisher/adverts-disabled.php:37
|
699 |
+
#: dashboard/publisher/adverts-error.php:42
|
700 |
#: dashboard/publisher/adverts-main.php:40
|
701 |
#: dashboard/publisher/schedules-main.php:32
|
702 |
msgid "Start / End"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: dashboard/publisher/adverts-disabled.php:38
|
706 |
#: dashboard/publisher/adverts-edit.php:116
|
707 |
#: dashboard/publisher/adverts-edit.php:264
|
708 |
+
#: dashboard/publisher/adverts-error.php:41
|
709 |
#: dashboard/publisher/adverts-main.php:41
|
710 |
#: dashboard/publisher/groups-edit.php:65
|
711 |
#: dashboard/publisher/groups-edit.php:351
|
714 |
msgid "Name"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: dashboard/publisher/adverts-disabled.php:40
|
718 |
#: dashboard/publisher/adverts-main.php:43
|
719 |
#: dashboard/publisher/groups-edit.php:355
|
720 |
#: dashboard/publisher/groups-main.php:36
|
721 |
msgid "Shown"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: dashboard/publisher/adverts-disabled.php:41
|
725 |
#: dashboard/publisher/adverts-main.php:45
|
726 |
#: dashboard/publisher/groups-edit.php:356
|
727 |
#: dashboard/publisher/groups-main.php:38
|
742 |
msgid "Clicks"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: dashboard/publisher/adverts-disabled.php:42
|
746 |
#: dashboard/publisher/adverts-main.php:47
|
747 |
#: dashboard/publisher/statistics-advert.php:53
|
748 |
#: dashboard/publisher/statistics-advert.php:59
|
761 |
msgid "CTR"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
765 |
+
#: dashboard/publisher/adverts-error.php:57
|
766 |
#: dashboard/publisher/adverts-main.php:69
|
767 |
#: dashboard/publisher/groups-main.php:70
|
768 |
msgid "Edit"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
772 |
+
#: dashboard/publisher/adverts-error.php:57
|
773 |
#: dashboard/publisher/adverts-main.php:69
|
774 |
#: dashboard/publisher/groups-main.php:70
|
775 |
msgid "Stats"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: dashboard/publisher/adverts-disabled.php:62
|
779 |
+
#: dashboard/publisher/adverts-error.php:57
|
780 |
#: dashboard/publisher/adverts-main.php:69
|
781 |
msgid "Groups:"
|
782 |
msgstr ""
|
1097 |
msgid "Adverts that need attention"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: dashboard/publisher/adverts-error.php:13
|
1101 |
+
msgid "The adverts listed here are currently not showing on your website. This is because they are almost expired, have expired or have configuration issues."
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: dashboard/publisher/adverts-error.php:13
|
1105 |
+
msgid "To fix the issue edit each advert and look for one or more notification at the top to see what AdRotate thinks is wrong with it."
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: dashboard/publisher/adverts-error.php:21
|
1109 |
#: dashboard/publisher/adverts-main.php:21
|
1110 |
msgid "Deactivate"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: dashboard/publisher/adverts-error.php:24
|
1114 |
#: dashboard/publisher/adverts-main.php:25
|
1115 |
msgid "-- Renew --"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: dashboard/publisher/adverts-error.php:25
|
1119 |
#: dashboard/publisher/adverts-main.php:26
|
1120 |
msgid "For 1 year"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: dashboard/publisher/adverts-error.php:26
|
1124 |
#: dashboard/publisher/adverts-main.php:27
|
1125 |
msgid "For 180 days"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: dashboard/publisher/adverts-error.php:27
|
1129 |
#: dashboard/publisher/adverts-main.php:28
|
1130 |
msgid "For 30 days"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: dashboard/publisher/adverts-error.php:28
|
1134 |
#: dashboard/publisher/adverts-main.php:29
|
1135 |
msgid "For 7 days"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: dashboard/publisher/adverts-error.php:65
|
1139 |
msgid "Configuration errors"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: dashboard/publisher/adverts-error.php:66
|
1143 |
msgid "Expires soon"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: dashboard/publisher/adverts-error.php:67
|
1147 |
#: dashboard/settings/maintenance.php:45
|
1148 |
msgid "Expired"
|
1149 |
msgstr ""
|
2589 |
msgid "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: dashboard/support.php:74
|
2593 |
msgid "Premium Support available in AdRotate Pro"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: dashboard/support.php:77
|
2597 |
msgid "Premium support always comes first!"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: dashboard/support.php:77
|
2601 |
msgid "No queuing up on the forum..."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: dashboard/support.php:77
|
2605 |
msgid "Using this form includes essential information for a quick answer."
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: dashboard/support.php:77
|
2609 |
msgid "Available in AdRotate Professional!"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: dashboard/support.php:79
|
2613 |
msgid "Your name:"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: dashboard/support.php:80
|
2617 |
msgid "Your Email Address:"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: dashboard/support.php:81
|
2621 |
msgid "Subject:"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: dashboard/support.php:82
|
2625 |
msgid "Problem description / Question:"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: dashboard/support.php:83
|
2629 |
msgid "Please log in to my website and take a look."
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: dashboard/support.php:85
|
2633 |
msgid "When you send this form the following data will be submitted:"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: dashboard/support.php:86
|
2637 |
msgid "Your name, Account email address, Your website url and some basic WordPress information will be included with the message."
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: dashboard/support.php:86
|
2641 |
msgid "This information is treated as confidential and is mandatory."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: dashboard/support.php:89
|
2645 |
msgid "Get Help"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: dashboard/support.php:89
|
2649 |
msgid "Premium Support is available in AdRotate Pro!"
|
2650 |
msgstr ""
|
2651 |
+
|
2652 |
+
#: library/block.js:19 library/block.js:49
|
2653 |
+
msgid "AdRotate Advert"
|
2654 |
+
msgstr ""
|
2655 |
+
|
2656 |
+
#: library/block.js:22
|
2657 |
+
msgid "Show a single advert by entering an advert ID."
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: library/block.js:52
|
2661 |
+
msgid "Enter an Advert ID (numbers only):"
|
2662 |
+
msgstr ""
|
2663 |
+
|
2664 |
+
#: library/block.js:63
|
2665 |
+
msgid "You can find the advert ID in Manage Adverts. Any special markup, code or layout styles can be applied in the advert itself or by placing the advert in a group."
|
2666 |
+
msgstr ""
|
2667 |
+
|
2668 |
+
#: library/block.js:73 library/block.js:103
|
2669 |
+
msgid "AdRotate Group"
|
2670 |
+
msgstr ""
|
2671 |
+
|
2672 |
+
#: library/block.js:76
|
2673 |
+
msgid "Show a group of adverts by entering a group ID."
|
2674 |
+
msgstr ""
|
2675 |
+
|
2676 |
+
#: library/block.js:106
|
2677 |
+
msgid "Enter a group ID (numbers only):"
|
2678 |
+
msgstr ""
|
2679 |
+
|
2680 |
+
#: library/block.js:117
|
2681 |
+
msgid "You can find the group ID in Manage Groups. Any special markup, code or layout styles can be applied in the group wrapper when editing the group."
|
2682 |
+
msgstr ""
|
library/block.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
WordPress Blocks
|
3 |
Version: 1.0
|
4 |
Original code: Arnan de Gans
|
5 |
-
Copyright: See notice in adrotate
|
6 |
//--------------------------------------//
|
7 |
Changelog:
|
8 |
//--------------------------------------//
|
2 |
WordPress Blocks
|
3 |
Version: 1.0
|
4 |
Original code: Arnan de Gans
|
5 |
+
Copyright: See notice in adrotate.php
|
6 |
//--------------------------------------//
|
7 |
Changelog:
|
8 |
//--------------------------------------//
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
=== AdRotate -
|
2 |
Contributors: adegans
|
3 |
-
Donate link: https://ajdg.solutions/
|
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.0.
|
8 |
-
Stable tag: 5.
|
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
|
@@ -17,6 +17,7 @@ Here is what **AdRotate Banner Manager** can do for you:
|
|
17 |
|
18 |
* Works with every advert including; Amazon ads, affiliate networks, Google AdSense, Google Ad Manager, DoubleClick, DFP or media.net ads
|
19 |
* No limit on how many ads you make
|
|
|
20 |
* Blocks for the WordPress block editor
|
21 |
* Advanced error checking for adverts you create yourself
|
22 |
* Track clicks and impressions
|
@@ -83,45 +84,24 @@ Installing AdRotate is as easy as searching for "AdRotate" or "AdRotate Arnan" i
|
|
83 |
Once activated, a new menu called "AdRotate" appears in the WordPress navigation.
|
84 |
From this menu you'll handle everything in **AdRotate Banner Manager**.
|
85 |
|
86 |
-
For more detailed instructions check out the [installation steps](https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/?
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
-
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?
|
91 |
-
|
92 |
-
= AdRotate 5.
|
93 |
-
* [fix]
|
94 |
-
* [
|
95 |
-
* [
|
96 |
-
* [
|
97 |
-
|
98 |
-
|
99 |
-
* [
|
100 |
-
* [
|
101 |
-
* [
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
= AdRotate 5.8.24 =
|
106 |
-
* [new] Group and Advert block support
|
107 |
-
* [fix] Selecting adverts in groups not working
|
108 |
-
* [fix] Better handling of caching constants
|
109 |
-
* [tweak] Replaced sanitize_title with sanitize_text_field for advert names
|
110 |
-
* [tweak] Replaced sanitize_title with sanitize_text_field for group names
|
111 |
-
* [update] Update database to be in sync with AdRotate Pro
|
112 |
-
|
113 |
-
= AdRotate Professional 5.8.21 =
|
114 |
-
* [update] Tested with WordPress 6
|
115 |
-
* [fix] Double file extension when uploading file
|
116 |
-
* [fix] Uploading zip files now reliably detects mime type
|
117 |
-
|
118 |
-
= AdRotate Professional 5.8.20 =
|
119 |
-
* [fix] Schedules not being saved when editing adverts
|
120 |
-
* [fix] Impression spread not working properly
|
121 |
-
* [fix] Impression spread configuration errors not always showing
|
122 |
-
* [fix] Several queries using wrong quotations
|
123 |
-
|
124 |
-
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
|
125 |
|
126 |
== Upgrade Notice ==
|
127 |
|
@@ -130,11 +110,11 @@ Enjoy this update with the latest tweaks and improvements for AdRotate for WordP
|
|
130 |
== Frequently Asked Questions ==
|
131 |
|
132 |
= How do I use AdRotate? =
|
133 |
-
Take a look at the [user guides](https://ajdg.solutions/support/adrotate-manuals/?
|
134 |
-
You can also post your questions on the [forum](https://
|
135 |
|
136 |
= I need help with this plugin =
|
137 |
-
The best place to ask your question is on my [support forum](https://
|
138 |
|
139 |
= Does AdRotate offer click tracking? =
|
140 |
Yes, AdRotate counts clicks and impressions.
|
@@ -147,11 +127,11 @@ Most ads work without special tricks or tweaks.
|
|
147 |
Yes!
|
148 |
|
149 |
= This is cool, do you have more plugins? =
|
150 |
-
Yep, check out my website [AJdG Solutions](https://ajdg.solutions/?
|
151 |
|
152 |
= Why do some dashboard notifications look so ugly =
|
153 |
If a dashboard notification misses its layout or looks out of shape try clearing your browser cache.
|
154 |
-
Some ad blockers block parts of the AdRotate dashboard, check out this page to make an exception for your website in adblockers - [Whitelist your site](https://ajdg.solutions/support/adrotate-manuals/configure-adblockers-for-your-own-website/?
|
155 |
|
156 |
= Is AdRotate compatible with Yoast SEO or other SEO plugins? =
|
157 |
Yes, Yoast SEO, All-in-One SEO pack and all other SEO plugins work fine with AdRotate.
|
1 |
+
=== AdRotate Banner Manager - AdSense Ads & more ===
|
2 |
Contributors: adegans
|
3 |
+
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.0.3
|
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
|
17 |
|
18 |
* Works with every advert including; Amazon ads, affiliate networks, Google AdSense, Google Ad Manager, DoubleClick, DFP or media.net ads
|
19 |
* No limit on how many ads you make
|
20 |
+
* No excessive 'spam' to upgrade to AdRotate Pro. If you don't want it, don't get it.
|
21 |
* Blocks for the WordPress block editor
|
22 |
* Advanced error checking for adverts you create yourself
|
23 |
* Track clicks and impressions
|
84 |
Once activated, a new menu called "AdRotate" appears in the WordPress navigation.
|
85 |
From this menu you'll handle everything in **AdRotate Banner Manager**.
|
86 |
|
87 |
+
For more detailed instructions check out the [installation steps](https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/?mtm_campaign=adrotatefree&mtm_keyword=readme) on the AdRotate website.
|
88 |
|
89 |
== Changelog ==
|
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
|
96 |
+
* [fix] Several internal references to AdRotate
|
97 |
+
* [fix] Several version indicators for AdRotate
|
98 |
+
* [fix] File uploads to media manager when editing ads
|
99 |
+
* [change] Use WP provided version for plugin_version
|
100 |
+
* [change] Updated support dashboard page
|
101 |
+
* [change] Updated help tabs
|
102 |
+
* [i18n] Updated all included translations
|
103 |
+
|
104 |
+
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?mtm_campaign=adrotatefree&mtm_keyword=readme)!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
== Upgrade Notice ==
|
107 |
|
110 |
== Frequently Asked Questions ==
|
111 |
|
112 |
= How do I use AdRotate? =
|
113 |
+
Take a look at the [user guides](https://ajdg.solutions/support/adrotate-manuals/?mtm_campaign=adrotatefree&mtm_keyword=readme).
|
114 |
+
You can also post your questions on the [forum](https://wordpress.org/support/plugin/adrotate/).
|
115 |
|
116 |
= I need help with this plugin =
|
117 |
+
The best place to ask your question is on my [support forum](https://wordpress.org/support/plugin/adrotate/).
|
118 |
|
119 |
= Does AdRotate offer click tracking? =
|
120 |
Yes, AdRotate counts clicks and impressions.
|
127 |
Yes!
|
128 |
|
129 |
= This is cool, do you have more plugins? =
|
130 |
+
Yep, check out my website [AJdG Solutions](https://ajdg.solutions/?mtm_campaign=adrotatefree&mtm_keyword=readme)
|
131 |
|
132 |
= Why do some dashboard notifications look so ugly =
|
133 |
If a dashboard notification misses its layout or looks out of shape try clearing your browser cache.
|
134 |
+
Some ad blockers block parts of the AdRotate dashboard, check out this page to make an exception for your website in adblockers - [Whitelist your site](https://ajdg.solutions/support/adrotate-manuals/configure-adblockers-for-your-own-website/?mtm_campaign=adrotatefree&mtm_keyword=readme).
|
135 |
|
136 |
= Is AdRotate compatible with Yoast SEO or other SEO plugins? =
|
137 |
Yes, Yoast SEO, All-in-One SEO pack and all other SEO plugins work fine with AdRotate.
|