Version Description
Enjoy this latest update with the latest tweaks and improvements for AdRotate for WordPress!
Download this release
Release Info
Developer | adegans |
Plugin | AdRotate Banner Manager |
Version | 5.8.3 |
Comparing to | |
See all releases |
Code changes from version 5.8.2 to 5.8.3
- adrotate-functions.php +9 -1
- adrotate-manage-publisher.php +34 -24
- adrotate-output.php +4 -4
- adrotate-export.php → adrotate-portability.php +41 -3
- adrotate-setup.php +1 -1
- adrotate.php +3 -3
- dashboard/adrotatepro.php +24 -24
- dashboard/info.php +34 -48
- dashboard/publisher/adverts-edit.php +15 -14
- dashboard/publisher/adverts-generator.php +18 -3
- dashboard/publisher/adverts-main.php +0 -1
- dashboard/publisher/groups-edit.php +12 -0
- dashboard/publisher/groups-main.php +0 -1
- dashboard/publisher/schedules-main.php +2 -3
- dashboard/support.php +28 -28
- language/adrotate-de_DE.mo +0 -0
- language/adrotate-de_DE.po +446 -379
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +468 -380
- language/adrotate-it_IT.mo +0 -0
- language/adrotate-it_IT.po +446 -370
- language/adrotate-nl_NL.mo +0 -0
- language/adrotate-nl_NL.po +445 -371
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +128 -144
- language/adrotate.pot +315 -326
- readme.txt +77 -108
adrotate-functions.php
CHANGED
@@ -729,7 +729,7 @@ function adrotate_status($status, $args = null) {
|
|
729 |
break;
|
730 |
|
731 |
case '226' :
|
732 |
-
echo '<div id="message" class="updated"><p>'. __('Advert HTML generated and placed in the AdCode field. Configure your advert below.', 'adrotate') .'</div>';
|
733 |
break;
|
734 |
|
735 |
// Settings
|
@@ -778,6 +778,14 @@ function adrotate_status($status, $args = null) {
|
|
778 |
echo '<div id="message" class="updated"><p>'. __('No ads found.', 'adrotate') .'</p></div>';
|
779 |
break;
|
780 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
781 |
default :
|
782 |
echo '<div id="message" class="updated"><p>'. __('Unexpected error', 'adrotate') .'</p></div>';
|
783 |
break;
|
729 |
break;
|
730 |
|
731 |
case '226' :
|
732 |
+
echo '<div id="message" class="updated"><p>'. __('Advert HTML generated and placed in the AdCode field. Configure your advert below. Do not forget to check all settings and schedule it.', 'adrotate') .'</div>';
|
733 |
break;
|
734 |
|
735 |
// Settings
|
778 |
echo '<div id="message" class="updated"><p>'. __('No ads found.', 'adrotate') .'</p></div>';
|
779 |
break;
|
780 |
|
781 |
+
case '513' :
|
782 |
+
echo '<div id="message" class="error"><p>'. __('The advert hash is not usable or is missing required data. Please copy the hash correctly and try again.', 'adrotate') .'</p></div>';
|
783 |
+
break;
|
784 |
+
|
785 |
+
case '514' :
|
786 |
+
echo '<div id="message" class="error"><p>'. __('The advert hash can not be used on the same site as it originated from or is not a valid hash for importing.', 'adrotate') .'</p></div>';
|
787 |
+
break;
|
788 |
+
|
789 |
default :
|
790 |
echo '<div id="message" class="updated"><p>'. __('Unexpected error', 'adrotate') .'</p></div>';
|
791 |
break;
|
adrotate-manage-publisher.php
CHANGED
@@ -30,33 +30,43 @@ function adrotate_generate_input() {
|
|
30 |
$new_window = '';
|
31 |
if(isset($_POST['adrotate_newwindow'])) $new_window = strip_tags(trim($_POST['adrotate_newwindow'], "\t\n "));
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
$fullsize_size = @getimagesize(WP_CONTENT_URL."/".$adrotate_config['banner_folder']."/".$fullsize_image);
|
36 |
-
if($fullsize_size){
|
37 |
-
$adwidth = ' width="'.$fullsize_size[0].'"';
|
38 |
-
$adheight = ' height="'.$fullsize_size[1].'"';
|
39 |
-
} else {
|
40 |
-
$adwidth = $adheight = '';
|
41 |
-
}
|
42 |
|
43 |
-
|
44 |
-
if(
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
} else {
|
47 |
-
$
|
48 |
-
}
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
$asset = "<img src=\"%asset%\"".$adwidth.$adheight." />";
|
54 |
-
|
55 |
-
// Generate code
|
56 |
-
$bannercode = "<a href=\"".$targeturl."\"".$new_window.">".$asset."</a>";
|
57 |
-
|
58 |
-
// Save the ad to the DB
|
59 |
-
$wpdb->update($wpdb->prefix.'adrotate', array('bannercode' => $bannercode, 'imagetype' => $imagetype, 'image' => $image), array('id' => $id));
|
60 |
|
61 |
adrotate_return('adrotate-ads', 226, array('view' => 'edit', 'ad'=> $id));
|
62 |
exit;
|
30 |
$new_window = '';
|
31 |
if(isset($_POST['adrotate_newwindow'])) $new_window = strip_tags(trim($_POST['adrotate_newwindow'], "\t\n "));
|
32 |
|
33 |
+
$portability = '';
|
34 |
+
if(isset($_POST['adrotate_portability'])) $portability = strip_tags(trim($_POST['adrotate_portability'], "\t\n "));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
+
if(current_user_can('adrotate_ad_manage')) {
|
37 |
+
if(strlen($portability) == 0) {
|
38 |
+
// Fullsize Image & figure out adwidth and adheight
|
39 |
+
$fullsize_size = @getimagesize(WP_CONTENT_URL."/".$adrotate_config['banner_folder']."/".$fullsize_image);
|
40 |
+
if($fullsize_size){
|
41 |
+
$adwidth = ' width="'.$fullsize_size[0].'"';
|
42 |
+
$adheight = ' height="'.$fullsize_size[1].'"';
|
43 |
+
} else {
|
44 |
+
$adwidth = $adheight = '';
|
45 |
+
}
|
46 |
+
|
47 |
+
// Open in a new window?
|
48 |
+
if(isset($new_window) AND strlen($new_window) != 0) {
|
49 |
+
$new_window = ' target="_blank"';
|
50 |
+
} else {
|
51 |
+
$new_window = '';
|
52 |
+
}
|
53 |
+
|
54 |
+
// Determine image settings
|
55 |
+
$imagetype = "dropdown";
|
56 |
+
$image = WP_CONTENT_URL."/%folder%/".$fullsize_image;
|
57 |
+
$asset = "<img src=\"%asset%\"".$adwidth.$adheight." />";
|
58 |
+
|
59 |
+
// Generate code
|
60 |
+
$bannercode = "<a href=\"".$targeturl."\"".$new_window.">".$asset."</a>";
|
61 |
+
|
62 |
+
// Save the advert to the DB
|
63 |
+
$wpdb->update($wpdb->prefix.'adrotate', array('bannercode' => $bannercode, 'imagetype' => $imagetype, 'image' => $image), array('id' => $id));
|
64 |
} else {
|
65 |
+
$portability = adrotate_portable_hash('import', $portability);
|
|
|
66 |
|
67 |
+
// Save the advert to the DB
|
68 |
+
$wpdb->update($wpdb->prefix.'adrotate', array('title' => $portability['title'], 'bannercode' => $portability['bannercode'], 'thetime' => $portability['thetime'], 'updated' => adrotate_now(), 'author' => $portability['author'], 'imagetype' => $portability['imagetype'], 'image' => $portability['image'], 'tracker' => $portability['tracker'], 'show_everyone' => $portability['show_everyone'], 'desktop' => $portability['desktop'], 'mobile' => $portability['mobile'], 'tablet' => $portability['tablet'], 'os_ios' => $portability['os_ios'], 'os_android' => $portability['os_android'], 'os_other' => $portability['os_other'], 'weight' => $portability['weight'], 'autodelete' => $portability['autodelete'], 'budget' => $portability['budget'], 'crate' => $portability['crate'], 'irate' => $portability['irate'], 'state_req' => $portability['state_req'], 'cities' => $portability['cities'], 'states' => $portability['states'], 'countries' => $portability['countries']), array('id' => $id));
|
69 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
adrotate_return('adrotate-ads', 226, array('view' => 'edit', 'ad'=> $id));
|
72 |
exit;
|
adrotate-output.php
CHANGED
@@ -651,7 +651,7 @@ function adrotate_dashboard_error() {
|
|
651 |
if(is_dir(WP_PLUGIN_DIR."/adrotate-pro/")) {
|
652 |
$error['adrotate_exists'] = __('You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated.', 'adrotate-pro').' <a href="'.admin_url('/plugins.php?s=adrotate&plugin_status=all').'">'.__('Switch plugins', 'adrotate-pro').'</a>.';
|
653 |
}
|
654 |
-
if(
|
655 |
$error['adrotate_folder_names'] = __('Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!', 'adrotate-pro').' <a href="https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/" target="_blank">'.__('Installation instructions', 'adrotate-pro').'</a>.';
|
656 |
}
|
657 |
|
@@ -684,7 +684,7 @@ function adrotate_notifications_dashboard() {
|
|
684 |
if($getpro_banner < adrotate_now()) {
|
685 |
echo '<div class="ajdg-notification notice" style="">';
|
686 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
|
687 |
-
echo ' <div class="ajdg-notification-message">Hello <strong>'.$displayname.'</strong>. Have you considered upgrading to <strong>AdRotate Professional</strong> yet?<br />Get extra features like Geo Targeting, Scheduling, mobile adverts, access to premium support and much more
|
688 |
echo ' <div class="ajdg-notification-cta">';
|
689 |
echo ' <a href="'.admin_url('admin.php?page=adrotate-pro').'" class="ajdg-notification-act button-primary">Get AdRotate Pro</a>';
|
690 |
echo ' <a href="admin.php?page=adrotate&hide=0" class="ajdg-notification-dismiss">Maybe later</a>';
|
@@ -740,7 +740,7 @@ function adrotate_notifications_dashboard() {
|
|
740 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
|
741 |
echo '<div class="ajdg-notification notice" style="">';
|
742 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
|
743 |
-
echo ' <div class="ajdg-notification-message">Thanks for updating <strong>'.$displayname.'</strong>! You have almost completed updating <strong>AdRotate</strong> to version <strong>'.ADROTATE_DISPLAY.'</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/?pk_campaign=
|
744 |
echo ' <div class="ajdg-notification-cta">';
|
745 |
echo ' <a href="admin.php?page=adrotate-settings&tab=maintenance&action=update-db" class="ajdg-notification-act button-primary update-button">Finish update</a>';
|
746 |
echo ' </div>';
|
@@ -802,7 +802,7 @@ function adrotate_help_info() {
|
|
802 |
'content' => '<h4>Get help using AdRotate</h4>'.
|
803 |
'<p>Everyone needs some help sometimes. AdRotate has many guides and manuals as well as a Support Forum on the AdRotate website to get you going.<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>'.
|
804 |
|
805 |
-
'<p>Take a look at the <a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">AdRotate Manuals</a> and the <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">Support Forum</a> here. Also check out <a href="https://ajdg.solutions/recommended-products/?pk_campaign=
|
806 |
)
|
807 |
);
|
808 |
}
|
651 |
if(is_dir(WP_PLUGIN_DIR."/adrotate-pro/")) {
|
652 |
$error['adrotate_exists'] = __('You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated.', 'adrotate-pro').' <a href="'.admin_url('/plugins.php?s=adrotate&plugin_status=all').'">'.__('Switch plugins', 'adrotate-pro').'</a>.';
|
653 |
}
|
654 |
+
if(basename(__DIR__) != 'adrotate' AND basename(__DIR__) != 'adrotate-pro') {
|
655 |
$error['adrotate_folder_names'] = __('Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!', 'adrotate-pro').' <a href="https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/" target="_blank">'.__('Installation instructions', 'adrotate-pro').'</a>.';
|
656 |
}
|
657 |
|
684 |
if($getpro_banner < adrotate_now()) {
|
685 |
echo '<div class="ajdg-notification notice" style="">';
|
686 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
|
687 |
+
echo ' <div class="ajdg-notification-message">Hello <strong>'.$displayname.'</strong>. Have you considered upgrading to <strong>AdRotate Professional</strong> yet?<br />Get extra features like Geo Targeting, Scheduling, mobile adverts, access to premium support and much more starting at only €39 EUR.<br />Use coupon code <strong>getadrotatepro</strong> and get a 10% discount on any <strong>AdRotate Professional</strong> license! Thank you for your consideration!</div>';
|
688 |
echo ' <div class="ajdg-notification-cta">';
|
689 |
echo ' <a href="'.admin_url('admin.php?page=adrotate-pro').'" class="ajdg-notification-act button-primary">Get AdRotate Pro</a>';
|
690 |
echo ' <a href="admin.php?page=adrotate&hide=0" class="ajdg-notification-dismiss">Maybe later</a>';
|
740 |
if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
|
741 |
echo '<div class="ajdg-notification notice" style="">';
|
742 |
echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
|
743 |
+
echo ' <div class="ajdg-notification-message">Thanks for updating <strong>'.$displayname.'</strong>! You have almost completed updating <strong>AdRotate</strong> to version <strong>'.ADROTATE_DISPLAY.'</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/?pk_campaign=adrotatefree&pk_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>';
|
744 |
echo ' <div class="ajdg-notification-cta">';
|
745 |
echo ' <a href="admin.php?page=adrotate-settings&tab=maintenance&action=update-db" class="ajdg-notification-act button-primary update-button">Finish update</a>';
|
746 |
echo ' </div>';
|
802 |
'content' => '<h4>Get help using AdRotate</h4>'.
|
803 |
'<p>Everyone needs some help sometimes. AdRotate has many guides and manuals as well as a Support Forum on the AdRotate website to get you going.<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>'.
|
804 |
|
805 |
+
'<p>Take a look at the <a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">AdRotate Manuals</a> and the <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">Support Forum</a> here. Also check out <a href="https://ajdg.solutions/recommended-products/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">recommended products and services</a> I use.</p>'
|
806 |
)
|
807 |
);
|
808 |
}
|
adrotate-export.php → adrotate-portability.php
RENAMED
@@ -11,10 +11,7 @@
|
|
11 |
|
12 |
/*-------------------------------------------------------------
|
13 |
Name: adrotate_export_ads
|
14 |
-
|
15 |
Purpose: Export adverts in various formats
|
16 |
-
Receive: $ids, $format
|
17 |
-
Return: -- None --
|
18 |
Since: 3.11
|
19 |
-------------------------------------------------------------*/
|
20 |
function adrotate_export_ads($ids) {
|
@@ -85,4 +82,45 @@ function adrotate_export_ads($ids) {
|
|
85 |
adrotate_return('adrotate-ads', 509);
|
86 |
}
|
87 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
?>
|
11 |
|
12 |
/*-------------------------------------------------------------
|
13 |
Name: adrotate_export_ads
|
|
|
14 |
Purpose: Export adverts in various formats
|
|
|
|
|
15 |
Since: 3.11
|
16 |
-------------------------------------------------------------*/
|
17 |
function adrotate_export_ads($ids) {
|
82 |
adrotate_return('adrotate-ads', 509);
|
83 |
}
|
84 |
}
|
85 |
+
|
86 |
+
/*-------------------------------------------------------------
|
87 |
+
Name: adrotate_portable_hash
|
88 |
+
Purpose: Export/import adverts via a portable hash
|
89 |
+
Since: 5.8.3
|
90 |
+
-------------------------------------------------------------*/
|
91 |
+
function adrotate_portable_hash($action, $data, $what = 'advert') {
|
92 |
+
$source = get_option('siteurl');
|
93 |
+
if(in_array("aes-128-cbc", openssl_get_cipher_methods())) {
|
94 |
+
if($action == 'export') {
|
95 |
+
$portable['meta'] = array('type' => $what, 'source' => $source, 'exported' => adrotate_now());
|
96 |
+
foreach($data as $key => $value) {
|
97 |
+
if(empty($value)) $value = '';
|
98 |
+
$advert[$key] = $value;
|
99 |
+
}
|
100 |
+
$portable['data'] = $advert;
|
101 |
+
$portable = serialize($portable);
|
102 |
+
return openssl_encrypt($portable, "aes-128-cbc", '983jdnn3idjk02id', false, 'oi1u23kj123hj7jd');
|
103 |
+
}
|
104 |
+
|
105 |
+
if($action == 'import') {
|
106 |
+
$data = openssl_decrypt($data, "aes-128-cbc", '983jdnn3idjk02id', false, 'oi1u23kj123hj7jd');
|
107 |
+
$data = unserialize($data);
|
108 |
+
if(is_array($data)) {
|
109 |
+
if(array_key_exists('meta', $data) AND array_key_exists('data', $data)) {
|
110 |
+
if($data['meta']['type'] == 'advert' AND $source != $data['meta']['source']) {
|
111 |
+
return $data['data'];
|
112 |
+
} else if($data['meta']['type'] == 'group') {
|
113 |
+
// maybe
|
114 |
+
} else if($data['meta']['type'] == 'schedule') {
|
115 |
+
// maybe
|
116 |
+
} else {
|
117 |
+
adrotate_return('adrotate-ads', 514);
|
118 |
+
}
|
119 |
+
}
|
120 |
+
}
|
121 |
+
adrotate_return('adrotate-ads', 513);
|
122 |
+
}
|
123 |
+
|
124 |
+
}
|
125 |
+
}
|
126 |
?>
|
adrotate-setup.php
CHANGED
@@ -301,7 +301,7 @@ function adrotate_check_config() {
|
|
301 |
if(!isset($notifications['notification_dash_soon']) OR ($notifications['notification_dash_soon'] != 'Y' AND $notifications['notification_dash_soon'] != 'N')) $notifications['notification_dash_soon'] = 'Y';
|
302 |
update_option('adrotate_notifications', $notifications);
|
303 |
|
304 |
-
if(!
|
305 |
update_option('adrotate_crawlers', $crawlers);
|
306 |
}
|
307 |
|
301 |
if(!isset($notifications['notification_dash_soon']) OR ($notifications['notification_dash_soon'] != 'Y' AND $notifications['notification_dash_soon'] != 'N')) $notifications['notification_dash_soon'] = 'Y';
|
302 |
update_option('adrotate_notifications', $notifications);
|
303 |
|
304 |
+
if(!is_array($crawlers)) $crawlers = array("008", "bot", "crawler", "spider", "Accoona-AI-Agent", "alexa", "Arachmo", "B-l-i-t-z-B-O-T", "boitho.com-dc", "Cerberian Drtrs","Charlotte", "cosmos", "Covario IDS", "DataparkSearch","FindLinks", "Holmes", "htdig", "ia_archiver", "ichiro", "inktomi", "igdeSpyder", "L.webis", "Larbin", "LinkWalker", "lwp-trivial", "mabontland", "Mnogosearch", "mogimogi", "Morning Paper", "MVAClient", "NetResearchServer", "NewsGator", "NG-Search", "NutchCVS", "Nymesis", "oegp", "Orbiter", "Peew", "Pompos", "PostPost", "PycURL", "Qseero", "Radian6", "SBIder", "ScoutJet", "Scrubby", "SearchSight", "semanticdiscovery", "ShopWiki", "silk", "Snappy", "Sqworm", "StackRambler", "Teoma", "TinEye", "truwoGPS", "updated", "Vagabondo", "Vortex", "voyager", "VYU2", "webcollage", "Websquash.com", "wf84", "WomlpeFactory", "yacy", "Yahoo! Slurp", "Yahoo! Slurp China", "YahooSeeker", "YahooSeeker-Testing", "YandexImages", "Yeti", "yoogliFetchAgent", "Zao", "ZyBorg", "froogle","looksmart", "Firefly", "NationalDirectory", "Ask Jeeves", "TECNOSEEK", "InfoSeek", "Scooter", "appie", "WebBug", "Spade", "rabaz", "TechnoratiSnoop");
|
305 |
update_option('adrotate_crawlers', $crawlers);
|
306 |
}
|
307 |
|
adrotate.php
CHANGED
@@ -6,7 +6,7 @@ Author: Arnan de Gans
|
|
6 |
Author URI: https://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
|
7 |
Description: Monetise your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
-
Version: 5.8.
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
@@ -21,7 +21,7 @@ License: GPLv3
|
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
-
define("ADROTATE_DISPLAY", '5.8.
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
@@ -32,7 +32,7 @@ include_once($plugin_folder.'/adrotate-setup.php');
|
|
32 |
include_once($plugin_folder.'/adrotate-manage-publisher.php');
|
33 |
include_once($plugin_folder.'/adrotate-functions.php');
|
34 |
include_once($plugin_folder.'/adrotate-statistics.php');
|
35 |
-
|
36 |
include_once($plugin_folder.'/adrotate-output.php');
|
37 |
include_once($plugin_folder.'/adrotate-widget.php');
|
38 |
/*-----------------------------------------------------------*/
|
6 |
Author URI: https://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
|
7 |
Description: Monetise your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
+
Version: 5.8.3
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
+
define("ADROTATE_DISPLAY", '5.8.3');
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
32 |
include_once($plugin_folder.'/adrotate-manage-publisher.php');
|
33 |
include_once($plugin_folder.'/adrotate-functions.php');
|
34 |
include_once($plugin_folder.'/adrotate-statistics.php');
|
35 |
+
require_once($plugin_folder.'/adrotate-portability.php');
|
36 |
include_once($plugin_folder.'/adrotate-output.php');
|
37 |
include_once($plugin_folder.'/adrotate-widget.php');
|
38 |
/*-----------------------------------------------------------*/
|
dashboard/adrotatepro.php
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
<div class="ajdg-postbox">
|
18 |
<h2 class="ajdg-postbox-title"><?php _e('Mobile campaigns', 'adrotate'); ?></h2>
|
19 |
<div id="mobile" class="ajdg-postbox-content">
|
20 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
21 |
<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>
|
22 |
</div>
|
23 |
</div>
|
@@ -25,7 +25,7 @@
|
|
25 |
<div class="ajdg-postbox">
|
26 |
<h2 class="ajdg-postbox-title"><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h2>
|
27 |
<div id="schedules" class="ajdg-postbox-content">
|
28 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
29 |
<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>
|
30 |
</div>
|
31 |
</div>
|
@@ -33,7 +33,7 @@
|
|
33 |
<div class="ajdg-postbox">
|
34 |
<h2 class="ajdg-postbox-title"><?php _e('Satisfy your advertisers', 'adrotate'); ?></h2>
|
35 |
<div id="satisfaction" class="ajdg-postbox-content">
|
36 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
37 |
<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>
|
38 |
</div>
|
39 |
</div>
|
@@ -41,7 +41,7 @@
|
|
41 |
<div class="ajdg-postbox">
|
42 |
<h2 class="ajdg-postbox-title"><?php _e('Get Fast Support almost all year round', 'adrotate'); ?></h2>
|
43 |
<div id="support" class="ajdg-postbox-content">
|
44 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
45 |
<p><?php _e('When you activate your AdRotate Pro license you can use the more personal email support. No more queueing up in the forums. AdRotate support takes priority over the forums and is checked once or twice a day. Get a solution (usually) within two business days.', 'adrotate'); ?></p>
|
46 |
</div>
|
47 |
</div>
|
@@ -52,7 +52,7 @@
|
|
52 |
<div class="ajdg-postbox">
|
53 |
<h2 class="ajdg-postbox-title"><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h2>
|
54 |
<div id="geo-targeting" class="ajdg-postbox-content">
|
55 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
56 |
<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>
|
57 |
</div>
|
58 |
</div>
|
@@ -60,7 +60,7 @@
|
|
60 |
<div class="ajdg-postbox">
|
61 |
<h2 class="ajdg-postbox-title"><?php _e('Avoid adblockers', 'adrotate'); ?></h2>
|
62 |
<div id="adblockers" class="ajdg-postbox-content">
|
63 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
64 |
<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>
|
65 |
</div>
|
66 |
</div>
|
@@ -68,7 +68,7 @@
|
|
68 |
<div class="ajdg-postbox">
|
69 |
<h2 class="ajdg-postbox-title"><?php _e('Statistics', 'adrotate'); ?></h2>
|
70 |
<div id="developed-by" class="ajdg-postbox-content">
|
71 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
72 |
<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>
|
73 |
</div>
|
74 |
</div>
|
@@ -76,7 +76,7 @@
|
|
76 |
<div class="ajdg-postbox">
|
77 |
<h2 class="ajdg-postbox-title"><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h2>
|
78 |
<div id="notifications" class="ajdg-postbox-content">
|
79 |
-
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
80 |
<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>
|
81 |
</div>
|
82 |
</div>
|
@@ -88,28 +88,28 @@
|
|
88 |
|
89 |
<div style="text-align: center; margin-top: 30px;">
|
90 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
91 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
92 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
93 |
-
<div class="sub_title">Use on 1 website<br /><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
94 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
95 |
</div>
|
96 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
97 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
98 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
99 |
-
<div class="sub_title">Use on 2 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
100 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
101 |
</div>
|
102 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
103 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
104 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
105 |
-
<div class="sub_title">Use on up-to 5 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
106 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
107 |
</div>
|
108 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
109 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
110 |
-
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
111 |
-
<div class="sub_title">Use on up-to 100 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
112 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page
|
113 |
</div>
|
114 |
</div>
|
115 |
|
17 |
<div class="ajdg-postbox">
|
18 |
<h2 class="ajdg-postbox-title"><?php _e('Mobile campaigns', 'adrotate'); ?></h2>
|
19 |
<div id="mobile" class="ajdg-postbox-content">
|
20 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-mobile.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
21 |
<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>
|
22 |
</div>
|
23 |
</div>
|
25 |
<div class="ajdg-postbox">
|
26 |
<h2 class="ajdg-postbox-title"><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h2>
|
27 |
<div id="schedules" class="ajdg-postbox-content">
|
28 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-schedule.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
29 |
<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>
|
30 |
</div>
|
31 |
</div>
|
33 |
<div class="ajdg-postbox">
|
34 |
<h2 class="ajdg-postbox-title"><?php _e('Satisfy your advertisers', 'adrotate'); ?></h2>
|
35 |
<div id="satisfaction" class="ajdg-postbox-content">
|
36 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-satisfy.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
37 |
<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>
|
38 |
</div>
|
39 |
</div>
|
41 |
<div class="ajdg-postbox">
|
42 |
<h2 class="ajdg-postbox-title"><?php _e('Get Fast Support almost all year round', 'adrotate'); ?></h2>
|
43 |
<div id="support" class="ajdg-postbox-content">
|
44 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-support.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
45 |
<p><?php _e('When you activate your AdRotate Pro license you can use the more personal email support. No more queueing up in the forums. AdRotate support takes priority over the forums and is checked once or twice a day. Get a solution (usually) within two business days.', 'adrotate'); ?></p>
|
46 |
</div>
|
47 |
</div>
|
52 |
<div class="ajdg-postbox">
|
53 |
<h2 class="ajdg-postbox-title"><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h2>
|
54 |
<div id="geo-targeting" class="ajdg-postbox-content">
|
55 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-geo-targeting.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
56 |
<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>
|
57 |
</div>
|
58 |
</div>
|
60 |
<div class="ajdg-postbox">
|
61 |
<h2 class="ajdg-postbox-title"><?php _e('Avoid adblockers', 'adrotate'); ?></h2>
|
62 |
<div id="adblockers" class="ajdg-postbox-content">
|
63 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-adblock.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
64 |
<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>
|
65 |
</div>
|
66 |
</div>
|
68 |
<div class="ajdg-postbox">
|
69 |
<h2 class="ajdg-postbox-title"><?php _e('Statistics', 'adrotate'); ?></h2>
|
70 |
<div id="developed-by" class="ajdg-postbox-content">
|
71 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-stats.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
72 |
<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>
|
73 |
</div>
|
74 |
</div>
|
76 |
<div class="ajdg-postbox">
|
77 |
<h2 class="ajdg-postbox-title"><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h2>
|
78 |
<div id="notifications" class="ajdg-postbox-content">
|
79 |
+
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-notifications.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a>
|
80 |
<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>
|
81 |
</div>
|
82 |
</div>
|
88 |
|
89 |
<div style="text-align: center; margin-top: 30px;">
|
90 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
91 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/single.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
92 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
93 |
+
<div class="sub_title">Use on 1 website<br /><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">More information</a></div>
|
94 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 39</a></div>
|
95 |
</div>
|
96 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
97 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/duo.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
98 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
99 |
+
<div class="sub_title">Use on 2 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">More information</a></div>
|
100 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 49</a></div>
|
101 |
</div>
|
102 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
103 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/multi.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
104 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
105 |
+
<div class="sub_title">Use on up-to 5 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">More information</a></div>
|
106 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 99</a></div>
|
107 |
</div>
|
108 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
109 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/developer.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
110 |
+
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
111 |
+
<div class="sub_title">Use on up-to 100 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">More information</a></div>
|
112 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 199</a></div>
|
113 |
</div>
|
114 |
</div>
|
115 |
|
dashboard/info.php
CHANGED
@@ -44,43 +44,44 @@ $data = get_option("adrotate_advert_status");
|
|
44 |
</div>
|
45 |
|
46 |
<div class="ajdg-postbox">
|
47 |
-
<h2 class="ajdg-postbox-title"
|
48 |
<div id="services" class="ajdg-postbox-content">
|
49 |
-
<p><strong
|
50 |
-
<p
|
51 |
-
<center><a class="button-primary" href="https://ajdg.solutions/go/donate" target="_blank">Donate via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">Write review on WordPress.org</a
|
52 |
|
53 |
-
<p><strong
|
|
|
54 |
<table width="100%">
|
55 |
<tr>
|
56 |
-
<td width="33%">
|
57 |
-
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
58 |
-
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_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>
|
59 |
-
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title"><?php _e('WP Maintenance', 'adrotate'); ?></div></a>
|
60 |
-
<div class="sub_title"><?php _e('Professional service', 'adrotate'); ?></div>
|
61 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">Starting at € 22,50</a></div>
|
62 |
-
<hr>
|
63 |
-
<div class="description"><?php _e('Get all the latest updates for WordPress and plugins. Maintenance, delete spam and clean up files.', 'adrotate'); ?></div>
|
64 |
-
</div>
|
65 |
-
</td>
|
66 |
<td width="33%">
|
67 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
68 |
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_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>
|
69 |
-
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title"
|
70 |
-
<div class="sub_title"
|
71 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">
|
72 |
<hr>
|
73 |
-
<div class="description"
|
74 |
</div>
|
75 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
<td>
|
77 |
<div class="ajdg-sales-widget" style="display: inline-block;">
|
78 |
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_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>
|
79 |
-
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title"
|
80 |
-
<div class="sub_title"
|
81 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">
|
82 |
<hr>
|
83 |
-
<div class="description"
|
84 |
</div>
|
85 |
</td>
|
86 |
</tr>
|
@@ -92,7 +93,7 @@ $data = get_option("adrotate_advert_status");
|
|
92 |
<div id="right-column" class="ajdg-postbox-container">
|
93 |
|
94 |
<div class="ajdg-postbox">
|
95 |
-
<h2 class="ajdg-postbox-title"
|
96 |
<div id="news" class="ajdg-postbox-content">
|
97 |
<?php wp_widget_rss_output(array(
|
98 |
'url' => 'http://ajdg.solutions/feed/',
|
@@ -109,10 +110,10 @@ $data = get_option("adrotate_advert_status");
|
|
109 |
<div id="get-pro" class="ajdg-postbox-content">
|
110 |
<p><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=buy_pro" target="_blank"><img src="<?php echo plugins_url('/images/logo-60x60.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('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'); ?></p>
|
111 |
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=buy_pro"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
|
112 |
-
<p><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=single" target="_blank"><strong><?php _e('Single License', 'adrotate'); ?> (€ 39.00)</strong></a><br /><em><?php _e('Use on ONE WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=
|
113 |
-
<p><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=duo" target="_blank"><strong><?php _e('Duo License', 'adrotate'); ?> (€ 49.00)</strong></a><br /><em><?php _e('Use on TWO WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=
|
114 |
-
<p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=" target="_blank"><strong><?php _e('Multi License', 'adrotate'); ?> (€ 99.00)</strong></a><br /><em><?php _e('Use on up to FIVE WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=
|
115 |
-
<p><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=developer" target="_blank"><strong><?php _e('Developer License', 'adrotate'); ?> (€ 199.00)</strong></a><br /><em><?php _e('Use on up to a HUNDRED WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=
|
116 |
</div>
|
117 |
</div>
|
118 |
|
@@ -124,24 +125,17 @@ $data = get_option("adrotate_advert_status");
|
|
124 |
|
125 |
<hr>
|
126 |
<h1><?php _e('Advertising Partners & Affiliates', 'adrotate'); ?></h1>
|
127 |
-
<em><?php _e('A selection of quality advertiser networks and useful products. If you need adverts or just want more or more diverse adverts. Check out these great options!', 'adrotate'); ?></em>
|
128 |
|
129 |
<div id="dashboard-widgets-wrap">
|
130 |
<div id="dashboard-widgets" class="metabox-holder">
|
131 |
<div id="left-column" class="ajdg-postbox-container">
|
132 |
|
133 |
<div class="ajdg-postbox">
|
134 |
-
<h2 class="ajdg-postbox-title"
|
135 |
-
<div id="
|
136 |
-
<
|
137 |
-
<p><a href="https://ajdg.solutions/go/
|
138 |
-
|
139 |
-
<p><a href="https://ajdg.solutions/go/medianet/" target="_blank">Media.net</a> <strong>ads are contextual</strong> and hence always relevant to your content. They are also <strong>native by design</strong> and highly customizable, delivering a great user experience and higher CTRs.</p>
|
140 |
-
|
141 |
-
<strong><u>Exclusive offer for AdRotate users</u></strong>
|
142 |
-
<p>As an AdRotate user, sign up with <a href="https://ajdg.solutions/go/medianet/" target="_blank">Media.net</a> and you'll earn 10% more, over and above your regular earnings for your first 3 months. <strong>Sign up now!</strong></p>
|
143 |
-
|
144 |
-
<p><a class="button-primary" href="https://ajdg.solutions/go/medianet/" target="_blank">Sign up with Media.net »</a> <a class="button" target="_blank" href="https://ajdg.solutions/go/medianet/">Learn more »</a></p>
|
145 |
</div>
|
146 |
</div>
|
147 |
|
@@ -156,14 +150,6 @@ $data = get_option("adrotate_advert_status");
|
|
156 |
</div>
|
157 |
</div>
|
158 |
|
159 |
-
<div class="ajdg-postbox">
|
160 |
-
<h2 class="ajdg-postbox-title">Give your websites a speed boost with a VPS from Inmotion Hosting</h2>
|
161 |
-
<div id="namecheap" class="ajdg-postbox-content">
|
162 |
-
<p>A VPS is a great step up from regular hosting and it gives you a lot more room to grow your website. Whether you host many websites to save money or put your bigger wedsites on it, Inmotion Hosting is up to the task. Get more control and speed with a VPS from Inmotion Hosting. I've been using their VPS servers for several years now and have no complaints!</p>
|
163 |
-
<p><center><a rel="nofollow" href="https://ajdg.solutions/go/imh-vps"><img src="<?php echo plugins_url("/images/offers/inmotionhosting-vps.jpg", dirname(__FILE__)); ?>" width="440" alt="inmotionhosting.com"></a></center></p>
|
164 |
-
</div>
|
165 |
-
</div>
|
166 |
-
|
167 |
</div>
|
168 |
</div>
|
169 |
</div>
|
44 |
</div>
|
45 |
|
46 |
<div class="ajdg-postbox">
|
47 |
+
<h2 class="ajdg-postbox-title">AdRotate Banner Manager</h2>
|
48 |
<div id="services" class="ajdg-postbox-content">
|
49 |
+
<p><strong>Your help and support is important</strong></p>
|
50 |
+
<p>Consider writing a review or making a donation if you like the plugin or if you find the plugin useful. Reviews cost you nothing but are super helpful as promotion which helps to ensure future development. Thank you for your consideration and support!</p>
|
51 |
+
<center><a class="button-primary" href="https://ajdg.solutions/go/donate" target="_blank">Donate via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">Write review on WordPress.org</a></center></p>
|
52 |
|
53 |
+
<p><strong>More plugins and services</strong></p>
|
54 |
+
<p>Check out these and more services in more details on my website. I also make more plugins. If you like AdRotate - Maybe you like some of those as well. Take a look at the <a href="https://ajdg.solutions/plugins/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">plugins</a> and overall <a href="https://ajdg.solutions/pricing/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">pricing</a> page for more.</p>
|
55 |
<table width="100%">
|
56 |
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
<td width="33%">
|
58 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
59 |
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_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>
|
60 |
+
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title">HTML5 Advert setup</div></a>
|
61 |
+
<div class="sub_title">Professional service</div>
|
62 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">Learn more</a></div>
|
63 |
<hr>
|
64 |
+
<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>
|
65 |
</div>
|
66 |
</td>
|
67 |
+
<td width="33%">
|
68 |
+
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
|
69 |
+
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_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>
|
70 |
+
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title">Maintenance</div></a>
|
71 |
+
<div class="sub_title">Professional service</div>
|
72 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">Get started</a></div>
|
73 |
+
<hr>
|
74 |
+
<div class="description">Get all the latest updates for WordPress and plugins. Maintenance, delete spam and clean up files.</div>
|
75 |
+
</div>
|
76 |
+
</td>
|
77 |
<td>
|
78 |
<div class="ajdg-sales-widget" style="display: inline-block;">
|
79 |
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_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>
|
80 |
+
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title">Single Page Checkout</div></a>
|
81 |
+
<div class="sub_title">WooCommerce Plugin</div>
|
82 |
+
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">View product page</a></div>
|
83 |
<hr>
|
84 |
+
<div class="description">Merge your cart and checkout pages into one single page in seconds with no setup required at all.</div>
|
85 |
</div>
|
86 |
</td>
|
87 |
</tr>
|
93 |
<div id="right-column" class="ajdg-postbox-container">
|
94 |
|
95 |
<div class="ajdg-postbox">
|
96 |
+
<h2 class="ajdg-postbox-title">News & Updates</h2>
|
97 |
<div id="news" class="ajdg-postbox-content">
|
98 |
<?php wp_widget_rss_output(array(
|
99 |
'url' => 'http://ajdg.solutions/feed/',
|
110 |
<div id="get-pro" class="ajdg-postbox-content">
|
111 |
<p><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=buy_pro" target="_blank"><img src="<?php echo plugins_url('/images/logo-60x60.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('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'); ?></p>
|
112 |
<a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=buy_pro"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
|
113 |
+
<p><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=single" target="_blank"><strong><?php _e('Single License', 'adrotate'); ?> (€ 39.00)</strong></a><br /><em><?php _e('Use on ONE WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> »</a></em></p>
|
114 |
+
<p><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=duo" target="_blank"><strong><?php _e('Duo License', 'adrotate'); ?> (€ 49.00)</strong></a><br /><em><?php _e('Use on TWO WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> »</a></em></p>
|
115 |
+
<p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=multi" target="_blank"><strong><?php _e('Multi License', 'adrotate'); ?> (€ 99.00)</strong></a><br /><em><?php _e('Use on up to FIVE WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> »</a></em></p>
|
116 |
+
<p><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=developer" target="_blank"><strong><?php _e('Developer License', 'adrotate'); ?> (€ 199.00)</strong></a><br /><em><?php _e('Use on up to a HUNDRED WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> »</a></em></p>
|
117 |
</div>
|
118 |
</div>
|
119 |
|
125 |
|
126 |
<hr>
|
127 |
<h1><?php _e('Advertising Partners & Affiliates', 'adrotate'); ?></h1>
|
128 |
+
<em><?php _e('A selection of quality advertiser networks and useful products. If you need adverts or just want more or more diverse adverts. Check out these great options!', 'adrotate'); ?><br /><?php _e('Check out these and other preferred products or providers on my', 'adrotate'); ?> <a rel="nofollow" href="https://ajdg.solutions/recommended-products/&pk_campaign=adrotatefree&pk_keyword=info_page"><?php _e('recommended products page', 'adrotate'); ?></a>.</em>
|
129 |
|
130 |
<div id="dashboard-widgets-wrap">
|
131 |
<div id="dashboard-widgets" class="metabox-holder">
|
132 |
<div id="left-column" class="ajdg-postbox-container">
|
133 |
|
134 |
<div class="ajdg-postbox">
|
135 |
+
<h2 class="ajdg-postbox-title">Give your websites a speed boost with a VPS from Inmotion Hosting</h2>
|
136 |
+
<div id="namecheap" class="ajdg-postbox-content">
|
137 |
+
<p>A VPS is a great step up from regular hosting and it gives you a lot more room to grow your website. Whether you host many websites to save money or put your bigger wedsites on it, Inmotion Hosting is up to the task. Get more control and speed with a VPS from Inmotion Hosting. I've been using their VPS servers for several years now and have no complaints!</p>
|
138 |
+
<p><center><a rel="nofollow" href="https://ajdg.solutions/go/imh-vps"><img src="<?php echo plugins_url("/images/offers/inmotionhosting-vps.jpg", dirname(__FILE__)); ?>" width="440" alt="inmotionhosting.com"></a></center></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
</div>
|
140 |
</div>
|
141 |
|
150 |
</div>
|
151 |
</div>
|
152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
</div>
|
154 |
</div>
|
155 |
</div>
|
dashboard/publisher/adverts-edit.php
CHANGED
@@ -42,7 +42,7 @@ if($edit_banner) {
|
|
42 |
foreach($linkmeta as $meta) {
|
43 |
$meta_array[] = $meta->group;
|
44 |
}
|
45 |
-
|
46 |
if($ad_edit_id) {
|
47 |
if($edit_banner->type != 'empty') {
|
48 |
// Errors
|
@@ -218,19 +218,6 @@ if($edit_banner) {
|
|
218 |
</tbody>
|
219 |
</table>
|
220 |
|
221 |
-
<h2><?php _e('Get contextual adverts from Media.net', 'adrotate'); ?></h2>
|
222 |
-
<table class="widefat" style="margin-top: .5em">
|
223 |
-
<tbody>
|
224 |
-
<tr>
|
225 |
-
<th width="40%"><center><a href="https://ajdg.solutions/go/medianet/" target="_blank"><img src="<?php echo plugins_url("../images/offers/medianet.jpg", dirname(__FILE__)); ?>" width="440" /></a></center></th>
|
226 |
-
<td>
|
227 |
-
<p><a href="https://ajdg.solutions/go/medianet/" target="_blank">Media.net</a> is the <strong>#2 largest contextual ads platform</strong> in the world that provides its publishers with an <strong>exclusive access to the Yahoo! Bing Network of advertisers and $6bn worth of search demand.</strong></p>
|
228 |
-
<p><a href="https://ajdg.solutions/go/medianet/" target="_blank">Media.net</a> <strong>ads are contextual</strong> and hence always relevant to your content. They are also <strong>native by design</strong> and highly customizable, delivering a great user experience and higher CTRs.</p>
|
229 |
-
</td>
|
230 |
-
</tr>
|
231 |
-
</tbody>
|
232 |
-
</table>
|
233 |
-
|
234 |
<h2><?php _e('Schedule your advert', 'adrotate'); ?></h2>
|
235 |
<p><em><?php _e('Time uses a 24 hour clock. When you\'re used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours.', 'adrotate'); ?></em></p>
|
236 |
<table class="widefat" style="margin-top: .5em">
|
@@ -519,6 +506,20 @@ if($edit_banner) {
|
|
519 |
<a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
|
520 |
</p>
|
521 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
</form>
|
523 |
<?php
|
524 |
} else {
|
42 |
foreach($linkmeta as $meta) {
|
43 |
$meta_array[] = $meta->group;
|
44 |
}
|
45 |
+
|
46 |
if($ad_edit_id) {
|
47 |
if($edit_banner->type != 'empty') {
|
48 |
// Errors
|
218 |
</tbody>
|
219 |
</table>
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
<h2><?php _e('Schedule your advert', 'adrotate'); ?></h2>
|
222 |
<p><em><?php _e('Time uses a 24 hour clock. When you\'re used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours.', 'adrotate'); ?></em></p>
|
223 |
<table class="widefat" style="margin-top: .5em">
|
506 |
<a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
|
507 |
</p>
|
508 |
<?php } ?>
|
509 |
+
|
510 |
+
<?php if($edit_banner->type != 'empty') { ?>
|
511 |
+
<h2><?php _e('Portability', 'adrotate'); ?></h2>
|
512 |
+
<p><em><?php _e('This long code is your advert. It includes all settings from above except the schedule and group selection. You can import this hash into another setup of AdRotate or AdRotate Professional. Do not alter the hash or the advert will not work. In most browsers you can tripleclick in the field to select the whole thing. You can paste the hash into the \'Advert Hash\' field in the Advert Generator of another AdRotate setup.', 'adrotate'); ?></em></p>
|
513 |
+
<table class="widefat" style="margin-top: .5em">
|
514 |
+
<tbody>
|
515 |
+
<tr>
|
516 |
+
<th width="15%" valign="top"><?php _e('Advert hash', 'adrotate'); ?></th>
|
517 |
+
<td colspan="3"><textarea tabindex="2" id="adrotate_portable" name="adrotate_portable" cols="70" rows="5" class="ajdg-fullwidth"><?php echo adrotate_portable_hash('export', $edit_banner); ?></textarea></td>
|
518 |
+
</tr>
|
519 |
+
</tbody>
|
520 |
+
</table>
|
521 |
+
<?php } ?>
|
522 |
+
|
523 |
</form>
|
524 |
<?php
|
525 |
} else {
|
dashboard/publisher/adverts-generator.php
CHANGED
@@ -35,7 +35,7 @@ if($edit_banner) {
|
|
35 |
|
36 |
<h2><?php _e('Generate Advert Code', 'adrotate'); ?></h2>
|
37 |
<p><?php _e('Use the Generator if you have received a target url, banner image and/or some separate files with a description on how to use those. The AdRotate Generator will take your bits and pieces and try to generate a working adcode from it.', 'adrotate'); ?></p>
|
38 |
-
|
39 |
<p><?php _e('If you have a complete and working ad code / ad tag you do not use the Generator. You can simply paste that code in the AdCode field when creating your advert. For example as provided by Media.net or Google AdSense among others.', 'adrotate'); ?></p>
|
40 |
|
41 |
<h2><?php _e('Create your advert', 'adrotate'); ?></h2>
|
@@ -126,7 +126,7 @@ if($edit_banner) {
|
|
126 |
<label for="adrotate_newwindow"><input tabindex="6" type="checkbox" name="adrotate_newwindow" checked="1" /></label> <?php _e('Open the advert in a new window?', 'adrotate'); ?> <?php _e('(Recommended)', 'adrotate'); ?>
|
127 |
</td>
|
128 |
</tr>
|
129 |
-
|
130 |
<th valign="top"><?php _e('NoFollow', 'adrotate'); ?></th>
|
131 |
<td>
|
132 |
<label for="adrotate_nofollow"><input tabindex="7" type="checkbox" name="adrotate_nofollow" disabled /></label> <?php _e('Tell crawlers and search engines not to follow the target website url?', 'adrotate'); ?> <?php _e('(Available in AdRotate Pro)', 'adrotate'); ?><br /><em><?php _e('Letting bots (Such as Googlebot) index paid links may negatively affect your SEO and PageRank.', 'adrotate'); ?></em>
|
@@ -140,6 +140,21 @@ if($edit_banner) {
|
|
140 |
</tr>
|
141 |
</tbody>
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
</table>
|
144 |
|
145 |
<p class="submit">
|
@@ -147,7 +162,7 @@ if($edit_banner) {
|
|
147 |
<a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a> <?php _e('Always test your adverts before activating them.', 'adrotate'); ?>
|
148 |
</p>
|
149 |
|
150 |
-
<p><em><strong><?php _e('
|
151 |
</form>
|
152 |
<?php
|
153 |
} else {
|
35 |
|
36 |
<h2><?php _e('Generate Advert Code', 'adrotate'); ?></h2>
|
37 |
<p><?php _e('Use the Generator if you have received a target url, banner image and/or some separate files with a description on how to use those. The AdRotate Generator will take your bits and pieces and try to generate a working adcode from it.', 'adrotate'); ?></p>
|
38 |
+
<p><?php _e('If you have an advert hash from another AdRotate or AdRotate Professional setup you can enter it in the Portability field. This feature is a bit of an experiment, but the basic function works.', 'adrotate'); ?></p>
|
39 |
<p><?php _e('If you have a complete and working ad code / ad tag you do not use the Generator. You can simply paste that code in the AdCode field when creating your advert. For example as provided by Media.net or Google AdSense among others.', 'adrotate'); ?></p>
|
40 |
|
41 |
<h2><?php _e('Create your advert', 'adrotate'); ?></h2>
|
126 |
<label for="adrotate_newwindow"><input tabindex="6" type="checkbox" name="adrotate_newwindow" checked="1" /></label> <?php _e('Open the advert in a new window?', 'adrotate'); ?> <?php _e('(Recommended)', 'adrotate'); ?>
|
127 |
</td>
|
128 |
</tr>
|
129 |
+
<tr>
|
130 |
<th valign="top"><?php _e('NoFollow', 'adrotate'); ?></th>
|
131 |
<td>
|
132 |
<label for="adrotate_nofollow"><input tabindex="7" type="checkbox" name="adrotate_nofollow" disabled /></label> <?php _e('Tell crawlers and search engines not to follow the target website url?', 'adrotate'); ?> <?php _e('(Available in AdRotate Pro)', 'adrotate'); ?><br /><em><?php _e('Letting bots (Such as Googlebot) index paid links may negatively affect your SEO and PageRank.', 'adrotate'); ?></em>
|
140 |
</tr>
|
141 |
</tbody>
|
142 |
|
143 |
+
<thead>
|
144 |
+
<tr>
|
145 |
+
<th colspan="2"><strong><?php _e('Portability', 'adrotate'); ?></strong></th>
|
146 |
+
</tr>
|
147 |
+
</thead>
|
148 |
+
|
149 |
+
<tbody>
|
150 |
+
<tr>
|
151 |
+
<th valign="top"><?php _e('Advert hash', 'adrotate'); ?></th>
|
152 |
+
<td>
|
153 |
+
<textarea tabindex="2" id="adrotate_portability" name="adrotate_portability" cols="70" rows="5" class="ajdg-fullwidth" placeholder="<?php _e('To import a ready made advert, enter a advert hash from another AdRotate setup...', 'adrotate'); ?>"></textarea>
|
154 |
+
</td>
|
155 |
+
</tr>
|
156 |
+
</tbody>
|
157 |
+
|
158 |
</table>
|
159 |
|
160 |
<p class="submit">
|
162 |
<a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a> <?php _e('Always test your adverts before activating them.', 'adrotate'); ?>
|
163 |
</p>
|
164 |
|
165 |
+
<p><em><strong><?php _e('Caution:', 'adrotate'); ?></strong> <?php _e('While the Code Generator has been tested and works, code generation, as always, is a interpretation of user input. If you provide the correct bits and pieces, a working advert may be generated. If you leave fields empty or insert the wrong info you probably end up with a broken advert.', 'adrotate'); ?><br /><strong><?php _e('NOTE:', 'adrotate'); ?></strong> <?php _e('If you insert an Advert Hash, all other fields are ignored.', 'adrotate'); ?></em></p>
|
166 |
</form>
|
167 |
<?php
|
168 |
} else {
|
dashboard/publisher/adverts-main.php
CHANGED
@@ -87,6 +87,5 @@
|
|
87 |
<?php } ?>
|
88 |
</tbody>
|
89 |
</table>
|
90 |
-
<center><?php _e('Get more features with AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!</center>
|
91 |
|
92 |
</form>
|
87 |
<?php } ?>
|
88 |
</tbody>
|
89 |
</table>
|
|
|
90 |
|
91 |
</form>
|
dashboard/publisher/groups-edit.php
CHANGED
@@ -34,6 +34,18 @@ if($edit_group) {
|
|
34 |
$meta_array[] = $meta->ad;
|
35 |
}
|
36 |
if(!is_array($meta_array)) $meta_array = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
?>
|
38 |
|
39 |
<form name="editgroup" id="post" method="post" action="admin.php?page=adrotate-groups">
|
34 |
$meta_array[] = $meta->ad;
|
35 |
}
|
36 |
if(!is_array($meta_array)) $meta_array = array();
|
37 |
+
|
38 |
+
if($group_edit_id AND $edit_group->name != '') {
|
39 |
+
// Errors
|
40 |
+
if($edit_group->modus == 2 AND $edit_group->gridrows == 1 AND $edit_group->gridcolumns == 1)
|
41 |
+
echo '<div class="error"><p>'. __('Your block is a 1x1 grid. Either add more rows or columns or set the group to Default mode.', 'adrotate-pro').'</p></div>';
|
42 |
+
|
43 |
+
if($edit_group->cat_loc > 0 AND strlen($edit_group->cat) == 0)
|
44 |
+
echo '<div class="error"><p>'. __('You have enabled Post Injection but did not select any categories.', 'adrotate-pro').'</p></div>';
|
45 |
+
|
46 |
+
if($edit_group->page_loc > 0 AND strlen($edit_group->page) == 0)
|
47 |
+
echo '<div class="error"><p>'. __('You have enabled Page Injection but did not select any pages.', 'adrotate-pro').'</p></div>';
|
48 |
+
}
|
49 |
?>
|
50 |
|
51 |
<form name="editgroup" id="post" method="post" action="admin.php?page=adrotate-groups">
|
dashboard/publisher/groups-main.php
CHANGED
@@ -86,5 +86,4 @@
|
|
86 |
<?php } ?>
|
87 |
</tbody>
|
88 |
</table>
|
89 |
-
<center><?php _e('Get more features with AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!</center>
|
90 |
</form>
|
86 |
<?php } ?>
|
87 |
</tbody>
|
88 |
</table>
|
|
|
89 |
</form>
|
dashboard/publisher/schedules-main.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
<h2><?php _e('Manage Schedules', 'adrotate'); ?></h2>
|
13 |
-
<p><?php _e('In AdRotate Pro you can schedule adverts for multiple periods of time. One schedule can be assigned to many adverts allowing you to manage multi advert campaigns easily. Schedules can be active on certain days of the week or on certain hours of the day.', 'adrotate'); ?> <?php _e('Get more
|
14 |
|
15 |
<form name="banners" id="post" method="post" action="admin.php?page=adrotate-schedules">
|
16 |
<?php wp_nonce_field('adrotate_bulk_schedules','adrotate_nonce'); ?>
|
@@ -85,8 +85,7 @@
|
|
85 |
</table>
|
86 |
<p><center>
|
87 |
<span style="border: 1px solid #c80; height: 12px; width: 12px; background-color: #fdefc3"> </span> <?php _e("Expires soon.", "adrotate"); ?>
|
88 |
-
<span style="border: 1px solid #c00; height: 12px; width: 12px; background-color: #ffebe8"> </span> <?php _e("Has expired.", "adrotate");
|
89 |
-
<?php _e('Get more features with AdRotate Pro', 'adrotate'); ?> - <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!
|
90 |
|
91 |
</center></p>
|
92 |
</form>
|
10 |
------------------------------------------------------------------------------------ */
|
11 |
?>
|
12 |
<h2><?php _e('Manage Schedules', 'adrotate'); ?></h2>
|
13 |
+
<p><?php _e('In AdRotate Pro you can schedule adverts for multiple periods of time. One schedule can be assigned to many adverts allowing you to manage multi advert campaigns easily. Schedules can be active on certain days of the week or on certain hours of the day.', 'adrotate'); ?> <?php _e('Get more scheduling options with', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro">AdRotate Pro</a>!</p>
|
14 |
|
15 |
<form name="banners" id="post" method="post" action="admin.php?page=adrotate-schedules">
|
16 |
<?php wp_nonce_field('adrotate_bulk_schedules','adrotate_nonce'); ?>
|
85 |
</table>
|
86 |
<p><center>
|
87 |
<span style="border: 1px solid #c80; height: 12px; width: 12px; background-color: #fdefc3"> </span> <?php _e("Expires soon.", "adrotate"); ?>
|
88 |
+
<span style="border: 1px solid #c00; height: 12px; width: 12px; background-color: #ffebe8"> </span> <?php _e("Has expired.", "adrotate"); ?>
|
|
|
89 |
|
90 |
</center></p>
|
91 |
</form>
|
dashboard/support.php
CHANGED
@@ -22,53 +22,53 @@ $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/forums/forum/adrotate-for-wordpress/general-support/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_general" target="_blank"><strong>General Support</strong></a><br /><em>Ask anything about AdRotate and AdRotate Pro here. <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/general-support/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_general" target="_blank"
|
30 |
-
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/installation-and-setup/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_installation" target="_blank"><strong>Installation and Setup</strong></a><br /><em>Having trouble installing AdRotate (Pro) or not sure how to get started? <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/installation-and-setup/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_installation" target="_blank"
|
31 |
-
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/adverts-and-banners/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_adverts" target="_blank"><strong>Adverts and Banners</strong></a><br /><em>The moneymaker! Your adverts. <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/adverts-and-banners/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_adverts" target="_blank"
|
32 |
-
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/groups/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_groups" target="_blank"><strong>Groups</strong></a><br /><em>All about groups. <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/groups/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_groups" target="_blank"
|
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</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"
|
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</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"
|
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>
|
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/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_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>
|
47 |
-
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank"><div class="title"><?php _e('WP Maintenance', 'adrotate'); ?></div></a>
|
48 |
-
<div class="sub_title"><?php _e('Professional service', 'adrotate'); ?></div>
|
49 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">Starting at € 22,50</a></div>
|
50 |
-
<hr>
|
51 |
-
<div class="description"><?php _e('Get all the latest updates for WordPress and plugins. Maintenance, delete spam and clean up files.', 'adrotate'); ?></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/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_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>
|
57 |
-
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank"><div class="title"
|
58 |
-
<div class="sub_title"
|
59 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">
|
60 |
<hr>
|
61 |
-
<div class="description"
|
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/?pk_campaign=adrotatefree&pk_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>
|
67 |
-
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank"><div class="title"
|
68 |
-
<div class="sub_title"
|
69 |
-
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">
|
70 |
<hr>
|
71 |
-
<div class="description"
|
72 |
</div>
|
73 |
</td>
|
74 |
</tr>
|
22 |
<div id="left-column" class="ajdg-postbox-container">
|
23 |
|
24 |
<div class="ajdg-postbox">
|
25 |
+
<h2 class="ajdg-postbox-title">Support Forums</h2>
|
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" />When you are stuck with AdRotate or AdRotate Pro, check the forums first. Chances are your question has already been asked and answered! Next to the forum there are many manuals and guides available for almost every function and feature in the plugin. <a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=manuals_link" target="_blank">Take a look at the AdRotate Manuals</a>.</p>
|
28 |
|
29 |
+
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/general-support/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_general" target="_blank"><strong>General Support forum</strong></a><br /><em>Ask anything about AdRotate and AdRotate Pro here. <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/general-support/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_general" target="_blank">View topics »</a></em></p>
|
30 |
+
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/installation-and-setup/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_installation" target="_blank"><strong>Installation and Setup forum</strong></a><br /><em>Having trouble installing AdRotate (Pro) or not sure how to get started? <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/installation-and-setup/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_installation" target="_blank">View topics »</a></em></p>
|
31 |
+
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/adverts-and-banners/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_adverts" target="_blank"><strong>Adverts and Banners forum</strong></a><br /><em>The moneymaker! Your adverts. <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/adverts-and-banners/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_adverts" target="_blank">View topics »</a></em></p>
|
32 |
+
<p><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/groups/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_groups" target="_blank"><strong>Groups forum</strong></a><br /><em>All about groups. <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/groups/?pk_campaign=adrotatefree&pk_keyword=support_page&pk_content=forum_groups" target="_blank">View topics »</a></em></p>
|
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">Plugins and services</h2>
|
40 |
<div id="services" class="ajdg-postbox-content">
|
41 |
+
<p>Check out these and more services in more details on my website. I also make more plugins. If you like AdRotate - Maybe you like some of those as well. Take a look at the <a href="https://ajdg.solutions/plugins/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">plugins</a> and overall <a href="https://ajdg.solutions/pricing/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">pricing</a> page for more.</p>
|
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/?pk_campaign=adrotatefree&pk_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>
|
47 |
+
<a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank"><div class="title">HTML5 Advert setup</div></a>
|
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/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">Learn more</a></div>
|
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/?pk_campaign=adrotatefree&pk_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>
|
57 |
+
<a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank"><div class="title">Maintenance</div></a>
|
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/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">Get started</a></div>
|
60 |
+
<hr>
|
61 |
+
<div class="description">Get all the latest updates for WordPress and plugins. Maintenance, delete spam and clean up files.</div>
|
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/?pk_campaign=adrotatefree&pk_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>
|
67 |
+
<a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank"><div class="title">Single Page Checkout</div></a>
|
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/?pk_campaign=adrotatefree&pk_keyword=support_page" target="_blank">View product page</a></div>
|
70 |
<hr>
|
71 |
+
<div class="description">Merge your cart and checkout pages into one single page in seconds with no setup required at all.</div>
|
72 |
</div>
|
73 |
</td>
|
74 |
</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: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
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"
|
@@ -60,10 +60,11 @@ msgstr "Export erstellt"
|
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
-
"below."
|
64 |
msgstr ""
|
65 |
"Anzeigen-HTML generiert und im AdCode-Feld platziert. Konfigurieren Sie Ihre "
|
66 |
-
"Anzeige unten."
|
|
|
67 |
|
68 |
#: adrotate-functions.php:737
|
69 |
msgid "Settings saved"
|
@@ -116,10 +117,26 @@ msgid "No ads found."
|
|
116 |
msgstr "Es wurden keine Anzeigen gefunden."
|
117 |
|
118 |
#: adrotate-functions.php:782
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "Unexpected error"
|
120 |
msgstr "Unerwarteter Fehler"
|
121 |
|
122 |
-
#: adrotate-manage-publisher.php:
|
123 |
msgid "AdRotate Advertiser"
|
124 |
msgstr "AdRotate Advertiser"
|
125 |
|
@@ -266,15 +283,15 @@ msgstr "Einrichten des Bannerordners"
|
|
266 |
|
267 |
#: adrotate-output.php:652
|
268 |
msgid ""
|
269 |
-
"You have
|
270 |
-
"
|
271 |
msgstr ""
|
272 |
-
"Sie haben AdRotate Professional installiert. Bitte
|
273 |
-
"
|
274 |
|
275 |
#: adrotate-output.php:652
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
#: adrotate-output.php:655
|
280 |
msgid ""
|
@@ -319,7 +336,7 @@ msgstr "Forum"
|
|
319 |
msgid "Help AdRotate Grow"
|
320 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
321 |
|
322 |
-
#: adrotate-output.php:835 adrotate.php:
|
323 |
msgid "AdRotate Professional"
|
324 |
msgstr "AdRotate Professional"
|
325 |
|
@@ -473,78 +490,78 @@ msgstr "ID:"
|
|
473 |
msgid "Fill in the ID of the type you want to display!"
|
474 |
msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
|
475 |
|
476 |
-
#: adrotate.php:
|
477 |
msgid "General Info"
|
478 |
msgstr "Allgemeine Info"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "AdRotate Pro"
|
482 |
msgstr "AdRotate Pro"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
msgid "Manage Adverts"
|
486 |
msgstr "Anzeigen verwalten"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Manage Groups"
|
490 |
msgstr "Gruppen verwalten"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
msgid "Manage Schedules"
|
494 |
msgstr "Zeiträume verwalten"
|
495 |
|
496 |
-
#: adrotate.php:
|
497 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
498 |
#: dashboard/publisher/statistics-main.php:23
|
499 |
#: dashboard/settings/statistics.php:17
|
500 |
msgid "Statistics"
|
501 |
msgstr "Auswertungen"
|
502 |
|
503 |
-
#: adrotate.php:
|
504 |
msgid "Manage Media"
|
505 |
msgstr "Medien verwalten"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "Support"
|
509 |
msgstr "Support"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "Settings"
|
513 |
msgstr "Einstellungen"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
msgid "AdRotate Info"
|
517 |
msgstr "AdRotate Info"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "Advert Management"
|
521 |
msgstr "Anzeige-Management"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
msgid "Manage"
|
525 |
msgstr "Verwalten"
|
526 |
|
527 |
-
#: adrotate.php:
|
528 |
msgid "Generator"
|
529 |
msgstr "QR-Code-Generator (für Ihre vCard)"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
msgid "Add New"
|
533 |
msgstr "Neu hinzufügen"
|
534 |
|
535 |
-
#: adrotate.php:
|
536 |
msgid "Group Management"
|
537 |
msgstr "Gruppen-Verwaltung"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
msgid "Schedules"
|
541 |
msgstr "Zeitpläne"
|
542 |
|
543 |
-
#: adrotate.php:
|
544 |
msgid "Media and Assets"
|
545 |
msgstr "Medien und Assets"
|
546 |
|
547 |
-
#: adrotate.php:
|
548 |
msgid ""
|
549 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
550 |
"if you have HTML5 adverts containing multiple files."
|
@@ -553,45 +570,45 @@ msgstr ""
|
|
553 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
554 |
"mehrere Dateien enthalten."
|
555 |
|
556 |
-
#: adrotate.php:
|
557 |
msgid "Get more features"
|
558 |
msgstr "Holen Sie sich mehr Funktionen"
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
msgid "Get AdRotate Pro"
|
562 |
msgstr "AdRotate Pro"
|
563 |
|
564 |
-
#: adrotate.php:
|
565 |
msgid "AdRotate Settings"
|
566 |
msgstr "AdRotate Einstellungen"
|
567 |
|
568 |
-
#: adrotate.php:
|
569 |
msgid "General"
|
570 |
msgstr "Allgemein"
|
571 |
|
572 |
-
#: adrotate.php:
|
573 |
msgid "Notifications"
|
574 |
msgstr "Benachrichtigungen"
|
575 |
|
576 |
-
#: adrotate.php:
|
577 |
-
#: dashboard/publisher/groups-edit.php:
|
578 |
#: dashboard/settings/advertisers.php:38
|
579 |
msgid "Geo Targeting"
|
580 |
msgstr "Geo Targeting"
|
581 |
|
582 |
-
#: adrotate.php:
|
583 |
msgid "Advertisers"
|
584 |
msgstr "Inserenten"
|
585 |
|
586 |
-
#: adrotate.php:
|
587 |
msgid "Access Roles"
|
588 |
msgstr "Zugriffsrollen"
|
589 |
|
590 |
-
#: adrotate.php:
|
591 |
msgid "Miscellaneous"
|
592 |
msgstr "Sonstiges"
|
593 |
|
594 |
-
#: adrotate.php:
|
595 |
msgid "Maintenance"
|
596 |
msgstr "Wartung"
|
597 |
|
@@ -743,7 +760,7 @@ msgstr "Ihre Konfiguration"
|
|
743 |
msgid "Adverts that need you"
|
744 |
msgstr "Achten Sie auf folgende Anzeigen"
|
745 |
|
746 |
-
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:
|
747 |
#: dashboard/publisher/groups-main.php:34
|
748 |
#: dashboard/publisher/schedules-main.php:34
|
749 |
#: dashboard/publisher/statistics-main.php:35
|
@@ -762,81 +779,11 @@ msgstr "Gruppen"
|
|
762 |
msgid "Have errors"
|
763 |
msgstr "Fehler enthalten"
|
764 |
|
765 |
-
#: dashboard/info.php:
|
766 |
-
msgid "AdRotate Banner Manager"
|
767 |
-
msgstr "AdRotate Banner Manager"
|
768 |
-
|
769 |
-
#: dashboard/info.php:49
|
770 |
-
msgid "Support AdRotate Banner Manager"
|
771 |
-
msgstr "Unterstützen Sie AdRotate Banner Manager"
|
772 |
-
|
773 |
-
#: dashboard/info.php:50
|
774 |
-
msgid ""
|
775 |
-
"Consider writing a review or making a donation if you like the plugin or if "
|
776 |
-
"you find the plugin useful. Thanks for your support!"
|
777 |
-
msgstr ""
|
778 |
-
"Erwägen Sie, eine Bewertung zu schreiben oder eine Spende zu machen, wenn "
|
779 |
-
"Sie das Plugin mögen oder wenn Sie das Plugin nützlich finden. Vielen Dank "
|
780 |
-
"für Ihre Unterstützung!"
|
781 |
-
|
782 |
-
#: dashboard/info.php:53 dashboard/support.php:39
|
783 |
-
msgid "Plugins and services"
|
784 |
-
msgstr "Plugins und Dienstleistungen"
|
785 |
-
|
786 |
-
#: dashboard/info.php:59 dashboard/support.php:47
|
787 |
-
msgid "WP Maintenance"
|
788 |
-
msgstr "WP Maintenance"
|
789 |
-
|
790 |
-
#: dashboard/info.php:60 dashboard/info.php:70 dashboard/support.php:48
|
791 |
-
#: dashboard/support.php:58
|
792 |
-
msgid "Professional service"
|
793 |
-
msgstr "Organisationsberatung"
|
794 |
-
|
795 |
-
#: dashboard/info.php:63 dashboard/support.php:51
|
796 |
-
msgid ""
|
797 |
-
"Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
798 |
-
"spam and clean up files."
|
799 |
-
msgstr ""
|
800 |
-
"Holen Sie sich die neuesten Updates für WordPress und Plugins. Wartung, "
|
801 |
-
"Löschen von Spam und Bereinigen von Dateien."
|
802 |
-
|
803 |
-
#: dashboard/info.php:69 dashboard/support.php:57
|
804 |
-
msgid "HTML5 Advert setup"
|
805 |
-
msgstr "HTML5-Anzeigeneinrichtung"
|
806 |
-
|
807 |
-
#: dashboard/info.php:73 dashboard/support.php:61
|
808 |
-
msgid ""
|
809 |
-
"Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
810 |
-
"install and configure it for you."
|
811 |
-
msgstr ""
|
812 |
-
"Haben Sie eine HTML5-Anzeige erhalten und können sie in AdRotate Pro nicht "
|
813 |
-
"funktionieren? Ich werde es installieren und für Sie konfigurieren."
|
814 |
-
|
815 |
-
#: dashboard/info.php:79 dashboard/support.php:67
|
816 |
-
msgid "Single Page Checkout"
|
817 |
-
msgstr "Einzelseiten-Kaufabwicklung"
|
818 |
-
|
819 |
-
#: dashboard/info.php:80 dashboard/support.php:68
|
820 |
-
msgid "WooCommerce Plugin"
|
821 |
-
msgstr "WooCommerce Plugin"
|
822 |
-
|
823 |
-
#: dashboard/info.php:83 dashboard/support.php:71
|
824 |
-
msgid ""
|
825 |
-
"Merge your cart and checkout pages into one single page in seconds with no "
|
826 |
-
"setup required at all."
|
827 |
-
msgstr ""
|
828 |
-
"Führen Sie Ihren Warenkorb und Ihre Kassenseiten in Sekundenschnelle zu "
|
829 |
-
"einer einzigen Seite zusammen, ohne dass eine Einrichtung erforderlich ist."
|
830 |
-
|
831 |
-
#: dashboard/info.php:95
|
832 |
-
msgid "News & Updates"
|
833 |
-
msgstr "Neuigkeiten & Updates"
|
834 |
-
|
835 |
-
#: dashboard/info.php:108
|
836 |
msgid "Buy AdRotate Professional"
|
837 |
msgstr "AdRotate Professional kaufen"
|
838 |
|
839 |
-
#: dashboard/info.php:
|
840 |
msgid ""
|
841 |
"AdRotate Professional has a lot more functions for even better advertising "
|
842 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -847,48 +794,48 @@ msgstr ""
|
|
847 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
848 |
"hat!"
|
849 |
|
850 |
-
#: dashboard/info.php:
|
851 |
msgid "Single License"
|
852 |
msgstr "Einzellizenz"
|
853 |
|
854 |
-
#: dashboard/info.php:
|
855 |
msgid "Use on ONE WordPress installation."
|
856 |
msgstr "Für eine Wordpress-Installation."
|
857 |
|
858 |
-
#: dashboard/info.php:
|
859 |
-
#: dashboard/info.php:
|
860 |
msgid "Buy now"
|
861 |
msgstr "Jetzt kaufen"
|
862 |
|
863 |
-
#: dashboard/info.php:
|
864 |
msgid "Duo License"
|
865 |
msgstr "Duo Lizenz"
|
866 |
|
867 |
-
#: dashboard/info.php:
|
868 |
msgid "Use on TWO WordPress installations."
|
869 |
msgstr "Für eine Wordpress-Installation."
|
870 |
|
871 |
-
#: dashboard/info.php:
|
872 |
msgid "Multi License"
|
873 |
msgstr "Multi-Lizenz"
|
874 |
|
875 |
-
#: dashboard/info.php:
|
876 |
msgid "Use on up to FIVE WordPress installations."
|
877 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
878 |
|
879 |
-
#: dashboard/info.php:
|
880 |
msgid "Developer License"
|
881 |
msgstr "Entwickler-Lizenz"
|
882 |
|
883 |
-
#: dashboard/info.php:
|
884 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
885 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
886 |
|
887 |
-
#: dashboard/info.php:
|
888 |
msgid "Advertising Partners & Affiliates"
|
889 |
msgstr "Werbepartner und Partner"
|
890 |
|
891 |
-
#: dashboard/info.php:
|
892 |
msgid ""
|
893 |
"A selection of quality advertiser networks and useful products. If you need "
|
894 |
"adverts or just want more or more diverse adverts. Check out these great "
|
@@ -898,9 +845,15 @@ msgstr ""
|
|
898 |
"Anzeigen benötigen oder einfach mehr oder mehr verschiedene Anzeigen "
|
899 |
"wünschen. Schauen Sie sich diese großartigen Optionen an!"
|
900 |
|
901 |
-
#: dashboard/info.php:
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
|
905 |
#: dashboard/publisher/adverts-disabled.php:15
|
906 |
msgid "Disabled Adverts"
|
@@ -940,10 +893,10 @@ msgid "Go"
|
|
940 |
msgstr "Los"
|
941 |
|
942 |
#: dashboard/publisher/adverts-disabled.php:35
|
943 |
-
#: dashboard/publisher/adverts-edit.php:
|
944 |
#: dashboard/publisher/adverts-error.php:39
|
945 |
#: dashboard/publisher/adverts-main.php:39
|
946 |
-
#: dashboard/publisher/groups-edit.php:
|
947 |
#: dashboard/publisher/groups-main.php:32
|
948 |
#: dashboard/publisher/schedules-main.php:31
|
949 |
msgid "ID"
|
@@ -958,11 +911,11 @@ msgstr "Start / Ende"
|
|
958 |
|
959 |
#: dashboard/publisher/adverts-disabled.php:37
|
960 |
#: dashboard/publisher/adverts-edit.php:112
|
961 |
-
#: dashboard/publisher/adverts-edit.php:
|
962 |
#: dashboard/publisher/adverts-error.php:40
|
963 |
#: dashboard/publisher/adverts-main.php:41
|
964 |
-
#: dashboard/publisher/groups-edit.php:
|
965 |
-
#: dashboard/publisher/groups-edit.php:
|
966 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
967 |
#: dashboard/publisher/schedules-main.php:33
|
968 |
msgid "Name"
|
@@ -970,14 +923,14 @@ msgstr "Name"
|
|
970 |
|
971 |
#: dashboard/publisher/adverts-disabled.php:39
|
972 |
#: dashboard/publisher/adverts-main.php:43
|
973 |
-
#: dashboard/publisher/groups-edit.php:
|
974 |
#: dashboard/publisher/groups-main.php:36
|
975 |
msgid "Shown"
|
976 |
msgstr "Gezeigt"
|
977 |
|
978 |
#: dashboard/publisher/adverts-disabled.php:40
|
979 |
#: dashboard/publisher/adverts-main.php:45
|
980 |
-
#: dashboard/publisher/groups-edit.php:
|
981 |
#: dashboard/publisher/groups-main.php:38
|
982 |
#: dashboard/publisher/statistics-advert.php:52
|
983 |
#: dashboard/publisher/statistics-advert.php:58
|
@@ -1234,19 +1187,14 @@ msgid "Disabled, do not show this advert anywhere"
|
|
1234 |
msgstr "Deaktiviert, zeigen Sie diese Anzeige nirgendwo an"
|
1235 |
|
1236 |
#: dashboard/publisher/adverts-edit.php:198
|
1237 |
-
#: dashboard/publisher/adverts-main.php:90
|
1238 |
-
#: dashboard/publisher/groups-main.php:89
|
1239 |
msgid "Get more features with AdRotate Pro."
|
1240 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro."
|
1241 |
|
1242 |
#: dashboard/publisher/adverts-edit.php:198
|
1243 |
-
#: dashboard/publisher/adverts-edit.php:
|
1244 |
-
#: dashboard/publisher/adverts-edit.php:
|
1245 |
-
#: dashboard/publisher/adverts-edit.php:
|
1246 |
-
#: dashboard/publisher/
|
1247 |
-
#: dashboard/publisher/groups-edit.php:216
|
1248 |
-
#: dashboard/publisher/groups-main.php:89 dashboard/publisher/media.php:73
|
1249 |
-
#: dashboard/publisher/schedules-main.php:89
|
1250 |
#: dashboard/publisher/statistics-advert.php:109
|
1251 |
#: dashboard/publisher/statistics-group.php:113
|
1252 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -1254,39 +1202,39 @@ msgid "Upgrade now"
|
|
1254 |
msgstr "Jetzt upgraden"
|
1255 |
|
1256 |
#: dashboard/publisher/adverts-edit.php:201
|
1257 |
-
#: dashboard/publisher/adverts-edit.php:
|
1258 |
-
#: dashboard/publisher/adverts-edit.php:
|
1259 |
-
#: dashboard/publisher/adverts-edit.php:
|
1260 |
msgid "Save Advert"
|
1261 |
msgstr "Anzeige speichern"
|
1262 |
|
1263 |
#: dashboard/publisher/adverts-edit.php:202
|
1264 |
-
#: dashboard/publisher/adverts-edit.php:
|
1265 |
-
#: dashboard/publisher/adverts-edit.php:
|
1266 |
-
#: dashboard/publisher/adverts-edit.php:
|
1267 |
-
#: dashboard/publisher/adverts-generator.php:
|
1268 |
-
#: dashboard/publisher/groups-edit.php:
|
1269 |
-
#: dashboard/publisher/groups-edit.php:
|
1270 |
-
#: dashboard/publisher/groups-edit.php:
|
1271 |
msgid "Cancel"
|
1272 |
msgstr "Abbrechen"
|
1273 |
|
1274 |
#: dashboard/publisher/adverts-edit.php:205
|
1275 |
-
#: dashboard/publisher/adverts-edit.php:
|
1276 |
-
#: dashboard/publisher/groups-edit.php:
|
1277 |
-
#: dashboard/publisher/groups-edit.php:
|
1278 |
msgid "Usage"
|
1279 |
msgstr "Verwendung"
|
1280 |
|
1281 |
#: dashboard/publisher/adverts-edit.php:209
|
1282 |
-
#: dashboard/publisher/adverts-edit.php:
|
1283 |
-
#: dashboard/publisher/groups-edit.php:
|
1284 |
-
#: dashboard/publisher/groups-edit.php:
|
1285 |
msgid "Widget"
|
1286 |
msgstr "Widget"
|
1287 |
|
1288 |
#: dashboard/publisher/adverts-edit.php:210
|
1289 |
-
#: dashboard/publisher/adverts-edit.php:
|
1290 |
msgid ""
|
1291 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1292 |
"and select the advert or the group the advert is in."
|
@@ -1295,28 +1243,24 @@ msgstr ""
|
|
1295 |
"platzieren möchten und wählen Sie ein Anzeige oder eine Gruppe mit Anzeigen."
|
1296 |
|
1297 |
#: dashboard/publisher/adverts-edit.php:213
|
1298 |
-
#: dashboard/publisher/adverts-edit.php:
|
1299 |
-
#: dashboard/publisher/groups-edit.php:
|
1300 |
-
#: dashboard/publisher/groups-edit.php:
|
1301 |
msgid "In a post or page"
|
1302 |
msgstr "In einem Beitrag oder eine Seite"
|
1303 |
|
1304 |
#: dashboard/publisher/adverts-edit.php:215
|
1305 |
-
#: dashboard/publisher/adverts-edit.php:
|
1306 |
-
#: dashboard/publisher/groups-edit.php:
|
1307 |
-
#: dashboard/publisher/groups-edit.php:
|
1308 |
msgid "Directly in a theme"
|
1309 |
msgstr "Direkt im theme"
|
1310 |
|
1311 |
#: dashboard/publisher/adverts-edit.php:221
|
1312 |
-
msgid "Get contextual adverts from Media.net"
|
1313 |
-
msgstr "Konfigurieren Sie Ihre Werbung"
|
1314 |
-
|
1315 |
-
#: dashboard/publisher/adverts-edit.php:234
|
1316 |
msgid "Schedule your advert"
|
1317 |
msgstr "Planen Sie Ihre Anzeige"
|
1318 |
|
1319 |
-
#: dashboard/publisher/adverts-edit.php:
|
1320 |
msgid ""
|
1321 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1322 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
@@ -1327,36 +1271,36 @@ msgstr ""
|
|
1327 |
"ist, müssen 12 Stunden hinzugefügt werden. 2PM ist 14:00 Uhr. 6AM ist 06:00 "
|
1328 |
"Uhr."
|
1329 |
|
1330 |
-
#: dashboard/publisher/adverts-edit.php:
|
1331 |
msgid "Start date"
|
1332 |
msgstr "Startdatum"
|
1333 |
|
1334 |
-
#: dashboard/publisher/adverts-edit.php:
|
1335 |
msgid "End date"
|
1336 |
msgstr "Enddatum"
|
1337 |
|
1338 |
-
#: dashboard/publisher/adverts-edit.php:
|
1339 |
msgid "Start time"
|
1340 |
msgstr "Startzeit"
|
1341 |
|
1342 |
-
#: dashboard/publisher/adverts-edit.php:
|
1343 |
msgid "End time"
|
1344 |
msgstr "Endzeit"
|
1345 |
|
1346 |
-
#: dashboard/publisher/adverts-edit.php:
|
1347 |
msgid "Maximum Clicks"
|
1348 |
msgstr "Maximale Klicks"
|
1349 |
|
1350 |
-
#: dashboard/publisher/adverts-edit.php:
|
1351 |
-
#: dashboard/publisher/adverts-edit.php:
|
1352 |
msgid "Leave empty or 0 to skip this."
|
1353 |
msgstr "Leer lassen oder 0, um dies zu überspringen."
|
1354 |
|
1355 |
-
#: dashboard/publisher/adverts-edit.php:
|
1356 |
msgid "Maximum Impressions"
|
1357 |
msgstr "Maximale Impressionen"
|
1358 |
|
1359 |
-
#: dashboard/publisher/adverts-edit.php:
|
1360 |
msgid ""
|
1361 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1362 |
"Pro."
|
@@ -1364,69 +1308,69 @@ msgstr ""
|
|
1364 |
"Erstellen Sie mehrere und erweiterte Zeitpläne für jede Anzeige mit AdRotate "
|
1365 |
"Pro."
|
1366 |
|
1367 |
-
#: dashboard/publisher/adverts-edit.php:
|
1368 |
-
#: dashboard/publisher/groups-edit.php:
|
1369 |
#: dashboard/settings/statistics.php:29
|
1370 |
msgid "Advanced"
|
1371 |
msgstr "Erweitert"
|
1372 |
|
1373 |
-
#: dashboard/publisher/adverts-edit.php:
|
1374 |
-
#: dashboard/publisher/adverts-edit.php:
|
1375 |
msgid "Available in AdRotate Pro!"
|
1376 |
msgstr "Verfügbar in AdRotate Pro!"
|
1377 |
|
1378 |
-
#: dashboard/publisher/adverts-edit.php:
|
1379 |
msgid "Show to everyone"
|
1380 |
msgstr "Allen zeigen"
|
1381 |
|
1382 |
-
#: dashboard/publisher/adverts-edit.php:
|
1383 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1384 |
msgstr ""
|
1385 |
"Deaktivieren Sie diese Option, um die Anzeige vor angemeldeten Besuchern "
|
1386 |
"auszublenden."
|
1387 |
|
1388 |
-
#: dashboard/publisher/adverts-edit.php:
|
1389 |
-
#: dashboard/publisher/groups-edit.php:
|
1390 |
msgid "Weight"
|
1391 |
msgstr "Gewicht"
|
1392 |
|
1393 |
-
#: dashboard/publisher/adverts-edit.php:
|
1394 |
msgid "Few impressions"
|
1395 |
msgstr "Wenige Einblendungen"
|
1396 |
|
1397 |
-
#: dashboard/publisher/adverts-edit.php:
|
1398 |
msgid "Less than average"
|
1399 |
msgstr "Weniger als der Durchschnitt"
|
1400 |
|
1401 |
-
#: dashboard/publisher/adverts-edit.php:
|
1402 |
msgid "Normal impressions"
|
1403 |
msgstr "Normale Impressionen"
|
1404 |
|
1405 |
-
#: dashboard/publisher/adverts-edit.php:
|
1406 |
msgid "More than average"
|
1407 |
msgstr "Mehr als der Durchschnitt"
|
1408 |
|
1409 |
-
#: dashboard/publisher/adverts-edit.php:
|
1410 |
msgid "Many impressions"
|
1411 |
msgstr "Viele Einblendungen"
|
1412 |
|
1413 |
-
#: dashboard/publisher/adverts-edit.php:
|
1414 |
msgid "Mobile"
|
1415 |
msgstr "Mobilgeräte"
|
1416 |
|
1417 |
-
#: dashboard/publisher/adverts-edit.php:
|
1418 |
msgid "Desktops/Laptops"
|
1419 |
msgstr "Desktops/Laptops"
|
1420 |
|
1421 |
-
#: dashboard/publisher/adverts-edit.php:
|
1422 |
msgid "Smartphones"
|
1423 |
msgstr "Smartphones"
|
1424 |
|
1425 |
-
#: dashboard/publisher/adverts-edit.php:
|
1426 |
msgid "Tablets"
|
1427 |
msgstr "Tablets"
|
1428 |
|
1429 |
-
#: dashboard/publisher/adverts-edit.php:
|
1430 |
msgid ""
|
1431 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1432 |
"and 'Operating System' are ignored!"
|
@@ -1434,7 +1378,7 @@ msgstr ""
|
|
1434 |
"Aktivieren Sie auch 'Mobile Support' in der Gruppe, in die diese Anzeige "
|
1435 |
"geht oder 'Gerät' und 'Betriebssystem' werden ignoriert!"
|
1436 |
|
1437 |
-
#: dashboard/publisher/adverts-edit.php:
|
1438 |
msgid ""
|
1439 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1440 |
"Other' for everything else."
|
@@ -1442,31 +1386,31 @@ msgstr ""
|
|
1442 |
"Die Erkennung des Betriebssystems erkennt nur iOS und Android, wählen Sie "
|
1443 |
"für alles andere \"Nicht mobil/andere\"."
|
1444 |
|
1445 |
-
#: dashboard/publisher/adverts-edit.php:
|
1446 |
msgid "Mobile OS"
|
1447 |
msgstr "Mobiles Betriebssystem"
|
1448 |
|
1449 |
-
#: dashboard/publisher/adverts-edit.php:
|
1450 |
msgid "iOS"
|
1451 |
msgstr "iOS"
|
1452 |
|
1453 |
-
#: dashboard/publisher/adverts-edit.php:
|
1454 |
msgid "Android"
|
1455 |
msgstr "Android"
|
1456 |
|
1457 |
-
#: dashboard/publisher/adverts-edit.php:
|
1458 |
msgid "Not mobile/Others"
|
1459 |
msgstr "Nicht mobil/Andere"
|
1460 |
|
1461 |
-
#: dashboard/publisher/adverts-edit.php:
|
1462 |
msgid "Auto-delete"
|
1463 |
msgstr "Auto-Löschen"
|
1464 |
|
1465 |
-
#: dashboard/publisher/adverts-edit.php:
|
1466 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1467 |
msgstr "Löschen Sie die Anzeige 1 Tag nach Ablauf automatisch?"
|
1468 |
|
1469 |
-
#: dashboard/publisher/adverts-edit.php:
|
1470 |
msgid ""
|
1471 |
"This is useful for short running campaigns that do not require attention "
|
1472 |
"after they finish."
|
@@ -1474,7 +1418,7 @@ msgstr ""
|
|
1474 |
"Dies ist nützlich für kurzlaufende Kampagnen, die nach dem Abschluss keine "
|
1475 |
"Aufmerksamkeit erfordern."
|
1476 |
|
1477 |
-
#: dashboard/publisher/adverts-edit.php:
|
1478 |
msgid ""
|
1479 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1480 |
"systems the advert should show on!"
|
@@ -1482,23 +1426,23 @@ msgstr ""
|
|
1482 |
"Mit AdRotate Pro können Sie einfach auswählen, auf welchen Geräten die "
|
1483 |
"Anzeige angezeigt werden soll!"
|
1484 |
|
1485 |
-
#: dashboard/publisher/adverts-edit.php:
|
1486 |
msgid ""
|
1487 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1488 |
msgstr ""
|
1489 |
"Weisen Sie die Anzeige einer Gruppe zu und aktivieren Sie bei dieser Gruppe "
|
1490 |
"Geo-Targeting."
|
1491 |
|
1492 |
-
#: dashboard/publisher/adverts-edit.php:
|
1493 |
msgid "Enter cities or metro IDs (DMA)"
|
1494 |
msgstr "Eingeben von Städten oder Metro-IDs (DMA)"
|
1495 |
|
1496 |
-
#: dashboard/publisher/adverts-edit.php:
|
1497 |
msgid "A comma separated list of Cities or Metro IDs:"
|
1498 |
msgstr "Eine durch Kommas getrennte Liste von Städten oder Metro-IDs:"
|
1499 |
|
1500 |
-
#: dashboard/publisher/adverts-edit.php:
|
1501 |
-
#: dashboard/publisher/adverts-edit.php:
|
1502 |
msgid ""
|
1503 |
"AdRotate does not check the validity of names and assumes the basic english "
|
1504 |
"name."
|
@@ -1506,72 +1450,99 @@ msgstr ""
|
|
1506 |
"AdRotate überprüft nicht die Gültigkeit von Namen und übernimmt den "
|
1507 |
"englischen Basisnamen."
|
1508 |
|
1509 |
-
#: dashboard/publisher/adverts-edit.php:
|
1510 |
msgid "Enter States or State ISO3166-2 codes"
|
1511 |
msgstr "Eingeben von Staaten oder Status-ISO3166-2-Codes"
|
1512 |
|
1513 |
-
#: dashboard/publisher/adverts-edit.php:
|
1514 |
msgid "The listed cities must be in these states?"
|
1515 |
msgstr "Die aufgeführten Städte müssen in diesen Staaten sein?"
|
1516 |
|
1517 |
-
#: dashboard/publisher/adverts-edit.php:
|
1518 |
msgid "A comma separated list of states:"
|
1519 |
msgstr "Eine durch Kommas getrennte Liste von Zuständen:"
|
1520 |
|
1521 |
-
#: dashboard/publisher/adverts-edit.php:
|
1522 |
msgid "Select Countries and or Regions"
|
1523 |
msgstr "Auswählen von Ländern und oder Regionen"
|
1524 |
|
1525 |
-
#: dashboard/publisher/adverts-edit.php:
|
1526 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1527 |
msgstr "Ihre Zielgruppe mit Geo-Targeting in AdRotate Pro"
|
1528 |
|
1529 |
-
#: dashboard/publisher/adverts-edit.php:
|
1530 |
msgid "Select Groups"
|
1531 |
msgstr "Gruppen auswählen"
|
1532 |
|
1533 |
-
#: dashboard/publisher/adverts-edit.php:
|
1534 |
#: dashboard/publisher/groups-main.php:60
|
1535 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1536 |
msgid "Default"
|
1537 |
msgstr "Standard"
|
1538 |
|
1539 |
-
#: dashboard/publisher/adverts-edit.php:
|
1540 |
#: dashboard/publisher/groups-main.php:61
|
1541 |
msgid "Dynamic"
|
1542 |
msgstr "Dynamisch"
|
1543 |
|
1544 |
-
#: dashboard/publisher/adverts-edit.php:
|
1545 |
#: dashboard/publisher/groups-main.php:61
|
1546 |
msgid "second rotation"
|
1547 |
msgstr "Zweite rotation"
|
1548 |
|
1549 |
-
#: dashboard/publisher/adverts-edit.php:
|
1550 |
#: dashboard/publisher/groups-main.php:62
|
1551 |
msgid "Block"
|
1552 |
msgstr "Block"
|
1553 |
|
1554 |
-
#: dashboard/publisher/adverts-edit.php:
|
1555 |
#: dashboard/publisher/groups-main.php:62
|
1556 |
msgid "grid"
|
1557 |
msgstr "Raster"
|
1558 |
|
1559 |
-
#: dashboard/publisher/adverts-edit.php:
|
1560 |
-
#: dashboard/publisher/groups-edit.php:
|
1561 |
#: dashboard/publisher/groups-main.php:63
|
1562 |
msgid "Post Injection"
|
1563 |
msgstr "Post Injection"
|
1564 |
|
1565 |
-
#: dashboard/publisher/adverts-edit.php:
|
1566 |
msgid "Geolocation"
|
1567 |
msgstr "Geolokalisierung"
|
1568 |
|
1569 |
-
#: dashboard/publisher/adverts-edit.php:
|
1570 |
-
#: dashboard/publisher/groups-edit.php:
|
1571 |
#: dashboard/publisher/groups-main.php:70
|
1572 |
msgid "Mode"
|
1573 |
msgstr "Modus"
|
1574 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1575 |
#: dashboard/publisher/adverts-error.php:12
|
1576 |
msgid "Adverts that need attention"
|
1577 |
msgstr "Werbung, die überprüft werden sollte"
|
@@ -1635,6 +1606,17 @@ msgstr ""
|
|
1635 |
"erhalten haben. Der AdRotate Generator wird Ihre Bits und Stücke nehmen und "
|
1636 |
"versuchen, einen funktionierenden Adcode daraus zu generieren."
|
1637 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1638 |
#: dashboard/publisher/adverts-generator.php:39
|
1639 |
msgid ""
|
1640 |
"If you have a complete and working ad code / ad tag you do not use the "
|
@@ -1690,7 +1672,7 @@ msgid "Viewports"
|
|
1690 |
msgstr "Ansichtsfenster"
|
1691 |
|
1692 |
#: dashboard/publisher/adverts-generator.php:77
|
1693 |
-
#: dashboard/publisher/groups-edit.php:
|
1694 |
#: dashboard/settings/notifications.php:48
|
1695 |
msgid "Available in AdRotate Pro"
|
1696 |
msgstr "Erhältlich in AdRotate Pro"
|
@@ -1816,19 +1798,27 @@ msgstr ""
|
|
1816 |
"Einige Bots/Crawler verwenden sie als beschreibende Maßnahme, um zu sehen, "
|
1817 |
"worum es im Code geht."
|
1818 |
|
1819 |
-
#: dashboard/publisher/adverts-generator.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1820 |
msgid "Generate and Configure Advert"
|
1821 |
msgstr "Generieren und Konfigurieren von Werbung"
|
1822 |
|
1823 |
-
#: dashboard/publisher/adverts-generator.php:
|
1824 |
msgid "Always test your adverts before activating them."
|
1825 |
msgstr "Testen Sie Ihre Anzeigen immer, bevor Sie sie aktivieren."
|
1826 |
|
1827 |
-
#: dashboard/publisher/adverts-generator.php:
|
1828 |
-
msgid "
|
1829 |
-
msgstr "
|
1830 |
|
1831 |
-
#: dashboard/publisher/adverts-generator.php:
|
1832 |
msgid ""
|
1833 |
"While the Code Generator has been tested and works, code generation, as "
|
1834 |
"always, is a interpretation of user input. If you provide the correct bits "
|
@@ -1841,13 +1831,14 @@ msgstr ""
|
|
1841 |
"generiert werden. Wenn Sie Felder leer lassen oder die falsche Information "
|
1842 |
"einfügen, erhalten Sie wahrscheinlich eine defekte Anzeige."
|
1843 |
|
1844 |
-
#: dashboard/publisher/adverts-generator.php:
|
1845 |
-
msgid ""
|
1846 |
-
|
1847 |
-
|
|
|
|
|
1848 |
msgstr ""
|
1849 |
-
"
|
1850 |
-
"Codegenerators besser und funktionsreicher sein."
|
1851 |
|
1852 |
#: dashboard/publisher/adverts-main.php:12
|
1853 |
msgid "Active Adverts"
|
@@ -1870,45 +1861,61 @@ msgstr "Heute"
|
|
1870 |
msgid "No adverts created yet!"
|
1871 |
msgstr "Es wurden bisher noch keine Anzeigen erstellt!"
|
1872 |
|
1873 |
-
#: dashboard/publisher/groups-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1874 |
msgid "New Group"
|
1875 |
msgstr "Neue Gruppe"
|
1876 |
|
1877 |
-
#: dashboard/publisher/groups-edit.php:
|
1878 |
msgid "Edit Group"
|
1879 |
msgstr "Gruppe bearbeiten"
|
1880 |
|
1881 |
-
#: dashboard/publisher/groups-edit.php:
|
1882 |
msgid "Default - Show one ad at a time"
|
1883 |
msgstr "Default - zeige eine Anzeige zur gleichen Zeit"
|
1884 |
|
1885 |
-
#: dashboard/publisher/groups-edit.php:
|
1886 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1887 |
msgstr "Dynamischer Modus - alle paar Sekunden eine andere Anzeige zeigen"
|
1888 |
|
1889 |
-
#: dashboard/publisher/groups-edit.php:
|
1890 |
msgid "Block Mode - Show a block of adverts"
|
1891 |
msgstr "Block-Modus - zeigen einen Block von Anzeigen"
|
1892 |
|
1893 |
-
#: dashboard/publisher/groups-edit.php:
|
1894 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1895 |
msgstr ""
|
1896 |
"Dynamischer Modus erfordert jQuery. Sie können dies in den AdRotate "
|
1897 |
"Einstellungen aktivieren."
|
1898 |
|
1899 |
-
#: dashboard/publisher/groups-edit.php:
|
1900 |
msgid "Advert size"
|
1901 |
msgstr "Anzeige-Größe"
|
1902 |
|
1903 |
-
#: dashboard/publisher/groups-edit.php:
|
1904 |
msgid "pixel(s) wide"
|
1905 |
msgstr "Pixel Breite"
|
1906 |
|
1907 |
-
#: dashboard/publisher/groups-edit.php:
|
1908 |
msgid "pixel(s) high."
|
1909 |
msgstr "Pixel Höhe."
|
1910 |
|
1911 |
-
#: dashboard/publisher/groups-edit.php:
|
1912 |
msgid ""
|
1913 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1914 |
"recommended)."
|
@@ -1916,77 +1923,77 @@ msgstr ""
|
|
1916 |
"Definieren Sie die maximale Größe der Anzeigen in Pixel. Größe kann 'auto' "
|
1917 |
"sein (Nicht empfohlen)."
|
1918 |
|
1919 |
-
#: dashboard/publisher/groups-edit.php:
|
1920 |
msgid "Dynamic and Block Mode"
|
1921 |
msgstr "Dynamischer und Block-Modus"
|
1922 |
|
1923 |
-
#: dashboard/publisher/groups-edit.php:
|
1924 |
msgid "Block size"
|
1925 |
msgstr "Blockgröße"
|
1926 |
|
1927 |
-
#: dashboard/publisher/groups-edit.php:
|
1928 |
msgid "rows"
|
1929 |
msgstr "Zeilen"
|
1930 |
|
1931 |
-
#: dashboard/publisher/groups-edit.php:
|
1932 |
msgid "columns"
|
1933 |
msgstr "Spalten"
|
1934 |
|
1935 |
-
#: dashboard/publisher/groups-edit.php:
|
1936 |
msgid "Block Mode"
|
1937 |
msgstr "Blockmodus"
|
1938 |
|
1939 |
-
#: dashboard/publisher/groups-edit.php:
|
1940 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1941 |
msgstr ""
|
1942 |
"Größere Blöcke wird die Leistung Ihrer Website reduzieren! Standard: 2/2."
|
1943 |
|
1944 |
-
#: dashboard/publisher/groups-edit.php:
|
1945 |
msgid "Automated refresh"
|
1946 |
msgstr "Automatische Aktualisierung"
|
1947 |
|
1948 |
-
#: dashboard/publisher/groups-edit.php:
|
1949 |
msgid "seconds."
|
1950 |
msgstr "Sekunden."
|
1951 |
|
1952 |
-
#: dashboard/publisher/groups-edit.php:
|
1953 |
-
#: dashboard/publisher/groups-edit.php:
|
1954 |
msgid "Dynamic Mode"
|
1955 |
msgstr "Dynamischer Modus"
|
1956 |
|
1957 |
-
#: dashboard/publisher/groups-edit.php:
|
1958 |
msgid ""
|
1959 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1960 |
msgstr ""
|
1961 |
"Lädt eine neue Anzeige in diesem Intervall, ohne die Seite neu zu laden. "
|
1962 |
"Standard: 6."
|
1963 |
|
1964 |
-
#: dashboard/publisher/groups-edit.php:
|
1965 |
msgid "Repeat impressions"
|
1966 |
msgstr "Wiederholte Impressionen"
|
1967 |
|
1968 |
-
#: dashboard/publisher/groups-edit.php:
|
1969 |
msgid "Count impressions for every cycle of adverts?"
|
1970 |
msgstr "Zählen Sie Impressionen für jeden Werbezyklus?"
|
1971 |
|
1972 |
-
#: dashboard/publisher/groups-edit.php:
|
1973 |
msgid ""
|
1974 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1975 |
msgstr ""
|
1976 |
"Deaktivieren Sie diese Option, um nur Impressionen für den ersten "
|
1977 |
"Werbezyklus zu zählen."
|
1978 |
|
1979 |
-
#: dashboard/publisher/groups-edit.php:
|
1980 |
-
#: dashboard/publisher/groups-edit.php:
|
1981 |
msgid "Get access to all features in AdRotate Pro."
|
1982 |
msgstr "Erhalten Sie Zugriff auf alle Funktionen in AdRotate Pro."
|
1983 |
|
1984 |
-
#: dashboard/publisher/groups-edit.php:
|
1985 |
msgid "Upgrade today"
|
1986 |
msgstr "Noch heute Upgraden"
|
1987 |
|
1988 |
-
#: dashboard/publisher/groups-edit.php:
|
1989 |
-
#: dashboard/publisher/groups-edit.php:
|
1990 |
msgid ""
|
1991 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1992 |
"Adverts\" and enter ID"
|
@@ -1994,54 +2001,54 @@ msgstr ""
|
|
1994 |
"Ziehen Sie das AdRotate Widget in der gewünschten Seitenleiste, wählen Sie "
|
1995 |
"\"Gruppe von Anzeigen\" und geben Sie die ID an"
|
1996 |
|
1997 |
-
#: dashboard/publisher/groups-edit.php:
|
1998 |
-
#: dashboard/publisher/groups-edit.php:
|
1999 |
-
#: dashboard/publisher/groups-edit.php:
|
2000 |
msgid "Save Group"
|
2001 |
msgstr "Gruppe speichern"
|
2002 |
|
2003 |
-
#: dashboard/publisher/groups-edit.php:
|
2004 |
msgid "Advert Margin"
|
2005 |
msgstr "Anzeigen-Rand"
|
2006 |
|
2007 |
-
#: dashboard/publisher/groups-edit.php:
|
2008 |
msgid "pixel(s)"
|
2009 |
msgstr "Pixel"
|
2010 |
|
2011 |
-
#: dashboard/publisher/groups-edit.php:
|
2012 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2013 |
msgstr ""
|
2014 |
"Ein transparenter Bereich außerhalb der Anzeige in Pixeln. Standard: 0."
|
2015 |
|
2016 |
-
#: dashboard/publisher/groups-edit.php:
|
2017 |
msgid "Set to 0 to disable."
|
2018 |
msgstr "0 zur Deaktivierung eintragen."
|
2019 |
|
2020 |
-
#: dashboard/publisher/groups-edit.php:
|
2021 |
msgid "Margins are automatically disabled for blocks where required."
|
2022 |
msgstr "Ränder werden automatisch da deaktiviert, wo Blöcke erforderlich sind."
|
2023 |
|
2024 |
-
#: dashboard/publisher/groups-edit.php:
|
2025 |
msgid "Align the group"
|
2026 |
msgstr "Ausrichten der Gruppe"
|
2027 |
|
2028 |
-
#: dashboard/publisher/groups-edit.php:
|
2029 |
msgid "None (Default)"
|
2030 |
msgstr "Keine (Standard)"
|
2031 |
|
2032 |
-
#: dashboard/publisher/groups-edit.php:
|
2033 |
msgid "Left"
|
2034 |
msgstr "Links"
|
2035 |
|
2036 |
-
#: dashboard/publisher/groups-edit.php:
|
2037 |
msgid "Right"
|
2038 |
msgstr "Rechts"
|
2039 |
|
2040 |
-
#: dashboard/publisher/groups-edit.php:
|
2041 |
msgid "Center"
|
2042 |
msgstr "Zzentriert"
|
2043 |
|
2044 |
-
#: dashboard/publisher/groups-edit.php:
|
2045 |
msgid ""
|
2046 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2047 |
"setting. Not every theme supports this feature."
|
@@ -2050,35 +2057,35 @@ msgstr ""
|
|
2050 |
"beeinträchtigt die Randeinstellung. Nicht jedes theme unterstützt diese "
|
2051 |
"Funktion."
|
2052 |
|
2053 |
-
#: dashboard/publisher/groups-edit.php:
|
2054 |
msgid "Enable Geo Targeting for this group."
|
2055 |
msgstr "Aktivieren Sie die Geo-Targeting für diese Gruppe."
|
2056 |
|
2057 |
-
#: dashboard/publisher/groups-edit.php:
|
2058 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2059 |
msgstr ""
|
2060 |
"Vergessen Sie nicht anzugeben, in welchen Bereichen die Werbung gezeigt "
|
2061 |
"werden soll."
|
2062 |
|
2063 |
-
#: dashboard/publisher/groups-edit.php:
|
2064 |
msgid "Mobile Support"
|
2065 |
msgstr "Mobiler Support"
|
2066 |
|
2067 |
-
#: dashboard/publisher/groups-edit.php:
|
2068 |
msgid "Enable mobile support for this group."
|
2069 |
msgstr "Aktivieren Sie mobile Unterstützung für diese Gruppe."
|
2070 |
|
2071 |
-
#: dashboard/publisher/groups-edit.php:
|
2072 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2073 |
msgstr ""
|
2074 |
"Vergessen Sie nicht, mindestens eine mobile Anzeige in dieser Gruppe zu "
|
2075 |
"setzen."
|
2076 |
|
2077 |
-
#: dashboard/publisher/groups-edit.php:
|
2078 |
msgid "Fallback Group"
|
2079 |
msgstr "Fallback-Gruppe"
|
2080 |
|
2081 |
-
#: dashboard/publisher/groups-edit.php:
|
2082 |
msgid ""
|
2083 |
"Select another group to fall back on when all adverts are expired, not in "
|
2084 |
"the visitors geographic area or are otherwise unavailable."
|
@@ -2086,133 +2093,133 @@ msgstr ""
|
|
2086 |
"Wählen Sie eine andere Gruppe, wenn alle Anzeigen abgelaufen sind, die nicht "
|
2087 |
"im geographischen Bereich des Besuchers oder anderweitig verfügbar sind."
|
2088 |
|
2089 |
-
#: dashboard/publisher/groups-edit.php:
|
2090 |
-
#: dashboard/publisher/groups-edit.php:
|
2091 |
#: dashboard/settings/geotargeting.php:24
|
2092 |
msgid "Disabled"
|
2093 |
msgstr "Deaktiviert"
|
2094 |
|
2095 |
-
#: dashboard/publisher/groups-edit.php:
|
2096 |
-
#: dashboard/publisher/groups-edit.php:
|
2097 |
msgid "Widget (Pro only)"
|
2098 |
msgstr "Widget (nur Pro)"
|
2099 |
|
2100 |
-
#: dashboard/publisher/groups-edit.php:
|
2101 |
-
#: dashboard/publisher/groups-edit.php:
|
2102 |
msgid "Before content"
|
2103 |
msgstr "Vor dem Inhalt"
|
2104 |
|
2105 |
-
#: dashboard/publisher/groups-edit.php:
|
2106 |
-
#: dashboard/publisher/groups-edit.php:
|
2107 |
msgid "After content"
|
2108 |
msgstr "Nach dem Inhalt"
|
2109 |
|
2110 |
-
#: dashboard/publisher/groups-edit.php:
|
2111 |
-
#: dashboard/publisher/groups-edit.php:
|
2112 |
msgid "Before and after content"
|
2113 |
msgstr "Vor und nach dem Inhalt"
|
2114 |
|
2115 |
-
#: dashboard/publisher/groups-edit.php:
|
2116 |
-
#: dashboard/publisher/groups-edit.php:
|
2117 |
msgid "Inside the content..."
|
2118 |
msgstr "Im Inhalt..."
|
2119 |
|
2120 |
-
#: dashboard/publisher/groups-edit.php:
|
2121 |
-
#: dashboard/publisher/groups-edit.php:
|
2122 |
msgid "after the middle paragraph"
|
2123 |
msgstr "nach dem mittleren Absatz"
|
2124 |
|
2125 |
-
#: dashboard/publisher/groups-edit.php:
|
2126 |
-
#: dashboard/publisher/groups-edit.php:
|
2127 |
msgid "after the 1st paragraph"
|
2128 |
msgstr "nach dem 1. Absatz"
|
2129 |
|
2130 |
-
#: dashboard/publisher/groups-edit.php:
|
2131 |
-
#: dashboard/publisher/groups-edit.php:
|
2132 |
msgid "after the 2nd paragraph"
|
2133 |
msgstr "nach dem 2. Absatz"
|
2134 |
|
2135 |
-
#: dashboard/publisher/groups-edit.php:
|
2136 |
-
#: dashboard/publisher/groups-edit.php:
|
2137 |
msgid "after the 3rd paragraph"
|
2138 |
msgstr "nach dem 3. Absatz"
|
2139 |
|
2140 |
-
#: dashboard/publisher/groups-edit.php:
|
2141 |
-
#: dashboard/publisher/groups-edit.php:
|
2142 |
msgid "after the 4th paragraph"
|
2143 |
msgstr "nach dem 4. Absatz"
|
2144 |
|
2145 |
-
#: dashboard/publisher/groups-edit.php:
|
2146 |
-
#: dashboard/publisher/groups-edit.php:
|
2147 |
msgid "after the 5th paragraph"
|
2148 |
msgstr "nach dem 5. Absatz"
|
2149 |
|
2150 |
-
#: dashboard/publisher/groups-edit.php:
|
2151 |
-
#: dashboard/publisher/groups-edit.php:
|
2152 |
msgid "after the 6th paragraph"
|
2153 |
msgstr "nach dem 6. Absatz"
|
2154 |
|
2155 |
-
#: dashboard/publisher/groups-edit.php:
|
2156 |
-
#: dashboard/publisher/groups-edit.php:
|
2157 |
msgid "after the 7th paragraph"
|
2158 |
msgstr "nach dem 7. Absatz"
|
2159 |
|
2160 |
-
#: dashboard/publisher/groups-edit.php:
|
2161 |
-
#: dashboard/publisher/groups-edit.php:
|
2162 |
msgid "after the 8th paragraph"
|
2163 |
msgstr "nach dem 8. Absatz"
|
2164 |
|
2165 |
-
#: dashboard/publisher/groups-edit.php:
|
2166 |
msgid "Page Injection"
|
2167 |
msgstr "Seiten-Injektion"
|
2168 |
|
2169 |
-
#: dashboard/publisher/groups-edit.php:
|
2170 |
msgid "Wrapper code"
|
2171 |
msgstr "Wrappercode"
|
2172 |
|
2173 |
-
#: dashboard/publisher/groups-edit.php:
|
2174 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2175 |
msgstr "Wrapps um jede Anzeige. HTML/JavaScript ist zugelassen, aber Vorsicht!"
|
2176 |
|
2177 |
-
#: dashboard/publisher/groups-edit.php:
|
2178 |
msgid "Before advert"
|
2179 |
msgstr "Vor der Anzeige"
|
2180 |
|
2181 |
-
#: dashboard/publisher/groups-edit.php:
|
2182 |
-
#: dashboard/publisher/groups-edit.php:
|
2183 |
msgid "Example:"
|
2184 |
msgstr "Beispiel:"
|
2185 |
|
2186 |
-
#: dashboard/publisher/groups-edit.php:
|
2187 |
msgid "Options:"
|
2188 |
msgstr "Optionen:"
|
2189 |
|
2190 |
-
#: dashboard/publisher/groups-edit.php:
|
2191 |
msgid "After advert"
|
2192 |
msgstr "Nach der Anzeige"
|
2193 |
|
2194 |
-
#: dashboard/publisher/groups-edit.php:
|
2195 |
msgid "Select adverts"
|
2196 |
msgstr "Anzeigen auswählen"
|
2197 |
|
2198 |
-
#: dashboard/publisher/groups-edit.php:
|
2199 |
msgid "Visible until"
|
2200 |
msgstr "Sichtbar bis"
|
2201 |
|
2202 |
-
#: dashboard/publisher/groups-edit.php:
|
2203 |
msgid "No adverts created!"
|
2204 |
msgstr "Es wurden keine Anzeigen erstellt!"
|
2205 |
|
2206 |
-
#: dashboard/publisher/groups-edit.php:
|
2207 |
msgid "Configuration errors."
|
2208 |
msgstr "Konfigurationsfehler."
|
2209 |
|
2210 |
-
#: dashboard/publisher/groups-edit.php:
|
2211 |
#: dashboard/publisher/schedules-main.php:87
|
2212 |
msgid "Expires soon."
|
2213 |
msgstr "Läuft ab."
|
2214 |
|
2215 |
-
#: dashboard/publisher/groups-edit.php:
|
2216 |
#: dashboard/publisher/schedules-main.php:88
|
2217 |
msgid "Has expired."
|
2218 |
msgstr "Ist abgelaufen."
|
@@ -2298,7 +2305,7 @@ msgstr ""
|
|
2298 |
"Stellen Sie sicher, dass die Bannerbilder von Anzeigen nicht aktiv sind, "
|
2299 |
"wenn Sie diese löschen!"
|
2300 |
|
2301 |
-
#: dashboard/publisher/media.php:73
|
2302 |
#: dashboard/publisher/statistics-advert.php:109
|
2303 |
#: dashboard/publisher/statistics-group.php:113
|
2304 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -2317,6 +2324,10 @@ msgstr ""
|
|
2317 |
"mehreren Anzeigen einfach verwalten können. Zeitpläne können an bestimmten "
|
2318 |
"Wochentagen oder zu bestimmten Tageszeiten aktiv sein."
|
2319 |
|
|
|
|
|
|
|
|
|
2320 |
#: dashboard/publisher/schedules-main.php:36
|
2321 |
msgid "Max Shown"
|
2322 |
msgstr "Max gezeigt"
|
@@ -3424,36 +3435,6 @@ msgstr ""
|
|
3424 |
"Diese Zahl darf nicht leer sein, sollte niedriger sein als 60 oder mehr als "
|
3425 |
"86400 (24 Stunden)."
|
3426 |
|
3427 |
-
#: dashboard/support.php:25
|
3428 |
-
msgid "Support Forums"
|
3429 |
-
msgstr "Support-Foren"
|
3430 |
-
|
3431 |
-
#: dashboard/support.php:27
|
3432 |
-
msgid ""
|
3433 |
-
"When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3434 |
-
"Chances are your question has already been asked and answered!"
|
3435 |
-
msgstr ""
|
3436 |
-
"Wenn Sie mit AdRotate Banner Manager oder AdRotate Professional hängen "
|
3437 |
-
"bleiben, überprüfen Sie zuerst die Foren. Die Chancen stehen gut, dass Ihre "
|
3438 |
-
"Frage bereits gestellt und beantwortet wurde!"
|
3439 |
-
|
3440 |
-
#: dashboard/support.php:27
|
3441 |
-
msgid ""
|
3442 |
-
"Next to the forum there are many manuals and guides available for almost "
|
3443 |
-
"every function and feature in the plugin."
|
3444 |
-
msgstr ""
|
3445 |
-
"Neben dem Forum gibt es viele Handbücher und Anleitungen für fast jede "
|
3446 |
-
"Funktion und Funktion im Plugin zur Verfügung."
|
3447 |
-
|
3448 |
-
#: dashboard/support.php:27
|
3449 |
-
msgid "Take a look at the AdRotate Manuals"
|
3450 |
-
msgstr "Werfen Sie einen Blick auf die AdRotate-Handbücher"
|
3451 |
-
|
3452 |
-
#: dashboard/support.php:29 dashboard/support.php:30 dashboard/support.php:31
|
3453 |
-
#: dashboard/support.php:32 dashboard/support.php:33 dashboard/support.php:34
|
3454 |
-
msgid "View topics"
|
3455 |
-
msgstr "Ansichtsfenster"
|
3456 |
-
|
3457 |
#: dashboard/support.php:83
|
3458 |
msgid "Premium Support available in AdRotate Pro"
|
3459 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro"
|
@@ -3521,6 +3502,103 @@ msgstr "Hilfe erhalten"
|
|
3521 |
msgid "Premium Support is available in AdRotate Pro!"
|
3522 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
3523 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3524 |
#~ msgid "Yes, this ad will be used"
|
3525 |
#~ msgstr "Ja, diese Anzeige wird verwendet"
|
3526 |
|
@@ -4545,9 +4623,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
4545 |
#~ "verschoben, damit die Gesamtgeschwindigkeit Ihrer Website erhöhen werden "
|
4546 |
#~ "kann."
|
4547 |
|
4548 |
-
#~ msgid "Caution:"
|
4549 |
-
#~ msgstr "Vorsicht:"
|
4550 |
-
|
4551 |
#~ msgid ""
|
4552 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
4553 |
#~ "some cases a lot of data has to be moved. Not every hosting provider "
|
@@ -6094,11 +6169,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
6094 |
#~ "Sie haben %image% nicht in Ihrem AdCode verwendet, haben aber eine Datei "
|
6095 |
#~ "ausgewählt!"
|
6096 |
|
6097 |
-
#~ msgid "You did use %image% in your AdCode but did not select an image!"
|
6098 |
-
#~ msgstr ""
|
6099 |
-
#~ "Sie haben %image% in Ihrem AdCode verwendet, haben aber keine Datei "
|
6100 |
-
#~ "ausgewählt!"
|
6101 |
-
|
6102 |
#~ msgid "Please contact staff, your advert is not being displayed!"
|
6103 |
#~ msgstr ""
|
6104 |
#~ "Kontaktieren Sie die Mitarbeiter, Ihre Anzeige wird nicht angezeigt!"
|
@@ -6129,9 +6199,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
6129 |
#~ "Überprüfen der Gruppen-Spezifikation, um festzustellen, ob Mobile-"
|
6130 |
#~ "Unterstützung aktiviert ist."
|
6131 |
|
6132 |
-
#~ msgid "Normal visibility"
|
6133 |
-
#~ msgstr "Normale Sicht"
|
6134 |
-
|
6135 |
#~ msgid ""
|
6136 |
#~ "Weight decides the visibility. Better visibility means more impressions."
|
6137 |
#~ msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-05-18 14:11-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-05-18 14:12-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: de\n"
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
+
"below. Do not forget to check all settings and schedule it."
|
64 |
msgstr ""
|
65 |
"Anzeigen-HTML generiert und im AdCode-Feld platziert. Konfigurieren Sie Ihre "
|
66 |
+
"Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und zu "
|
67 |
+
"planen."
|
68 |
|
69 |
#: adrotate-functions.php:737
|
70 |
msgid "Settings saved"
|
117 |
msgstr "Es wurden keine Anzeigen gefunden."
|
118 |
|
119 |
#: adrotate-functions.php:782
|
120 |
+
msgid ""
|
121 |
+
"The advert hash is not usable or is missing required data. Please copy the "
|
122 |
+
"hash correctly and try again."
|
123 |
+
msgstr ""
|
124 |
+
"Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
|
125 |
+
"Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
|
126 |
+
|
127 |
+
#: adrotate-functions.php:786
|
128 |
+
msgid ""
|
129 |
+
"The advert hash can not be used on the same site as it originated from or is "
|
130 |
+
"not a valid hash for importing."
|
131 |
+
msgstr ""
|
132 |
+
"Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
|
133 |
+
"er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
|
134 |
+
|
135 |
+
#: adrotate-functions.php:790
|
136 |
msgid "Unexpected error"
|
137 |
msgstr "Unerwarteter Fehler"
|
138 |
|
139 |
+
#: adrotate-manage-publisher.php:782
|
140 |
msgid "AdRotate Advertiser"
|
141 |
msgstr "AdRotate Advertiser"
|
142 |
|
283 |
|
284 |
#: adrotate-output.php:652
|
285 |
msgid ""
|
286 |
+
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
287 |
+
"can delete this plugin after AdRotate Pro is activated."
|
288 |
msgstr ""
|
289 |
+
"Sie haben AdRotate Professional installiert. Bitte wechseln Sie zu AdRotate "
|
290 |
+
"Pro! Sie können dieses Plugin löschen, nachdem AdRotate Pro aktiviert wurde."
|
291 |
|
292 |
#: adrotate-output.php:652
|
293 |
+
msgid "Switch plugins"
|
294 |
+
msgstr "Wechseln von Plugins"
|
295 |
|
296 |
#: adrotate-output.php:655
|
297 |
msgid ""
|
336 |
msgid "Help AdRotate Grow"
|
337 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
338 |
|
339 |
+
#: adrotate-output.php:835 adrotate.php:150
|
340 |
msgid "AdRotate Professional"
|
341 |
msgstr "AdRotate Professional"
|
342 |
|
490 |
msgid "Fill in the ID of the type you want to display!"
|
491 |
msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
|
492 |
|
493 |
+
#: adrotate.php:103
|
494 |
msgid "General Info"
|
495 |
msgstr "Allgemeine Info"
|
496 |
|
497 |
+
#: adrotate.php:104
|
498 |
msgid "AdRotate Pro"
|
499 |
msgstr "AdRotate Pro"
|
500 |
|
501 |
+
#: adrotate.php:105
|
502 |
msgid "Manage Adverts"
|
503 |
msgstr "Anzeigen verwalten"
|
504 |
|
505 |
+
#: adrotate.php:106 dashboard/publisher/groups-main.php:12
|
506 |
msgid "Manage Groups"
|
507 |
msgstr "Gruppen verwalten"
|
508 |
|
509 |
+
#: adrotate.php:107 dashboard/publisher/schedules-main.php:12
|
510 |
msgid "Manage Schedules"
|
511 |
msgstr "Zeiträume verwalten"
|
512 |
|
513 |
+
#: adrotate.php:108 adrotate.php:388 adrotate.php:505
|
514 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
515 |
#: dashboard/publisher/statistics-main.php:23
|
516 |
#: dashboard/settings/statistics.php:17
|
517 |
msgid "Statistics"
|
518 |
msgstr "Auswertungen"
|
519 |
|
520 |
+
#: adrotate.php:109
|
521 |
msgid "Manage Media"
|
522 |
msgstr "Medien verwalten"
|
523 |
|
524 |
+
#: adrotate.php:110 adrotate.php:469
|
525 |
msgid "Support"
|
526 |
msgstr "Support"
|
527 |
|
528 |
+
#: adrotate.php:111
|
529 |
msgid "Settings"
|
530 |
msgstr "Einstellungen"
|
531 |
|
532 |
+
#: adrotate.php:132
|
533 |
msgid "AdRotate Info"
|
534 |
msgstr "AdRotate Info"
|
535 |
|
536 |
+
#: adrotate.php:190
|
537 |
msgid "Advert Management"
|
538 |
msgstr "Anzeige-Management"
|
539 |
|
540 |
+
#: adrotate.php:250 adrotate.php:318
|
541 |
msgid "Manage"
|
542 |
msgstr "Verwalten"
|
543 |
|
544 |
+
#: adrotate.php:251
|
545 |
msgid "Generator"
|
546 |
msgstr "QR-Code-Generator (für Ihre vCard)"
|
547 |
|
548 |
+
#: adrotate.php:252 adrotate.php:319
|
549 |
msgid "Add New"
|
550 |
msgstr "Neu hinzufügen"
|
551 |
|
552 |
+
#: adrotate.php:312
|
553 |
msgid "Group Management"
|
554 |
msgstr "Gruppen-Verwaltung"
|
555 |
|
556 |
+
#: adrotate.php:349
|
557 |
msgid "Schedules"
|
558 |
msgstr "Zeitpläne"
|
559 |
|
560 |
+
#: adrotate.php:430
|
561 |
msgid "Media and Assets"
|
562 |
msgstr "Medien und Assets"
|
563 |
|
564 |
+
#: adrotate.php:434
|
565 |
msgid ""
|
566 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
567 |
"if you have HTML5 adverts containing multiple files."
|
570 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
571 |
"mehrere Dateien enthalten."
|
572 |
|
573 |
+
#: adrotate.php:434
|
574 |
msgid "Get more features"
|
575 |
msgstr "Holen Sie sich mehr Funktionen"
|
576 |
|
577 |
+
#: adrotate.php:434
|
578 |
msgid "Get AdRotate Pro"
|
579 |
msgstr "AdRotate Pro"
|
580 |
|
581 |
+
#: adrotate.php:498
|
582 |
msgid "AdRotate Settings"
|
583 |
msgstr "AdRotate Einstellungen"
|
584 |
|
585 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
586 |
msgid "General"
|
587 |
msgstr "Allgemein"
|
588 |
|
589 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
590 |
msgid "Notifications"
|
591 |
msgstr "Benachrichtigungen"
|
592 |
|
593 |
+
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:345
|
594 |
+
#: dashboard/publisher/groups-edit.php:205
|
595 |
#: dashboard/settings/advertisers.php:38
|
596 |
msgid "Geo Targeting"
|
597 |
msgstr "Geo Targeting"
|
598 |
|
599 |
+
#: adrotate.php:507 dashboard/settings/notifications.php:70
|
600 |
msgid "Advertisers"
|
601 |
msgstr "Inserenten"
|
602 |
|
603 |
+
#: adrotate.php:508 dashboard/settings/roles.php:17
|
604 |
msgid "Access Roles"
|
605 |
msgstr "Zugriffsrollen"
|
606 |
|
607 |
+
#: adrotate.php:509 dashboard/settings/misc.php:16
|
608 |
msgid "Miscellaneous"
|
609 |
msgstr "Sonstiges"
|
610 |
|
611 |
+
#: adrotate.php:510 dashboard/settings/maintenance.php:16
|
612 |
msgid "Maintenance"
|
613 |
msgstr "Wartung"
|
614 |
|
760 |
msgid "Adverts that need you"
|
761 |
msgstr "Achten Sie auf folgende Anzeigen"
|
762 |
|
763 |
+
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:474
|
764 |
#: dashboard/publisher/groups-main.php:34
|
765 |
#: dashboard/publisher/schedules-main.php:34
|
766 |
#: dashboard/publisher/statistics-main.php:35
|
779 |
msgid "Have errors"
|
780 |
msgstr "Fehler enthalten"
|
781 |
|
782 |
+
#: dashboard/info.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
msgid "Buy AdRotate Professional"
|
784 |
msgstr "AdRotate Professional kaufen"
|
785 |
|
786 |
+
#: dashboard/info.php:111
|
787 |
msgid ""
|
788 |
"AdRotate Professional has a lot more functions for even better advertising "
|
789 |
"management. Check out the feature comparison tab on any of the product pages "
|
794 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
795 |
"hat!"
|
796 |
|
797 |
+
#: dashboard/info.php:113
|
798 |
msgid "Single License"
|
799 |
msgstr "Einzellizenz"
|
800 |
|
801 |
+
#: dashboard/info.php:113
|
802 |
msgid "Use on ONE WordPress installation."
|
803 |
msgstr "Für eine Wordpress-Installation."
|
804 |
|
805 |
+
#: dashboard/info.php:113 dashboard/info.php:114 dashboard/info.php:115
|
806 |
+
#: dashboard/info.php:116
|
807 |
msgid "Buy now"
|
808 |
msgstr "Jetzt kaufen"
|
809 |
|
810 |
+
#: dashboard/info.php:114
|
811 |
msgid "Duo License"
|
812 |
msgstr "Duo Lizenz"
|
813 |
|
814 |
+
#: dashboard/info.php:114
|
815 |
msgid "Use on TWO WordPress installations."
|
816 |
msgstr "Für eine Wordpress-Installation."
|
817 |
|
818 |
+
#: dashboard/info.php:115
|
819 |
msgid "Multi License"
|
820 |
msgstr "Multi-Lizenz"
|
821 |
|
822 |
+
#: dashboard/info.php:115
|
823 |
msgid "Use on up to FIVE WordPress installations."
|
824 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
825 |
|
826 |
+
#: dashboard/info.php:116
|
827 |
msgid "Developer License"
|
828 |
msgstr "Entwickler-Lizenz"
|
829 |
|
830 |
+
#: dashboard/info.php:116
|
831 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
832 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
833 |
|
834 |
+
#: dashboard/info.php:127
|
835 |
msgid "Advertising Partners & Affiliates"
|
836 |
msgstr "Werbepartner und Partner"
|
837 |
|
838 |
+
#: dashboard/info.php:128
|
839 |
msgid ""
|
840 |
"A selection of quality advertiser networks and useful products. If you need "
|
841 |
"adverts or just want more or more diverse adverts. Check out these great "
|
845 |
"Anzeigen benötigen oder einfach mehr oder mehr verschiedene Anzeigen "
|
846 |
"wünschen. Schauen Sie sich diese großartigen Optionen an!"
|
847 |
|
848 |
+
#: dashboard/info.php:128
|
849 |
+
msgid "Check out these and other preferred products or providers on my"
|
850 |
+
msgstr ""
|
851 |
+
"Schauen Sie sich diese und andere bevorzugte Produkte oder Anbieter auf "
|
852 |
+
"meinem"
|
853 |
+
|
854 |
+
#: dashboard/info.php:128
|
855 |
+
msgid "recommended products page"
|
856 |
+
msgstr "Seite empfohlene Produkte"
|
857 |
|
858 |
#: dashboard/publisher/adverts-disabled.php:15
|
859 |
msgid "Disabled Adverts"
|
893 |
msgstr "Los"
|
894 |
|
895 |
#: dashboard/publisher/adverts-disabled.php:35
|
896 |
+
#: dashboard/publisher/adverts-edit.php:472
|
897 |
#: dashboard/publisher/adverts-error.php:39
|
898 |
#: dashboard/publisher/adverts-main.php:39
|
899 |
+
#: dashboard/publisher/groups-edit.php:359
|
900 |
#: dashboard/publisher/groups-main.php:32
|
901 |
#: dashboard/publisher/schedules-main.php:31
|
902 |
msgid "ID"
|
911 |
|
912 |
#: dashboard/publisher/adverts-disabled.php:37
|
913 |
#: dashboard/publisher/adverts-edit.php:112
|
914 |
+
#: dashboard/publisher/adverts-edit.php:473
|
915 |
#: dashboard/publisher/adverts-error.php:40
|
916 |
#: dashboard/publisher/adverts-main.php:41
|
917 |
+
#: dashboard/publisher/groups-edit.php:65
|
918 |
+
#: dashboard/publisher/groups-edit.php:360
|
919 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
920 |
#: dashboard/publisher/schedules-main.php:33
|
921 |
msgid "Name"
|
923 |
|
924 |
#: dashboard/publisher/adverts-disabled.php:39
|
925 |
#: dashboard/publisher/adverts-main.php:43
|
926 |
+
#: dashboard/publisher/groups-edit.php:364
|
927 |
#: dashboard/publisher/groups-main.php:36
|
928 |
msgid "Shown"
|
929 |
msgstr "Gezeigt"
|
930 |
|
931 |
#: dashboard/publisher/adverts-disabled.php:40
|
932 |
#: dashboard/publisher/adverts-main.php:45
|
933 |
+
#: dashboard/publisher/groups-edit.php:365
|
934 |
#: dashboard/publisher/groups-main.php:38
|
935 |
#: dashboard/publisher/statistics-advert.php:52
|
936 |
#: dashboard/publisher/statistics-advert.php:58
|
1187 |
msgstr "Deaktiviert, zeigen Sie diese Anzeige nirgendwo an"
|
1188 |
|
1189 |
#: dashboard/publisher/adverts-edit.php:198
|
|
|
|
|
1190 |
msgid "Get more features with AdRotate Pro."
|
1191 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro."
|
1192 |
|
1193 |
#: dashboard/publisher/adverts-edit.php:198
|
1194 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1195 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1196 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1197 |
+
#: dashboard/publisher/groups-edit.php:228 dashboard/publisher/media.php:73
|
|
|
|
|
|
|
1198 |
#: dashboard/publisher/statistics-advert.php:109
|
1199 |
#: dashboard/publisher/statistics-group.php:113
|
1200 |
#: dashboard/publisher/statistics-main.php:83
|
1202 |
msgstr "Jetzt upgraden"
|
1203 |
|
1204 |
#: dashboard/publisher/adverts-edit.php:201
|
1205 |
+
#: dashboard/publisher/adverts-edit.php:264
|
1206 |
+
#: dashboard/publisher/adverts-edit.php:462
|
1207 |
+
#: dashboard/publisher/adverts-edit.php:505
|
1208 |
msgid "Save Advert"
|
1209 |
msgstr "Anzeige speichern"
|
1210 |
|
1211 |
#: dashboard/publisher/adverts-edit.php:202
|
1212 |
+
#: dashboard/publisher/adverts-edit.php:265
|
1213 |
+
#: dashboard/publisher/adverts-edit.php:463
|
1214 |
+
#: dashboard/publisher/adverts-edit.php:506
|
1215 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1216 |
+
#: dashboard/publisher/groups-edit.php:175
|
1217 |
+
#: dashboard/publisher/groups-edit.php:329
|
1218 |
+
#: dashboard/publisher/groups-edit.php:423
|
1219 |
msgid "Cancel"
|
1220 |
msgstr "Abbrechen"
|
1221 |
|
1222 |
#: dashboard/publisher/adverts-edit.php:205
|
1223 |
+
#: dashboard/publisher/adverts-edit.php:445
|
1224 |
+
#: dashboard/publisher/groups-edit.php:157
|
1225 |
+
#: dashboard/publisher/groups-edit.php:311
|
1226 |
msgid "Usage"
|
1227 |
msgstr "Verwendung"
|
1228 |
|
1229 |
#: dashboard/publisher/adverts-edit.php:209
|
1230 |
+
#: dashboard/publisher/adverts-edit.php:449
|
1231 |
+
#: dashboard/publisher/groups-edit.php:161
|
1232 |
+
#: dashboard/publisher/groups-edit.php:315
|
1233 |
msgid "Widget"
|
1234 |
msgstr "Widget"
|
1235 |
|
1236 |
#: dashboard/publisher/adverts-edit.php:210
|
1237 |
+
#: dashboard/publisher/adverts-edit.php:450
|
1238 |
msgid ""
|
1239 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1240 |
"and select the advert or the group the advert is in."
|
1243 |
"platzieren möchten und wählen Sie ein Anzeige oder eine Gruppe mit Anzeigen."
|
1244 |
|
1245 |
#: dashboard/publisher/adverts-edit.php:213
|
1246 |
+
#: dashboard/publisher/adverts-edit.php:453
|
1247 |
+
#: dashboard/publisher/groups-edit.php:165
|
1248 |
+
#: dashboard/publisher/groups-edit.php:319
|
1249 |
msgid "In a post or page"
|
1250 |
msgstr "In einem Beitrag oder eine Seite"
|
1251 |
|
1252 |
#: dashboard/publisher/adverts-edit.php:215
|
1253 |
+
#: dashboard/publisher/adverts-edit.php:455
|
1254 |
+
#: dashboard/publisher/groups-edit.php:167
|
1255 |
+
#: dashboard/publisher/groups-edit.php:321
|
1256 |
msgid "Directly in a theme"
|
1257 |
msgstr "Direkt im theme"
|
1258 |
|
1259 |
#: dashboard/publisher/adverts-edit.php:221
|
|
|
|
|
|
|
|
|
1260 |
msgid "Schedule your advert"
|
1261 |
msgstr "Planen Sie Ihre Anzeige"
|
1262 |
|
1263 |
+
#: dashboard/publisher/adverts-edit.php:222
|
1264 |
msgid ""
|
1265 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1266 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1271 |
"ist, müssen 12 Stunden hinzugefügt werden. 2PM ist 14:00 Uhr. 6AM ist 06:00 "
|
1272 |
"Uhr."
|
1273 |
|
1274 |
+
#: dashboard/publisher/adverts-edit.php:226
|
1275 |
msgid "Start date"
|
1276 |
msgstr "Startdatum"
|
1277 |
|
1278 |
+
#: dashboard/publisher/adverts-edit.php:230
|
1279 |
msgid "End date"
|
1280 |
msgstr "Enddatum"
|
1281 |
|
1282 |
+
#: dashboard/publisher/adverts-edit.php:236
|
1283 |
msgid "Start time"
|
1284 |
msgstr "Startzeit"
|
1285 |
|
1286 |
+
#: dashboard/publisher/adverts-edit.php:243
|
1287 |
msgid "End time"
|
1288 |
msgstr "Endzeit"
|
1289 |
|
1290 |
+
#: dashboard/publisher/adverts-edit.php:253
|
1291 |
msgid "Maximum Clicks"
|
1292 |
msgstr "Maximale Klicks"
|
1293 |
|
1294 |
+
#: dashboard/publisher/adverts-edit.php:254
|
1295 |
+
#: dashboard/publisher/adverts-edit.php:256
|
1296 |
msgid "Leave empty or 0 to skip this."
|
1297 |
msgstr "Leer lassen oder 0, um dies zu überspringen."
|
1298 |
|
1299 |
+
#: dashboard/publisher/adverts-edit.php:255
|
1300 |
msgid "Maximum Impressions"
|
1301 |
msgstr "Maximale Impressionen"
|
1302 |
|
1303 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1304 |
msgid ""
|
1305 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1306 |
"Pro."
|
1308 |
"Erstellen Sie mehrere und erweiterte Zeitpläne für jede Anzeige mit AdRotate "
|
1309 |
"Pro."
|
1310 |
|
1311 |
+
#: dashboard/publisher/adverts-edit.php:268
|
1312 |
+
#: dashboard/publisher/groups-edit.php:178 dashboard/settings/statistics.php:27
|
1313 |
#: dashboard/settings/statistics.php:29
|
1314 |
msgid "Advanced"
|
1315 |
msgstr "Erweitert"
|
1316 |
|
1317 |
+
#: dashboard/publisher/adverts-edit.php:269
|
1318 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1319 |
msgid "Available in AdRotate Pro!"
|
1320 |
msgstr "Verfügbar in AdRotate Pro!"
|
1321 |
|
1322 |
+
#: dashboard/publisher/adverts-edit.php:274
|
1323 |
msgid "Show to everyone"
|
1324 |
msgstr "Allen zeigen"
|
1325 |
|
1326 |
+
#: dashboard/publisher/adverts-edit.php:276
|
1327 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1328 |
msgstr ""
|
1329 |
"Deaktivieren Sie diese Option, um die Anzeige vor angemeldeten Besuchern "
|
1330 |
"auszublenden."
|
1331 |
|
1332 |
+
#: dashboard/publisher/adverts-edit.php:281
|
1333 |
+
#: dashboard/publisher/groups-edit.php:362
|
1334 |
msgid "Weight"
|
1335 |
msgstr "Gewicht"
|
1336 |
|
1337 |
+
#: dashboard/publisher/adverts-edit.php:284
|
1338 |
msgid "Few impressions"
|
1339 |
msgstr "Wenige Einblendungen"
|
1340 |
|
1341 |
+
#: dashboard/publisher/adverts-edit.php:289
|
1342 |
msgid "Less than average"
|
1343 |
msgstr "Weniger als der Durchschnitt"
|
1344 |
|
1345 |
+
#: dashboard/publisher/adverts-edit.php:294
|
1346 |
msgid "Normal impressions"
|
1347 |
msgstr "Normale Impressionen"
|
1348 |
|
1349 |
+
#: dashboard/publisher/adverts-edit.php:299
|
1350 |
msgid "More than average"
|
1351 |
msgstr "Mehr als der Durchschnitt"
|
1352 |
|
1353 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1354 |
msgid "Many impressions"
|
1355 |
msgstr "Viele Einblendungen"
|
1356 |
|
1357 |
+
#: dashboard/publisher/adverts-edit.php:309
|
1358 |
msgid "Mobile"
|
1359 |
msgstr "Mobilgeräte"
|
1360 |
|
1361 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1362 |
msgid "Desktops/Laptops"
|
1363 |
msgstr "Desktops/Laptops"
|
1364 |
|
1365 |
+
#: dashboard/publisher/adverts-edit.php:314
|
1366 |
msgid "Smartphones"
|
1367 |
msgstr "Smartphones"
|
1368 |
|
1369 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1370 |
msgid "Tablets"
|
1371 |
msgstr "Tablets"
|
1372 |
|
1373 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1374 |
msgid ""
|
1375 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1376 |
"and 'Operating System' are ignored!"
|
1378 |
"Aktivieren Sie auch 'Mobile Support' in der Gruppe, in die diese Anzeige "
|
1379 |
"geht oder 'Gerät' und 'Betriebssystem' werden ignoriert!"
|
1380 |
|
1381 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1382 |
msgid ""
|
1383 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1384 |
"Other' for everything else."
|
1386 |
"Die Erkennung des Betriebssystems erkennt nur iOS und Android, wählen Sie "
|
1387 |
"für alles andere \"Nicht mobil/andere\"."
|
1388 |
|
1389 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1390 |
msgid "Mobile OS"
|
1391 |
msgstr "Mobiles Betriebssystem"
|
1392 |
|
1393 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1394 |
msgid "iOS"
|
1395 |
msgstr "iOS"
|
1396 |
|
1397 |
+
#: dashboard/publisher/adverts-edit.php:329
|
1398 |
msgid "Android"
|
1399 |
msgstr "Android"
|
1400 |
|
1401 |
+
#: dashboard/publisher/adverts-edit.php:332
|
1402 |
msgid "Not mobile/Others"
|
1403 |
msgstr "Nicht mobil/Andere"
|
1404 |
|
1405 |
+
#: dashboard/publisher/adverts-edit.php:336
|
1406 |
msgid "Auto-delete"
|
1407 |
msgstr "Auto-Löschen"
|
1408 |
|
1409 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1410 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1411 |
msgstr "Löschen Sie die Anzeige 1 Tag nach Ablauf automatisch?"
|
1412 |
|
1413 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1414 |
msgid ""
|
1415 |
"This is useful for short running campaigns that do not require attention "
|
1416 |
"after they finish."
|
1418 |
"Dies ist nützlich für kurzlaufende Kampagnen, die nach dem Abschluss keine "
|
1419 |
"Aufmerksamkeit erfordern."
|
1420 |
|
1421 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1422 |
msgid ""
|
1423 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1424 |
"systems the advert should show on!"
|
1426 |
"Mit AdRotate Pro können Sie einfach auswählen, auf welchen Geräten die "
|
1427 |
"Anzeige angezeigt werden soll!"
|
1428 |
|
1429 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1430 |
msgid ""
|
1431 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1432 |
msgstr ""
|
1433 |
"Weisen Sie die Anzeige einer Gruppe zu und aktivieren Sie bei dieser Gruppe "
|
1434 |
"Geo-Targeting."
|
1435 |
|
1436 |
+
#: dashboard/publisher/adverts-edit.php:353
|
1437 |
msgid "Enter cities or metro IDs (DMA)"
|
1438 |
msgstr "Eingeben von Städten oder Metro-IDs (DMA)"
|
1439 |
|
1440 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1441 |
msgid "A comma separated list of Cities or Metro IDs:"
|
1442 |
msgstr "Eine durch Kommas getrennte Liste von Städten oder Metro-IDs:"
|
1443 |
|
1444 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1445 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1446 |
msgid ""
|
1447 |
"AdRotate does not check the validity of names and assumes the basic english "
|
1448 |
"name."
|
1450 |
"AdRotate überprüft nicht die Gültigkeit von Namen und übernimmt den "
|
1451 |
"englischen Basisnamen."
|
1452 |
|
1453 |
+
#: dashboard/publisher/adverts-edit.php:361
|
1454 |
msgid "Enter States or State ISO3166-2 codes"
|
1455 |
msgstr "Eingeben von Staaten oder Status-ISO3166-2-Codes"
|
1456 |
|
1457 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1458 |
msgid "The listed cities must be in these states?"
|
1459 |
msgstr "Die aufgeführten Städte müssen in diesen Staaten sein?"
|
1460 |
|
1461 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1462 |
msgid "A comma separated list of states:"
|
1463 |
msgstr "Eine durch Kommas getrennte Liste von Zuständen:"
|
1464 |
|
1465 |
+
#: dashboard/publisher/adverts-edit.php:373
|
1466 |
msgid "Select Countries and or Regions"
|
1467 |
msgstr "Auswählen von Ländern und oder Regionen"
|
1468 |
|
1469 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1470 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1471 |
msgstr "Ihre Zielgruppe mit Geo-Targeting in AdRotate Pro"
|
1472 |
|
1473 |
+
#: dashboard/publisher/adverts-edit.php:467
|
1474 |
msgid "Select Groups"
|
1475 |
msgstr "Gruppen auswählen"
|
1476 |
|
1477 |
+
#: dashboard/publisher/adverts-edit.php:483
|
1478 |
#: dashboard/publisher/groups-main.php:60
|
1479 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1480 |
msgid "Default"
|
1481 |
msgstr "Standard"
|
1482 |
|
1483 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1484 |
#: dashboard/publisher/groups-main.php:61
|
1485 |
msgid "Dynamic"
|
1486 |
msgstr "Dynamisch"
|
1487 |
|
1488 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1489 |
#: dashboard/publisher/groups-main.php:61
|
1490 |
msgid "second rotation"
|
1491 |
msgstr "Zweite rotation"
|
1492 |
|
1493 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1494 |
#: dashboard/publisher/groups-main.php:62
|
1495 |
msgid "Block"
|
1496 |
msgstr "Block"
|
1497 |
|
1498 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1499 |
#: dashboard/publisher/groups-main.php:62
|
1500 |
msgid "grid"
|
1501 |
msgstr "Raster"
|
1502 |
|
1503 |
+
#: dashboard/publisher/adverts-edit.php:486
|
1504 |
+
#: dashboard/publisher/groups-edit.php:235
|
1505 |
#: dashboard/publisher/groups-main.php:63
|
1506 |
msgid "Post Injection"
|
1507 |
msgstr "Post Injection"
|
1508 |
|
1509 |
+
#: dashboard/publisher/adverts-edit.php:487
|
1510 |
msgid "Geolocation"
|
1511 |
msgstr "Geolokalisierung"
|
1512 |
|
1513 |
+
#: dashboard/publisher/adverts-edit.php:494
|
1514 |
+
#: dashboard/publisher/groups-edit.php:74
|
1515 |
#: dashboard/publisher/groups-main.php:70
|
1516 |
msgid "Mode"
|
1517 |
msgstr "Modus"
|
1518 |
|
1519 |
+
#: dashboard/publisher/adverts-edit.php:511
|
1520 |
+
#: dashboard/publisher/adverts-generator.php:145
|
1521 |
+
msgid "Portability"
|
1522 |
+
msgstr "Portabilität"
|
1523 |
+
|
1524 |
+
#: dashboard/publisher/adverts-edit.php:512
|
1525 |
+
msgid ""
|
1526 |
+
"This long code is your advert. It includes all settings from above except "
|
1527 |
+
"the schedule and group selection. You can import this hash into another "
|
1528 |
+
"setup of AdRotate or AdRotate Professional. Do not alter the hash or the "
|
1529 |
+
"advert will not work. In most browsers you can tripleclick in the field to "
|
1530 |
+
"select the whole thing. You can paste the hash into the 'Advert Hash' field "
|
1531 |
+
"in the Advert Generator of another AdRotate setup."
|
1532 |
+
msgstr ""
|
1533 |
+
"Dieser lange Code ist Ihre Anzeige. Sie enthält alle Einstellungen von oben "
|
1534 |
+
"mit Ausnahme der Zeitplan- und Gruppenauswahl. Sie können diesen Hash in ein "
|
1535 |
+
"anderes Setup von AdRotate oder AdRotate Professional importieren. Ändern "
|
1536 |
+
"Sie den Hash nicht, oder die Anzeige funktioniert nicht. In den meisten "
|
1537 |
+
"Browsern können Sie dreifach in das Feld klicken, um das Ganze auszuwählen. "
|
1538 |
+
"Sie können den Hash in das Feld \"Anzeigenhash\" im Anzeigengenerator eines "
|
1539 |
+
"anderen AdRotate-Setups einfügen."
|
1540 |
+
|
1541 |
+
#: dashboard/publisher/adverts-edit.php:516
|
1542 |
+
#: dashboard/publisher/adverts-generator.php:151
|
1543 |
+
msgid "Advert hash"
|
1544 |
+
msgstr "Advert Hash"
|
1545 |
+
|
1546 |
#: dashboard/publisher/adverts-error.php:12
|
1547 |
msgid "Adverts that need attention"
|
1548 |
msgstr "Werbung, die überprüft werden sollte"
|
1606 |
"erhalten haben. Der AdRotate Generator wird Ihre Bits und Stücke nehmen und "
|
1607 |
"versuchen, einen funktionierenden Adcode daraus zu generieren."
|
1608 |
|
1609 |
+
#: dashboard/publisher/adverts-generator.php:38
|
1610 |
+
msgid ""
|
1611 |
+
"If you have an advert hash from another AdRotate or AdRotate Professional "
|
1612 |
+
"setup you can enter it in the Portability field. This feature is a bit of an "
|
1613 |
+
"experiment, but the basic function works."
|
1614 |
+
msgstr ""
|
1615 |
+
"Wenn Sie einen Werbehash aus einem anderen AdRotate- oder AdRotate "
|
1616 |
+
"Professional-Setup haben, können Sie ihn in das Feld Portabilität eingeben. "
|
1617 |
+
"Diese Funktion ist ein bisschen ein Experiment, aber die grundlegende "
|
1618 |
+
"Funktion funktioniert."
|
1619 |
+
|
1620 |
#: dashboard/publisher/adverts-generator.php:39
|
1621 |
msgid ""
|
1622 |
"If you have a complete and working ad code / ad tag you do not use the "
|
1672 |
msgstr "Ansichtsfenster"
|
1673 |
|
1674 |
#: dashboard/publisher/adverts-generator.php:77
|
1675 |
+
#: dashboard/publisher/groups-edit.php:219
|
1676 |
#: dashboard/settings/notifications.php:48
|
1677 |
msgid "Available in AdRotate Pro"
|
1678 |
msgstr "Erhältlich in AdRotate Pro"
|
1798 |
"Einige Bots/Crawler verwenden sie als beschreibende Maßnahme, um zu sehen, "
|
1799 |
"worum es im Code geht."
|
1800 |
|
1801 |
+
#: dashboard/publisher/adverts-generator.php:153
|
1802 |
+
msgid ""
|
1803 |
+
"To import a ready made advert, enter a advert hash from another AdRotate "
|
1804 |
+
"setup..."
|
1805 |
+
msgstr ""
|
1806 |
+
"Um eine fertige Anzeige zu importieren, geben Sie einen Werbehash aus einem "
|
1807 |
+
"anderen AdRotate-Setup ein..."
|
1808 |
+
|
1809 |
+
#: dashboard/publisher/adverts-generator.php:161
|
1810 |
msgid "Generate and Configure Advert"
|
1811 |
msgstr "Generieren und Konfigurieren von Werbung"
|
1812 |
|
1813 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1814 |
msgid "Always test your adverts before activating them."
|
1815 |
msgstr "Testen Sie Ihre Anzeigen immer, bevor Sie sie aktivieren."
|
1816 |
|
1817 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1818 |
+
msgid "Caution:"
|
1819 |
+
msgstr "Vorsicht:"
|
1820 |
|
1821 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1822 |
msgid ""
|
1823 |
"While the Code Generator has been tested and works, code generation, as "
|
1824 |
"always, is a interpretation of user input. If you provide the correct bits "
|
1831 |
"generiert werden. Wenn Sie Felder leer lassen oder die falsche Information "
|
1832 |
"einfügen, erhalten Sie wahrscheinlich eine defekte Anzeige."
|
1833 |
|
1834 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1835 |
+
msgid "NOTE:"
|
1836 |
+
msgstr "NOTIZ:"
|
1837 |
+
|
1838 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1839 |
+
msgid "If you insert an Advert Hash, all other fields are ignored."
|
1840 |
msgstr ""
|
1841 |
+
"Wenn Sie einen Anzeigenhash einfügen, werden alle anderen Felder ignoriert."
|
|
|
1842 |
|
1843 |
#: dashboard/publisher/adverts-main.php:12
|
1844 |
msgid "Active Adverts"
|
1861 |
msgid "No adverts created yet!"
|
1862 |
msgstr "Es wurden bisher noch keine Anzeigen erstellt!"
|
1863 |
|
1864 |
+
#: dashboard/publisher/groups-edit.php:41
|
1865 |
+
msgid ""
|
1866 |
+
"Your block is a 1x1 grid. Either add more rows or columns or set the group "
|
1867 |
+
"to Default mode."
|
1868 |
+
msgstr ""
|
1869 |
+
"Ihr Block ist ein 1x1-Raster. Fügen Sie entweder weitere Zeilen oder Spalten "
|
1870 |
+
"hinzu, oder legen Sie die Gruppe auf den Standardmodus fest."
|
1871 |
+
|
1872 |
+
#: dashboard/publisher/groups-edit.php:44
|
1873 |
+
msgid "You have enabled Post Injection but did not select any categories."
|
1874 |
+
msgstr "Sie haben Post Injection aktiviert, aber keine Kategorien ausgewählt."
|
1875 |
+
|
1876 |
+
#: dashboard/publisher/groups-edit.php:47
|
1877 |
+
msgid "You have enabled Page Injection but did not select any pages."
|
1878 |
+
msgstr "Sie haben Page Injection aktiviert, aber keine Seiten ausgewählt."
|
1879 |
+
|
1880 |
+
#: dashboard/publisher/groups-edit.php:57
|
1881 |
msgid "New Group"
|
1882 |
msgstr "Neue Gruppe"
|
1883 |
|
1884 |
+
#: dashboard/publisher/groups-edit.php:59
|
1885 |
msgid "Edit Group"
|
1886 |
msgstr "Gruppe bearbeiten"
|
1887 |
|
1888 |
+
#: dashboard/publisher/groups-edit.php:77
|
1889 |
msgid "Default - Show one ad at a time"
|
1890 |
msgstr "Default - zeige eine Anzeige zur gleichen Zeit"
|
1891 |
|
1892 |
+
#: dashboard/publisher/groups-edit.php:78
|
1893 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1894 |
msgstr "Dynamischer Modus - alle paar Sekunden eine andere Anzeige zeigen"
|
1895 |
|
1896 |
+
#: dashboard/publisher/groups-edit.php:79
|
1897 |
msgid "Block Mode - Show a block of adverts"
|
1898 |
msgstr "Block-Modus - zeigen einen Block von Anzeigen"
|
1899 |
|
1900 |
+
#: dashboard/publisher/groups-edit.php:83
|
1901 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1902 |
msgstr ""
|
1903 |
"Dynamischer Modus erfordert jQuery. Sie können dies in den AdRotate "
|
1904 |
"Einstellungen aktivieren."
|
1905 |
|
1906 |
+
#: dashboard/publisher/groups-edit.php:87
|
1907 |
msgid "Advert size"
|
1908 |
msgstr "Anzeige-Größe"
|
1909 |
|
1910 |
+
#: dashboard/publisher/groups-edit.php:89
|
1911 |
msgid "pixel(s) wide"
|
1912 |
msgstr "Pixel Breite"
|
1913 |
|
1914 |
+
#: dashboard/publisher/groups-edit.php:89
|
1915 |
msgid "pixel(s) high."
|
1916 |
msgstr "Pixel Höhe."
|
1917 |
|
1918 |
+
#: dashboard/publisher/groups-edit.php:92
|
1919 |
msgid ""
|
1920 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1921 |
"recommended)."
|
1923 |
"Definieren Sie die maximale Größe der Anzeigen in Pixel. Größe kann 'auto' "
|
1924 |
"sein (Nicht empfohlen)."
|
1925 |
|
1926 |
+
#: dashboard/publisher/groups-edit.php:98
|
1927 |
msgid "Dynamic and Block Mode"
|
1928 |
msgstr "Dynamischer und Block-Modus"
|
1929 |
|
1930 |
+
#: dashboard/publisher/groups-edit.php:102
|
1931 |
msgid "Block size"
|
1932 |
msgstr "Blockgröße"
|
1933 |
|
1934 |
+
#: dashboard/publisher/groups-edit.php:108
|
1935 |
msgid "rows"
|
1936 |
msgstr "Zeilen"
|
1937 |
|
1938 |
+
#: dashboard/publisher/groups-edit.php:112
|
1939 |
msgid "columns"
|
1940 |
msgstr "Spalten"
|
1941 |
|
1942 |
+
#: dashboard/publisher/groups-edit.php:115
|
1943 |
msgid "Block Mode"
|
1944 |
msgstr "Blockmodus"
|
1945 |
|
1946 |
+
#: dashboard/publisher/groups-edit.php:115
|
1947 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1948 |
msgstr ""
|
1949 |
"Größere Blöcke wird die Leistung Ihrer Website reduzieren! Standard: 2/2."
|
1950 |
|
1951 |
+
#: dashboard/publisher/groups-edit.php:119
|
1952 |
msgid "Automated refresh"
|
1953 |
msgstr "Automatische Aktualisierung"
|
1954 |
|
1955 |
+
#: dashboard/publisher/groups-edit.php:138
|
1956 |
msgid "seconds."
|
1957 |
msgstr "Sekunden."
|
1958 |
|
1959 |
+
#: dashboard/publisher/groups-edit.php:141
|
1960 |
+
#: dashboard/publisher/groups-edit.php:150
|
1961 |
msgid "Dynamic Mode"
|
1962 |
msgstr "Dynamischer Modus"
|
1963 |
|
1964 |
+
#: dashboard/publisher/groups-edit.php:141
|
1965 |
msgid ""
|
1966 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1967 |
msgstr ""
|
1968 |
"Lädt eine neue Anzeige in diesem Intervall, ohne die Seite neu zu laden. "
|
1969 |
"Standard: 6."
|
1970 |
|
1971 |
+
#: dashboard/publisher/groups-edit.php:145
|
1972 |
msgid "Repeat impressions"
|
1973 |
msgstr "Wiederholte Impressionen"
|
1974 |
|
1975 |
+
#: dashboard/publisher/groups-edit.php:147
|
1976 |
msgid "Count impressions for every cycle of adverts?"
|
1977 |
msgstr "Zählen Sie Impressionen für jeden Werbezyklus?"
|
1978 |
|
1979 |
+
#: dashboard/publisher/groups-edit.php:150
|
1980 |
msgid ""
|
1981 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1982 |
msgstr ""
|
1983 |
"Deaktivieren Sie diese Option, um nur Impressionen für den ersten "
|
1984 |
"Werbezyklus zu zählen."
|
1985 |
|
1986 |
+
#: dashboard/publisher/groups-edit.php:155
|
1987 |
+
#: dashboard/publisher/groups-edit.php:228
|
1988 |
msgid "Get access to all features in AdRotate Pro."
|
1989 |
msgstr "Erhalten Sie Zugriff auf alle Funktionen in AdRotate Pro."
|
1990 |
|
1991 |
+
#: dashboard/publisher/groups-edit.php:155
|
1992 |
msgid "Upgrade today"
|
1993 |
msgstr "Noch heute Upgraden"
|
1994 |
|
1995 |
+
#: dashboard/publisher/groups-edit.php:162
|
1996 |
+
#: dashboard/publisher/groups-edit.php:316
|
1997 |
msgid ""
|
1998 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1999 |
"Adverts\" and enter ID"
|
2001 |
"Ziehen Sie das AdRotate Widget in der gewünschten Seitenleiste, wählen Sie "
|
2002 |
"\"Gruppe von Anzeigen\" und geben Sie die ID an"
|
2003 |
|
2004 |
+
#: dashboard/publisher/groups-edit.php:174
|
2005 |
+
#: dashboard/publisher/groups-edit.php:328
|
2006 |
+
#: dashboard/publisher/groups-edit.php:422
|
2007 |
msgid "Save Group"
|
2008 |
msgstr "Gruppe speichern"
|
2009 |
|
2010 |
+
#: dashboard/publisher/groups-edit.php:182
|
2011 |
msgid "Advert Margin"
|
2012 |
msgstr "Anzeigen-Rand"
|
2013 |
|
2014 |
+
#: dashboard/publisher/groups-edit.php:184
|
2015 |
msgid "pixel(s)"
|
2016 |
msgstr "Pixel"
|
2017 |
|
2018 |
+
#: dashboard/publisher/groups-edit.php:187
|
2019 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2020 |
msgstr ""
|
2021 |
"Ein transparenter Bereich außerhalb der Anzeige in Pixeln. Standard: 0."
|
2022 |
|
2023 |
+
#: dashboard/publisher/groups-edit.php:187
|
2024 |
msgid "Set to 0 to disable."
|
2025 |
msgstr "0 zur Deaktivierung eintragen."
|
2026 |
|
2027 |
+
#: dashboard/publisher/groups-edit.php:187
|
2028 |
msgid "Margins are automatically disabled for blocks where required."
|
2029 |
msgstr "Ränder werden automatisch da deaktiviert, wo Blöcke erforderlich sind."
|
2030 |
|
2031 |
+
#: dashboard/publisher/groups-edit.php:191
|
2032 |
msgid "Align the group"
|
2033 |
msgstr "Ausrichten der Gruppe"
|
2034 |
|
2035 |
+
#: dashboard/publisher/groups-edit.php:194
|
2036 |
msgid "None (Default)"
|
2037 |
msgstr "Keine (Standard)"
|
2038 |
|
2039 |
+
#: dashboard/publisher/groups-edit.php:195
|
2040 |
msgid "Left"
|
2041 |
msgstr "Links"
|
2042 |
|
2043 |
+
#: dashboard/publisher/groups-edit.php:196
|
2044 |
msgid "Right"
|
2045 |
msgstr "Rechts"
|
2046 |
|
2047 |
+
#: dashboard/publisher/groups-edit.php:197
|
2048 |
msgid "Center"
|
2049 |
msgstr "Zzentriert"
|
2050 |
|
2051 |
+
#: dashboard/publisher/groups-edit.php:201
|
2052 |
msgid ""
|
2053 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2054 |
"setting. Not every theme supports this feature."
|
2057 |
"beeinträchtigt die Randeinstellung. Nicht jedes theme unterstützt diese "
|
2058 |
"Funktion."
|
2059 |
|
2060 |
+
#: dashboard/publisher/groups-edit.php:206
|
2061 |
msgid "Enable Geo Targeting for this group."
|
2062 |
msgstr "Aktivieren Sie die Geo-Targeting für diese Gruppe."
|
2063 |
|
2064 |
+
#: dashboard/publisher/groups-edit.php:207
|
2065 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2066 |
msgstr ""
|
2067 |
"Vergessen Sie nicht anzugeben, in welchen Bereichen die Werbung gezeigt "
|
2068 |
"werden soll."
|
2069 |
|
2070 |
+
#: dashboard/publisher/groups-edit.php:210
|
2071 |
msgid "Mobile Support"
|
2072 |
msgstr "Mobiler Support"
|
2073 |
|
2074 |
+
#: dashboard/publisher/groups-edit.php:211
|
2075 |
msgid "Enable mobile support for this group."
|
2076 |
msgstr "Aktivieren Sie mobile Unterstützung für diese Gruppe."
|
2077 |
|
2078 |
+
#: dashboard/publisher/groups-edit.php:212
|
2079 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2080 |
msgstr ""
|
2081 |
"Vergessen Sie nicht, mindestens eine mobile Anzeige in dieser Gruppe zu "
|
2082 |
"setzen."
|
2083 |
|
2084 |
+
#: dashboard/publisher/groups-edit.php:215
|
2085 |
msgid "Fallback Group"
|
2086 |
msgstr "Fallback-Gruppe"
|
2087 |
|
2088 |
+
#: dashboard/publisher/groups-edit.php:223
|
2089 |
msgid ""
|
2090 |
"Select another group to fall back on when all adverts are expired, not in "
|
2091 |
"the visitors geographic area or are otherwise unavailable."
|
2093 |
"Wählen Sie eine andere Gruppe, wenn alle Anzeigen abgelaufen sind, die nicht "
|
2094 |
"im geographischen Bereich des Besuchers oder anderweitig verfügbar sind."
|
2095 |
|
2096 |
+
#: dashboard/publisher/groups-edit.php:239
|
2097 |
+
#: dashboard/publisher/groups-edit.php:276
|
2098 |
#: dashboard/settings/geotargeting.php:24
|
2099 |
msgid "Disabled"
|
2100 |
msgstr "Deaktiviert"
|
2101 |
|
2102 |
+
#: dashboard/publisher/groups-edit.php:240
|
2103 |
+
#: dashboard/publisher/groups-edit.php:277
|
2104 |
msgid "Widget (Pro only)"
|
2105 |
msgstr "Widget (nur Pro)"
|
2106 |
|
2107 |
+
#: dashboard/publisher/groups-edit.php:241
|
2108 |
+
#: dashboard/publisher/groups-edit.php:278
|
2109 |
msgid "Before content"
|
2110 |
msgstr "Vor dem Inhalt"
|
2111 |
|
2112 |
+
#: dashboard/publisher/groups-edit.php:242
|
2113 |
+
#: dashboard/publisher/groups-edit.php:279
|
2114 |
msgid "After content"
|
2115 |
msgstr "Nach dem Inhalt"
|
2116 |
|
2117 |
+
#: dashboard/publisher/groups-edit.php:243
|
2118 |
+
#: dashboard/publisher/groups-edit.php:280
|
2119 |
msgid "Before and after content"
|
2120 |
msgstr "Vor und nach dem Inhalt"
|
2121 |
|
2122 |
+
#: dashboard/publisher/groups-edit.php:244
|
2123 |
+
#: dashboard/publisher/groups-edit.php:281
|
2124 |
msgid "Inside the content..."
|
2125 |
msgstr "Im Inhalt..."
|
2126 |
|
2127 |
+
#: dashboard/publisher/groups-edit.php:250
|
2128 |
+
#: dashboard/publisher/groups-edit.php:287
|
2129 |
msgid "after the middle paragraph"
|
2130 |
msgstr "nach dem mittleren Absatz"
|
2131 |
|
2132 |
+
#: dashboard/publisher/groups-edit.php:251
|
2133 |
+
#: dashboard/publisher/groups-edit.php:288
|
2134 |
msgid "after the 1st paragraph"
|
2135 |
msgstr "nach dem 1. Absatz"
|
2136 |
|
2137 |
+
#: dashboard/publisher/groups-edit.php:252
|
2138 |
+
#: dashboard/publisher/groups-edit.php:289
|
2139 |
msgid "after the 2nd paragraph"
|
2140 |
msgstr "nach dem 2. Absatz"
|
2141 |
|
2142 |
+
#: dashboard/publisher/groups-edit.php:253
|
2143 |
+
#: dashboard/publisher/groups-edit.php:290
|
2144 |
msgid "after the 3rd paragraph"
|
2145 |
msgstr "nach dem 3. Absatz"
|
2146 |
|
2147 |
+
#: dashboard/publisher/groups-edit.php:254
|
2148 |
+
#: dashboard/publisher/groups-edit.php:291
|
2149 |
msgid "after the 4th paragraph"
|
2150 |
msgstr "nach dem 4. Absatz"
|
2151 |
|
2152 |
+
#: dashboard/publisher/groups-edit.php:255
|
2153 |
+
#: dashboard/publisher/groups-edit.php:292
|
2154 |
msgid "after the 5th paragraph"
|
2155 |
msgstr "nach dem 5. Absatz"
|
2156 |
|
2157 |
+
#: dashboard/publisher/groups-edit.php:256
|
2158 |
+
#: dashboard/publisher/groups-edit.php:293
|
2159 |
msgid "after the 6th paragraph"
|
2160 |
msgstr "nach dem 6. Absatz"
|
2161 |
|
2162 |
+
#: dashboard/publisher/groups-edit.php:257
|
2163 |
+
#: dashboard/publisher/groups-edit.php:294
|
2164 |
msgid "after the 7th paragraph"
|
2165 |
msgstr "nach dem 7. Absatz"
|
2166 |
|
2167 |
+
#: dashboard/publisher/groups-edit.php:258
|
2168 |
+
#: dashboard/publisher/groups-edit.php:295
|
2169 |
msgid "after the 8th paragraph"
|
2170 |
msgstr "nach dem 8. Absatz"
|
2171 |
|
2172 |
+
#: dashboard/publisher/groups-edit.php:272
|
2173 |
msgid "Page Injection"
|
2174 |
msgstr "Seiten-Injektion"
|
2175 |
|
2176 |
+
#: dashboard/publisher/groups-edit.php:332
|
2177 |
msgid "Wrapper code"
|
2178 |
msgstr "Wrappercode"
|
2179 |
|
2180 |
+
#: dashboard/publisher/groups-edit.php:333
|
2181 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2182 |
msgstr "Wrapps um jede Anzeige. HTML/JavaScript ist zugelassen, aber Vorsicht!"
|
2183 |
|
2184 |
+
#: dashboard/publisher/groups-edit.php:337
|
2185 |
msgid "Before advert"
|
2186 |
msgstr "Vor der Anzeige"
|
2187 |
|
2188 |
+
#: dashboard/publisher/groups-edit.php:340
|
2189 |
+
#: dashboard/publisher/groups-edit.php:348
|
2190 |
msgid "Example:"
|
2191 |
msgstr "Beispiel:"
|
2192 |
|
2193 |
+
#: dashboard/publisher/groups-edit.php:341
|
2194 |
msgid "Options:"
|
2195 |
msgstr "Optionen:"
|
2196 |
|
2197 |
+
#: dashboard/publisher/groups-edit.php:345
|
2198 |
msgid "After advert"
|
2199 |
msgstr "Nach der Anzeige"
|
2200 |
|
2201 |
+
#: dashboard/publisher/groups-edit.php:354
|
2202 |
msgid "Select adverts"
|
2203 |
msgstr "Anzeigen auswählen"
|
2204 |
|
2205 |
+
#: dashboard/publisher/groups-edit.php:361
|
2206 |
msgid "Visible until"
|
2207 |
msgstr "Sichtbar bis"
|
2208 |
|
2209 |
+
#: dashboard/publisher/groups-edit.php:409
|
2210 |
msgid "No adverts created!"
|
2211 |
msgstr "Es wurden keine Anzeigen erstellt!"
|
2212 |
|
2213 |
+
#: dashboard/publisher/groups-edit.php:416
|
2214 |
msgid "Configuration errors."
|
2215 |
msgstr "Konfigurationsfehler."
|
2216 |
|
2217 |
+
#: dashboard/publisher/groups-edit.php:417
|
2218 |
#: dashboard/publisher/schedules-main.php:87
|
2219 |
msgid "Expires soon."
|
2220 |
msgstr "Läuft ab."
|
2221 |
|
2222 |
+
#: dashboard/publisher/groups-edit.php:418
|
2223 |
#: dashboard/publisher/schedules-main.php:88
|
2224 |
msgid "Has expired."
|
2225 |
msgstr "Ist abgelaufen."
|
2305 |
"Stellen Sie sicher, dass die Bannerbilder von Anzeigen nicht aktiv sind, "
|
2306 |
"wenn Sie diese löschen!"
|
2307 |
|
2308 |
+
#: dashboard/publisher/media.php:73
|
2309 |
#: dashboard/publisher/statistics-advert.php:109
|
2310 |
#: dashboard/publisher/statistics-group.php:113
|
2311 |
#: dashboard/publisher/statistics-main.php:83
|
2324 |
"mehreren Anzeigen einfach verwalten können. Zeitpläne können an bestimmten "
|
2325 |
"Wochentagen oder zu bestimmten Tageszeiten aktiv sein."
|
2326 |
|
2327 |
+
#: dashboard/publisher/schedules-main.php:13
|
2328 |
+
msgid "Get more scheduling options with"
|
2329 |
+
msgstr "Erhalten Sie weitere Planungsoptionen mit"
|
2330 |
+
|
2331 |
#: dashboard/publisher/schedules-main.php:36
|
2332 |
msgid "Max Shown"
|
2333 |
msgstr "Max gezeigt"
|
3435 |
"Diese Zahl darf nicht leer sein, sollte niedriger sein als 60 oder mehr als "
|
3436 |
"86400 (24 Stunden)."
|
3437 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3438 |
#: dashboard/support.php:83
|
3439 |
msgid "Premium Support available in AdRotate Pro"
|
3440 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro"
|
3502 |
msgid "Premium Support is available in AdRotate Pro!"
|
3503 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
3504 |
|
3505 |
+
#~ msgid "Join the Media.net advertising network"
|
3506 |
+
#~ msgstr "Treten Sie dem Media.net-Werbenetzwerk bei"
|
3507 |
+
|
3508 |
+
#~ msgid "Get contextual adverts from Media.net"
|
3509 |
+
#~ msgstr "Konfigurieren Sie Ihre Werbung"
|
3510 |
+
|
3511 |
+
#~ msgid ""
|
3512 |
+
#~ "Based on your input and experiences later iterations of the Code "
|
3513 |
+
#~ "Generator will be better and more feature rich."
|
3514 |
+
#~ msgstr ""
|
3515 |
+
#~ "Basierend auf Ihren Eingaben und Erfahrungen werden spätere Iterationen "
|
3516 |
+
#~ "des Codegenerators besser und funktionsreicher sein."
|
3517 |
+
|
3518 |
+
#~ msgid "Upgrade instructions"
|
3519 |
+
#~ msgstr "Upgrade-Anweisungen"
|
3520 |
+
|
3521 |
+
#~ msgid "AdRotate Banner Manager"
|
3522 |
+
#~ msgstr "AdRotate Banner Manager"
|
3523 |
+
|
3524 |
+
#~ msgid "Support AdRotate Banner Manager"
|
3525 |
+
#~ msgstr "Unterstützen Sie AdRotate Banner Manager"
|
3526 |
+
|
3527 |
+
#~ msgid ""
|
3528 |
+
#~ "Consider writing a review or making a donation if you like the plugin or "
|
3529 |
+
#~ "if you find the plugin useful. Thanks for your support!"
|
3530 |
+
#~ msgstr ""
|
3531 |
+
#~ "Erwägen Sie, eine Bewertung zu schreiben oder eine Spende zu machen, wenn "
|
3532 |
+
#~ "Sie das Plugin mögen oder wenn Sie das Plugin nützlich finden. Vielen "
|
3533 |
+
#~ "Dank für Ihre Unterstützung!"
|
3534 |
+
|
3535 |
+
#~ msgid "Plugins and services"
|
3536 |
+
#~ msgstr "Plugins und Dienstleistungen"
|
3537 |
+
|
3538 |
+
#~ msgid "WP Maintenance"
|
3539 |
+
#~ msgstr "WP Maintenance"
|
3540 |
+
|
3541 |
+
#~ msgid "Professional service"
|
3542 |
+
#~ msgstr "Organisationsberatung"
|
3543 |
+
|
3544 |
+
#~ msgid ""
|
3545 |
+
#~ "Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
3546 |
+
#~ "spam and clean up files."
|
3547 |
+
#~ msgstr ""
|
3548 |
+
#~ "Holen Sie sich die neuesten Updates für WordPress und Plugins. Wartung, "
|
3549 |
+
#~ "Löschen von Spam und Bereinigen von Dateien."
|
3550 |
+
|
3551 |
+
#~ msgid "HTML5 Advert setup"
|
3552 |
+
#~ msgstr "HTML5-Anzeigeneinrichtung"
|
3553 |
+
|
3554 |
+
#~ msgid ""
|
3555 |
+
#~ "Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
3556 |
+
#~ "install and configure it for you."
|
3557 |
+
#~ msgstr ""
|
3558 |
+
#~ "Haben Sie eine HTML5-Anzeige erhalten und können sie in AdRotate Pro "
|
3559 |
+
#~ "nicht funktionieren? Ich werde es installieren und für Sie konfigurieren."
|
3560 |
+
|
3561 |
+
#~ msgid "Single Page Checkout"
|
3562 |
+
#~ msgstr "Einzelseiten-Kaufabwicklung"
|
3563 |
+
|
3564 |
+
#~ msgid "WooCommerce Plugin"
|
3565 |
+
#~ msgstr "WooCommerce Plugin"
|
3566 |
+
|
3567 |
+
#~ msgid ""
|
3568 |
+
#~ "Merge your cart and checkout pages into one single page in seconds with "
|
3569 |
+
#~ "no setup required at all."
|
3570 |
+
#~ msgstr ""
|
3571 |
+
#~ "Führen Sie Ihren Warenkorb und Ihre Kassenseiten in Sekundenschnelle zu "
|
3572 |
+
#~ "einer einzigen Seite zusammen, ohne dass eine Einrichtung erforderlich "
|
3573 |
+
#~ "ist."
|
3574 |
+
|
3575 |
+
#~ msgid "News & Updates"
|
3576 |
+
#~ msgstr "Neuigkeiten & Updates"
|
3577 |
+
|
3578 |
+
#~ msgid "Support Forums"
|
3579 |
+
#~ msgstr "Support-Foren"
|
3580 |
+
|
3581 |
+
#~ msgid ""
|
3582 |
+
#~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3583 |
+
#~ "Chances are your question has already been asked and answered!"
|
3584 |
+
#~ msgstr ""
|
3585 |
+
#~ "Wenn Sie mit AdRotate Banner Manager oder AdRotate Professional hängen "
|
3586 |
+
#~ "bleiben, überprüfen Sie zuerst die Foren. Die Chancen stehen gut, dass "
|
3587 |
+
#~ "Ihre Frage bereits gestellt und beantwortet wurde!"
|
3588 |
+
|
3589 |
+
#~ msgid ""
|
3590 |
+
#~ "Next to the forum there are many manuals and guides available for almost "
|
3591 |
+
#~ "every function and feature in the plugin."
|
3592 |
+
#~ msgstr ""
|
3593 |
+
#~ "Neben dem Forum gibt es viele Handbücher und Anleitungen für fast jede "
|
3594 |
+
#~ "Funktion und Funktion im Plugin zur Verfügung."
|
3595 |
+
|
3596 |
+
#~ msgid "Take a look at the AdRotate Manuals"
|
3597 |
+
#~ msgstr "Werfen Sie einen Blick auf die AdRotate-Handbücher"
|
3598 |
+
|
3599 |
+
#~ msgid "View topics"
|
3600 |
+
#~ msgstr "Ansichtsfenster"
|
3601 |
+
|
3602 |
#~ msgid "Yes, this ad will be used"
|
3603 |
#~ msgstr "Ja, diese Anzeige wird verwendet"
|
3604 |
|
4623 |
#~ "verschoben, damit die Gesamtgeschwindigkeit Ihrer Website erhöhen werden "
|
4624 |
#~ "kann."
|
4625 |
|
|
|
|
|
|
|
4626 |
#~ msgid ""
|
4627 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
4628 |
#~ "some cases a lot of data has to be moved. Not every hosting provider "
|
6169 |
#~ "Sie haben %image% nicht in Ihrem AdCode verwendet, haben aber eine Datei "
|
6170 |
#~ "ausgewählt!"
|
6171 |
|
|
|
|
|
|
|
|
|
|
|
6172 |
#~ msgid "Please contact staff, your advert is not being displayed!"
|
6173 |
#~ msgstr ""
|
6174 |
#~ "Kontaktieren Sie die Mitarbeiter, Ihre Anzeige wird nicht angezeigt!"
|
6199 |
#~ "Überprüfen der Gruppen-Spezifikation, um festzustellen, ob Mobile-"
|
6200 |
#~ "Unterstützung aktiviert ist."
|
6201 |
|
|
|
|
|
|
|
6202 |
#~ msgid ""
|
6203 |
#~ "Weight decides the visibility. Better visibility means more impressions."
|
6204 |
#~ msgstr ""
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
@@ -60,10 +60,11 @@ msgstr "Export créé"
|
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
-
"below."
|
64 |
msgstr ""
|
65 |
"Annonce HTML générée et placée dans le champ AdCode. Configurez votre "
|
66 |
-
"annonce ci-dessous."
|
|
|
67 |
|
68 |
#: adrotate-functions.php:737
|
69 |
msgid "Settings saved"
|
@@ -116,10 +117,26 @@ msgid "No ads found."
|
|
116 |
msgstr "Aucune annonce trouvée."
|
117 |
|
118 |
#: adrotate-functions.php:782
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "Unexpected error"
|
120 |
msgstr "Erreur inattendue"
|
121 |
|
122 |
-
#: adrotate-manage-publisher.php:
|
123 |
msgid "AdRotate Advertiser"
|
124 |
msgstr "AdRotate annonceur"
|
125 |
|
@@ -267,15 +284,15 @@ msgstr "Configurez votre dossier de bannière"
|
|
267 |
|
268 |
#: adrotate-output.php:652
|
269 |
msgid ""
|
270 |
-
"You have
|
271 |
-
"
|
272 |
msgstr ""
|
273 |
-
"Vous avez installé
|
274 |
-
"
|
275 |
|
276 |
#: adrotate-output.php:652
|
277 |
-
msgid "
|
278 |
-
msgstr "
|
279 |
|
280 |
#: adrotate-output.php:655
|
281 |
msgid ""
|
@@ -320,7 +337,7 @@ msgstr "forums"
|
|
320 |
msgid "Help AdRotate Grow"
|
321 |
msgstr "AdRotate Pro"
|
322 |
|
323 |
-
#: adrotate-output.php:835 adrotate.php:
|
324 |
msgid "AdRotate Professional"
|
325 |
msgstr "AdRotate professionel"
|
326 |
|
@@ -477,78 +494,78 @@ msgstr "ID :"
|
|
477 |
msgid "Fill in the ID of the type you want to display!"
|
478 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "General Info"
|
482 |
msgstr "Informations générales"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
msgid "AdRotate Pro"
|
486 |
msgstr "AdRotate Pro"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Manage Adverts"
|
490 |
msgstr "Gérer Annonces"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
msgid "Manage Groups"
|
494 |
msgstr "Gérer les groupes"
|
495 |
|
496 |
-
#: adrotate.php:
|
497 |
msgid "Manage Schedules"
|
498 |
msgstr "Gérer les horaires"
|
499 |
|
500 |
-
#: adrotate.php:
|
501 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
502 |
#: dashboard/publisher/statistics-main.php:23
|
503 |
#: dashboard/settings/statistics.php:17
|
504 |
msgid "Statistics"
|
505 |
msgstr "Statistiques"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "Manage Media"
|
509 |
msgstr "Gérer les médias"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "Support"
|
513 |
msgstr "Support"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
msgid "Settings"
|
517 |
msgstr "Paramètres"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "AdRotate Info"
|
521 |
msgstr "Informations sur Adrotate"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
msgid "Advert Management"
|
525 |
msgstr "Gestion de l’annonce"
|
526 |
|
527 |
-
#: adrotate.php:
|
528 |
msgid "Manage"
|
529 |
msgstr "Gérer"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
msgid "Generator"
|
533 |
msgstr "Générateur"
|
534 |
|
535 |
-
#: adrotate.php:
|
536 |
msgid "Add New"
|
537 |
msgstr "Ajouter"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
msgid "Group Management"
|
541 |
msgstr "Gérer les groupes"
|
542 |
|
543 |
-
#: adrotate.php:
|
544 |
msgid "Schedules"
|
545 |
msgstr "Planifications"
|
546 |
|
547 |
-
#: adrotate.php:
|
548 |
msgid "Media and Assets"
|
549 |
msgstr "Médias et actifs"
|
550 |
|
551 |
-
#: adrotate.php:
|
552 |
msgid ""
|
553 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
554 |
"if you have HTML5 adverts containing multiple files."
|
@@ -557,11 +574,11 @@ msgstr ""
|
|
557 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
558 |
"fichiers."
|
559 |
|
560 |
-
#: adrotate.php:
|
561 |
msgid "Get more features"
|
562 |
msgstr "Obtenez plus de fonctionnalités"
|
563 |
|
564 |
-
#: adrotate.php:
|
565 |
msgid "Get AdRotate Pro"
|
566 |
msgstr "Obtenez AdRotate Pro"
|
567 |
|
@@ -577,8 +594,8 @@ msgstr "Général"
|
|
577 |
msgid "Notifications"
|
578 |
msgstr "Notifications"
|
579 |
|
580 |
-
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:
|
581 |
-
#: dashboard/publisher/groups-edit.php:
|
582 |
#: dashboard/settings/advertisers.php:38
|
583 |
msgid "Geo Targeting"
|
584 |
msgstr "Ciblage géo"
|
@@ -748,7 +765,7 @@ msgstr "Votre configuration"
|
|
748 |
msgid "Adverts that need you"
|
749 |
msgstr "Annonces qui ont besoin de votre attention"
|
750 |
|
751 |
-
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:
|
752 |
#: dashboard/publisher/groups-main.php:34
|
753 |
#: dashboard/publisher/schedules-main.php:34
|
754 |
#: dashboard/publisher/statistics-main.php:35
|
@@ -767,80 +784,11 @@ msgstr "Groupes"
|
|
767 |
msgid "Have errors"
|
768 |
msgstr "Il y a des erreurs"
|
769 |
|
770 |
-
#: dashboard/info.php:
|
771 |
-
msgid "AdRotate Banner Manager"
|
772 |
-
msgstr "AdRotate Banner Manager"
|
773 |
-
|
774 |
-
#: dashboard/info.php:49
|
775 |
-
msgid "Support AdRotate Banner Manager"
|
776 |
-
msgstr "Soutenir AdRotate Banner Manager"
|
777 |
-
|
778 |
-
#: dashboard/info.php:50
|
779 |
-
msgid ""
|
780 |
-
"Consider writing a review or making a donation if you like the plugin or if "
|
781 |
-
"you find the plugin useful. Thanks for your support!"
|
782 |
-
msgstr ""
|
783 |
-
"Envisagez d’écrire un avis ou de faire un don si vous aimez le plugin ou si "
|
784 |
-
"vous trouvez le plugin utile. Merci pour votre soutien!"
|
785 |
-
|
786 |
-
#: dashboard/info.php:53 dashboard/support.php:39
|
787 |
-
msgid "Plugins and services"
|
788 |
-
msgstr "Plugins et services"
|
789 |
-
|
790 |
-
#: dashboard/info.php:59 dashboard/support.php:47
|
791 |
-
msgid "WP Maintenance"
|
792 |
-
msgstr "WP Maintenance"
|
793 |
-
|
794 |
-
#: dashboard/info.php:60 dashboard/info.php:70 dashboard/support.php:48
|
795 |
-
#: dashboard/support.php:58
|
796 |
-
msgid "Professional service"
|
797 |
-
msgstr "Service Pro"
|
798 |
-
|
799 |
-
#: dashboard/info.php:63 dashboard/support.php:51
|
800 |
-
msgid ""
|
801 |
-
"Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
802 |
-
"spam and clean up files."
|
803 |
-
msgstr ""
|
804 |
-
"Obtenez toutes les dernières mises à jour pour WordPress et plugins. "
|
805 |
-
"Entretien, supprimer le spam et nettoyer les fichiers."
|
806 |
-
|
807 |
-
#: dashboard/info.php:69 dashboard/support.php:57
|
808 |
-
msgid "HTML5 Advert setup"
|
809 |
-
msgstr "Configuration de l’annonce HTML5"
|
810 |
-
|
811 |
-
#: dashboard/info.php:73 dashboard/support.php:61
|
812 |
-
msgid ""
|
813 |
-
"Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
814 |
-
"install and configure it for you."
|
815 |
-
msgstr ""
|
816 |
-
"Avez-vous obtenu une annonce HTML5 et ne peut pas le faire fonctionner dans "
|
817 |
-
"AdRotate Pro? Je vais l’installer et le configurer pour vous."
|
818 |
-
|
819 |
-
#: dashboard/info.php:79 dashboard/support.php:67
|
820 |
-
msgid "Single Page Checkout"
|
821 |
-
msgstr "Paiement par page unique"
|
822 |
-
|
823 |
-
#: dashboard/info.php:80 dashboard/support.php:68
|
824 |
-
msgid "WooCommerce Plugin"
|
825 |
-
msgstr "Plugin WooCommerce"
|
826 |
-
|
827 |
-
#: dashboard/info.php:83 dashboard/support.php:71
|
828 |
-
msgid ""
|
829 |
-
"Merge your cart and checkout pages into one single page in seconds with no "
|
830 |
-
"setup required at all."
|
831 |
-
msgstr ""
|
832 |
-
"Fusionnez vos pages de panier et de caisse en une seule page en quelques "
|
833 |
-
"secondes sans aucune configuration requise du tout."
|
834 |
-
|
835 |
-
#: dashboard/info.php:95
|
836 |
-
msgid "News & Updates"
|
837 |
-
msgstr "Actualités"
|
838 |
-
|
839 |
-
#: dashboard/info.php:108
|
840 |
msgid "Buy AdRotate Professional"
|
841 |
msgstr "Achetez AdRotate Professionel"
|
842 |
|
843 |
-
#: dashboard/info.php:
|
844 |
msgid ""
|
845 |
"AdRotate Professional has a lot more functions for even better advertising "
|
846 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -851,49 +799,49 @@ msgstr ""
|
|
851 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
852 |
"vous!"
|
853 |
|
854 |
-
#: dashboard/info.php:
|
855 |
msgid "Single License"
|
856 |
msgstr "Licence unique"
|
857 |
|
858 |
-
#: dashboard/info.php:
|
859 |
msgid "Use on ONE WordPress installation."
|
860 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
861 |
|
862 |
-
#: dashboard/info.php:
|
863 |
-
#: dashboard/info.php:
|
864 |
msgid "Buy now"
|
865 |
msgstr "Acheter maintenant"
|
866 |
|
867 |
-
#: dashboard/info.php:
|
868 |
msgid "Duo License"
|
869 |
msgstr "Licence Duo"
|
870 |
|
871 |
-
#: dashboard/info.php:
|
872 |
msgid "Use on TWO WordPress installations."
|
873 |
msgstr "Utilisation sur DEUX installations WordPress."
|
874 |
|
875 |
-
#: dashboard/info.php:
|
876 |
msgid "Multi License"
|
877 |
msgstr "Licence Multiple"
|
878 |
|
879 |
-
#: dashboard/info.php:
|
880 |
msgid "Use on up to FIVE WordPress installations."
|
881 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
882 |
|
883 |
-
#: dashboard/info.php:
|
884 |
msgid "Developer License"
|
885 |
msgstr "Licence de Developpeur"
|
886 |
|
887 |
-
#: dashboard/info.php:
|
888 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
889 |
msgstr ""
|
890 |
"Utiliser sur jusqu’à une installation et/ou réseaux WORDPress de HUNDRED."
|
891 |
|
892 |
-
#: dashboard/info.php:
|
893 |
msgid "Advertising Partners & Affiliates"
|
894 |
msgstr "Partenaires annonces et affiliés"
|
895 |
|
896 |
-
#: dashboard/info.php:
|
897 |
msgid ""
|
898 |
"A selection of quality advertiser networks and useful products. If you need "
|
899 |
"adverts or just want more or more diverse adverts. Check out these great "
|
@@ -903,9 +851,13 @@ msgstr ""
|
|
903 |
"vous avez besoin de annonces ou tout simplement voulez des annonces plus ou "
|
904 |
"plus diversifiées. Découvrez ces excellentes options!"
|
905 |
|
906 |
-
#: dashboard/info.php:
|
907 |
-
msgid "
|
908 |
-
msgstr "
|
|
|
|
|
|
|
|
|
909 |
|
910 |
#: dashboard/publisher/adverts-disabled.php:15
|
911 |
msgid "Disabled Adverts"
|
@@ -945,10 +897,10 @@ msgid "Go"
|
|
945 |
msgstr "Aller"
|
946 |
|
947 |
#: dashboard/publisher/adverts-disabled.php:35
|
948 |
-
#: dashboard/publisher/adverts-edit.php:
|
949 |
#: dashboard/publisher/adverts-error.php:39
|
950 |
#: dashboard/publisher/adverts-main.php:39
|
951 |
-
#: dashboard/publisher/groups-edit.php:
|
952 |
#: dashboard/publisher/groups-main.php:32
|
953 |
#: dashboard/publisher/schedules-main.php:31
|
954 |
msgid "ID"
|
@@ -963,11 +915,11 @@ msgstr "Début / Fin"
|
|
963 |
|
964 |
#: dashboard/publisher/adverts-disabled.php:37
|
965 |
#: dashboard/publisher/adverts-edit.php:112
|
966 |
-
#: dashboard/publisher/adverts-edit.php:
|
967 |
#: dashboard/publisher/adverts-error.php:40
|
968 |
#: dashboard/publisher/adverts-main.php:41
|
969 |
-
#: dashboard/publisher/groups-edit.php:
|
970 |
-
#: dashboard/publisher/groups-edit.php:
|
971 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
972 |
#: dashboard/publisher/schedules-main.php:33
|
973 |
msgid "Name"
|
@@ -975,14 +927,14 @@ msgstr "Nom"
|
|
975 |
|
976 |
#: dashboard/publisher/adverts-disabled.php:39
|
977 |
#: dashboard/publisher/adverts-main.php:43
|
978 |
-
#: dashboard/publisher/groups-edit.php:
|
979 |
#: dashboard/publisher/groups-main.php:36
|
980 |
msgid "Shown"
|
981 |
msgstr "Montré"
|
982 |
|
983 |
#: dashboard/publisher/adverts-disabled.php:40
|
984 |
#: dashboard/publisher/adverts-main.php:45
|
985 |
-
#: dashboard/publisher/groups-edit.php:
|
986 |
#: dashboard/publisher/groups-main.php:38
|
987 |
#: dashboard/publisher/statistics-advert.php:52
|
988 |
#: dashboard/publisher/statistics-advert.php:58
|
@@ -1231,27 +1183,22 @@ msgstr ""
|
|
1231 |
"annonces ne sont pas toujours pris en charge."
|
1232 |
|
1233 |
#: dashboard/publisher/adverts-edit.php:190
|
1234 |
-
msgid "
|
1235 |
-
msgstr "
|
1236 |
|
1237 |
#: dashboard/publisher/adverts-edit.php:191
|
1238 |
-
msgid "
|
1239 |
msgstr "Non, cette annonce ne sera pas utilisée"
|
1240 |
|
1241 |
#: dashboard/publisher/adverts-edit.php:198
|
1242 |
-
#: dashboard/publisher/adverts-main.php:90
|
1243 |
-
#: dashboard/publisher/groups-main.php:89
|
1244 |
msgid "Get more features with AdRotate Pro."
|
1245 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
1246 |
|
1247 |
#: dashboard/publisher/adverts-edit.php:198
|
1248 |
-
#: dashboard/publisher/adverts-edit.php:
|
1249 |
-
#: dashboard/publisher/adverts-edit.php:
|
1250 |
-
#: dashboard/publisher/adverts-edit.php:
|
1251 |
-
#: dashboard/publisher/
|
1252 |
-
#: dashboard/publisher/groups-edit.php:216
|
1253 |
-
#: dashboard/publisher/groups-main.php:89 dashboard/publisher/media.php:73
|
1254 |
-
#: dashboard/publisher/schedules-main.php:89
|
1255 |
#: dashboard/publisher/statistics-advert.php:109
|
1256 |
#: dashboard/publisher/statistics-group.php:113
|
1257 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -1259,39 +1206,39 @@ msgid "Upgrade now"
|
|
1259 |
msgstr "Mettre à jour maintenant"
|
1260 |
|
1261 |
#: dashboard/publisher/adverts-edit.php:201
|
1262 |
-
#: dashboard/publisher/adverts-edit.php:
|
1263 |
-
#: dashboard/publisher/adverts-edit.php:
|
1264 |
-
#: dashboard/publisher/adverts-edit.php:
|
1265 |
msgid "Save Advert"
|
1266 |
msgstr "Sauvegarder l’annonce"
|
1267 |
|
1268 |
#: dashboard/publisher/adverts-edit.php:202
|
1269 |
-
#: dashboard/publisher/adverts-edit.php:
|
1270 |
-
#: dashboard/publisher/adverts-edit.php:
|
1271 |
-
#: dashboard/publisher/adverts-edit.php:
|
1272 |
-
#: dashboard/publisher/adverts-generator.php:
|
1273 |
-
#: dashboard/publisher/groups-edit.php:
|
1274 |
-
#: dashboard/publisher/groups-edit.php:
|
1275 |
-
#: dashboard/publisher/groups-edit.php:
|
1276 |
msgid "Cancel"
|
1277 |
msgstr "Annuller"
|
1278 |
|
1279 |
#: dashboard/publisher/adverts-edit.php:205
|
1280 |
-
#: dashboard/publisher/adverts-edit.php:
|
1281 |
-
#: dashboard/publisher/groups-edit.php:
|
1282 |
-
#: dashboard/publisher/groups-edit.php:
|
1283 |
msgid "Usage"
|
1284 |
msgstr "Usage"
|
1285 |
|
1286 |
#: dashboard/publisher/adverts-edit.php:209
|
1287 |
-
#: dashboard/publisher/adverts-edit.php:
|
1288 |
-
#: dashboard/publisher/groups-edit.php:
|
1289 |
-
#: dashboard/publisher/groups-edit.php:
|
1290 |
msgid "Widget"
|
1291 |
msgstr "Widget"
|
1292 |
|
1293 |
#: dashboard/publisher/adverts-edit.php:210
|
1294 |
-
#: dashboard/publisher/adverts-edit.php:
|
1295 |
msgid ""
|
1296 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1297 |
"and select the advert or the group the advert is in."
|
@@ -1300,28 +1247,24 @@ msgstr ""
|
|
1300 |
"l’annonce, puis sélectionnez l’annonce ou le groupe l’annonce est en."
|
1301 |
|
1302 |
#: dashboard/publisher/adverts-edit.php:213
|
1303 |
-
#: dashboard/publisher/adverts-edit.php:
|
1304 |
-
#: dashboard/publisher/groups-edit.php:
|
1305 |
-
#: dashboard/publisher/groups-edit.php:
|
1306 |
msgid "In a post or page"
|
1307 |
msgstr "Dans un message ou une page"
|
1308 |
|
1309 |
#: dashboard/publisher/adverts-edit.php:215
|
1310 |
-
#: dashboard/publisher/adverts-edit.php:
|
1311 |
-
#: dashboard/publisher/groups-edit.php:
|
1312 |
-
#: dashboard/publisher/groups-edit.php:
|
1313 |
msgid "Directly in a theme"
|
1314 |
msgstr "Directement dans un thème"
|
1315 |
|
1316 |
#: dashboard/publisher/adverts-edit.php:221
|
1317 |
-
msgid "Get contextual adverts from Media.net"
|
1318 |
-
msgstr "Obtenez des annonces contextuelles de Media.net"
|
1319 |
-
|
1320 |
-
#: dashboard/publisher/adverts-edit.php:234
|
1321 |
msgid "Schedule your advert"
|
1322 |
msgstr "Planifiez votre annonce"
|
1323 |
|
1324 |
-
#: dashboard/publisher/adverts-edit.php:
|
1325 |
msgid ""
|
1326 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1327 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
@@ -1332,36 +1275,36 @@ msgstr ""
|
|
1332 |
"après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
|
1333 |
"6:00)."
|
1334 |
|
1335 |
-
#: dashboard/publisher/adverts-edit.php:
|
1336 |
msgid "Start date"
|
1337 |
msgstr "Date de début"
|
1338 |
|
1339 |
-
#: dashboard/publisher/adverts-edit.php:
|
1340 |
msgid "End date"
|
1341 |
msgstr "Date de fin"
|
1342 |
|
1343 |
-
#: dashboard/publisher/adverts-edit.php:
|
1344 |
msgid "Start time"
|
1345 |
msgstr "Heure de début"
|
1346 |
|
1347 |
-
#: dashboard/publisher/adverts-edit.php:
|
1348 |
msgid "End time"
|
1349 |
msgstr "Heure de fin"
|
1350 |
|
1351 |
-
#: dashboard/publisher/adverts-edit.php:
|
1352 |
msgid "Maximum Clicks"
|
1353 |
msgstr "Clics maximum"
|
1354 |
|
1355 |
-
#: dashboard/publisher/adverts-edit.php:
|
1356 |
-
#: dashboard/publisher/adverts-edit.php:
|
1357 |
msgid "Leave empty or 0 to skip this."
|
1358 |
msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
|
1359 |
|
1360 |
-
#: dashboard/publisher/adverts-edit.php:
|
1361 |
msgid "Maximum Impressions"
|
1362 |
msgstr "Impressions maximales"
|
1363 |
|
1364 |
-
#: dashboard/publisher/adverts-edit.php:
|
1365 |
msgid ""
|
1366 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1367 |
"Pro."
|
@@ -1369,67 +1312,67 @@ msgstr ""
|
|
1369 |
"Créez des horaires multiples et plus avancés pour chaque annonce avec "
|
1370 |
"AdRotate Pro."
|
1371 |
|
1372 |
-
#: dashboard/publisher/adverts-edit.php:
|
1373 |
-
#: dashboard/publisher/groups-edit.php:
|
1374 |
#: dashboard/settings/statistics.php:29
|
1375 |
msgid "Advanced"
|
1376 |
msgstr "Avancé"
|
1377 |
|
1378 |
-
#: dashboard/publisher/adverts-edit.php:
|
1379 |
-
#: dashboard/publisher/adverts-edit.php:
|
1380 |
msgid "Available in AdRotate Pro!"
|
1381 |
msgstr "Disponible dans Adrotate Pro!"
|
1382 |
|
1383 |
-
#: dashboard/publisher/adverts-edit.php:
|
1384 |
msgid "Show to everyone"
|
1385 |
msgstr "Afficher à tout le monde"
|
1386 |
|
1387 |
-
#: dashboard/publisher/adverts-edit.php:
|
1388 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1389 |
msgstr "Désactiver cette option pour cacher l’annonce des visiteurs connectés."
|
1390 |
|
1391 |
-
#: dashboard/publisher/adverts-edit.php:
|
1392 |
-
#: dashboard/publisher/groups-edit.php:
|
1393 |
msgid "Weight"
|
1394 |
msgstr "Importance"
|
1395 |
|
1396 |
-
#: dashboard/publisher/adverts-edit.php:
|
1397 |
msgid "Few impressions"
|
1398 |
msgstr "Peu d’impressions"
|
1399 |
|
1400 |
-
#: dashboard/publisher/adverts-edit.php:
|
1401 |
msgid "Less than average"
|
1402 |
-
msgstr ""
|
1403 |
|
1404 |
-
#: dashboard/publisher/adverts-edit.php:
|
1405 |
msgid "Normal impressions"
|
1406 |
msgstr "Impressions normales"
|
1407 |
|
1408 |
-
#: dashboard/publisher/adverts-edit.php:
|
1409 |
msgid "More than average"
|
1410 |
-
msgstr ""
|
1411 |
|
1412 |
-
#: dashboard/publisher/adverts-edit.php:
|
1413 |
msgid "Many impressions"
|
1414 |
msgstr "Impressions"
|
1415 |
|
1416 |
-
#: dashboard/publisher/adverts-edit.php:
|
1417 |
msgid "Mobile"
|
1418 |
msgstr "Mobile"
|
1419 |
|
1420 |
-
#: dashboard/publisher/adverts-edit.php:
|
1421 |
msgid "Desktops/Laptops"
|
1422 |
msgstr "Ordinateurs de bureau/ordinateurs portables"
|
1423 |
|
1424 |
-
#: dashboard/publisher/adverts-edit.php:
|
1425 |
msgid "Smartphones"
|
1426 |
msgstr "Smartphone"
|
1427 |
|
1428 |
-
#: dashboard/publisher/adverts-edit.php:
|
1429 |
msgid "Tablets"
|
1430 |
msgstr "Tablettes"
|
1431 |
|
1432 |
-
#: dashboard/publisher/adverts-edit.php:
|
1433 |
msgid ""
|
1434 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1435 |
"and 'Operating System' are ignored!"
|
@@ -1437,7 +1380,7 @@ msgstr ""
|
|
1437 |
"Activez également 'Support Mobile' dans le groupe cette annonce va dans ou "
|
1438 |
"'Device' et 'Système d’exploitation' sont ignorés!"
|
1439 |
|
1440 |
-
#: dashboard/publisher/adverts-edit.php:
|
1441 |
msgid ""
|
1442 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1443 |
"Other' for everything else."
|
@@ -1445,31 +1388,31 @@ msgstr ""
|
|
1445 |
"La détection du système d’exploitation ne détecte qu’iOS et Android, "
|
1446 |
"sélectionnez 'Not Mobile/Other' pour tout le reste."
|
1447 |
|
1448 |
-
#: dashboard/publisher/adverts-edit.php:
|
1449 |
msgid "Mobile OS"
|
1450 |
msgstr "OS mobile"
|
1451 |
|
1452 |
-
#: dashboard/publisher/adverts-edit.php:
|
1453 |
msgid "iOS"
|
1454 |
msgstr "iOS"
|
1455 |
|
1456 |
-
#: dashboard/publisher/adverts-edit.php:
|
1457 |
msgid "Android"
|
1458 |
msgstr "Android"
|
1459 |
|
1460 |
-
#: dashboard/publisher/adverts-edit.php:
|
1461 |
msgid "Not mobile/Others"
|
1462 |
msgstr "Pas mobile/Autres"
|
1463 |
|
1464 |
-
#: dashboard/publisher/adverts-edit.php:
|
1465 |
msgid "Auto-delete"
|
1466 |
msgstr "Suppression automatique"
|
1467 |
|
1468 |
-
#: dashboard/publisher/adverts-edit.php:
|
1469 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1470 |
msgstr "Supprimer automatiquement l’annonce 1 jour après son expiration?"
|
1471 |
|
1472 |
-
#: dashboard/publisher/adverts-edit.php:
|
1473 |
msgid ""
|
1474 |
"This is useful for short running campaigns that do not require attention "
|
1475 |
"after they finish."
|
@@ -1477,7 +1420,7 @@ msgstr ""
|
|
1477 |
"Ceci est utile pour les campagnes de courte durée qui ne nécessitent pas "
|
1478 |
"d’attention après leur fin."
|
1479 |
|
1480 |
-
#: dashboard/publisher/adverts-edit.php:
|
1481 |
msgid ""
|
1482 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1483 |
"systems the advert should show on!"
|
@@ -1485,83 +1428,123 @@ msgstr ""
|
|
1485 |
"Avec AdRotate Pro, vous pouvez facilement sélectionner les appareils et les "
|
1486 |
"systèmes d’exploitation mobiles sur lesquels l’annonce doit être exposée !"
|
1487 |
|
1488 |
-
#: dashboard/publisher/adverts-edit.php:
|
1489 |
msgid ""
|
1490 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1491 |
msgstr ""
|
1492 |
"Attribuez l’annonce à un groupe et activez ce groupe pour utiliser Geo "
|
1493 |
"Targeting."
|
1494 |
|
1495 |
-
#: dashboard/publisher/adverts-edit.php:
|
1496 |
-
msgid "
|
1497 |
-
msgstr "
|
1498 |
-
|
1499 |
-
#: dashboard/publisher/adverts-edit.php:408
|
1500 |
-
msgid "Enter cities, metro IDs, States or State ISO codes"
|
1501 |
-
msgstr "Entrez dans les villes, les métros, les États ou les codes ISO d’État"
|
1502 |
|
1503 |
-
#: dashboard/publisher/adverts-edit.php:
|
1504 |
-
msgid "A comma separated list of
|
1505 |
-
msgstr "Une liste
|
1506 |
|
1507 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
1508 |
msgid ""
|
1509 |
-
"AdRotate does not check the validity of names
|
1510 |
-
"
|
1511 |
msgstr ""
|
1512 |
-
"AdRotate ne vérifie pas la validité des noms
|
1513 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1514 |
|
1515 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
1516 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1517 |
msgstr "Ciblez votre audience avec Geo Targeting in AdRotate Pro"
|
1518 |
|
1519 |
-
#: dashboard/publisher/adverts-edit.php:
|
1520 |
msgid "Select Groups"
|
1521 |
msgstr "Choisir groupes"
|
1522 |
|
1523 |
-
#: dashboard/publisher/adverts-edit.php:
|
1524 |
#: dashboard/publisher/groups-main.php:60
|
1525 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1526 |
msgid "Default"
|
1527 |
msgstr "Par défaut"
|
1528 |
|
1529 |
-
#: dashboard/publisher/adverts-edit.php:
|
1530 |
#: dashboard/publisher/groups-main.php:61
|
1531 |
msgid "Dynamic"
|
1532 |
msgstr "Dynamique"
|
1533 |
|
1534 |
-
#: dashboard/publisher/adverts-edit.php:
|
1535 |
#: dashboard/publisher/groups-main.php:61
|
1536 |
msgid "second rotation"
|
1537 |
msgstr "deuxième rotation"
|
1538 |
|
1539 |
-
#: dashboard/publisher/adverts-edit.php:
|
1540 |
#: dashboard/publisher/groups-main.php:62
|
1541 |
msgid "Block"
|
1542 |
msgstr "Bloc"
|
1543 |
|
1544 |
-
#: dashboard/publisher/adverts-edit.php:
|
1545 |
#: dashboard/publisher/groups-main.php:62
|
1546 |
msgid "grid"
|
1547 |
msgstr "grille"
|
1548 |
|
1549 |
-
#: dashboard/publisher/adverts-edit.php:
|
1550 |
-
#: dashboard/publisher/groups-edit.php:
|
1551 |
#: dashboard/publisher/groups-main.php:63
|
1552 |
msgid "Post Injection"
|
1553 |
msgstr "Injection dans l'article"
|
1554 |
|
1555 |
-
#: dashboard/publisher/adverts-edit.php:
|
1556 |
msgid "Geolocation"
|
1557 |
msgstr "Géolocalisation"
|
1558 |
|
1559 |
-
#: dashboard/publisher/adverts-edit.php:
|
1560 |
-
#: dashboard/publisher/groups-edit.php:
|
1561 |
#: dashboard/publisher/groups-main.php:70
|
1562 |
msgid "Mode"
|
1563 |
msgstr "Mode"
|
1564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1565 |
#: dashboard/publisher/adverts-error.php:12
|
1566 |
msgid "Adverts that need attention"
|
1567 |
msgstr "Annonces qui nécessitent une attention"
|
@@ -1625,6 +1608,17 @@ msgstr ""
|
|
1625 |
"de les utiliser. Le générateur AdRotate prendra vos morceaux et essayera de "
|
1626 |
"générer un code d’annonce de travail à partir de lui."
|
1627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1628 |
#: dashboard/publisher/adverts-generator.php:39
|
1629 |
msgid ""
|
1630 |
"If you have a complete and working ad code / ad tag you do not use the "
|
@@ -1680,7 +1674,7 @@ msgid "Viewports"
|
|
1680 |
msgstr "Fenêtres"
|
1681 |
|
1682 |
#: dashboard/publisher/adverts-generator.php:77
|
1683 |
-
#: dashboard/publisher/groups-edit.php:
|
1684 |
#: dashboard/settings/notifications.php:48
|
1685 |
msgid "Available in AdRotate Pro"
|
1686 |
msgstr "Disponible dans Adrotate Pro"
|
@@ -1806,19 +1800,27 @@ msgstr ""
|
|
1806 |
"Certains bots / crawlers les utiliser comme une mesure descriptive pour voir "
|
1807 |
"ce que le code est d’environ."
|
1808 |
|
1809 |
-
#: dashboard/publisher/adverts-generator.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1810 |
msgid "Generate and Configure Advert"
|
1811 |
msgstr "Générer et configurer l’annonce"
|
1812 |
|
1813 |
-
#: dashboard/publisher/adverts-generator.php:
|
1814 |
msgid "Always test your adverts before activating them."
|
1815 |
msgstr "Testez toujours vos annonces avant de les activer."
|
1816 |
|
1817 |
-
#: dashboard/publisher/adverts-generator.php:
|
1818 |
-
msgid "
|
1819 |
-
msgstr "
|
1820 |
|
1821 |
-
#: dashboard/publisher/adverts-generator.php:
|
1822 |
msgid ""
|
1823 |
"While the Code Generator has been tested and works, code generation, as "
|
1824 |
"always, is a interpretation of user input. If you provide the correct bits "
|
@@ -1831,13 +1833,14 @@ msgstr ""
|
|
1831 |
"générée. Si vous laissez les champs vides ou insérez les mauvaises "
|
1832 |
"informations, vous vous retrouvez probablement avec une annonce cassée."
|
1833 |
|
1834 |
-
#: dashboard/publisher/adverts-generator.php:
|
1835 |
-
msgid ""
|
1836 |
-
|
1837 |
-
|
|
|
|
|
1838 |
msgstr ""
|
1839 |
-
"
|
1840 |
-
"générateur de code seront meilleures et plus riches en fonctionnalités."
|
1841 |
|
1842 |
#: dashboard/publisher/adverts-main.php:12
|
1843 |
msgid "Active Adverts"
|
@@ -1860,45 +1863,62 @@ msgstr "Aujourd'hui"
|
|
1860 |
msgid "No adverts created yet!"
|
1861 |
msgstr "Aucune annonces créés encore !"
|
1862 |
|
1863 |
-
#: dashboard/publisher/groups-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1864 |
msgid "New Group"
|
1865 |
msgstr "Nouveau Groupe"
|
1866 |
|
1867 |
-
#: dashboard/publisher/groups-edit.php:
|
1868 |
msgid "Edit Group"
|
1869 |
msgstr "Modifier Groupe"
|
1870 |
|
1871 |
-
#: dashboard/publisher/groups-edit.php:
|
1872 |
msgid "Default - Show one ad at a time"
|
1873 |
msgstr "Par defaut - Montrer une pub"
|
1874 |
|
1875 |
-
#: dashboard/publisher/groups-edit.php:
|
1876 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1877 |
msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
|
1878 |
|
1879 |
-
#: dashboard/publisher/groups-edit.php:
|
1880 |
msgid "Block Mode - Show a block of adverts"
|
1881 |
msgstr "Mode Bloc - Afficher un bloc de annonces"
|
1882 |
|
1883 |
-
#: dashboard/publisher/groups-edit.php:
|
1884 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1885 |
msgstr ""
|
1886 |
"Le mode dynamique nécessite jQuery. Vous pouvez l’activer dans les "
|
1887 |
"paramètres AdRotate."
|
1888 |
|
1889 |
-
#: dashboard/publisher/groups-edit.php:
|
1890 |
msgid "Advert size"
|
1891 |
msgstr "Taille de l'annonce"
|
1892 |
|
1893 |
-
#: dashboard/publisher/groups-edit.php:
|
1894 |
msgid "pixel(s) wide"
|
1895 |
msgstr "largeur en pixels"
|
1896 |
|
1897 |
-
#: dashboard/publisher/groups-edit.php:
|
1898 |
msgid "pixel(s) high."
|
1899 |
msgstr "pixel(s) élevé."
|
1900 |
|
1901 |
-
#: dashboard/publisher/groups-edit.php:
|
1902 |
msgid ""
|
1903 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1904 |
"recommended)."
|
@@ -1906,77 +1926,77 @@ msgstr ""
|
|
1906 |
"Définir la taille maximale des spots en pixels. Taille peut être "
|
1907 |
"« auto » (non recommandé)."
|
1908 |
|
1909 |
-
#: dashboard/publisher/groups-edit.php:
|
1910 |
msgid "Dynamic and Block Mode"
|
1911 |
msgstr "Mode Dynamique et en Bloc"
|
1912 |
|
1913 |
-
#: dashboard/publisher/groups-edit.php:
|
1914 |
msgid "Block size"
|
1915 |
msgstr "Taille de bloc"
|
1916 |
|
1917 |
-
#: dashboard/publisher/groups-edit.php:
|
1918 |
msgid "rows"
|
1919 |
msgstr "lignes"
|
1920 |
|
1921 |
-
#: dashboard/publisher/groups-edit.php:
|
1922 |
msgid "columns"
|
1923 |
msgstr "colonnes"
|
1924 |
|
1925 |
-
#: dashboard/publisher/groups-edit.php:
|
1926 |
msgid "Block Mode"
|
1927 |
msgstr "Mode en Bloc"
|
1928 |
|
1929 |
-
#: dashboard/publisher/groups-edit.php:
|
1930 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1931 |
msgstr ""
|
1932 |
"De plus grands blocs dégraderont les performances de vos sites ! Défaut: 2/2."
|
1933 |
|
1934 |
-
#: dashboard/publisher/groups-edit.php:
|
1935 |
msgid "Automated refresh"
|
1936 |
msgstr "Rafraîchissement automatique"
|
1937 |
|
1938 |
-
#: dashboard/publisher/groups-edit.php:
|
1939 |
msgid "seconds."
|
1940 |
msgstr "secondes."
|
1941 |
|
1942 |
-
#: dashboard/publisher/groups-edit.php:
|
1943 |
-
#: dashboard/publisher/groups-edit.php:
|
1944 |
msgid "Dynamic Mode"
|
1945 |
msgstr "Mode dynamique"
|
1946 |
|
1947 |
-
#: dashboard/publisher/groups-edit.php:
|
1948 |
msgid ""
|
1949 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1950 |
msgstr ""
|
1951 |
"Chargez une nouvelle annonce sans recharger le page après cette intervalle. "
|
1952 |
"La valeur par défaut est : 6."
|
1953 |
|
1954 |
-
#: dashboard/publisher/groups-edit.php:
|
1955 |
msgid "Repeat impressions"
|
1956 |
msgstr "Impressions répétées"
|
1957 |
|
1958 |
-
#: dashboard/publisher/groups-edit.php:
|
1959 |
msgid "Count impressions for every cycle of adverts?"
|
1960 |
msgstr "Comptez des impressions pour chaque cycle de annonces?"
|
1961 |
|
1962 |
-
#: dashboard/publisher/groups-edit.php:
|
1963 |
msgid ""
|
1964 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1965 |
msgstr ""
|
1966 |
"Décochez cette option pour ne compter les impressions que pour le premier "
|
1967 |
"cycle de annonces."
|
1968 |
|
1969 |
-
#: dashboard/publisher/groups-edit.php:
|
1970 |
-
#: dashboard/publisher/groups-edit.php:
|
1971 |
msgid "Get access to all features in AdRotate Pro."
|
1972 |
msgstr "Accédez à toutes les fonctionnalités d’AdRotate Pro."
|
1973 |
|
1974 |
-
#: dashboard/publisher/groups-edit.php:
|
1975 |
msgid "Upgrade today"
|
1976 |
msgstr "Mettez à niveau dès aujourd'hui"
|
1977 |
|
1978 |
-
#: dashboard/publisher/groups-edit.php:
|
1979 |
-
#: dashboard/publisher/groups-edit.php:
|
1980 |
msgid ""
|
1981 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1982 |
"Adverts\" and enter ID"
|
@@ -1984,57 +2004,57 @@ msgstr ""
|
|
1984 |
"Faites glisser le widget AdRotate sur la barre latérale dans lequel vous le "
|
1985 |
"souhaitez, sélectionnez « Groupe d’annonces » et saisissez l’ID"
|
1986 |
|
1987 |
-
#: dashboard/publisher/groups-edit.php:
|
1988 |
-
#: dashboard/publisher/groups-edit.php:
|
1989 |
-
#: dashboard/publisher/groups-edit.php:
|
1990 |
msgid "Save Group"
|
1991 |
msgstr "Sauvegarder groupe"
|
1992 |
|
1993 |
-
#: dashboard/publisher/groups-edit.php:
|
1994 |
msgid "Advert Margin"
|
1995 |
msgstr "Marges autour de la pub"
|
1996 |
|
1997 |
-
#: dashboard/publisher/groups-edit.php:
|
1998 |
msgid "pixel(s)"
|
1999 |
msgstr "pixel(s)"
|
2000 |
|
2001 |
-
#: dashboard/publisher/groups-edit.php:
|
2002 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2003 |
msgstr ""
|
2004 |
"Une marge transparente en dehors de la annonce en pixels. Valeur par "
|
2005 |
"défaut : 0."
|
2006 |
|
2007 |
-
#: dashboard/publisher/groups-edit.php:
|
2008 |
msgid "Set to 0 to disable."
|
2009 |
msgstr "Mettre 0 pour désactiver."
|
2010 |
|
2011 |
-
#: dashboard/publisher/groups-edit.php:
|
2012 |
msgid "Margins are automatically disabled for blocks where required."
|
2013 |
msgstr ""
|
2014 |
"Marges sont automatiquement désactivées pour les blocs lorsqu’elle est "
|
2015 |
"exigée."
|
2016 |
|
2017 |
-
#: dashboard/publisher/groups-edit.php:
|
2018 |
msgid "Align the group"
|
2019 |
msgstr "Aligner le groupe"
|
2020 |
|
2021 |
-
#: dashboard/publisher/groups-edit.php:
|
2022 |
msgid "None (Default)"
|
2023 |
msgstr "Aucun (par défaut)"
|
2024 |
|
2025 |
-
#: dashboard/publisher/groups-edit.php:
|
2026 |
msgid "Left"
|
2027 |
msgstr "Gauche"
|
2028 |
|
2029 |
-
#: dashboard/publisher/groups-edit.php:
|
2030 |
msgid "Right"
|
2031 |
msgstr "Droite"
|
2032 |
|
2033 |
-
#: dashboard/publisher/groups-edit.php:
|
2034 |
msgid "Center"
|
2035 |
msgstr "Centre"
|
2036 |
|
2037 |
-
#: dashboard/publisher/groups-edit.php:
|
2038 |
msgid ""
|
2039 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2040 |
"setting. Not every theme supports this feature."
|
@@ -2043,32 +2063,32 @@ msgstr ""
|
|
2043 |
"peut altérer votre paramètre de marge. Non chaque thème prend en charge "
|
2044 |
"cette fonctionnalité."
|
2045 |
|
2046 |
-
#: dashboard/publisher/groups-edit.php:
|
2047 |
msgid "Enable Geo Targeting for this group."
|
2048 |
msgstr "Activez le ciblage Geo pour ce groupe."
|
2049 |
|
2050 |
-
#: dashboard/publisher/groups-edit.php:
|
2051 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2052 |
msgstr ""
|
2053 |
"N’oubliez pas de dire aux annonces pour les zones qu’ils doivent montrer."
|
2054 |
|
2055 |
-
#: dashboard/publisher/groups-edit.php:
|
2056 |
msgid "Mobile Support"
|
2057 |
msgstr "Support mobile"
|
2058 |
|
2059 |
-
#: dashboard/publisher/groups-edit.php:
|
2060 |
msgid "Enable mobile support for this group."
|
2061 |
msgstr "Activer le support mobile de ce groupe."
|
2062 |
|
2063 |
-
#: dashboard/publisher/groups-edit.php:
|
2064 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2065 |
msgstr "N’oubliez pas de mettre au moins une annonce mobile dans ce groupe."
|
2066 |
|
2067 |
-
#: dashboard/publisher/groups-edit.php:
|
2068 |
msgid "Fallback Group"
|
2069 |
msgstr "Groupe de secours"
|
2070 |
|
2071 |
-
#: dashboard/publisher/groups-edit.php:
|
2072 |
msgid ""
|
2073 |
"Select another group to fall back on when all adverts are expired, not in "
|
2074 |
"the visitors geographic area or are otherwise unavailable."
|
@@ -2077,135 +2097,135 @@ msgstr ""
|
|
2077 |
"expirés, pas dans la zone géographique de visiteurs ou sont autrement "
|
2078 |
"indisponibles."
|
2079 |
|
2080 |
-
#: dashboard/publisher/groups-edit.php:
|
2081 |
-
#: dashboard/publisher/groups-edit.php:
|
2082 |
#: dashboard/settings/geotargeting.php:24
|
2083 |
msgid "Disabled"
|
2084 |
msgstr "Désactivé"
|
2085 |
|
2086 |
-
#: dashboard/publisher/groups-edit.php:
|
2087 |
-
#: dashboard/publisher/groups-edit.php:
|
2088 |
msgid "Widget (Pro only)"
|
2089 |
msgstr "Widget (Pro seulement)"
|
2090 |
|
2091 |
-
#: dashboard/publisher/groups-edit.php:
|
2092 |
-
#: dashboard/publisher/groups-edit.php:
|
2093 |
msgid "Before content"
|
2094 |
msgstr "Avant le contenu"
|
2095 |
|
2096 |
-
#: dashboard/publisher/groups-edit.php:
|
2097 |
-
#: dashboard/publisher/groups-edit.php:
|
2098 |
msgid "After content"
|
2099 |
msgstr "Après le contenu"
|
2100 |
|
2101 |
-
#: dashboard/publisher/groups-edit.php:
|
2102 |
-
#: dashboard/publisher/groups-edit.php:
|
2103 |
msgid "Before and after content"
|
2104 |
msgstr "Avant et après le contenu"
|
2105 |
|
2106 |
-
#: dashboard/publisher/groups-edit.php:
|
2107 |
-
#: dashboard/publisher/groups-edit.php:
|
2108 |
msgid "Inside the content..."
|
2109 |
msgstr "À l’intérieur du contenu..."
|
2110 |
|
2111 |
-
#: dashboard/publisher/groups-edit.php:
|
2112 |
-
#: dashboard/publisher/groups-edit.php:
|
2113 |
msgid "after the middle paragraph"
|
2114 |
msgstr "après le paragraphe du milieu"
|
2115 |
|
2116 |
-
#: dashboard/publisher/groups-edit.php:
|
2117 |
-
#: dashboard/publisher/groups-edit.php:
|
2118 |
msgid "after the 1st paragraph"
|
2119 |
msgstr "après l’alinéa 1er"
|
2120 |
|
2121 |
-
#: dashboard/publisher/groups-edit.php:
|
2122 |
-
#: dashboard/publisher/groups-edit.php:
|
2123 |
msgid "after the 2nd paragraph"
|
2124 |
msgstr "après le 2e paragraphe"
|
2125 |
|
2126 |
-
#: dashboard/publisher/groups-edit.php:
|
2127 |
-
#: dashboard/publisher/groups-edit.php:
|
2128 |
msgid "after the 3rd paragraph"
|
2129 |
msgstr "après le 3e paragraphe"
|
2130 |
|
2131 |
-
#: dashboard/publisher/groups-edit.php:
|
2132 |
-
#: dashboard/publisher/groups-edit.php:
|
2133 |
msgid "after the 4th paragraph"
|
2134 |
msgstr "après le 4e paragraphe"
|
2135 |
|
2136 |
-
#: dashboard/publisher/groups-edit.php:
|
2137 |
-
#: dashboard/publisher/groups-edit.php:
|
2138 |
msgid "after the 5th paragraph"
|
2139 |
msgstr "après le 5e paragraphe"
|
2140 |
|
2141 |
-
#: dashboard/publisher/groups-edit.php:
|
2142 |
-
#: dashboard/publisher/groups-edit.php:
|
2143 |
msgid "after the 6th paragraph"
|
2144 |
msgstr "après le 6e paragraphe"
|
2145 |
|
2146 |
-
#: dashboard/publisher/groups-edit.php:
|
2147 |
-
#: dashboard/publisher/groups-edit.php:
|
2148 |
msgid "after the 7th paragraph"
|
2149 |
msgstr "après le 7e paragraphe"
|
2150 |
|
2151 |
-
#: dashboard/publisher/groups-edit.php:
|
2152 |
-
#: dashboard/publisher/groups-edit.php:
|
2153 |
msgid "after the 8th paragraph"
|
2154 |
msgstr "après le 8e paragraphe"
|
2155 |
|
2156 |
-
#: dashboard/publisher/groups-edit.php:
|
2157 |
msgid "Page Injection"
|
2158 |
msgstr "Page Injection"
|
2159 |
|
2160 |
-
#: dashboard/publisher/groups-edit.php:
|
2161 |
msgid "Wrapper code"
|
2162 |
msgstr "Code enveloppant"
|
2163 |
|
2164 |
-
#: dashboard/publisher/groups-edit.php:
|
2165 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2166 |
msgstr ""
|
2167 |
"Enveloppe autour de chaque annonce. HTML/JavaScript autorisé, utiliser avec "
|
2168 |
"soin!"
|
2169 |
|
2170 |
-
#: dashboard/publisher/groups-edit.php:
|
2171 |
msgid "Before advert"
|
2172 |
msgstr "Avant l’annonce"
|
2173 |
|
2174 |
-
#: dashboard/publisher/groups-edit.php:
|
2175 |
-
#: dashboard/publisher/groups-edit.php:
|
2176 |
msgid "Example:"
|
2177 |
msgstr "Exemple :"
|
2178 |
|
2179 |
-
#: dashboard/publisher/groups-edit.php:
|
2180 |
msgid "Options:"
|
2181 |
msgstr "Options :"
|
2182 |
|
2183 |
-
#: dashboard/publisher/groups-edit.php:
|
2184 |
msgid "After advert"
|
2185 |
msgstr "Après l’annonce"
|
2186 |
|
2187 |
-
#: dashboard/publisher/groups-edit.php:
|
2188 |
msgid "Select adverts"
|
2189 |
msgstr "Sélectionnez les annonces"
|
2190 |
|
2191 |
-
#: dashboard/publisher/groups-edit.php:
|
2192 |
msgid "Visible until"
|
2193 |
msgstr "Visible jusqu'à"
|
2194 |
|
2195 |
-
#: dashboard/publisher/groups-edit.php:
|
2196 |
msgid "No adverts created!"
|
2197 |
msgstr "Aucune annonces créés !"
|
2198 |
|
2199 |
-
#: dashboard/publisher/groups-edit.php:
|
2200 |
msgid "Configuration errors."
|
2201 |
msgstr "Erreurs de configuration."
|
2202 |
|
2203 |
-
#: dashboard/publisher/groups-edit.php:
|
2204 |
#: dashboard/publisher/schedules-main.php:87
|
2205 |
msgid "Expires soon."
|
2206 |
msgstr "Expire bientôt."
|
2207 |
|
2208 |
-
#: dashboard/publisher/groups-edit.php:
|
2209 |
#: dashboard/publisher/schedules-main.php:88
|
2210 |
msgid "Has expired."
|
2211 |
msgstr "A expiré."
|
@@ -2291,7 +2311,7 @@ msgstr ""
|
|
2291 |
"Assurez-vous que les images de la bannière ne sont pas utilisés par les "
|
2292 |
"annonces lorsque vous les supprimez !"
|
2293 |
|
2294 |
-
#: dashboard/publisher/media.php:73
|
2295 |
#: dashboard/publisher/statistics-advert.php:109
|
2296 |
#: dashboard/publisher/statistics-group.php:113
|
2297 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -2311,6 +2331,10 @@ msgstr ""
|
|
2311 |
"horaires peuvent être actifs certains jours de la semaine ou à certaines "
|
2312 |
"heures de la journée."
|
2313 |
|
|
|
|
|
|
|
|
|
2314 |
#: dashboard/publisher/schedules-main.php:36
|
2315 |
msgid "Max Shown"
|
2316 |
msgstr "Affichage maximum"
|
@@ -2696,9 +2720,9 @@ msgid "Which Geo Service"
|
|
2696 |
msgstr "Quel service Geo"
|
2697 |
|
2698 |
#: dashboard/settings/geotargeting.php:32
|
2699 |
-
msgid "
|
2700 |
msgstr ""
|
2701 |
-
"
|
2702 |
"GeoLite2 de MaxMind!"
|
2703 |
|
2704 |
#: dashboard/settings/geotargeting.php:33
|
@@ -2721,6 +2745,11 @@ msgstr "Évolutivité:"
|
|
2721 |
msgid "Suitable for small to medium sized websites."
|
2722 |
msgstr "Convient aux sites Web de petite et moyenne taille."
|
2723 |
|
|
|
|
|
|
|
|
|
|
|
2724 |
#: dashboard/settings/geotargeting.php:36
|
2725 |
msgid "10000 free lookups per month, requires account."
|
2726 |
msgstr "10000 recherches gratuites par mois, nécessite un compte."
|
@@ -3412,36 +3441,6 @@ msgstr ""
|
|
3412 |
"Ce nombre ne peut pas être vide, être inférieure à 60 ou dépasser 86400 (24 "
|
3413 |
"heures)."
|
3414 |
|
3415 |
-
#: dashboard/support.php:25
|
3416 |
-
msgid "Support Forums"
|
3417 |
-
msgstr "Forums de support"
|
3418 |
-
|
3419 |
-
#: dashboard/support.php:27
|
3420 |
-
msgid ""
|
3421 |
-
"When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3422 |
-
"Chances are your question has already been asked and answered!"
|
3423 |
-
msgstr ""
|
3424 |
-
"Lorsque vous êtes coincé avec AdRotate ou AdRotate Pro, consultez d’abord "
|
3425 |
-
"les forums. Il y a de fortes chances que votre question ait déjà été posée "
|
3426 |
-
"et répondue!"
|
3427 |
-
|
3428 |
-
#: dashboard/support.php:27
|
3429 |
-
msgid ""
|
3430 |
-
"Next to the forum there are many manuals and guides available for almost "
|
3431 |
-
"every function and feature in the plugin."
|
3432 |
-
msgstr ""
|
3433 |
-
"À côté du forum il ya beaucoup de manuels et de guides disponibles pour "
|
3434 |
-
"presque toutes les fonctions et fonctionnalités dans le plugin."
|
3435 |
-
|
3436 |
-
#: dashboard/support.php:27
|
3437 |
-
msgid "Take a look at the AdRotate Manuals"
|
3438 |
-
msgstr "Jetez un oeil aux manuels adRotate"
|
3439 |
-
|
3440 |
-
#: dashboard/support.php:29 dashboard/support.php:30 dashboard/support.php:31
|
3441 |
-
#: dashboard/support.php:32 dashboard/support.php:33 dashboard/support.php:34
|
3442 |
-
msgid "View topics"
|
3443 |
-
msgstr "Afficher les sujets"
|
3444 |
-
|
3445 |
#: dashboard/support.php:83
|
3446 |
msgid "Premium Support available in AdRotate Pro"
|
3447 |
msgstr "Support Premium disponible en AdRotate Pro"
|
@@ -3508,6 +3507,101 @@ msgstr "Aide"
|
|
3508 |
msgid "Premium Support is available in AdRotate Pro!"
|
3509 |
msgstr "Premium Support est disponible dans AdRotate Pro!"
|
3510 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3511 |
#~ msgid "[AdRotate] CSV Report!"
|
3512 |
#~ msgstr "[AdRotate] Rapport CSV!"
|
3513 |
|
@@ -4566,9 +4660,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
4566 |
#~ "base de données séparée qui peut augmenter la vitesse globale de votre "
|
4567 |
#~ "site."
|
4568 |
|
4569 |
-
#~ msgid "Caution:"
|
4570 |
-
#~ msgstr "Attention :"
|
4571 |
-
|
4572 |
#~ msgid ""
|
4573 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
4574 |
#~ "some cases a lot of data has to be moved. Not every hosting provider "
|
@@ -5010,9 +5101,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
5010 |
#~ "problème. Cependant, la plupart des gens n’auront pas besoin de ce plugin "
|
5011 |
#~ "supplémentaire!"
|
5012 |
|
5013 |
-
#~ msgid "More info"
|
5014 |
-
#~ msgstr "En savoir plus"
|
5015 |
-
|
5016 |
#, fuzzy
|
5017 |
#~ msgid "Lookups remaining"
|
5018 |
#~ msgstr "Les examens restants"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-05-18 14:09-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-05-18 14:11-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
+
"below. Do not forget to check all settings and schedule it."
|
64 |
msgstr ""
|
65 |
"Annonce HTML générée et placée dans le champ AdCode. Configurez votre "
|
66 |
+
"annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
|
67 |
+
"planifier."
|
68 |
|
69 |
#: adrotate-functions.php:737
|
70 |
msgid "Settings saved"
|
117 |
msgstr "Aucune annonce trouvée."
|
118 |
|
119 |
#: adrotate-functions.php:782
|
120 |
+
msgid ""
|
121 |
+
"The advert hash is not usable or is missing required data. Please copy the "
|
122 |
+
"hash correctly and try again."
|
123 |
+
msgstr ""
|
124 |
+
"Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
|
125 |
+
"S’il vous plaît copier le hachage correctement et essayer à nouveau."
|
126 |
+
|
127 |
+
#: adrotate-functions.php:786
|
128 |
+
msgid ""
|
129 |
+
"The advert hash can not be used on the same site as it originated from or is "
|
130 |
+
"not a valid hash for importing."
|
131 |
+
msgstr ""
|
132 |
+
"Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
|
133 |
+
"provient ou n’est pas un hachage valide pour l’importation."
|
134 |
+
|
135 |
+
#: adrotate-functions.php:790
|
136 |
msgid "Unexpected error"
|
137 |
msgstr "Erreur inattendue"
|
138 |
|
139 |
+
#: adrotate-manage-publisher.php:782
|
140 |
msgid "AdRotate Advertiser"
|
141 |
msgstr "AdRotate annonceur"
|
142 |
|
284 |
|
285 |
#: adrotate-output.php:652
|
286 |
msgid ""
|
287 |
+
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
288 |
+
"can delete this plugin after AdRotate Pro is activated."
|
289 |
msgstr ""
|
290 |
+
"Vous avez installé AdRotate Professional. S’il vous plaît passer à AdRotate "
|
291 |
+
"Pro! Vous pouvez supprimer ce plugin après L’activation d’AdRotate Pro."
|
292 |
|
293 |
#: adrotate-output.php:652
|
294 |
+
msgid "Switch plugins"
|
295 |
+
msgstr ""
|
296 |
|
297 |
#: adrotate-output.php:655
|
298 |
msgid ""
|
337 |
msgid "Help AdRotate Grow"
|
338 |
msgstr "AdRotate Pro"
|
339 |
|
340 |
+
#: adrotate-output.php:835 adrotate.php:150
|
341 |
msgid "AdRotate Professional"
|
342 |
msgstr "AdRotate professionel"
|
343 |
|
494 |
msgid "Fill in the ID of the type you want to display!"
|
495 |
msgstr "Insérez l'identifiant du type que vous voulez afficher!"
|
496 |
|
497 |
+
#: adrotate.php:103
|
498 |
msgid "General Info"
|
499 |
msgstr "Informations générales"
|
500 |
|
501 |
+
#: adrotate.php:104
|
502 |
msgid "AdRotate Pro"
|
503 |
msgstr "AdRotate Pro"
|
504 |
|
505 |
+
#: adrotate.php:105
|
506 |
msgid "Manage Adverts"
|
507 |
msgstr "Gérer Annonces"
|
508 |
|
509 |
+
#: adrotate.php:106 dashboard/publisher/groups-main.php:12
|
510 |
msgid "Manage Groups"
|
511 |
msgstr "Gérer les groupes"
|
512 |
|
513 |
+
#: adrotate.php:107 dashboard/publisher/schedules-main.php:12
|
514 |
msgid "Manage Schedules"
|
515 |
msgstr "Gérer les horaires"
|
516 |
|
517 |
+
#: adrotate.php:108 adrotate.php:388 adrotate.php:505
|
518 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
519 |
#: dashboard/publisher/statistics-main.php:23
|
520 |
#: dashboard/settings/statistics.php:17
|
521 |
msgid "Statistics"
|
522 |
msgstr "Statistiques"
|
523 |
|
524 |
+
#: adrotate.php:109
|
525 |
msgid "Manage Media"
|
526 |
msgstr "Gérer les médias"
|
527 |
|
528 |
+
#: adrotate.php:110 adrotate.php:469
|
529 |
msgid "Support"
|
530 |
msgstr "Support"
|
531 |
|
532 |
+
#: adrotate.php:111
|
533 |
msgid "Settings"
|
534 |
msgstr "Paramètres"
|
535 |
|
536 |
+
#: adrotate.php:132
|
537 |
msgid "AdRotate Info"
|
538 |
msgstr "Informations sur Adrotate"
|
539 |
|
540 |
+
#: adrotate.php:190
|
541 |
msgid "Advert Management"
|
542 |
msgstr "Gestion de l’annonce"
|
543 |
|
544 |
+
#: adrotate.php:250 adrotate.php:318
|
545 |
msgid "Manage"
|
546 |
msgstr "Gérer"
|
547 |
|
548 |
+
#: adrotate.php:251
|
549 |
msgid "Generator"
|
550 |
msgstr "Générateur"
|
551 |
|
552 |
+
#: adrotate.php:252 adrotate.php:319
|
553 |
msgid "Add New"
|
554 |
msgstr "Ajouter"
|
555 |
|
556 |
+
#: adrotate.php:312
|
557 |
msgid "Group Management"
|
558 |
msgstr "Gérer les groupes"
|
559 |
|
560 |
+
#: adrotate.php:349
|
561 |
msgid "Schedules"
|
562 |
msgstr "Planifications"
|
563 |
|
564 |
+
#: adrotate.php:430
|
565 |
msgid "Media and Assets"
|
566 |
msgstr "Médias et actifs"
|
567 |
|
568 |
+
#: adrotate.php:434
|
569 |
msgid ""
|
570 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
571 |
"if you have HTML5 adverts containing multiple files."
|
574 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
575 |
"fichiers."
|
576 |
|
577 |
+
#: adrotate.php:434
|
578 |
msgid "Get more features"
|
579 |
msgstr "Obtenez plus de fonctionnalités"
|
580 |
|
581 |
+
#: adrotate.php:434
|
582 |
msgid "Get AdRotate Pro"
|
583 |
msgstr "Obtenez AdRotate Pro"
|
584 |
|
594 |
msgid "Notifications"
|
595 |
msgstr "Notifications"
|
596 |
|
597 |
+
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:345
|
598 |
+
#: dashboard/publisher/groups-edit.php:205
|
599 |
#: dashboard/settings/advertisers.php:38
|
600 |
msgid "Geo Targeting"
|
601 |
msgstr "Ciblage géo"
|
765 |
msgid "Adverts that need you"
|
766 |
msgstr "Annonces qui ont besoin de votre attention"
|
767 |
|
768 |
+
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:474
|
769 |
#: dashboard/publisher/groups-main.php:34
|
770 |
#: dashboard/publisher/schedules-main.php:34
|
771 |
#: dashboard/publisher/statistics-main.php:35
|
784 |
msgid "Have errors"
|
785 |
msgstr "Il y a des erreurs"
|
786 |
|
787 |
+
#: dashboard/info.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
788 |
msgid "Buy AdRotate Professional"
|
789 |
msgstr "Achetez AdRotate Professionel"
|
790 |
|
791 |
+
#: dashboard/info.php:111
|
792 |
msgid ""
|
793 |
"AdRotate Professional has a lot more functions for even better advertising "
|
794 |
"management. Check out the feature comparison tab on any of the product pages "
|
799 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
800 |
"vous!"
|
801 |
|
802 |
+
#: dashboard/info.php:113
|
803 |
msgid "Single License"
|
804 |
msgstr "Licence unique"
|
805 |
|
806 |
+
#: dashboard/info.php:113
|
807 |
msgid "Use on ONE WordPress installation."
|
808 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
809 |
|
810 |
+
#: dashboard/info.php:113 dashboard/info.php:114 dashboard/info.php:115
|
811 |
+
#: dashboard/info.php:116
|
812 |
msgid "Buy now"
|
813 |
msgstr "Acheter maintenant"
|
814 |
|
815 |
+
#: dashboard/info.php:114
|
816 |
msgid "Duo License"
|
817 |
msgstr "Licence Duo"
|
818 |
|
819 |
+
#: dashboard/info.php:114
|
820 |
msgid "Use on TWO WordPress installations."
|
821 |
msgstr "Utilisation sur DEUX installations WordPress."
|
822 |
|
823 |
+
#: dashboard/info.php:115
|
824 |
msgid "Multi License"
|
825 |
msgstr "Licence Multiple"
|
826 |
|
827 |
+
#: dashboard/info.php:115
|
828 |
msgid "Use on up to FIVE WordPress installations."
|
829 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
830 |
|
831 |
+
#: dashboard/info.php:116
|
832 |
msgid "Developer License"
|
833 |
msgstr "Licence de Developpeur"
|
834 |
|
835 |
+
#: dashboard/info.php:116
|
836 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
837 |
msgstr ""
|
838 |
"Utiliser sur jusqu’à une installation et/ou réseaux WORDPress de HUNDRED."
|
839 |
|
840 |
+
#: dashboard/info.php:127
|
841 |
msgid "Advertising Partners & Affiliates"
|
842 |
msgstr "Partenaires annonces et affiliés"
|
843 |
|
844 |
+
#: dashboard/info.php:128
|
845 |
msgid ""
|
846 |
"A selection of quality advertiser networks and useful products. If you need "
|
847 |
"adverts or just want more or more diverse adverts. Check out these great "
|
851 |
"vous avez besoin de annonces ou tout simplement voulez des annonces plus ou "
|
852 |
"plus diversifiées. Découvrez ces excellentes options!"
|
853 |
|
854 |
+
#: dashboard/info.php:128
|
855 |
+
msgid "Check out these and other preferred products or providers on my"
|
856 |
+
msgstr "Découvrez ces produits ou fournisseurs préférés sur mon"
|
857 |
+
|
858 |
+
#: dashboard/info.php:128
|
859 |
+
msgid "recommended products page"
|
860 |
+
msgstr "page de produits recommandés"
|
861 |
|
862 |
#: dashboard/publisher/adverts-disabled.php:15
|
863 |
msgid "Disabled Adverts"
|
897 |
msgstr "Aller"
|
898 |
|
899 |
#: dashboard/publisher/adverts-disabled.php:35
|
900 |
+
#: dashboard/publisher/adverts-edit.php:472
|
901 |
#: dashboard/publisher/adverts-error.php:39
|
902 |
#: dashboard/publisher/adverts-main.php:39
|
903 |
+
#: dashboard/publisher/groups-edit.php:359
|
904 |
#: dashboard/publisher/groups-main.php:32
|
905 |
#: dashboard/publisher/schedules-main.php:31
|
906 |
msgid "ID"
|
915 |
|
916 |
#: dashboard/publisher/adverts-disabled.php:37
|
917 |
#: dashboard/publisher/adverts-edit.php:112
|
918 |
+
#: dashboard/publisher/adverts-edit.php:473
|
919 |
#: dashboard/publisher/adverts-error.php:40
|
920 |
#: dashboard/publisher/adverts-main.php:41
|
921 |
+
#: dashboard/publisher/groups-edit.php:65
|
922 |
+
#: dashboard/publisher/groups-edit.php:360
|
923 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
924 |
#: dashboard/publisher/schedules-main.php:33
|
925 |
msgid "Name"
|
927 |
|
928 |
#: dashboard/publisher/adverts-disabled.php:39
|
929 |
#: dashboard/publisher/adverts-main.php:43
|
930 |
+
#: dashboard/publisher/groups-edit.php:364
|
931 |
#: dashboard/publisher/groups-main.php:36
|
932 |
msgid "Shown"
|
933 |
msgstr "Montré"
|
934 |
|
935 |
#: dashboard/publisher/adverts-disabled.php:40
|
936 |
#: dashboard/publisher/adverts-main.php:45
|
937 |
+
#: dashboard/publisher/groups-edit.php:365
|
938 |
#: dashboard/publisher/groups-main.php:38
|
939 |
#: dashboard/publisher/statistics-advert.php:52
|
940 |
#: dashboard/publisher/statistics-advert.php:58
|
1183 |
"annonces ne sont pas toujours pris en charge."
|
1184 |
|
1185 |
#: dashboard/publisher/adverts-edit.php:190
|
1186 |
+
msgid "Enabled, this ad will be visible"
|
1187 |
+
msgstr "Activée, cette annonce sera visible"
|
1188 |
|
1189 |
#: dashboard/publisher/adverts-edit.php:191
|
1190 |
+
msgid "Disabled, do not show this advert anywhere"
|
1191 |
msgstr "Non, cette annonce ne sera pas utilisée"
|
1192 |
|
1193 |
#: dashboard/publisher/adverts-edit.php:198
|
|
|
|
|
1194 |
msgid "Get more features with AdRotate Pro."
|
1195 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
|
1196 |
|
1197 |
#: dashboard/publisher/adverts-edit.php:198
|
1198 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1199 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1200 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1201 |
+
#: dashboard/publisher/groups-edit.php:228 dashboard/publisher/media.php:73
|
|
|
|
|
|
|
1202 |
#: dashboard/publisher/statistics-advert.php:109
|
1203 |
#: dashboard/publisher/statistics-group.php:113
|
1204 |
#: dashboard/publisher/statistics-main.php:83
|
1206 |
msgstr "Mettre à jour maintenant"
|
1207 |
|
1208 |
#: dashboard/publisher/adverts-edit.php:201
|
1209 |
+
#: dashboard/publisher/adverts-edit.php:264
|
1210 |
+
#: dashboard/publisher/adverts-edit.php:462
|
1211 |
+
#: dashboard/publisher/adverts-edit.php:505
|
1212 |
msgid "Save Advert"
|
1213 |
msgstr "Sauvegarder l’annonce"
|
1214 |
|
1215 |
#: dashboard/publisher/adverts-edit.php:202
|
1216 |
+
#: dashboard/publisher/adverts-edit.php:265
|
1217 |
+
#: dashboard/publisher/adverts-edit.php:463
|
1218 |
+
#: dashboard/publisher/adverts-edit.php:506
|
1219 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1220 |
+
#: dashboard/publisher/groups-edit.php:175
|
1221 |
+
#: dashboard/publisher/groups-edit.php:329
|
1222 |
+
#: dashboard/publisher/groups-edit.php:423
|
1223 |
msgid "Cancel"
|
1224 |
msgstr "Annuller"
|
1225 |
|
1226 |
#: dashboard/publisher/adverts-edit.php:205
|
1227 |
+
#: dashboard/publisher/adverts-edit.php:445
|
1228 |
+
#: dashboard/publisher/groups-edit.php:157
|
1229 |
+
#: dashboard/publisher/groups-edit.php:311
|
1230 |
msgid "Usage"
|
1231 |
msgstr "Usage"
|
1232 |
|
1233 |
#: dashboard/publisher/adverts-edit.php:209
|
1234 |
+
#: dashboard/publisher/adverts-edit.php:449
|
1235 |
+
#: dashboard/publisher/groups-edit.php:161
|
1236 |
+
#: dashboard/publisher/groups-edit.php:315
|
1237 |
msgid "Widget"
|
1238 |
msgstr "Widget"
|
1239 |
|
1240 |
#: dashboard/publisher/adverts-edit.php:210
|
1241 |
+
#: dashboard/publisher/adverts-edit.php:450
|
1242 |
msgid ""
|
1243 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1244 |
"and select the advert or the group the advert is in."
|
1247 |
"l’annonce, puis sélectionnez l’annonce ou le groupe l’annonce est en."
|
1248 |
|
1249 |
#: dashboard/publisher/adverts-edit.php:213
|
1250 |
+
#: dashboard/publisher/adverts-edit.php:453
|
1251 |
+
#: dashboard/publisher/groups-edit.php:165
|
1252 |
+
#: dashboard/publisher/groups-edit.php:319
|
1253 |
msgid "In a post or page"
|
1254 |
msgstr "Dans un message ou une page"
|
1255 |
|
1256 |
#: dashboard/publisher/adverts-edit.php:215
|
1257 |
+
#: dashboard/publisher/adverts-edit.php:455
|
1258 |
+
#: dashboard/publisher/groups-edit.php:167
|
1259 |
+
#: dashboard/publisher/groups-edit.php:321
|
1260 |
msgid "Directly in a theme"
|
1261 |
msgstr "Directement dans un thème"
|
1262 |
|
1263 |
#: dashboard/publisher/adverts-edit.php:221
|
|
|
|
|
|
|
|
|
1264 |
msgid "Schedule your advert"
|
1265 |
msgstr "Planifiez votre annonce"
|
1266 |
|
1267 |
+
#: dashboard/publisher/adverts-edit.php:222
|
1268 |
msgid ""
|
1269 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1270 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1275 |
"après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
|
1276 |
"6:00)."
|
1277 |
|
1278 |
+
#: dashboard/publisher/adverts-edit.php:226
|
1279 |
msgid "Start date"
|
1280 |
msgstr "Date de début"
|
1281 |
|
1282 |
+
#: dashboard/publisher/adverts-edit.php:230
|
1283 |
msgid "End date"
|
1284 |
msgstr "Date de fin"
|
1285 |
|
1286 |
+
#: dashboard/publisher/adverts-edit.php:236
|
1287 |
msgid "Start time"
|
1288 |
msgstr "Heure de début"
|
1289 |
|
1290 |
+
#: dashboard/publisher/adverts-edit.php:243
|
1291 |
msgid "End time"
|
1292 |
msgstr "Heure de fin"
|
1293 |
|
1294 |
+
#: dashboard/publisher/adverts-edit.php:253
|
1295 |
msgid "Maximum Clicks"
|
1296 |
msgstr "Clics maximum"
|
1297 |
|
1298 |
+
#: dashboard/publisher/adverts-edit.php:254
|
1299 |
+
#: dashboard/publisher/adverts-edit.php:256
|
1300 |
msgid "Leave empty or 0 to skip this."
|
1301 |
msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
|
1302 |
|
1303 |
+
#: dashboard/publisher/adverts-edit.php:255
|
1304 |
msgid "Maximum Impressions"
|
1305 |
msgstr "Impressions maximales"
|
1306 |
|
1307 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1308 |
msgid ""
|
1309 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1310 |
"Pro."
|
1312 |
"Créez des horaires multiples et plus avancés pour chaque annonce avec "
|
1313 |
"AdRotate Pro."
|
1314 |
|
1315 |
+
#: dashboard/publisher/adverts-edit.php:268
|
1316 |
+
#: dashboard/publisher/groups-edit.php:178 dashboard/settings/statistics.php:27
|
1317 |
#: dashboard/settings/statistics.php:29
|
1318 |
msgid "Advanced"
|
1319 |
msgstr "Avancé"
|
1320 |
|
1321 |
+
#: dashboard/publisher/adverts-edit.php:269
|
1322 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1323 |
msgid "Available in AdRotate Pro!"
|
1324 |
msgstr "Disponible dans Adrotate Pro!"
|
1325 |
|
1326 |
+
#: dashboard/publisher/adverts-edit.php:274
|
1327 |
msgid "Show to everyone"
|
1328 |
msgstr "Afficher à tout le monde"
|
1329 |
|
1330 |
+
#: dashboard/publisher/adverts-edit.php:276
|
1331 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1332 |
msgstr "Désactiver cette option pour cacher l’annonce des visiteurs connectés."
|
1333 |
|
1334 |
+
#: dashboard/publisher/adverts-edit.php:281
|
1335 |
+
#: dashboard/publisher/groups-edit.php:362
|
1336 |
msgid "Weight"
|
1337 |
msgstr "Importance"
|
1338 |
|
1339 |
+
#: dashboard/publisher/adverts-edit.php:284
|
1340 |
msgid "Few impressions"
|
1341 |
msgstr "Peu d’impressions"
|
1342 |
|
1343 |
+
#: dashboard/publisher/adverts-edit.php:289
|
1344 |
msgid "Less than average"
|
1345 |
+
msgstr "Less than average"
|
1346 |
|
1347 |
+
#: dashboard/publisher/adverts-edit.php:294
|
1348 |
msgid "Normal impressions"
|
1349 |
msgstr "Impressions normales"
|
1350 |
|
1351 |
+
#: dashboard/publisher/adverts-edit.php:299
|
1352 |
msgid "More than average"
|
1353 |
+
msgstr "More than average"
|
1354 |
|
1355 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1356 |
msgid "Many impressions"
|
1357 |
msgstr "Impressions"
|
1358 |
|
1359 |
+
#: dashboard/publisher/adverts-edit.php:309
|
1360 |
msgid "Mobile"
|
1361 |
msgstr "Mobile"
|
1362 |
|
1363 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1364 |
msgid "Desktops/Laptops"
|
1365 |
msgstr "Ordinateurs de bureau/ordinateurs portables"
|
1366 |
|
1367 |
+
#: dashboard/publisher/adverts-edit.php:314
|
1368 |
msgid "Smartphones"
|
1369 |
msgstr "Smartphone"
|
1370 |
|
1371 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1372 |
msgid "Tablets"
|
1373 |
msgstr "Tablettes"
|
1374 |
|
1375 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1376 |
msgid ""
|
1377 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1378 |
"and 'Operating System' are ignored!"
|
1380 |
"Activez également 'Support Mobile' dans le groupe cette annonce va dans ou "
|
1381 |
"'Device' et 'Système d’exploitation' sont ignorés!"
|
1382 |
|
1383 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1384 |
msgid ""
|
1385 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1386 |
"Other' for everything else."
|
1388 |
"La détection du système d’exploitation ne détecte qu’iOS et Android, "
|
1389 |
"sélectionnez 'Not Mobile/Other' pour tout le reste."
|
1390 |
|
1391 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1392 |
msgid "Mobile OS"
|
1393 |
msgstr "OS mobile"
|
1394 |
|
1395 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1396 |
msgid "iOS"
|
1397 |
msgstr "iOS"
|
1398 |
|
1399 |
+
#: dashboard/publisher/adverts-edit.php:329
|
1400 |
msgid "Android"
|
1401 |
msgstr "Android"
|
1402 |
|
1403 |
+
#: dashboard/publisher/adverts-edit.php:332
|
1404 |
msgid "Not mobile/Others"
|
1405 |
msgstr "Pas mobile/Autres"
|
1406 |
|
1407 |
+
#: dashboard/publisher/adverts-edit.php:336
|
1408 |
msgid "Auto-delete"
|
1409 |
msgstr "Suppression automatique"
|
1410 |
|
1411 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1412 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1413 |
msgstr "Supprimer automatiquement l’annonce 1 jour après son expiration?"
|
1414 |
|
1415 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1416 |
msgid ""
|
1417 |
"This is useful for short running campaigns that do not require attention "
|
1418 |
"after they finish."
|
1420 |
"Ceci est utile pour les campagnes de courte durée qui ne nécessitent pas "
|
1421 |
"d’attention après leur fin."
|
1422 |
|
1423 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1424 |
msgid ""
|
1425 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1426 |
"systems the advert should show on!"
|
1428 |
"Avec AdRotate Pro, vous pouvez facilement sélectionner les appareils et les "
|
1429 |
"systèmes d’exploitation mobiles sur lesquels l’annonce doit être exposée !"
|
1430 |
|
1431 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1432 |
msgid ""
|
1433 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1434 |
msgstr ""
|
1435 |
"Attribuez l’annonce à un groupe et activez ce groupe pour utiliser Geo "
|
1436 |
"Targeting."
|
1437 |
|
1438 |
+
#: dashboard/publisher/adverts-edit.php:353
|
1439 |
+
msgid "Enter cities or metro IDs (DMA)"
|
1440 |
+
msgstr "Entrez dans les villes ou les ID de métro (DMA)"
|
|
|
|
|
|
|
|
|
1441 |
|
1442 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1443 |
+
msgid "A comma separated list of Cities or Metro IDs:"
|
1444 |
+
msgstr "Une liste de virgules séparées des villes ou des metro ID:"
|
1445 |
|
1446 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1447 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1448 |
msgid ""
|
1449 |
+
"AdRotate does not check the validity of names and assumes the basic english "
|
1450 |
+
"name."
|
1451 |
msgstr ""
|
1452 |
+
"AdRotate ne vérifie pas la validité des noms et assume le nom anglais de "
|
1453 |
+
"base."
|
1454 |
+
|
1455 |
+
#: dashboard/publisher/adverts-edit.php:361
|
1456 |
+
msgid "Enter States or State ISO3166-2 codes"
|
1457 |
+
msgstr "Entrez États ou États ISO3166-2 codes"
|
1458 |
+
|
1459 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1460 |
+
msgid "The listed cities must be in these states?"
|
1461 |
+
msgstr "Les villes classées doivent être dans ces états?"
|
1462 |
+
|
1463 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1464 |
+
msgid "A comma separated list of states:"
|
1465 |
+
msgstr "Une liste séparée de virgule des états :"
|
1466 |
|
1467 |
+
#: dashboard/publisher/adverts-edit.php:373
|
1468 |
+
msgid "Select Countries and or Regions"
|
1469 |
+
msgstr "Sélectionner les pays et les régions"
|
1470 |
+
|
1471 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1472 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1473 |
msgstr "Ciblez votre audience avec Geo Targeting in AdRotate Pro"
|
1474 |
|
1475 |
+
#: dashboard/publisher/adverts-edit.php:467
|
1476 |
msgid "Select Groups"
|
1477 |
msgstr "Choisir groupes"
|
1478 |
|
1479 |
+
#: dashboard/publisher/adverts-edit.php:483
|
1480 |
#: dashboard/publisher/groups-main.php:60
|
1481 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1482 |
msgid "Default"
|
1483 |
msgstr "Par défaut"
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1486 |
#: dashboard/publisher/groups-main.php:61
|
1487 |
msgid "Dynamic"
|
1488 |
msgstr "Dynamique"
|
1489 |
|
1490 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1491 |
#: dashboard/publisher/groups-main.php:61
|
1492 |
msgid "second rotation"
|
1493 |
msgstr "deuxième rotation"
|
1494 |
|
1495 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1496 |
#: dashboard/publisher/groups-main.php:62
|
1497 |
msgid "Block"
|
1498 |
msgstr "Bloc"
|
1499 |
|
1500 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1501 |
#: dashboard/publisher/groups-main.php:62
|
1502 |
msgid "grid"
|
1503 |
msgstr "grille"
|
1504 |
|
1505 |
+
#: dashboard/publisher/adverts-edit.php:486
|
1506 |
+
#: dashboard/publisher/groups-edit.php:235
|
1507 |
#: dashboard/publisher/groups-main.php:63
|
1508 |
msgid "Post Injection"
|
1509 |
msgstr "Injection dans l'article"
|
1510 |
|
1511 |
+
#: dashboard/publisher/adverts-edit.php:487
|
1512 |
msgid "Geolocation"
|
1513 |
msgstr "Géolocalisation"
|
1514 |
|
1515 |
+
#: dashboard/publisher/adverts-edit.php:494
|
1516 |
+
#: dashboard/publisher/groups-edit.php:74
|
1517 |
#: dashboard/publisher/groups-main.php:70
|
1518 |
msgid "Mode"
|
1519 |
msgstr "Mode"
|
1520 |
|
1521 |
+
#: dashboard/publisher/adverts-edit.php:511
|
1522 |
+
#: dashboard/publisher/adverts-generator.php:145
|
1523 |
+
msgid "Portability"
|
1524 |
+
msgstr "Portabilité"
|
1525 |
+
|
1526 |
+
#: dashboard/publisher/adverts-edit.php:512
|
1527 |
+
msgid ""
|
1528 |
+
"This long code is your advert. It includes all settings from above except "
|
1529 |
+
"the schedule and group selection. You can import this hash into another "
|
1530 |
+
"setup of AdRotate or AdRotate Professional. Do not alter the hash or the "
|
1531 |
+
"advert will not work. In most browsers you can tripleclick in the field to "
|
1532 |
+
"select the whole thing. You can paste the hash into the 'Advert Hash' field "
|
1533 |
+
"in the Advert Generator of another AdRotate setup."
|
1534 |
+
msgstr ""
|
1535 |
+
"Ce long code est votre annonce. Il comprend tous les paramètres d’en haut, "
|
1536 |
+
"sauf le calendrier et la sélection du groupe. Vous pouvez importer ce "
|
1537 |
+
"hachage dans une autre configuration d’AdRotate ou AdRotate Professional. Ne "
|
1538 |
+
"modifiez pas le hachage ou l’annonce ne fonctionnera pas. Dans la plupart "
|
1539 |
+
"des navigateurs, vous pouvez tripleclick dans le domaine pour sélectionner "
|
1540 |
+
"le tout. Vous pouvez coller le hachage dans le champ 'Advert Hash' dans le "
|
1541 |
+
"générateur d’annonces d’une autre configuration AdRotate."
|
1542 |
+
|
1543 |
+
#: dashboard/publisher/adverts-edit.php:516
|
1544 |
+
#: dashboard/publisher/adverts-generator.php:151
|
1545 |
+
msgid "Advert hash"
|
1546 |
+
msgstr "Annonce hachage"
|
1547 |
+
|
1548 |
#: dashboard/publisher/adverts-error.php:12
|
1549 |
msgid "Adverts that need attention"
|
1550 |
msgstr "Annonces qui nécessitent une attention"
|
1608 |
"de les utiliser. Le générateur AdRotate prendra vos morceaux et essayera de "
|
1609 |
"générer un code d’annonce de travail à partir de lui."
|
1610 |
|
1611 |
+
#: dashboard/publisher/adverts-generator.php:38
|
1612 |
+
msgid ""
|
1613 |
+
"If you have an advert hash from another AdRotate or AdRotate Professional "
|
1614 |
+
"setup you can enter it in the Portability field. This feature is a bit of an "
|
1615 |
+
"experiment, but the basic function works."
|
1616 |
+
msgstr ""
|
1617 |
+
"Si vous avez un hachage publicitaire d’une autre configuration AdRotate ou "
|
1618 |
+
"AdRotate Professional, vous pouvez l’entrer dans le champ De la Portability. "
|
1619 |
+
"Cette fonctionnalité est un peu une expérience, mais la fonction de base "
|
1620 |
+
"fonctionne."
|
1621 |
+
|
1622 |
#: dashboard/publisher/adverts-generator.php:39
|
1623 |
msgid ""
|
1624 |
"If you have a complete and working ad code / ad tag you do not use the "
|
1674 |
msgstr "Fenêtres"
|
1675 |
|
1676 |
#: dashboard/publisher/adverts-generator.php:77
|
1677 |
+
#: dashboard/publisher/groups-edit.php:219
|
1678 |
#: dashboard/settings/notifications.php:48
|
1679 |
msgid "Available in AdRotate Pro"
|
1680 |
msgstr "Disponible dans Adrotate Pro"
|
1800 |
"Certains bots / crawlers les utiliser comme une mesure descriptive pour voir "
|
1801 |
"ce que le code est d’environ."
|
1802 |
|
1803 |
+
#: dashboard/publisher/adverts-generator.php:153
|
1804 |
+
msgid ""
|
1805 |
+
"To import a ready made advert, enter a advert hash from another AdRotate "
|
1806 |
+
"setup..."
|
1807 |
+
msgstr ""
|
1808 |
+
"Pour importer une publicité prête à l’emploi, entrez un hachage publicitaire "
|
1809 |
+
"d’une autre configuration AdRotate..."
|
1810 |
+
|
1811 |
+
#: dashboard/publisher/adverts-generator.php:161
|
1812 |
msgid "Generate and Configure Advert"
|
1813 |
msgstr "Générer et configurer l’annonce"
|
1814 |
|
1815 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1816 |
msgid "Always test your adverts before activating them."
|
1817 |
msgstr "Testez toujours vos annonces avant de les activer."
|
1818 |
|
1819 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1820 |
+
msgid "Caution:"
|
1821 |
+
msgstr "Attention :"
|
1822 |
|
1823 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1824 |
msgid ""
|
1825 |
"While the Code Generator has been tested and works, code generation, as "
|
1826 |
"always, is a interpretation of user input. If you provide the correct bits "
|
1833 |
"générée. Si vous laissez les champs vides ou insérez les mauvaises "
|
1834 |
"informations, vous vous retrouvez probablement avec une annonce cassée."
|
1835 |
|
1836 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1837 |
+
msgid "NOTE:"
|
1838 |
+
msgstr "NOTE:"
|
1839 |
+
|
1840 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1841 |
+
msgid "If you insert an Advert Hash, all other fields are ignored."
|
1842 |
msgstr ""
|
1843 |
+
"Si vous insérez un haschich d’annonce, tous les autres champs sont ignorés."
|
|
|
1844 |
|
1845 |
#: dashboard/publisher/adverts-main.php:12
|
1846 |
msgid "Active Adverts"
|
1863 |
msgid "No adverts created yet!"
|
1864 |
msgstr "Aucune annonces créés encore !"
|
1865 |
|
1866 |
+
#: dashboard/publisher/groups-edit.php:41
|
1867 |
+
msgid ""
|
1868 |
+
"Your block is a 1x1 grid. Either add more rows or columns or set the group "
|
1869 |
+
"to Default mode."
|
1870 |
+
msgstr ""
|
1871 |
+
"Votre bloc est une grille 1x1. Ajoutez plus de lignes ou de colonnes ou "
|
1872 |
+
"définissez le groupe en mode Défaut."
|
1873 |
+
|
1874 |
+
#: dashboard/publisher/groups-edit.php:44
|
1875 |
+
msgid "You have enabled Post Injection but did not select any categories."
|
1876 |
+
msgstr ""
|
1877 |
+
"Vous avez activé Post Injection mais n’avez sélectionné aucune catégorie."
|
1878 |
+
|
1879 |
+
#: dashboard/publisher/groups-edit.php:47
|
1880 |
+
msgid "You have enabled Page Injection but did not select any pages."
|
1881 |
+
msgstr "Vous avez activé Page Injection mais n’avez sélectionné aucune page."
|
1882 |
+
|
1883 |
+
#: dashboard/publisher/groups-edit.php:57
|
1884 |
msgid "New Group"
|
1885 |
msgstr "Nouveau Groupe"
|
1886 |
|
1887 |
+
#: dashboard/publisher/groups-edit.php:59
|
1888 |
msgid "Edit Group"
|
1889 |
msgstr "Modifier Groupe"
|
1890 |
|
1891 |
+
#: dashboard/publisher/groups-edit.php:77
|
1892 |
msgid "Default - Show one ad at a time"
|
1893 |
msgstr "Par defaut - Montrer une pub"
|
1894 |
|
1895 |
+
#: dashboard/publisher/groups-edit.php:78
|
1896 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1897 |
msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
|
1898 |
|
1899 |
+
#: dashboard/publisher/groups-edit.php:79
|
1900 |
msgid "Block Mode - Show a block of adverts"
|
1901 |
msgstr "Mode Bloc - Afficher un bloc de annonces"
|
1902 |
|
1903 |
+
#: dashboard/publisher/groups-edit.php:83
|
1904 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1905 |
msgstr ""
|
1906 |
"Le mode dynamique nécessite jQuery. Vous pouvez l’activer dans les "
|
1907 |
"paramètres AdRotate."
|
1908 |
|
1909 |
+
#: dashboard/publisher/groups-edit.php:87
|
1910 |
msgid "Advert size"
|
1911 |
msgstr "Taille de l'annonce"
|
1912 |
|
1913 |
+
#: dashboard/publisher/groups-edit.php:89
|
1914 |
msgid "pixel(s) wide"
|
1915 |
msgstr "largeur en pixels"
|
1916 |
|
1917 |
+
#: dashboard/publisher/groups-edit.php:89
|
1918 |
msgid "pixel(s) high."
|
1919 |
msgstr "pixel(s) élevé."
|
1920 |
|
1921 |
+
#: dashboard/publisher/groups-edit.php:92
|
1922 |
msgid ""
|
1923 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1924 |
"recommended)."
|
1926 |
"Définir la taille maximale des spots en pixels. Taille peut être "
|
1927 |
"« auto » (non recommandé)."
|
1928 |
|
1929 |
+
#: dashboard/publisher/groups-edit.php:98
|
1930 |
msgid "Dynamic and Block Mode"
|
1931 |
msgstr "Mode Dynamique et en Bloc"
|
1932 |
|
1933 |
+
#: dashboard/publisher/groups-edit.php:102
|
1934 |
msgid "Block size"
|
1935 |
msgstr "Taille de bloc"
|
1936 |
|
1937 |
+
#: dashboard/publisher/groups-edit.php:108
|
1938 |
msgid "rows"
|
1939 |
msgstr "lignes"
|
1940 |
|
1941 |
+
#: dashboard/publisher/groups-edit.php:112
|
1942 |
msgid "columns"
|
1943 |
msgstr "colonnes"
|
1944 |
|
1945 |
+
#: dashboard/publisher/groups-edit.php:115
|
1946 |
msgid "Block Mode"
|
1947 |
msgstr "Mode en Bloc"
|
1948 |
|
1949 |
+
#: dashboard/publisher/groups-edit.php:115
|
1950 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1951 |
msgstr ""
|
1952 |
"De plus grands blocs dégraderont les performances de vos sites ! Défaut: 2/2."
|
1953 |
|
1954 |
+
#: dashboard/publisher/groups-edit.php:119
|
1955 |
msgid "Automated refresh"
|
1956 |
msgstr "Rafraîchissement automatique"
|
1957 |
|
1958 |
+
#: dashboard/publisher/groups-edit.php:138
|
1959 |
msgid "seconds."
|
1960 |
msgstr "secondes."
|
1961 |
|
1962 |
+
#: dashboard/publisher/groups-edit.php:141
|
1963 |
+
#: dashboard/publisher/groups-edit.php:150
|
1964 |
msgid "Dynamic Mode"
|
1965 |
msgstr "Mode dynamique"
|
1966 |
|
1967 |
+
#: dashboard/publisher/groups-edit.php:141
|
1968 |
msgid ""
|
1969 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1970 |
msgstr ""
|
1971 |
"Chargez une nouvelle annonce sans recharger le page après cette intervalle. "
|
1972 |
"La valeur par défaut est : 6."
|
1973 |
|
1974 |
+
#: dashboard/publisher/groups-edit.php:145
|
1975 |
msgid "Repeat impressions"
|
1976 |
msgstr "Impressions répétées"
|
1977 |
|
1978 |
+
#: dashboard/publisher/groups-edit.php:147
|
1979 |
msgid "Count impressions for every cycle of adverts?"
|
1980 |
msgstr "Comptez des impressions pour chaque cycle de annonces?"
|
1981 |
|
1982 |
+
#: dashboard/publisher/groups-edit.php:150
|
1983 |
msgid ""
|
1984 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1985 |
msgstr ""
|
1986 |
"Décochez cette option pour ne compter les impressions que pour le premier "
|
1987 |
"cycle de annonces."
|
1988 |
|
1989 |
+
#: dashboard/publisher/groups-edit.php:155
|
1990 |
+
#: dashboard/publisher/groups-edit.php:228
|
1991 |
msgid "Get access to all features in AdRotate Pro."
|
1992 |
msgstr "Accédez à toutes les fonctionnalités d’AdRotate Pro."
|
1993 |
|
1994 |
+
#: dashboard/publisher/groups-edit.php:155
|
1995 |
msgid "Upgrade today"
|
1996 |
msgstr "Mettez à niveau dès aujourd'hui"
|
1997 |
|
1998 |
+
#: dashboard/publisher/groups-edit.php:162
|
1999 |
+
#: dashboard/publisher/groups-edit.php:316
|
2000 |
msgid ""
|
2001 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
2002 |
"Adverts\" and enter ID"
|
2004 |
"Faites glisser le widget AdRotate sur la barre latérale dans lequel vous le "
|
2005 |
"souhaitez, sélectionnez « Groupe d’annonces » et saisissez l’ID"
|
2006 |
|
2007 |
+
#: dashboard/publisher/groups-edit.php:174
|
2008 |
+
#: dashboard/publisher/groups-edit.php:328
|
2009 |
+
#: dashboard/publisher/groups-edit.php:422
|
2010 |
msgid "Save Group"
|
2011 |
msgstr "Sauvegarder groupe"
|
2012 |
|
2013 |
+
#: dashboard/publisher/groups-edit.php:182
|
2014 |
msgid "Advert Margin"
|
2015 |
msgstr "Marges autour de la pub"
|
2016 |
|
2017 |
+
#: dashboard/publisher/groups-edit.php:184
|
2018 |
msgid "pixel(s)"
|
2019 |
msgstr "pixel(s)"
|
2020 |
|
2021 |
+
#: dashboard/publisher/groups-edit.php:187
|
2022 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2023 |
msgstr ""
|
2024 |
"Une marge transparente en dehors de la annonce en pixels. Valeur par "
|
2025 |
"défaut : 0."
|
2026 |
|
2027 |
+
#: dashboard/publisher/groups-edit.php:187
|
2028 |
msgid "Set to 0 to disable."
|
2029 |
msgstr "Mettre 0 pour désactiver."
|
2030 |
|
2031 |
+
#: dashboard/publisher/groups-edit.php:187
|
2032 |
msgid "Margins are automatically disabled for blocks where required."
|
2033 |
msgstr ""
|
2034 |
"Marges sont automatiquement désactivées pour les blocs lorsqu’elle est "
|
2035 |
"exigée."
|
2036 |
|
2037 |
+
#: dashboard/publisher/groups-edit.php:191
|
2038 |
msgid "Align the group"
|
2039 |
msgstr "Aligner le groupe"
|
2040 |
|
2041 |
+
#: dashboard/publisher/groups-edit.php:194
|
2042 |
msgid "None (Default)"
|
2043 |
msgstr "Aucun (par défaut)"
|
2044 |
|
2045 |
+
#: dashboard/publisher/groups-edit.php:195
|
2046 |
msgid "Left"
|
2047 |
msgstr "Gauche"
|
2048 |
|
2049 |
+
#: dashboard/publisher/groups-edit.php:196
|
2050 |
msgid "Right"
|
2051 |
msgstr "Droite"
|
2052 |
|
2053 |
+
#: dashboard/publisher/groups-edit.php:197
|
2054 |
msgid "Center"
|
2055 |
msgstr "Centre"
|
2056 |
|
2057 |
+
#: dashboard/publisher/groups-edit.php:201
|
2058 |
msgid ""
|
2059 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2060 |
"setting. Not every theme supports this feature."
|
2063 |
"peut altérer votre paramètre de marge. Non chaque thème prend en charge "
|
2064 |
"cette fonctionnalité."
|
2065 |
|
2066 |
+
#: dashboard/publisher/groups-edit.php:206
|
2067 |
msgid "Enable Geo Targeting for this group."
|
2068 |
msgstr "Activez le ciblage Geo pour ce groupe."
|
2069 |
|
2070 |
+
#: dashboard/publisher/groups-edit.php:207
|
2071 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2072 |
msgstr ""
|
2073 |
"N’oubliez pas de dire aux annonces pour les zones qu’ils doivent montrer."
|
2074 |
|
2075 |
+
#: dashboard/publisher/groups-edit.php:210
|
2076 |
msgid "Mobile Support"
|
2077 |
msgstr "Support mobile"
|
2078 |
|
2079 |
+
#: dashboard/publisher/groups-edit.php:211
|
2080 |
msgid "Enable mobile support for this group."
|
2081 |
msgstr "Activer le support mobile de ce groupe."
|
2082 |
|
2083 |
+
#: dashboard/publisher/groups-edit.php:212
|
2084 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2085 |
msgstr "N’oubliez pas de mettre au moins une annonce mobile dans ce groupe."
|
2086 |
|
2087 |
+
#: dashboard/publisher/groups-edit.php:215
|
2088 |
msgid "Fallback Group"
|
2089 |
msgstr "Groupe de secours"
|
2090 |
|
2091 |
+
#: dashboard/publisher/groups-edit.php:223
|
2092 |
msgid ""
|
2093 |
"Select another group to fall back on when all adverts are expired, not in "
|
2094 |
"the visitors geographic area or are otherwise unavailable."
|
2097 |
"expirés, pas dans la zone géographique de visiteurs ou sont autrement "
|
2098 |
"indisponibles."
|
2099 |
|
2100 |
+
#: dashboard/publisher/groups-edit.php:239
|
2101 |
+
#: dashboard/publisher/groups-edit.php:276
|
2102 |
#: dashboard/settings/geotargeting.php:24
|
2103 |
msgid "Disabled"
|
2104 |
msgstr "Désactivé"
|
2105 |
|
2106 |
+
#: dashboard/publisher/groups-edit.php:240
|
2107 |
+
#: dashboard/publisher/groups-edit.php:277
|
2108 |
msgid "Widget (Pro only)"
|
2109 |
msgstr "Widget (Pro seulement)"
|
2110 |
|
2111 |
+
#: dashboard/publisher/groups-edit.php:241
|
2112 |
+
#: dashboard/publisher/groups-edit.php:278
|
2113 |
msgid "Before content"
|
2114 |
msgstr "Avant le contenu"
|
2115 |
|
2116 |
+
#: dashboard/publisher/groups-edit.php:242
|
2117 |
+
#: dashboard/publisher/groups-edit.php:279
|
2118 |
msgid "After content"
|
2119 |
msgstr "Après le contenu"
|
2120 |
|
2121 |
+
#: dashboard/publisher/groups-edit.php:243
|
2122 |
+
#: dashboard/publisher/groups-edit.php:280
|
2123 |
msgid "Before and after content"
|
2124 |
msgstr "Avant et après le contenu"
|
2125 |
|
2126 |
+
#: dashboard/publisher/groups-edit.php:244
|
2127 |
+
#: dashboard/publisher/groups-edit.php:281
|
2128 |
msgid "Inside the content..."
|
2129 |
msgstr "À l’intérieur du contenu..."
|
2130 |
|
2131 |
+
#: dashboard/publisher/groups-edit.php:250
|
2132 |
+
#: dashboard/publisher/groups-edit.php:287
|
2133 |
msgid "after the middle paragraph"
|
2134 |
msgstr "après le paragraphe du milieu"
|
2135 |
|
2136 |
+
#: dashboard/publisher/groups-edit.php:251
|
2137 |
+
#: dashboard/publisher/groups-edit.php:288
|
2138 |
msgid "after the 1st paragraph"
|
2139 |
msgstr "après l’alinéa 1er"
|
2140 |
|
2141 |
+
#: dashboard/publisher/groups-edit.php:252
|
2142 |
+
#: dashboard/publisher/groups-edit.php:289
|
2143 |
msgid "after the 2nd paragraph"
|
2144 |
msgstr "après le 2e paragraphe"
|
2145 |
|
2146 |
+
#: dashboard/publisher/groups-edit.php:253
|
2147 |
+
#: dashboard/publisher/groups-edit.php:290
|
2148 |
msgid "after the 3rd paragraph"
|
2149 |
msgstr "après le 3e paragraphe"
|
2150 |
|
2151 |
+
#: dashboard/publisher/groups-edit.php:254
|
2152 |
+
#: dashboard/publisher/groups-edit.php:291
|
2153 |
msgid "after the 4th paragraph"
|
2154 |
msgstr "après le 4e paragraphe"
|
2155 |
|
2156 |
+
#: dashboard/publisher/groups-edit.php:255
|
2157 |
+
#: dashboard/publisher/groups-edit.php:292
|
2158 |
msgid "after the 5th paragraph"
|
2159 |
msgstr "après le 5e paragraphe"
|
2160 |
|
2161 |
+
#: dashboard/publisher/groups-edit.php:256
|
2162 |
+
#: dashboard/publisher/groups-edit.php:293
|
2163 |
msgid "after the 6th paragraph"
|
2164 |
msgstr "après le 6e paragraphe"
|
2165 |
|
2166 |
+
#: dashboard/publisher/groups-edit.php:257
|
2167 |
+
#: dashboard/publisher/groups-edit.php:294
|
2168 |
msgid "after the 7th paragraph"
|
2169 |
msgstr "après le 7e paragraphe"
|
2170 |
|
2171 |
+
#: dashboard/publisher/groups-edit.php:258
|
2172 |
+
#: dashboard/publisher/groups-edit.php:295
|
2173 |
msgid "after the 8th paragraph"
|
2174 |
msgstr "après le 8e paragraphe"
|
2175 |
|
2176 |
+
#: dashboard/publisher/groups-edit.php:272
|
2177 |
msgid "Page Injection"
|
2178 |
msgstr "Page Injection"
|
2179 |
|
2180 |
+
#: dashboard/publisher/groups-edit.php:332
|
2181 |
msgid "Wrapper code"
|
2182 |
msgstr "Code enveloppant"
|
2183 |
|
2184 |
+
#: dashboard/publisher/groups-edit.php:333
|
2185 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2186 |
msgstr ""
|
2187 |
"Enveloppe autour de chaque annonce. HTML/JavaScript autorisé, utiliser avec "
|
2188 |
"soin!"
|
2189 |
|
2190 |
+
#: dashboard/publisher/groups-edit.php:337
|
2191 |
msgid "Before advert"
|
2192 |
msgstr "Avant l’annonce"
|
2193 |
|
2194 |
+
#: dashboard/publisher/groups-edit.php:340
|
2195 |
+
#: dashboard/publisher/groups-edit.php:348
|
2196 |
msgid "Example:"
|
2197 |
msgstr "Exemple :"
|
2198 |
|
2199 |
+
#: dashboard/publisher/groups-edit.php:341
|
2200 |
msgid "Options:"
|
2201 |
msgstr "Options :"
|
2202 |
|
2203 |
+
#: dashboard/publisher/groups-edit.php:345
|
2204 |
msgid "After advert"
|
2205 |
msgstr "Après l’annonce"
|
2206 |
|
2207 |
+
#: dashboard/publisher/groups-edit.php:354
|
2208 |
msgid "Select adverts"
|
2209 |
msgstr "Sélectionnez les annonces"
|
2210 |
|
2211 |
+
#: dashboard/publisher/groups-edit.php:361
|
2212 |
msgid "Visible until"
|
2213 |
msgstr "Visible jusqu'à"
|
2214 |
|
2215 |
+
#: dashboard/publisher/groups-edit.php:409
|
2216 |
msgid "No adverts created!"
|
2217 |
msgstr "Aucune annonces créés !"
|
2218 |
|
2219 |
+
#: dashboard/publisher/groups-edit.php:416
|
2220 |
msgid "Configuration errors."
|
2221 |
msgstr "Erreurs de configuration."
|
2222 |
|
2223 |
+
#: dashboard/publisher/groups-edit.php:417
|
2224 |
#: dashboard/publisher/schedules-main.php:87
|
2225 |
msgid "Expires soon."
|
2226 |
msgstr "Expire bientôt."
|
2227 |
|
2228 |
+
#: dashboard/publisher/groups-edit.php:418
|
2229 |
#: dashboard/publisher/schedules-main.php:88
|
2230 |
msgid "Has expired."
|
2231 |
msgstr "A expiré."
|
2311 |
"Assurez-vous que les images de la bannière ne sont pas utilisés par les "
|
2312 |
"annonces lorsque vous les supprimez !"
|
2313 |
|
2314 |
+
#: dashboard/publisher/media.php:73
|
2315 |
#: dashboard/publisher/statistics-advert.php:109
|
2316 |
#: dashboard/publisher/statistics-group.php:113
|
2317 |
#: dashboard/publisher/statistics-main.php:83
|
2331 |
"horaires peuvent être actifs certains jours de la semaine ou à certaines "
|
2332 |
"heures de la journée."
|
2333 |
|
2334 |
+
#: dashboard/publisher/schedules-main.php:13
|
2335 |
+
msgid "Get more scheduling options with"
|
2336 |
+
msgstr "Obtenez plus d’options de planification avec"
|
2337 |
+
|
2338 |
#: dashboard/publisher/schedules-main.php:36
|
2339 |
msgid "Max Shown"
|
2340 |
msgstr "Affichage maximum"
|
2720 |
msgstr "Quel service Geo"
|
2721 |
|
2722 |
#: dashboard/settings/geotargeting.php:32
|
2723 |
+
msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
|
2724 |
msgstr ""
|
2725 |
+
"30000 recherches gratuites chaque jour, utilise les bases de données "
|
2726 |
"GeoLite2 de MaxMind!"
|
2727 |
|
2728 |
#: dashboard/settings/geotargeting.php:33
|
2745 |
msgid "Suitable for small to medium sized websites."
|
2746 |
msgstr "Convient aux sites Web de petite et moyenne taille."
|
2747 |
|
2748 |
+
#: dashboard/settings/geotargeting.php:36
|
2749 |
+
#: dashboard/settings/geotargeting.php:40
|
2750 |
+
msgid "More info"
|
2751 |
+
msgstr "En savoir plus"
|
2752 |
+
|
2753 |
#: dashboard/settings/geotargeting.php:36
|
2754 |
msgid "10000 free lookups per month, requires account."
|
2755 |
msgstr "10000 recherches gratuites par mois, nécessite un compte."
|
3441 |
"Ce nombre ne peut pas être vide, être inférieure à 60 ou dépasser 86400 (24 "
|
3442 |
"heures)."
|
3443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3444 |
#: dashboard/support.php:83
|
3445 |
msgid "Premium Support available in AdRotate Pro"
|
3446 |
msgstr "Support Premium disponible en AdRotate Pro"
|
3507 |
msgid "Premium Support is available in AdRotate Pro!"
|
3508 |
msgstr "Premium Support est disponible dans AdRotate Pro!"
|
3509 |
|
3510 |
+
#~ msgid "Join the Media.net advertising network"
|
3511 |
+
#~ msgstr "Joignez-vous au réseau annonces Media.net"
|
3512 |
+
|
3513 |
+
#~ msgid "Get contextual adverts from Media.net"
|
3514 |
+
#~ msgstr "Obtenez des annonces contextuelles de Media.net"
|
3515 |
+
|
3516 |
+
#~ msgid ""
|
3517 |
+
#~ "Based on your input and experiences later iterations of the Code "
|
3518 |
+
#~ "Generator will be better and more feature rich."
|
3519 |
+
#~ msgstr ""
|
3520 |
+
#~ "D’après vos commentaires et vos expériences, les itérations ultérieures "
|
3521 |
+
#~ "du générateur de code seront meilleures et plus riches en fonctionnalités."
|
3522 |
+
|
3523 |
+
#~ msgid "Upgrade instructions"
|
3524 |
+
#~ msgstr "Instructions d’installation"
|
3525 |
+
|
3526 |
+
#~ msgid "AdRotate Banner Manager"
|
3527 |
+
#~ msgstr "AdRotate Banner Manager"
|
3528 |
+
|
3529 |
+
#~ msgid "Support AdRotate Banner Manager"
|
3530 |
+
#~ msgstr "Soutenir AdRotate Banner Manager"
|
3531 |
+
|
3532 |
+
#~ msgid ""
|
3533 |
+
#~ "Consider writing a review or making a donation if you like the plugin or "
|
3534 |
+
#~ "if you find the plugin useful. Thanks for your support!"
|
3535 |
+
#~ msgstr ""
|
3536 |
+
#~ "Envisagez d’écrire un avis ou de faire un don si vous aimez le plugin ou "
|
3537 |
+
#~ "si vous trouvez le plugin utile. Merci pour votre soutien!"
|
3538 |
+
|
3539 |
+
#~ msgid "Plugins and services"
|
3540 |
+
#~ msgstr "Plugins et services"
|
3541 |
+
|
3542 |
+
#~ msgid "WP Maintenance"
|
3543 |
+
#~ msgstr "WP Maintenance"
|
3544 |
+
|
3545 |
+
#~ msgid "Professional service"
|
3546 |
+
#~ msgstr "Service Pro"
|
3547 |
+
|
3548 |
+
#~ msgid ""
|
3549 |
+
#~ "Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
3550 |
+
#~ "spam and clean up files."
|
3551 |
+
#~ msgstr ""
|
3552 |
+
#~ "Obtenez toutes les dernières mises à jour pour WordPress et plugins. "
|
3553 |
+
#~ "Entretien, supprimer le spam et nettoyer les fichiers."
|
3554 |
+
|
3555 |
+
#~ msgid "HTML5 Advert setup"
|
3556 |
+
#~ msgstr "Configuration de l’annonce HTML5"
|
3557 |
+
|
3558 |
+
#~ msgid ""
|
3559 |
+
#~ "Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
3560 |
+
#~ "install and configure it for you."
|
3561 |
+
#~ msgstr ""
|
3562 |
+
#~ "Avez-vous obtenu une annonce HTML5 et ne peut pas le faire fonctionner "
|
3563 |
+
#~ "dans AdRotate Pro? Je vais l’installer et le configurer pour vous."
|
3564 |
+
|
3565 |
+
#~ msgid "Single Page Checkout"
|
3566 |
+
#~ msgstr "Paiement par page unique"
|
3567 |
+
|
3568 |
+
#~ msgid "WooCommerce Plugin"
|
3569 |
+
#~ msgstr "Plugin WooCommerce"
|
3570 |
+
|
3571 |
+
#~ msgid ""
|
3572 |
+
#~ "Merge your cart and checkout pages into one single page in seconds with "
|
3573 |
+
#~ "no setup required at all."
|
3574 |
+
#~ msgstr ""
|
3575 |
+
#~ "Fusionnez vos pages de panier et de caisse en une seule page en quelques "
|
3576 |
+
#~ "secondes sans aucune configuration requise du tout."
|
3577 |
+
|
3578 |
+
#~ msgid "News & Updates"
|
3579 |
+
#~ msgstr "Actualités"
|
3580 |
+
|
3581 |
+
#~ msgid "Support Forums"
|
3582 |
+
#~ msgstr "Forums de support"
|
3583 |
+
|
3584 |
+
#~ msgid ""
|
3585 |
+
#~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3586 |
+
#~ "Chances are your question has already been asked and answered!"
|
3587 |
+
#~ msgstr ""
|
3588 |
+
#~ "Lorsque vous êtes coincé avec AdRotate ou AdRotate Pro, consultez d’abord "
|
3589 |
+
#~ "les forums. Il y a de fortes chances que votre question ait déjà été "
|
3590 |
+
#~ "posée et répondue!"
|
3591 |
+
|
3592 |
+
#~ msgid ""
|
3593 |
+
#~ "Next to the forum there are many manuals and guides available for almost "
|
3594 |
+
#~ "every function and feature in the plugin."
|
3595 |
+
#~ msgstr ""
|
3596 |
+
#~ "À côté du forum il ya beaucoup de manuels et de guides disponibles pour "
|
3597 |
+
#~ "presque toutes les fonctions et fonctionnalités dans le plugin."
|
3598 |
+
|
3599 |
+
#~ msgid "Take a look at the AdRotate Manuals"
|
3600 |
+
#~ msgstr "Jetez un oeil aux manuels adRotate"
|
3601 |
+
|
3602 |
+
#~ msgid "View topics"
|
3603 |
+
#~ msgstr "Afficher les sujets"
|
3604 |
+
|
3605 |
#~ msgid "[AdRotate] CSV Report!"
|
3606 |
#~ msgstr "[AdRotate] Rapport CSV!"
|
3607 |
|
4660 |
#~ "base de données séparée qui peut augmenter la vitesse globale de votre "
|
4661 |
#~ "site."
|
4662 |
|
|
|
|
|
|
|
4663 |
#~ msgid ""
|
4664 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
4665 |
#~ "some cases a lot of data has to be moved. Not every hosting provider "
|
5101 |
#~ "problème. Cependant, la plupart des gens n’auront pas besoin de ce plugin "
|
5102 |
#~ "supplémentaire!"
|
5103 |
|
|
|
|
|
|
|
5104 |
#, fuzzy
|
5105 |
#~ msgid "Lookups remaining"
|
5106 |
#~ msgstr "Les examens restants"
|
language/adrotate-it_IT.mo
CHANGED
Binary file
|
language/adrotate-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
@@ -60,10 +60,11 @@ msgstr "Esportazione creata"
|
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
-
"below."
|
64 |
msgstr ""
|
65 |
"Il codice HTML dell'annuncio è stato generato e inserito nel campo AdCode. "
|
66 |
-
"Configura la tua inserzione qui sotto."
|
|
|
67 |
|
68 |
#: adrotate-functions.php:737
|
69 |
msgid "Settings saved"
|
@@ -114,10 +115,26 @@ msgid "No ads found."
|
|
114 |
msgstr "Nessun annuncio trovato."
|
115 |
|
116 |
#: adrotate-functions.php:782
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
msgid "Unexpected error"
|
118 |
msgstr "Errore inatteso"
|
119 |
|
120 |
-
#: adrotate-manage-publisher.php:
|
121 |
msgid "AdRotate Advertiser"
|
122 |
msgstr "Inserzionista AdRotate"
|
123 |
|
@@ -262,15 +279,15 @@ msgstr "Configurare la banner folder"
|
|
262 |
|
263 |
#: adrotate-output.php:652
|
264 |
msgid ""
|
265 |
-
"You have
|
266 |
-
"
|
267 |
msgstr ""
|
268 |
-
"
|
269 |
-
"
|
270 |
|
271 |
#: adrotate-output.php:652
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
274 |
|
275 |
#: adrotate-output.php:655
|
276 |
msgid ""
|
@@ -315,7 +332,7 @@ msgstr "forum"
|
|
315 |
msgid "Help AdRotate Grow"
|
316 |
msgstr "Aiuta AdRotate a crescere"
|
317 |
|
318 |
-
#: adrotate-output.php:835 adrotate.php:
|
319 |
msgid "AdRotate Professional"
|
320 |
msgstr "AdRotate Professional"
|
321 |
|
@@ -469,78 +486,78 @@ msgstr "ID:"
|
|
469 |
msgid "Fill in the ID of the type you want to display!"
|
470 |
msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
|
471 |
|
472 |
-
#: adrotate.php:
|
473 |
msgid "General Info"
|
474 |
msgstr "Informazioni generali"
|
475 |
|
476 |
-
#: adrotate.php:
|
477 |
msgid "AdRotate Pro"
|
478 |
msgstr "AdRotate Pro"
|
479 |
|
480 |
-
#: adrotate.php:
|
481 |
msgid "Manage Adverts"
|
482 |
msgstr "Gestisci Inserzioni"
|
483 |
|
484 |
-
#: adrotate.php:
|
485 |
msgid "Manage Groups"
|
486 |
msgstr "Gestisci Gruppi"
|
487 |
|
488 |
-
#: adrotate.php:
|
489 |
msgid "Manage Schedules"
|
490 |
msgstr "Gestisci pianificazioni"
|
491 |
|
492 |
-
#: adrotate.php:
|
493 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
494 |
#: dashboard/publisher/statistics-main.php:23
|
495 |
#: dashboard/settings/statistics.php:17
|
496 |
msgid "Statistics"
|
497 |
msgstr "Statistiche"
|
498 |
|
499 |
-
#: adrotate.php:
|
500 |
msgid "Manage Media"
|
501 |
msgstr "Gestisci Media"
|
502 |
|
503 |
-
#: adrotate.php:
|
504 |
msgid "Support"
|
505 |
msgstr "Supporto"
|
506 |
|
507 |
-
#: adrotate.php:
|
508 |
msgid "Settings"
|
509 |
msgstr "Impostazioni"
|
510 |
|
511 |
-
#: adrotate.php:
|
512 |
msgid "AdRotate Info"
|
513 |
msgstr "Informazioni AdRotate"
|
514 |
|
515 |
-
#: adrotate.php:
|
516 |
msgid "Advert Management"
|
517 |
msgstr "Gestione Inserzioni"
|
518 |
|
519 |
-
#: adrotate.php:
|
520 |
msgid "Manage"
|
521 |
msgstr "Gestisci"
|
522 |
|
523 |
-
#: adrotate.php:
|
524 |
msgid "Generator"
|
525 |
msgstr "Generatore"
|
526 |
|
527 |
-
#: adrotate.php:
|
528 |
msgid "Add New"
|
529 |
msgstr "Aggiungi Nuovo"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
msgid "Group Management"
|
533 |
msgstr "Gruppo eliminato"
|
534 |
|
535 |
-
#: adrotate.php:
|
536 |
msgid "Schedules"
|
537 |
msgstr "Pianificazioni"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
msgid "Media and Assets"
|
541 |
msgstr "Media e risorse"
|
542 |
|
543 |
-
#: adrotate.php:
|
544 |
msgid ""
|
545 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
546 |
"if you have HTML5 adverts containing multiple files."
|
@@ -548,45 +565,45 @@ msgstr ""
|
|
548 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
549 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
550 |
|
551 |
-
#: adrotate.php:
|
552 |
msgid "Get more features"
|
553 |
msgstr "Ottenga più caratteristiche"
|
554 |
|
555 |
-
#: adrotate.php:
|
556 |
msgid "Get AdRotate Pro"
|
557 |
msgstr "Ottieni AdRotate Pro"
|
558 |
|
559 |
-
#: adrotate.php:
|
560 |
msgid "AdRotate Settings"
|
561 |
msgstr "Impostazioni AdRotate"
|
562 |
|
563 |
-
#: adrotate.php:
|
564 |
msgid "General"
|
565 |
msgstr "Generale"
|
566 |
|
567 |
-
#: adrotate.php:
|
568 |
msgid "Notifications"
|
569 |
msgstr "Notifiche"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
-
#: dashboard/publisher/groups-edit.php:
|
573 |
#: dashboard/settings/advertisers.php:38
|
574 |
msgid "Geo Targeting"
|
575 |
msgstr "Geo Targeting"
|
576 |
|
577 |
-
#: adrotate.php:
|
578 |
msgid "Advertisers"
|
579 |
msgstr "Inserzionisti"
|
580 |
|
581 |
-
#: adrotate.php:
|
582 |
msgid "Access Roles"
|
583 |
msgstr "Ruoli di accesso"
|
584 |
|
585 |
-
#: adrotate.php:
|
586 |
msgid "Miscellaneous"
|
587 |
msgstr "Varie"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
msgid "Maintenance"
|
591 |
msgstr "Manutenzione"
|
592 |
|
@@ -737,7 +754,7 @@ msgstr "La tua configurazione"
|
|
737 |
msgid "Adverts that need you"
|
738 |
msgstr "Inserzioni che hanno bisogno di te"
|
739 |
|
740 |
-
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:
|
741 |
#: dashboard/publisher/groups-main.php:34
|
742 |
#: dashboard/publisher/schedules-main.php:34
|
743 |
#: dashboard/publisher/statistics-main.php:35
|
@@ -756,81 +773,11 @@ msgstr "Gruppi"
|
|
756 |
msgid "Have errors"
|
757 |
msgstr "Errori"
|
758 |
|
759 |
-
#: dashboard/info.php:
|
760 |
-
msgid "AdRotate Banner Manager"
|
761 |
-
msgstr "AdRotate Banner Manager"
|
762 |
-
|
763 |
-
#: dashboard/info.php:49
|
764 |
-
msgid "Support AdRotate Banner Manager"
|
765 |
-
msgstr "Supporto AdRotate Banner Manager"
|
766 |
-
|
767 |
-
#: dashboard/info.php:50
|
768 |
-
msgid ""
|
769 |
-
"Consider writing a review or making a donation if you like the plugin or if "
|
770 |
-
"you find the plugin useful. Thanks for your support!"
|
771 |
-
msgstr ""
|
772 |
-
"Prendi in considerazione la possibilità di scrivere una recensione o di fare "
|
773 |
-
"una donazione se ti piace il plugin o se ritieni che il plugin sia utile. "
|
774 |
-
"Grazie per il vostro sostegno!"
|
775 |
-
|
776 |
-
#: dashboard/info.php:53 dashboard/support.php:39
|
777 |
-
msgid "Plugins and services"
|
778 |
-
msgstr "Plugin e servizi"
|
779 |
-
|
780 |
-
#: dashboard/info.php:59 dashboard/support.php:47
|
781 |
-
msgid "WP Maintenance"
|
782 |
-
msgstr "WP Maintenance"
|
783 |
-
|
784 |
-
#: dashboard/info.php:60 dashboard/info.php:70 dashboard/support.php:48
|
785 |
-
#: dashboard/support.php:58
|
786 |
-
msgid "Professional service"
|
787 |
-
msgstr "Servizio professionale"
|
788 |
-
|
789 |
-
#: dashboard/info.php:63 dashboard/support.php:51
|
790 |
-
msgid ""
|
791 |
-
"Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
792 |
-
"spam and clean up files."
|
793 |
-
msgstr ""
|
794 |
-
"Ottenere tutti gli ultimi aggiornamenti per WordPress e plugin. "
|
795 |
-
"Manutenzione, eliminazione di spam e pulizia dei file."
|
796 |
-
|
797 |
-
#: dashboard/info.php:69 dashboard/support.php:57
|
798 |
-
msgid "HTML5 Advert setup"
|
799 |
-
msgstr "Impostazione Inserzione HTML5"
|
800 |
-
|
801 |
-
#: dashboard/info.php:73 dashboard/support.php:61
|
802 |
-
msgid ""
|
803 |
-
"Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
804 |
-
"install and configure it for you."
|
805 |
-
msgstr ""
|
806 |
-
"Hai ricevuto un annuncio HTML5 e non riesci a farlo funzionare in AdRotate "
|
807 |
-
"Pro? Lo installerò e configurerò per te."
|
808 |
-
|
809 |
-
#: dashboard/info.php:79 dashboard/support.php:67
|
810 |
-
msgid "Single Page Checkout"
|
811 |
-
msgstr "Pagina singola Checkout"
|
812 |
-
|
813 |
-
#: dashboard/info.php:80 dashboard/support.php:68
|
814 |
-
msgid "WooCommerce Plugin"
|
815 |
-
msgstr "WooCommerce Plugin"
|
816 |
-
|
817 |
-
#: dashboard/info.php:83 dashboard/support.php:71
|
818 |
-
msgid ""
|
819 |
-
"Merge your cart and checkout pages into one single page in seconds with no "
|
820 |
-
"setup required at all."
|
821 |
-
msgstr ""
|
822 |
-
"Unisci il carrello e le pagine di checkout in un'unica pagina in pochi "
|
823 |
-
"secondi senza alcuna configurazione richiesta."
|
824 |
-
|
825 |
-
#: dashboard/info.php:95
|
826 |
-
msgid "News & Updates"
|
827 |
-
msgstr "News ed aggiornamenti"
|
828 |
-
|
829 |
-
#: dashboard/info.php:108
|
830 |
msgid "Buy AdRotate Professional"
|
831 |
msgstr "Acquista AdRotate Professional"
|
832 |
|
833 |
-
#: dashboard/info.php:
|
834 |
msgid ""
|
835 |
"AdRotate Professional has a lot more functions for even better advertising "
|
836 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -841,49 +788,49 @@ msgstr ""
|
|
841 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
842 |
"offrire per te!"
|
843 |
|
844 |
-
#: dashboard/info.php:
|
845 |
msgid "Single License"
|
846 |
msgstr "Licenza singola"
|
847 |
|
848 |
-
#: dashboard/info.php:
|
849 |
msgid "Use on ONE WordPress installation."
|
850 |
msgstr "Utilizzare su un'installazione WordPress."
|
851 |
|
852 |
-
#: dashboard/info.php:
|
853 |
-
#: dashboard/info.php:
|
854 |
msgid "Buy now"
|
855 |
msgstr "Acquista ora"
|
856 |
|
857 |
-
#: dashboard/info.php:
|
858 |
msgid "Duo License"
|
859 |
msgstr "Licenza Duo"
|
860 |
|
861 |
-
#: dashboard/info.php:
|
862 |
msgid "Use on TWO WordPress installations."
|
863 |
msgstr "Utilizzare su due installazioni WordPress."
|
864 |
|
865 |
-
#: dashboard/info.php:
|
866 |
msgid "Multi License"
|
867 |
msgstr "Licenza multipla"
|
868 |
|
869 |
-
#: dashboard/info.php:
|
870 |
msgid "Use on up to FIVE WordPress installations."
|
871 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
872 |
|
873 |
-
#: dashboard/info.php:
|
874 |
msgid "Developer License"
|
875 |
msgstr "Licenza Developer"
|
876 |
|
877 |
-
#: dashboard/info.php:
|
878 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
879 |
msgstr ""
|
880 |
"Utilizzare su un massimo di un HUNDRED WordPress installazioni e/o reti."
|
881 |
|
882 |
-
#: dashboard/info.php:
|
883 |
msgid "Advertising Partners & Affiliates"
|
884 |
msgstr "Pubblicità Partner & Affiliati"
|
885 |
|
886 |
-
#: dashboard/info.php:
|
887 |
msgid ""
|
888 |
"A selection of quality advertiser networks and useful products. If you need "
|
889 |
"adverts or just want more or more diverse adverts. Check out these great "
|
@@ -893,9 +840,14 @@ msgstr ""
|
|
893 |
"bisogno di pubblicità o vuoi solo più pubblicità o pubblicità diverse. Dai "
|
894 |
"un'occhiata a queste fantastiche opzioni!"
|
895 |
|
896 |
-
#: dashboard/info.php:
|
897 |
-
msgid "
|
898 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
899 |
|
900 |
#: dashboard/publisher/adverts-disabled.php:15
|
901 |
msgid "Disabled Adverts"
|
@@ -935,10 +887,10 @@ msgid "Go"
|
|
935 |
msgstr "Vai"
|
936 |
|
937 |
#: dashboard/publisher/adverts-disabled.php:35
|
938 |
-
#: dashboard/publisher/adverts-edit.php:
|
939 |
#: dashboard/publisher/adverts-error.php:39
|
940 |
#: dashboard/publisher/adverts-main.php:39
|
941 |
-
#: dashboard/publisher/groups-edit.php:
|
942 |
#: dashboard/publisher/groups-main.php:32
|
943 |
#: dashboard/publisher/schedules-main.php:31
|
944 |
msgid "ID"
|
@@ -953,11 +905,11 @@ msgstr "Inizio / Fine"
|
|
953 |
|
954 |
#: dashboard/publisher/adverts-disabled.php:37
|
955 |
#: dashboard/publisher/adverts-edit.php:112
|
956 |
-
#: dashboard/publisher/adverts-edit.php:
|
957 |
#: dashboard/publisher/adverts-error.php:40
|
958 |
#: dashboard/publisher/adverts-main.php:41
|
959 |
-
#: dashboard/publisher/groups-edit.php:
|
960 |
-
#: dashboard/publisher/groups-edit.php:
|
961 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
962 |
#: dashboard/publisher/schedules-main.php:33
|
963 |
msgid "Name"
|
@@ -965,14 +917,14 @@ msgstr "Nome"
|
|
965 |
|
966 |
#: dashboard/publisher/adverts-disabled.php:39
|
967 |
#: dashboard/publisher/adverts-main.php:43
|
968 |
-
#: dashboard/publisher/groups-edit.php:
|
969 |
#: dashboard/publisher/groups-main.php:36
|
970 |
msgid "Shown"
|
971 |
msgstr "Visibile"
|
972 |
|
973 |
#: dashboard/publisher/adverts-disabled.php:40
|
974 |
#: dashboard/publisher/adverts-main.php:45
|
975 |
-
#: dashboard/publisher/groups-edit.php:
|
976 |
#: dashboard/publisher/groups-main.php:38
|
977 |
#: dashboard/publisher/statistics-advert.php:52
|
978 |
#: dashboard/publisher/statistics-advert.php:58
|
@@ -1228,19 +1180,14 @@ msgid "Disabled, do not show this advert anywhere"
|
|
1228 |
msgstr "Disabilitato, non mostrare questo annuncio da nessuna parte"
|
1229 |
|
1230 |
#: dashboard/publisher/adverts-edit.php:198
|
1231 |
-
#: dashboard/publisher/adverts-main.php:90
|
1232 |
-
#: dashboard/publisher/groups-main.php:89
|
1233 |
msgid "Get more features with AdRotate Pro."
|
1234 |
msgstr "Ottieni più funzionalità con AdRotate Pro."
|
1235 |
|
1236 |
#: dashboard/publisher/adverts-edit.php:198
|
1237 |
-
#: dashboard/publisher/adverts-edit.php:
|
1238 |
-
#: dashboard/publisher/adverts-edit.php:
|
1239 |
-
#: dashboard/publisher/adverts-edit.php:
|
1240 |
-
#: dashboard/publisher/
|
1241 |
-
#: dashboard/publisher/groups-edit.php:216
|
1242 |
-
#: dashboard/publisher/groups-main.php:89 dashboard/publisher/media.php:73
|
1243 |
-
#: dashboard/publisher/schedules-main.php:89
|
1244 |
#: dashboard/publisher/statistics-advert.php:109
|
1245 |
#: dashboard/publisher/statistics-group.php:113
|
1246 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -1248,39 +1195,39 @@ msgid "Upgrade now"
|
|
1248 |
msgstr "Aggiorna adesso"
|
1249 |
|
1250 |
#: dashboard/publisher/adverts-edit.php:201
|
1251 |
-
#: dashboard/publisher/adverts-edit.php:
|
1252 |
-
#: dashboard/publisher/adverts-edit.php:
|
1253 |
-
#: dashboard/publisher/adverts-edit.php:
|
1254 |
msgid "Save Advert"
|
1255 |
msgstr "Salva inserzione"
|
1256 |
|
1257 |
#: dashboard/publisher/adverts-edit.php:202
|
1258 |
-
#: dashboard/publisher/adverts-edit.php:
|
1259 |
-
#: dashboard/publisher/adverts-edit.php:
|
1260 |
-
#: dashboard/publisher/adverts-edit.php:
|
1261 |
-
#: dashboard/publisher/adverts-generator.php:
|
1262 |
-
#: dashboard/publisher/groups-edit.php:
|
1263 |
-
#: dashboard/publisher/groups-edit.php:
|
1264 |
-
#: dashboard/publisher/groups-edit.php:
|
1265 |
msgid "Cancel"
|
1266 |
msgstr "Annulla"
|
1267 |
|
1268 |
#: dashboard/publisher/adverts-edit.php:205
|
1269 |
-
#: dashboard/publisher/adverts-edit.php:
|
1270 |
-
#: dashboard/publisher/groups-edit.php:
|
1271 |
-
#: dashboard/publisher/groups-edit.php:
|
1272 |
msgid "Usage"
|
1273 |
msgstr "Utilizzo"
|
1274 |
|
1275 |
#: dashboard/publisher/adverts-edit.php:209
|
1276 |
-
#: dashboard/publisher/adverts-edit.php:
|
1277 |
-
#: dashboard/publisher/groups-edit.php:
|
1278 |
-
#: dashboard/publisher/groups-edit.php:
|
1279 |
msgid "Widget"
|
1280 |
msgstr "Widget"
|
1281 |
|
1282 |
#: dashboard/publisher/adverts-edit.php:210
|
1283 |
-
#: dashboard/publisher/adverts-edit.php:
|
1284 |
msgid ""
|
1285 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1286 |
"and select the advert or the group the advert is in."
|
@@ -1289,28 +1236,24 @@ msgstr ""
|
|
1289 |
"seleziona questa o il gruppo in cui l'inserzione si trova."
|
1290 |
|
1291 |
#: dashboard/publisher/adverts-edit.php:213
|
1292 |
-
#: dashboard/publisher/adverts-edit.php:
|
1293 |
-
#: dashboard/publisher/groups-edit.php:
|
1294 |
-
#: dashboard/publisher/groups-edit.php:
|
1295 |
msgid "In a post or page"
|
1296 |
msgstr "In un post o in una pagina"
|
1297 |
|
1298 |
#: dashboard/publisher/adverts-edit.php:215
|
1299 |
-
#: dashboard/publisher/adverts-edit.php:
|
1300 |
-
#: dashboard/publisher/groups-edit.php:
|
1301 |
-
#: dashboard/publisher/groups-edit.php:
|
1302 |
msgid "Directly in a theme"
|
1303 |
msgstr "Direttamente in un tema"
|
1304 |
|
1305 |
#: dashboard/publisher/adverts-edit.php:221
|
1306 |
-
msgid "Get contextual adverts from Media.net"
|
1307 |
-
msgstr "Ottenere inserzioni contestuali da Media.net"
|
1308 |
-
|
1309 |
-
#: dashboard/publisher/adverts-edit.php:234
|
1310 |
msgid "Schedule your advert"
|
1311 |
msgstr "Pianifica la tua inserzione"
|
1312 |
|
1313 |
-
#: dashboard/publisher/adverts-edit.php:
|
1314 |
msgid ""
|
1315 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1316 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
@@ -1320,36 +1263,36 @@ msgstr ""
|
|
1320 |
"tienilo a mente: se l'ora di inizio o di fine è dopo pranzo, aggiungi 12 "
|
1321 |
"ore. 2PM è 14:00 ore. 6AM è 6:00 ore."
|
1322 |
|
1323 |
-
#: dashboard/publisher/adverts-edit.php:
|
1324 |
msgid "Start date"
|
1325 |
msgstr "Data di inizio"
|
1326 |
|
1327 |
-
#: dashboard/publisher/adverts-edit.php:
|
1328 |
msgid "End date"
|
1329 |
msgstr "Data fine"
|
1330 |
|
1331 |
-
#: dashboard/publisher/adverts-edit.php:
|
1332 |
msgid "Start time"
|
1333 |
msgstr "Ora di inizio"
|
1334 |
|
1335 |
-
#: dashboard/publisher/adverts-edit.php:
|
1336 |
msgid "End time"
|
1337 |
msgstr "Ora fine"
|
1338 |
|
1339 |
-
#: dashboard/publisher/adverts-edit.php:
|
1340 |
msgid "Maximum Clicks"
|
1341 |
msgstr "Numero massimo di clic"
|
1342 |
|
1343 |
-
#: dashboard/publisher/adverts-edit.php:
|
1344 |
-
#: dashboard/publisher/adverts-edit.php:
|
1345 |
msgid "Leave empty or 0 to skip this."
|
1346 |
msgstr "Lasciare vuoto o 0 per ignorare questa opzione."
|
1347 |
|
1348 |
-
#: dashboard/publisher/adverts-edit.php:
|
1349 |
msgid "Maximum Impressions"
|
1350 |
msgstr "Numero massimo di impressioni"
|
1351 |
|
1352 |
-
#: dashboard/publisher/adverts-edit.php:
|
1353 |
msgid ""
|
1354 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1355 |
"Pro."
|
@@ -1357,69 +1300,69 @@ msgstr ""
|
|
1357 |
"Crea pianificazioni multiple e più avanzate per ogni inserzione con AdRotate "
|
1358 |
"Pro."
|
1359 |
|
1360 |
-
#: dashboard/publisher/adverts-edit.php:
|
1361 |
-
#: dashboard/publisher/groups-edit.php:
|
1362 |
#: dashboard/settings/statistics.php:29
|
1363 |
msgid "Advanced"
|
1364 |
msgstr "Avanzate"
|
1365 |
|
1366 |
-
#: dashboard/publisher/adverts-edit.php:
|
1367 |
-
#: dashboard/publisher/adverts-edit.php:
|
1368 |
msgid "Available in AdRotate Pro!"
|
1369 |
msgstr "Disponibile in AdRotate Pro!"
|
1370 |
|
1371 |
-
#: dashboard/publisher/adverts-edit.php:
|
1372 |
msgid "Show to everyone"
|
1373 |
msgstr "Mostra a tutti"
|
1374 |
|
1375 |
-
#: dashboard/publisher/adverts-edit.php:
|
1376 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1377 |
msgstr ""
|
1378 |
"Disattiva questa opzione per nascondere l'inserzione ai visitatori che hanno "
|
1379 |
"effettuato l'accesso."
|
1380 |
|
1381 |
-
#: dashboard/publisher/adverts-edit.php:
|
1382 |
-
#: dashboard/publisher/groups-edit.php:
|
1383 |
msgid "Weight"
|
1384 |
msgstr "Peso"
|
1385 |
|
1386 |
-
#: dashboard/publisher/adverts-edit.php:
|
1387 |
msgid "Few impressions"
|
1388 |
msgstr "Poche impressioni"
|
1389 |
|
1390 |
-
#: dashboard/publisher/adverts-edit.php:
|
1391 |
msgid "Less than average"
|
1392 |
msgstr "Meno della media"
|
1393 |
|
1394 |
-
#: dashboard/publisher/adverts-edit.php:
|
1395 |
msgid "Normal impressions"
|
1396 |
msgstr "Impressioni normali"
|
1397 |
|
1398 |
-
#: dashboard/publisher/adverts-edit.php:
|
1399 |
msgid "More than average"
|
1400 |
msgstr "Più della media"
|
1401 |
|
1402 |
-
#: dashboard/publisher/adverts-edit.php:
|
1403 |
msgid "Many impressions"
|
1404 |
msgstr "Molte impressioni"
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
msgid "Mobile"
|
1408 |
msgstr "Cellulare"
|
1409 |
|
1410 |
-
#: dashboard/publisher/adverts-edit.php:
|
1411 |
msgid "Desktops/Laptops"
|
1412 |
msgstr "Desktops/Laptops"
|
1413 |
|
1414 |
-
#: dashboard/publisher/adverts-edit.php:
|
1415 |
msgid "Smartphones"
|
1416 |
msgstr "Smartphones"
|
1417 |
|
1418 |
-
#: dashboard/publisher/adverts-edit.php:
|
1419 |
msgid "Tablets"
|
1420 |
msgstr "Tablet"
|
1421 |
|
1422 |
-
#: dashboard/publisher/adverts-edit.php:
|
1423 |
msgid ""
|
1424 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1425 |
"and 'Operating System' are ignored!"
|
@@ -1428,7 +1371,7 @@ msgstr ""
|
|
1428 |
"questa inserzione oppure 'Dispositivo' e 'Sistema Operativo' verranno "
|
1429 |
"ignorati!"
|
1430 |
|
1431 |
-
#: dashboard/publisher/adverts-edit.php:
|
1432 |
msgid ""
|
1433 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1434 |
"Other' for everything else."
|
@@ -1436,31 +1379,31 @@ msgstr ""
|
|
1436 |
"L'individuazione dei sistemi operativi individua solo iOS e Android, "
|
1437 |
"seleziona 'Non Mobili/Altri' per tutto il resto."
|
1438 |
|
1439 |
-
#: dashboard/publisher/adverts-edit.php:
|
1440 |
msgid "Mobile OS"
|
1441 |
msgstr "Sistema operativo mobile"
|
1442 |
|
1443 |
-
#: dashboard/publisher/adverts-edit.php:
|
1444 |
msgid "iOS"
|
1445 |
msgstr "iOS"
|
1446 |
|
1447 |
-
#: dashboard/publisher/adverts-edit.php:
|
1448 |
msgid "Android"
|
1449 |
msgstr "Android"
|
1450 |
|
1451 |
-
#: dashboard/publisher/adverts-edit.php:
|
1452 |
msgid "Not mobile/Others"
|
1453 |
msgstr "Non mobili/Altri"
|
1454 |
|
1455 |
-
#: dashboard/publisher/adverts-edit.php:
|
1456 |
msgid "Auto-delete"
|
1457 |
msgstr "Auto-eliminazione"
|
1458 |
|
1459 |
-
#: dashboard/publisher/adverts-edit.php:
|
1460 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1461 |
msgstr "Eliminare automaticamente l'inserzione 1 giorno dopo la scadenza?"
|
1462 |
|
1463 |
-
#: dashboard/publisher/adverts-edit.php:
|
1464 |
msgid ""
|
1465 |
"This is useful for short running campaigns that do not require attention "
|
1466 |
"after they finish."
|
@@ -1468,7 +1411,7 @@ msgstr ""
|
|
1468 |
"Ciò è utile per le campagne a breve esecuzione che non richiedono attenzione "
|
1469 |
"al termine."
|
1470 |
|
1471 |
-
#: dashboard/publisher/adverts-edit.php:
|
1472 |
msgid ""
|
1473 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1474 |
"systems the advert should show on!"
|
@@ -1476,95 +1419,122 @@ msgstr ""
|
|
1476 |
"Con AdRotate Pro puoi facilmente selezionare su quali dispositivi e sistemi "
|
1477 |
"operativi mobili l'annuncio dovrebbe essere mostrato!"
|
1478 |
|
1479 |
-
#: dashboard/publisher/adverts-edit.php:
|
1480 |
msgid ""
|
1481 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1482 |
msgstr ""
|
1483 |
"Assegna l'annuncio a un gruppo e abilita quel gruppo a utilizzare il Geo "
|
1484 |
"Targeting."
|
1485 |
|
1486 |
-
#: dashboard/publisher/adverts-edit.php:
|
1487 |
msgid "Enter cities or metro IDs (DMA)"
|
1488 |
msgstr "Immettere città o metro-ID (DMA)"
|
1489 |
|
1490 |
-
#: dashboard/publisher/adverts-edit.php:
|
1491 |
msgid "A comma separated list of Cities or Metro IDs:"
|
1492 |
msgstr "Un elenco separato da virgole di città o indirizzi di lavoro metro:"
|
1493 |
|
1494 |
-
#: dashboard/publisher/adverts-edit.php:
|
1495 |
-
#: dashboard/publisher/adverts-edit.php:
|
1496 |
msgid ""
|
1497 |
"AdRotate does not check the validity of names and assumes the basic english "
|
1498 |
"name."
|
1499 |
msgstr ""
|
1500 |
"AdRotate non controlla la validità dei nomi e assume il nome inglese di base."
|
1501 |
|
1502 |
-
#: dashboard/publisher/adverts-edit.php:
|
1503 |
msgid "Enter States or State ISO3166-2 codes"
|
1504 |
msgstr "Immettere gli stati o i codici ISO3166-2 di stato"
|
1505 |
|
1506 |
-
#: dashboard/publisher/adverts-edit.php:
|
1507 |
msgid "The listed cities must be in these states?"
|
1508 |
msgstr "Le città elencate devono trovarsi in questi stati?"
|
1509 |
|
1510 |
-
#: dashboard/publisher/adverts-edit.php:
|
1511 |
msgid "A comma separated list of states:"
|
1512 |
msgstr "Un elenco di stati separati da virgole:"
|
1513 |
|
1514 |
-
#: dashboard/publisher/adverts-edit.php:
|
1515 |
msgid "Select Countries and or Regions"
|
1516 |
msgstr "Seleziona Paesi e Regioni"
|
1517 |
|
1518 |
-
#: dashboard/publisher/adverts-edit.php:
|
1519 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1520 |
msgstr "Scegli come target il tuo pubblico con Geo Targeting in AdRotate Pro"
|
1521 |
|
1522 |
-
#: dashboard/publisher/adverts-edit.php:
|
1523 |
msgid "Select Groups"
|
1524 |
msgstr "Seleziona gruppi"
|
1525 |
|
1526 |
-
#: dashboard/publisher/adverts-edit.php:
|
1527 |
#: dashboard/publisher/groups-main.php:60
|
1528 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1529 |
msgid "Default"
|
1530 |
msgstr "Predefinito"
|
1531 |
|
1532 |
-
#: dashboard/publisher/adverts-edit.php:
|
1533 |
#: dashboard/publisher/groups-main.php:61
|
1534 |
msgid "Dynamic"
|
1535 |
msgstr "Dinamico"
|
1536 |
|
1537 |
-
#: dashboard/publisher/adverts-edit.php:
|
1538 |
#: dashboard/publisher/groups-main.php:61
|
1539 |
msgid "second rotation"
|
1540 |
msgstr "seconda rotazione"
|
1541 |
|
1542 |
-
#: dashboard/publisher/adverts-edit.php:
|
1543 |
#: dashboard/publisher/groups-main.php:62
|
1544 |
msgid "Block"
|
1545 |
msgstr "Blocco"
|
1546 |
|
1547 |
-
#: dashboard/publisher/adverts-edit.php:
|
1548 |
#: dashboard/publisher/groups-main.php:62
|
1549 |
msgid "grid"
|
1550 |
msgstr "griglia"
|
1551 |
|
1552 |
-
#: dashboard/publisher/adverts-edit.php:
|
1553 |
-
#: dashboard/publisher/groups-edit.php:
|
1554 |
#: dashboard/publisher/groups-main.php:63
|
1555 |
msgid "Post Injection"
|
1556 |
msgstr "Post iniezione"
|
1557 |
|
1558 |
-
#: dashboard/publisher/adverts-edit.php:
|
1559 |
msgid "Geolocation"
|
1560 |
msgstr "Geolocalizzazione"
|
1561 |
|
1562 |
-
#: dashboard/publisher/adverts-edit.php:
|
1563 |
-
#: dashboard/publisher/groups-edit.php:
|
1564 |
#: dashboard/publisher/groups-main.php:70
|
1565 |
msgid "Mode"
|
1566 |
msgstr "Modalità"
|
1567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1568 |
#: dashboard/publisher/adverts-error.php:12
|
1569 |
msgid "Adverts that need attention"
|
1570 |
msgstr "Inserzioni che necessitano di attenzione"
|
@@ -1628,6 +1598,16 @@ msgstr ""
|
|
1628 |
"generatore AdRotate prenderà i tuoi pezzi e cercherà di generare un codice "
|
1629 |
"di codice funzionante da esso."
|
1630 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1631 |
#: dashboard/publisher/adverts-generator.php:39
|
1632 |
msgid ""
|
1633 |
"If you have a complete and working ad code / ad tag you do not use the "
|
@@ -1683,7 +1663,7 @@ msgid "Viewports"
|
|
1683 |
msgstr "Larghezze di schermo"
|
1684 |
|
1685 |
#: dashboard/publisher/adverts-generator.php:77
|
1686 |
-
#: dashboard/publisher/groups-edit.php:
|
1687 |
#: dashboard/settings/notifications.php:48
|
1688 |
msgid "Available in AdRotate Pro"
|
1689 |
msgstr "Disponibile in AdRotate Pro"
|
@@ -1808,19 +1788,27 @@ msgstr ""
|
|
1808 |
"Alcuni bot/crawler li usano come misura descrittiva per vedere di cosa "
|
1809 |
"tratta il codice."
|
1810 |
|
1811 |
-
#: dashboard/publisher/adverts-generator.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1812 |
msgid "Generate and Configure Advert"
|
1813 |
msgstr "Genera e configura inserzione"
|
1814 |
|
1815 |
-
#: dashboard/publisher/adverts-generator.php:
|
1816 |
msgid "Always test your adverts before activating them."
|
1817 |
msgstr "Prova sempre le tue inserzioni prima di attivarle."
|
1818 |
|
1819 |
-
#: dashboard/publisher/adverts-generator.php:
|
1820 |
-
msgid "
|
1821 |
-
msgstr "
|
1822 |
|
1823 |
-
#: dashboard/publisher/adverts-generator.php:
|
1824 |
msgid ""
|
1825 |
"While the Code Generator has been tested and works, code generation, as "
|
1826 |
"always, is a interpretation of user input. If you provide the correct bits "
|
@@ -1833,13 +1821,15 @@ msgstr ""
|
|
1833 |
"funzionante. Se lasci vuoti i campi o inserisci le informazioni errate, "
|
1834 |
"probabilmente avrai un annuncio danneggiato."
|
1835 |
|
1836 |
-
#: dashboard/publisher/adverts-generator.php:
|
1837 |
-
msgid ""
|
1838 |
-
|
1839 |
-
|
|
|
|
|
1840 |
msgstr ""
|
1841 |
-
"
|
1842 |
-
"
|
1843 |
|
1844 |
#: dashboard/publisher/adverts-main.php:12
|
1845 |
msgid "Active Adverts"
|
@@ -1862,46 +1852,65 @@ msgstr "Oggi"
|
|
1862 |
msgid "No adverts created yet!"
|
1863 |
msgstr "Non sono ancora state create inserzioni!"
|
1864 |
|
1865 |
-
#: dashboard/publisher/groups-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1866 |
msgid "New Group"
|
1867 |
msgstr "Nuovo gruppo"
|
1868 |
|
1869 |
-
#: dashboard/publisher/groups-edit.php:
|
1870 |
msgid "Edit Group"
|
1871 |
msgstr "Modifica Gruppo"
|
1872 |
|
1873 |
-
#: dashboard/publisher/groups-edit.php:
|
1874 |
msgid "Default - Show one ad at a time"
|
1875 |
msgstr "Predefinito - Mostra un annuncio alla volta"
|
1876 |
|
1877 |
-
#: dashboard/publisher/groups-edit.php:
|
1878 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1879 |
msgstr "Modalità Dinamica - Mostra un annuncio differente ogni pochi secondi"
|
1880 |
|
1881 |
-
#: dashboard/publisher/groups-edit.php:
|
1882 |
msgid "Block Mode - Show a block of adverts"
|
1883 |
msgstr "Blocco - Mostra un blocco di inserzioni"
|
1884 |
|
1885 |
-
#: dashboard/publisher/groups-edit.php:
|
1886 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1887 |
msgstr ""
|
1888 |
"La modalità dinamica richiede jQuery.Dynamic mode requires jQuery. È "
|
1889 |
"possibile abilitare questa funzionalità in Impostazioni AdRotate.You can "
|
1890 |
"enable this in AdRotate Settings."
|
1891 |
|
1892 |
-
#: dashboard/publisher/groups-edit.php:
|
1893 |
msgid "Advert size"
|
1894 |
msgstr "Dimensioni dell'inserzione"
|
1895 |
|
1896 |
-
#: dashboard/publisher/groups-edit.php:
|
1897 |
msgid "pixel(s) wide"
|
1898 |
msgstr "pixel(i) di larghezza"
|
1899 |
|
1900 |
-
#: dashboard/publisher/groups-edit.php:
|
1901 |
msgid "pixel(s) high."
|
1902 |
msgstr "pixel(i) in alto."
|
1903 |
|
1904 |
-
#: dashboard/publisher/groups-edit.php:
|
1905 |
msgid ""
|
1906 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1907 |
"recommended)."
|
@@ -1909,78 +1918,78 @@ msgstr ""
|
|
1909 |
"Definisci le dimensioni massime delle inserzioni in pixel. La dimensione può "
|
1910 |
"essere 'auto' (scelta non consigliata)."
|
1911 |
|
1912 |
-
#: dashboard/publisher/groups-edit.php:
|
1913 |
msgid "Dynamic and Block Mode"
|
1914 |
msgstr "Modalità dinamica e di blocco"
|
1915 |
|
1916 |
-
#: dashboard/publisher/groups-edit.php:
|
1917 |
msgid "Block size"
|
1918 |
msgstr "Dimensione blocco"
|
1919 |
|
1920 |
-
#: dashboard/publisher/groups-edit.php:
|
1921 |
msgid "rows"
|
1922 |
msgstr "righe"
|
1923 |
|
1924 |
-
#: dashboard/publisher/groups-edit.php:
|
1925 |
msgid "columns"
|
1926 |
msgstr "colonne"
|
1927 |
|
1928 |
-
#: dashboard/publisher/groups-edit.php:
|
1929 |
msgid "Block Mode"
|
1930 |
msgstr "Modalità blocco"
|
1931 |
|
1932 |
-
#: dashboard/publisher/groups-edit.php:
|
1933 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1934 |
msgstr ""
|
1935 |
"Blocchi più grandi diminuiranno le prestazioni dei tuoi siti! Valore "
|
1936 |
"predefinito: 2/2."
|
1937 |
|
1938 |
-
#: dashboard/publisher/groups-edit.php:
|
1939 |
msgid "Automated refresh"
|
1940 |
msgstr "Aggiornamento automatico"
|
1941 |
|
1942 |
-
#: dashboard/publisher/groups-edit.php:
|
1943 |
msgid "seconds."
|
1944 |
msgstr "secondi."
|
1945 |
|
1946 |
-
#: dashboard/publisher/groups-edit.php:
|
1947 |
-
#: dashboard/publisher/groups-edit.php:
|
1948 |
msgid "Dynamic Mode"
|
1949 |
msgstr "Modalità dinamica"
|
1950 |
|
1951 |
-
#: dashboard/publisher/groups-edit.php:
|
1952 |
msgid ""
|
1953 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1954 |
msgstr ""
|
1955 |
"Carica una nuova inserzione in questo intervallo senza ricaricare la pagina. "
|
1956 |
"Valore predefinito: 6."
|
1957 |
|
1958 |
-
#: dashboard/publisher/groups-edit.php:
|
1959 |
msgid "Repeat impressions"
|
1960 |
msgstr "Ripeti impressioni"
|
1961 |
|
1962 |
-
#: dashboard/publisher/groups-edit.php:
|
1963 |
msgid "Count impressions for every cycle of adverts?"
|
1964 |
msgstr "Contare le impressioni per ogni ciclo di inserzioni?"
|
1965 |
|
1966 |
-
#: dashboard/publisher/groups-edit.php:
|
1967 |
msgid ""
|
1968 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1969 |
msgstr ""
|
1970 |
"Deseleziona questa opzione per contare solo le impressioni per il primo "
|
1971 |
"ciclo di inserzioni."
|
1972 |
|
1973 |
-
#: dashboard/publisher/groups-edit.php:
|
1974 |
-
#: dashboard/publisher/groups-edit.php:
|
1975 |
msgid "Get access to all features in AdRotate Pro."
|
1976 |
msgstr "Accedi a tutte le funzioni di AdRotate Pro."
|
1977 |
|
1978 |
-
#: dashboard/publisher/groups-edit.php:
|
1979 |
msgid "Upgrade today"
|
1980 |
msgstr "Aggiorna oggi stesso"
|
1981 |
|
1982 |
-
#: dashboard/publisher/groups-edit.php:
|
1983 |
-
#: dashboard/publisher/groups-edit.php:
|
1984 |
msgid ""
|
1985 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1986 |
"Adverts\" and enter ID"
|
@@ -1988,56 +1997,56 @@ msgstr ""
|
|
1988 |
"Trascina il widget AdRotate nella sidebar in cui vuoi metterlo, seleziona "
|
1989 |
"\"Gruppo di Inserzioni\" e immetti l'ID"
|
1990 |
|
1991 |
-
#: dashboard/publisher/groups-edit.php:
|
1992 |
-
#: dashboard/publisher/groups-edit.php:
|
1993 |
-
#: dashboard/publisher/groups-edit.php:
|
1994 |
msgid "Save Group"
|
1995 |
msgstr "Salva gruppo"
|
1996 |
|
1997 |
-
#: dashboard/publisher/groups-edit.php:
|
1998 |
msgid "Advert Margin"
|
1999 |
msgstr "Margine dell'inserzione"
|
2000 |
|
2001 |
-
#: dashboard/publisher/groups-edit.php:
|
2002 |
msgid "pixel(s)"
|
2003 |
msgstr "pixel"
|
2004 |
|
2005 |
-
#: dashboard/publisher/groups-edit.php:
|
2006 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2007 |
msgstr ""
|
2008 |
"Un'area trasparente al di fuori dell'annuncio in pixel. Valore predefinito: "
|
2009 |
"0."
|
2010 |
|
2011 |
-
#: dashboard/publisher/groups-edit.php:
|
2012 |
msgid "Set to 0 to disable."
|
2013 |
msgstr "Impostare su 0 per disabilitare."
|
2014 |
|
2015 |
-
#: dashboard/publisher/groups-edit.php:
|
2016 |
msgid "Margins are automatically disabled for blocks where required."
|
2017 |
msgstr ""
|
2018 |
"I margini vengono disattivati automaticamente per i blocchi dove richiesto."
|
2019 |
|
2020 |
-
#: dashboard/publisher/groups-edit.php:
|
2021 |
msgid "Align the group"
|
2022 |
msgstr "Allineare il gruppo"
|
2023 |
|
2024 |
-
#: dashboard/publisher/groups-edit.php:
|
2025 |
msgid "None (Default)"
|
2026 |
msgstr "Nessuno (default)"
|
2027 |
|
2028 |
-
#: dashboard/publisher/groups-edit.php:
|
2029 |
msgid "Left"
|
2030 |
msgstr "Sinistra"
|
2031 |
|
2032 |
-
#: dashboard/publisher/groups-edit.php:
|
2033 |
msgid "Right"
|
2034 |
msgstr "Destra"
|
2035 |
|
2036 |
-
#: dashboard/publisher/groups-edit.php:
|
2037 |
msgid "Center"
|
2038 |
msgstr "Centro"
|
2039 |
|
2040 |
-
#: dashboard/publisher/groups-edit.php:
|
2041 |
msgid ""
|
2042 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2043 |
"setting. Not every theme supports this feature."
|
@@ -2046,32 +2055,32 @@ msgstr ""
|
|
2046 |
"influire sull'impostazione del margine. Non tutti i temi supportano questa "
|
2047 |
"funzione."
|
2048 |
|
2049 |
-
#: dashboard/publisher/groups-edit.php:
|
2050 |
msgid "Enable Geo Targeting for this group."
|
2051 |
msgstr "Abilita targeting geografico per questo gruppo."
|
2052 |
|
2053 |
-
#: dashboard/publisher/groups-edit.php:
|
2054 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2055 |
msgstr ""
|
2056 |
"Non dimenticare di comunicare gli annunci per quali aree dovrebbero mostrare."
|
2057 |
|
2058 |
-
#: dashboard/publisher/groups-edit.php:
|
2059 |
msgid "Mobile Support"
|
2060 |
msgstr "Supporto mobile"
|
2061 |
|
2062 |
-
#: dashboard/publisher/groups-edit.php:
|
2063 |
msgid "Enable mobile support for this group."
|
2064 |
msgstr "Abilitare il supporto per dispositivi mobili per questo gruppo."
|
2065 |
|
2066 |
-
#: dashboard/publisher/groups-edit.php:
|
2067 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2068 |
msgstr "Non dimenticare di mettere almeno un annuncio mobile in questo gruppo."
|
2069 |
|
2070 |
-
#: dashboard/publisher/groups-edit.php:
|
2071 |
msgid "Fallback Group"
|
2072 |
msgstr "Fallback Group"
|
2073 |
|
2074 |
-
#: dashboard/publisher/groups-edit.php:
|
2075 |
msgid ""
|
2076 |
"Select another group to fall back on when all adverts are expired, not in "
|
2077 |
"the visitors geographic area or are otherwise unavailable."
|
@@ -2079,134 +2088,134 @@ msgstr ""
|
|
2079 |
"Seleziona un altro gruppo su cui ripiegare quando tutte le inserzioni sono "
|
2080 |
"scadute, non nell'area geografica dei visitatori o non sono disponibili."
|
2081 |
|
2082 |
-
#: dashboard/publisher/groups-edit.php:
|
2083 |
-
#: dashboard/publisher/groups-edit.php:
|
2084 |
#: dashboard/settings/geotargeting.php:24
|
2085 |
msgid "Disabled"
|
2086 |
msgstr "Disabilitato"
|
2087 |
|
2088 |
-
#: dashboard/publisher/groups-edit.php:
|
2089 |
-
#: dashboard/publisher/groups-edit.php:
|
2090 |
msgid "Widget (Pro only)"
|
2091 |
msgstr "Widget (solo Pro)"
|
2092 |
|
2093 |
-
#: dashboard/publisher/groups-edit.php:
|
2094 |
-
#: dashboard/publisher/groups-edit.php:
|
2095 |
msgid "Before content"
|
2096 |
msgstr "Prima del contenuto"
|
2097 |
|
2098 |
-
#: dashboard/publisher/groups-edit.php:
|
2099 |
-
#: dashboard/publisher/groups-edit.php:
|
2100 |
msgid "After content"
|
2101 |
msgstr "Dopo il contenuto"
|
2102 |
|
2103 |
-
#: dashboard/publisher/groups-edit.php:
|
2104 |
-
#: dashboard/publisher/groups-edit.php:
|
2105 |
msgid "Before and after content"
|
2106 |
msgstr "Contenuto prima e dopo"
|
2107 |
|
2108 |
-
#: dashboard/publisher/groups-edit.php:
|
2109 |
-
#: dashboard/publisher/groups-edit.php:
|
2110 |
msgid "Inside the content..."
|
2111 |
msgstr "All'interno del contenuto..."
|
2112 |
|
2113 |
-
#: dashboard/publisher/groups-edit.php:
|
2114 |
-
#: dashboard/publisher/groups-edit.php:
|
2115 |
msgid "after the middle paragraph"
|
2116 |
msgstr "dopo il paragrafo centrale"
|
2117 |
|
2118 |
-
#: dashboard/publisher/groups-edit.php:
|
2119 |
-
#: dashboard/publisher/groups-edit.php:
|
2120 |
msgid "after the 1st paragraph"
|
2121 |
msgstr "dopo il primo paragrafo"
|
2122 |
|
2123 |
-
#: dashboard/publisher/groups-edit.php:
|
2124 |
-
#: dashboard/publisher/groups-edit.php:
|
2125 |
msgid "after the 2nd paragraph"
|
2126 |
msgstr "dopo il secondo paragrafo"
|
2127 |
|
2128 |
-
#: dashboard/publisher/groups-edit.php:
|
2129 |
-
#: dashboard/publisher/groups-edit.php:
|
2130 |
msgid "after the 3rd paragraph"
|
2131 |
msgstr "dopo il terzo paragrafo"
|
2132 |
|
2133 |
-
#: dashboard/publisher/groups-edit.php:
|
2134 |
-
#: dashboard/publisher/groups-edit.php:
|
2135 |
msgid "after the 4th paragraph"
|
2136 |
msgstr "dopo il quarto paragrafo"
|
2137 |
|
2138 |
-
#: dashboard/publisher/groups-edit.php:
|
2139 |
-
#: dashboard/publisher/groups-edit.php:
|
2140 |
msgid "after the 5th paragraph"
|
2141 |
msgstr "dopo il quinto paragrafo"
|
2142 |
|
2143 |
-
#: dashboard/publisher/groups-edit.php:
|
2144 |
-
#: dashboard/publisher/groups-edit.php:
|
2145 |
msgid "after the 6th paragraph"
|
2146 |
msgstr "dopo il sesto paragrafo"
|
2147 |
|
2148 |
-
#: dashboard/publisher/groups-edit.php:
|
2149 |
-
#: dashboard/publisher/groups-edit.php:
|
2150 |
msgid "after the 7th paragraph"
|
2151 |
msgstr "dopo il settimo paragrafo"
|
2152 |
|
2153 |
-
#: dashboard/publisher/groups-edit.php:
|
2154 |
-
#: dashboard/publisher/groups-edit.php:
|
2155 |
msgid "after the 8th paragraph"
|
2156 |
msgstr "dopo l'ottavo paragrafo"
|
2157 |
|
2158 |
-
#: dashboard/publisher/groups-edit.php:
|
2159 |
msgid "Page Injection"
|
2160 |
msgstr "Inserimento di pagine"
|
2161 |
|
2162 |
-
#: dashboard/publisher/groups-edit.php:
|
2163 |
msgid "Wrapper code"
|
2164 |
msgstr "Codice wrapper"
|
2165 |
|
2166 |
-
#: dashboard/publisher/groups-edit.php:
|
2167 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2168 |
msgstr ""
|
2169 |
"Avvolge ogni inserzione. HTML/JavaScript consentito, utilizzare con cura!"
|
2170 |
|
2171 |
-
#: dashboard/publisher/groups-edit.php:
|
2172 |
msgid "Before advert"
|
2173 |
msgstr "Before advert"
|
2174 |
|
2175 |
-
#: dashboard/publisher/groups-edit.php:
|
2176 |
-
#: dashboard/publisher/groups-edit.php:
|
2177 |
msgid "Example:"
|
2178 |
msgstr "Esempio:"
|
2179 |
|
2180 |
-
#: dashboard/publisher/groups-edit.php:
|
2181 |
msgid "Options:"
|
2182 |
msgstr "Opzioni:"
|
2183 |
|
2184 |
-
#: dashboard/publisher/groups-edit.php:
|
2185 |
msgid "After advert"
|
2186 |
msgstr "After advert"
|
2187 |
|
2188 |
-
#: dashboard/publisher/groups-edit.php:
|
2189 |
msgid "Select adverts"
|
2190 |
msgstr "Seleziona le inserzioni"
|
2191 |
|
2192 |
-
#: dashboard/publisher/groups-edit.php:
|
2193 |
msgid "Visible until"
|
2194 |
msgstr "Visibile fino a"
|
2195 |
|
2196 |
-
#: dashboard/publisher/groups-edit.php:
|
2197 |
msgid "No adverts created!"
|
2198 |
msgstr "Non sono state create inserzioni!"
|
2199 |
|
2200 |
-
#: dashboard/publisher/groups-edit.php:
|
2201 |
msgid "Configuration errors."
|
2202 |
msgstr "Errori di configurazione."
|
2203 |
|
2204 |
-
#: dashboard/publisher/groups-edit.php:
|
2205 |
#: dashboard/publisher/schedules-main.php:87
|
2206 |
msgid "Expires soon."
|
2207 |
msgstr "Scadrà presto"
|
2208 |
|
2209 |
-
#: dashboard/publisher/groups-edit.php:
|
2210 |
#: dashboard/publisher/schedules-main.php:88
|
2211 |
msgid "Has expired."
|
2212 |
msgstr "È scaduto."
|
@@ -2292,7 +2301,7 @@ msgstr ""
|
|
2292 |
"Assicurati che le immagini del banner non siano in uso dalle inserzioni "
|
2293 |
"quando le elimini!"
|
2294 |
|
2295 |
-
#: dashboard/publisher/media.php:73
|
2296 |
#: dashboard/publisher/statistics-advert.php:109
|
2297 |
#: dashboard/publisher/statistics-group.php:113
|
2298 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -2312,6 +2321,10 @@ msgstr ""
|
|
2312 |
"essere attive in determinati giorni della settimana o in determinate ore del "
|
2313 |
"giorno."
|
2314 |
|
|
|
|
|
|
|
|
|
2315 |
#: dashboard/publisher/schedules-main.php:36
|
2316 |
msgid "Max Shown"
|
2317 |
msgstr "Massimo mostrato"
|
@@ -3412,35 +3425,6 @@ msgstr ""
|
|
3412 |
"Questo numero non può essere vuoto, essere inferiore a 60 o superiore a "
|
3413 |
"86400 (24 ore)."
|
3414 |
|
3415 |
-
#: dashboard/support.php:25
|
3416 |
-
msgid "Support Forums"
|
3417 |
-
msgstr "Forum di supporto"
|
3418 |
-
|
3419 |
-
#: dashboard/support.php:27
|
3420 |
-
msgid ""
|
3421 |
-
"When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3422 |
-
"Chances are your question has already been asked and answered!"
|
3423 |
-
msgstr ""
|
3424 |
-
"Se sei bloccato con AdRotate o AdRotate Pro, controlla prima i forum. È "
|
3425 |
-
"probabile che la tua domanda sia già stata fatta e abbia delle risposte!"
|
3426 |
-
|
3427 |
-
#: dashboard/support.php:27
|
3428 |
-
msgid ""
|
3429 |
-
"Next to the forum there are many manuals and guides available for almost "
|
3430 |
-
"every function and feature in the plugin."
|
3431 |
-
msgstr ""
|
3432 |
-
"Oltre al forum ci sono molti manuali e guide disponibili per quasi tutte le "
|
3433 |
-
"funzioni e funzionalità del plugin."
|
3434 |
-
|
3435 |
-
#: dashboard/support.php:27
|
3436 |
-
msgid "Take a look at the AdRotate Manuals"
|
3437 |
-
msgstr "Dai un'occhiata ai Manuali di AdRotate"
|
3438 |
-
|
3439 |
-
#: dashboard/support.php:29 dashboard/support.php:30 dashboard/support.php:31
|
3440 |
-
#: dashboard/support.php:32 dashboard/support.php:33 dashboard/support.php:34
|
3441 |
-
msgid "View topics"
|
3442 |
-
msgstr "Visualizza argomenti"
|
3443 |
-
|
3444 |
#: dashboard/support.php:83
|
3445 |
msgid "Premium Support available in AdRotate Pro"
|
3446 |
msgstr "Supporto Premium disponibile in AdRotate Pro"
|
@@ -3507,6 +3491,101 @@ msgstr "Chiedi Supporto"
|
|
3507 |
msgid "Premium Support is available in AdRotate Pro!"
|
3508 |
msgstr "Premium Support è disponibile in AdRotate Pro!"
|
3509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3510 |
#~ msgid "[AdRotate] CSV Report!"
|
3511 |
#~ msgstr "[AdRotate] Report CSV!"
|
3512 |
|
@@ -4610,9 +4689,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
|
|
4610 |
#~ "tabella di database separata che può aumentare la velocità complessiva "
|
4611 |
#~ "del tuo sito."
|
4612 |
|
4613 |
-
#~ msgid "Caution:"
|
4614 |
-
#~ msgstr "Attenzione:"
|
4615 |
-
|
4616 |
#, fuzzy
|
4617 |
#~ msgid ""
|
4618 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-05-18 14:09-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-05-18 14:09-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
+
"below. Do not forget to check all settings and schedule it."
|
64 |
msgstr ""
|
65 |
"Il codice HTML dell'annuncio è stato generato e inserito nel campo AdCode. "
|
66 |
+
"Configura la tua inserzione qui sotto. Non dimenticare di controllare tutte "
|
67 |
+
"le impostazioni e pianificarlo."
|
68 |
|
69 |
#: adrotate-functions.php:737
|
70 |
msgid "Settings saved"
|
115 |
msgstr "Nessun annuncio trovato."
|
116 |
|
117 |
#: adrotate-functions.php:782
|
118 |
+
msgid ""
|
119 |
+
"The advert hash is not usable or is missing required data. Please copy the "
|
120 |
+
"hash correctly and try again."
|
121 |
+
msgstr ""
|
122 |
+
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
123 |
+
"nella cache dei frammenti non è abilitata."
|
124 |
+
|
125 |
+
#: adrotate-functions.php:786
|
126 |
+
msgid ""
|
127 |
+
"The advert hash can not be used on the same site as it originated from or is "
|
128 |
+
"not a valid hash for importing."
|
129 |
+
msgstr ""
|
130 |
+
"L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
|
131 |
+
"avuto origine o non è un hash valido per l'importazione."
|
132 |
+
|
133 |
+
#: adrotate-functions.php:790
|
134 |
msgid "Unexpected error"
|
135 |
msgstr "Errore inatteso"
|
136 |
|
137 |
+
#: adrotate-manage-publisher.php:782
|
138 |
msgid "AdRotate Advertiser"
|
139 |
msgstr "Inserzionista AdRotate"
|
140 |
|
279 |
|
280 |
#: adrotate-output.php:652
|
281 |
msgid ""
|
282 |
+
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
283 |
+
"can delete this plugin after AdRotate Pro is activated."
|
284 |
msgstr ""
|
285 |
+
"AdRotate Professional è installato. Si prega di passare ad AdRotate Pro! "
|
286 |
+
"Puoi eliminare questo plugin dopo l'attivazione di AdRotate Pro."
|
287 |
|
288 |
#: adrotate-output.php:652
|
289 |
+
msgid "Switch plugins"
|
290 |
+
msgstr "Passare da un plug-in all'altro"
|
291 |
|
292 |
#: adrotate-output.php:655
|
293 |
msgid ""
|
332 |
msgid "Help AdRotate Grow"
|
333 |
msgstr "Aiuta AdRotate a crescere"
|
334 |
|
335 |
+
#: adrotate-output.php:835 adrotate.php:150
|
336 |
msgid "AdRotate Professional"
|
337 |
msgstr "AdRotate Professional"
|
338 |
|
486 |
msgid "Fill in the ID of the type you want to display!"
|
487 |
msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
|
488 |
|
489 |
+
#: adrotate.php:103
|
490 |
msgid "General Info"
|
491 |
msgstr "Informazioni generali"
|
492 |
|
493 |
+
#: adrotate.php:104
|
494 |
msgid "AdRotate Pro"
|
495 |
msgstr "AdRotate Pro"
|
496 |
|
497 |
+
#: adrotate.php:105
|
498 |
msgid "Manage Adverts"
|
499 |
msgstr "Gestisci Inserzioni"
|
500 |
|
501 |
+
#: adrotate.php:106 dashboard/publisher/groups-main.php:12
|
502 |
msgid "Manage Groups"
|
503 |
msgstr "Gestisci Gruppi"
|
504 |
|
505 |
+
#: adrotate.php:107 dashboard/publisher/schedules-main.php:12
|
506 |
msgid "Manage Schedules"
|
507 |
msgstr "Gestisci pianificazioni"
|
508 |
|
509 |
+
#: adrotate.php:108 adrotate.php:388 adrotate.php:505
|
510 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
511 |
#: dashboard/publisher/statistics-main.php:23
|
512 |
#: dashboard/settings/statistics.php:17
|
513 |
msgid "Statistics"
|
514 |
msgstr "Statistiche"
|
515 |
|
516 |
+
#: adrotate.php:109
|
517 |
msgid "Manage Media"
|
518 |
msgstr "Gestisci Media"
|
519 |
|
520 |
+
#: adrotate.php:110 adrotate.php:469
|
521 |
msgid "Support"
|
522 |
msgstr "Supporto"
|
523 |
|
524 |
+
#: adrotate.php:111
|
525 |
msgid "Settings"
|
526 |
msgstr "Impostazioni"
|
527 |
|
528 |
+
#: adrotate.php:132
|
529 |
msgid "AdRotate Info"
|
530 |
msgstr "Informazioni AdRotate"
|
531 |
|
532 |
+
#: adrotate.php:190
|
533 |
msgid "Advert Management"
|
534 |
msgstr "Gestione Inserzioni"
|
535 |
|
536 |
+
#: adrotate.php:250 adrotate.php:318
|
537 |
msgid "Manage"
|
538 |
msgstr "Gestisci"
|
539 |
|
540 |
+
#: adrotate.php:251
|
541 |
msgid "Generator"
|
542 |
msgstr "Generatore"
|
543 |
|
544 |
+
#: adrotate.php:252 adrotate.php:319
|
545 |
msgid "Add New"
|
546 |
msgstr "Aggiungi Nuovo"
|
547 |
|
548 |
+
#: adrotate.php:312
|
549 |
msgid "Group Management"
|
550 |
msgstr "Gruppo eliminato"
|
551 |
|
552 |
+
#: adrotate.php:349
|
553 |
msgid "Schedules"
|
554 |
msgstr "Pianificazioni"
|
555 |
|
556 |
+
#: adrotate.php:430
|
557 |
msgid "Media and Assets"
|
558 |
msgstr "Media e risorse"
|
559 |
|
560 |
+
#: adrotate.php:434
|
561 |
msgid ""
|
562 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
563 |
"if you have HTML5 adverts containing multiple files."
|
565 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
566 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
567 |
|
568 |
+
#: adrotate.php:434
|
569 |
msgid "Get more features"
|
570 |
msgstr "Ottenga più caratteristiche"
|
571 |
|
572 |
+
#: adrotate.php:434
|
573 |
msgid "Get AdRotate Pro"
|
574 |
msgstr "Ottieni AdRotate Pro"
|
575 |
|
576 |
+
#: adrotate.php:498
|
577 |
msgid "AdRotate Settings"
|
578 |
msgstr "Impostazioni AdRotate"
|
579 |
|
580 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
581 |
msgid "General"
|
582 |
msgstr "Generale"
|
583 |
|
584 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
585 |
msgid "Notifications"
|
586 |
msgstr "Notifiche"
|
587 |
|
588 |
+
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:345
|
589 |
+
#: dashboard/publisher/groups-edit.php:205
|
590 |
#: dashboard/settings/advertisers.php:38
|
591 |
msgid "Geo Targeting"
|
592 |
msgstr "Geo Targeting"
|
593 |
|
594 |
+
#: adrotate.php:507 dashboard/settings/notifications.php:70
|
595 |
msgid "Advertisers"
|
596 |
msgstr "Inserzionisti"
|
597 |
|
598 |
+
#: adrotate.php:508 dashboard/settings/roles.php:17
|
599 |
msgid "Access Roles"
|
600 |
msgstr "Ruoli di accesso"
|
601 |
|
602 |
+
#: adrotate.php:509 dashboard/settings/misc.php:16
|
603 |
msgid "Miscellaneous"
|
604 |
msgstr "Varie"
|
605 |
|
606 |
+
#: adrotate.php:510 dashboard/settings/maintenance.php:16
|
607 |
msgid "Maintenance"
|
608 |
msgstr "Manutenzione"
|
609 |
|
754 |
msgid "Adverts that need you"
|
755 |
msgstr "Inserzioni che hanno bisogno di te"
|
756 |
|
757 |
+
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:474
|
758 |
#: dashboard/publisher/groups-main.php:34
|
759 |
#: dashboard/publisher/schedules-main.php:34
|
760 |
#: dashboard/publisher/statistics-main.php:35
|
773 |
msgid "Have errors"
|
774 |
msgstr "Errori"
|
775 |
|
776 |
+
#: dashboard/info.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
msgid "Buy AdRotate Professional"
|
778 |
msgstr "Acquista AdRotate Professional"
|
779 |
|
780 |
+
#: dashboard/info.php:111
|
781 |
msgid ""
|
782 |
"AdRotate Professional has a lot more functions for even better advertising "
|
783 |
"management. Check out the feature comparison tab on any of the product pages "
|
788 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
789 |
"offrire per te!"
|
790 |
|
791 |
+
#: dashboard/info.php:113
|
792 |
msgid "Single License"
|
793 |
msgstr "Licenza singola"
|
794 |
|
795 |
+
#: dashboard/info.php:113
|
796 |
msgid "Use on ONE WordPress installation."
|
797 |
msgstr "Utilizzare su un'installazione WordPress."
|
798 |
|
799 |
+
#: dashboard/info.php:113 dashboard/info.php:114 dashboard/info.php:115
|
800 |
+
#: dashboard/info.php:116
|
801 |
msgid "Buy now"
|
802 |
msgstr "Acquista ora"
|
803 |
|
804 |
+
#: dashboard/info.php:114
|
805 |
msgid "Duo License"
|
806 |
msgstr "Licenza Duo"
|
807 |
|
808 |
+
#: dashboard/info.php:114
|
809 |
msgid "Use on TWO WordPress installations."
|
810 |
msgstr "Utilizzare su due installazioni WordPress."
|
811 |
|
812 |
+
#: dashboard/info.php:115
|
813 |
msgid "Multi License"
|
814 |
msgstr "Licenza multipla"
|
815 |
|
816 |
+
#: dashboard/info.php:115
|
817 |
msgid "Use on up to FIVE WordPress installations."
|
818 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
819 |
|
820 |
+
#: dashboard/info.php:116
|
821 |
msgid "Developer License"
|
822 |
msgstr "Licenza Developer"
|
823 |
|
824 |
+
#: dashboard/info.php:116
|
825 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
826 |
msgstr ""
|
827 |
"Utilizzare su un massimo di un HUNDRED WordPress installazioni e/o reti."
|
828 |
|
829 |
+
#: dashboard/info.php:127
|
830 |
msgid "Advertising Partners & Affiliates"
|
831 |
msgstr "Pubblicità Partner & Affiliati"
|
832 |
|
833 |
+
#: dashboard/info.php:128
|
834 |
msgid ""
|
835 |
"A selection of quality advertiser networks and useful products. If you need "
|
836 |
"adverts or just want more or more diverse adverts. Check out these great "
|
840 |
"bisogno di pubblicità o vuoi solo più pubblicità o pubblicità diverse. Dai "
|
841 |
"un'occhiata a queste fantastiche opzioni!"
|
842 |
|
843 |
+
#: dashboard/info.php:128
|
844 |
+
msgid "Check out these and other preferred products or providers on my"
|
845 |
+
msgstr ""
|
846 |
+
"Dai un'occhiata a questi e ad altri prodotti o fornitori preferiti sul mio"
|
847 |
+
|
848 |
+
#: dashboard/info.php:128
|
849 |
+
msgid "recommended products page"
|
850 |
+
msgstr "pagina dei prodotti consigliati"
|
851 |
|
852 |
#: dashboard/publisher/adverts-disabled.php:15
|
853 |
msgid "Disabled Adverts"
|
887 |
msgstr "Vai"
|
888 |
|
889 |
#: dashboard/publisher/adverts-disabled.php:35
|
890 |
+
#: dashboard/publisher/adverts-edit.php:472
|
891 |
#: dashboard/publisher/adverts-error.php:39
|
892 |
#: dashboard/publisher/adverts-main.php:39
|
893 |
+
#: dashboard/publisher/groups-edit.php:359
|
894 |
#: dashboard/publisher/groups-main.php:32
|
895 |
#: dashboard/publisher/schedules-main.php:31
|
896 |
msgid "ID"
|
905 |
|
906 |
#: dashboard/publisher/adverts-disabled.php:37
|
907 |
#: dashboard/publisher/adverts-edit.php:112
|
908 |
+
#: dashboard/publisher/adverts-edit.php:473
|
909 |
#: dashboard/publisher/adverts-error.php:40
|
910 |
#: dashboard/publisher/adverts-main.php:41
|
911 |
+
#: dashboard/publisher/groups-edit.php:65
|
912 |
+
#: dashboard/publisher/groups-edit.php:360
|
913 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
914 |
#: dashboard/publisher/schedules-main.php:33
|
915 |
msgid "Name"
|
917 |
|
918 |
#: dashboard/publisher/adverts-disabled.php:39
|
919 |
#: dashboard/publisher/adverts-main.php:43
|
920 |
+
#: dashboard/publisher/groups-edit.php:364
|
921 |
#: dashboard/publisher/groups-main.php:36
|
922 |
msgid "Shown"
|
923 |
msgstr "Visibile"
|
924 |
|
925 |
#: dashboard/publisher/adverts-disabled.php:40
|
926 |
#: dashboard/publisher/adverts-main.php:45
|
927 |
+
#: dashboard/publisher/groups-edit.php:365
|
928 |
#: dashboard/publisher/groups-main.php:38
|
929 |
#: dashboard/publisher/statistics-advert.php:52
|
930 |
#: dashboard/publisher/statistics-advert.php:58
|
1180 |
msgstr "Disabilitato, non mostrare questo annuncio da nessuna parte"
|
1181 |
|
1182 |
#: dashboard/publisher/adverts-edit.php:198
|
|
|
|
|
1183 |
msgid "Get more features with AdRotate Pro."
|
1184 |
msgstr "Ottieni più funzionalità con AdRotate Pro."
|
1185 |
|
1186 |
#: dashboard/publisher/adverts-edit.php:198
|
1187 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1188 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1189 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1190 |
+
#: dashboard/publisher/groups-edit.php:228 dashboard/publisher/media.php:73
|
|
|
|
|
|
|
1191 |
#: dashboard/publisher/statistics-advert.php:109
|
1192 |
#: dashboard/publisher/statistics-group.php:113
|
1193 |
#: dashboard/publisher/statistics-main.php:83
|
1195 |
msgstr "Aggiorna adesso"
|
1196 |
|
1197 |
#: dashboard/publisher/adverts-edit.php:201
|
1198 |
+
#: dashboard/publisher/adverts-edit.php:264
|
1199 |
+
#: dashboard/publisher/adverts-edit.php:462
|
1200 |
+
#: dashboard/publisher/adverts-edit.php:505
|
1201 |
msgid "Save Advert"
|
1202 |
msgstr "Salva inserzione"
|
1203 |
|
1204 |
#: dashboard/publisher/adverts-edit.php:202
|
1205 |
+
#: dashboard/publisher/adverts-edit.php:265
|
1206 |
+
#: dashboard/publisher/adverts-edit.php:463
|
1207 |
+
#: dashboard/publisher/adverts-edit.php:506
|
1208 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1209 |
+
#: dashboard/publisher/groups-edit.php:175
|
1210 |
+
#: dashboard/publisher/groups-edit.php:329
|
1211 |
+
#: dashboard/publisher/groups-edit.php:423
|
1212 |
msgid "Cancel"
|
1213 |
msgstr "Annulla"
|
1214 |
|
1215 |
#: dashboard/publisher/adverts-edit.php:205
|
1216 |
+
#: dashboard/publisher/adverts-edit.php:445
|
1217 |
+
#: dashboard/publisher/groups-edit.php:157
|
1218 |
+
#: dashboard/publisher/groups-edit.php:311
|
1219 |
msgid "Usage"
|
1220 |
msgstr "Utilizzo"
|
1221 |
|
1222 |
#: dashboard/publisher/adverts-edit.php:209
|
1223 |
+
#: dashboard/publisher/adverts-edit.php:449
|
1224 |
+
#: dashboard/publisher/groups-edit.php:161
|
1225 |
+
#: dashboard/publisher/groups-edit.php:315
|
1226 |
msgid "Widget"
|
1227 |
msgstr "Widget"
|
1228 |
|
1229 |
#: dashboard/publisher/adverts-edit.php:210
|
1230 |
+
#: dashboard/publisher/adverts-edit.php:450
|
1231 |
msgid ""
|
1232 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1233 |
"and select the advert or the group the advert is in."
|
1236 |
"seleziona questa o il gruppo in cui l'inserzione si trova."
|
1237 |
|
1238 |
#: dashboard/publisher/adverts-edit.php:213
|
1239 |
+
#: dashboard/publisher/adverts-edit.php:453
|
1240 |
+
#: dashboard/publisher/groups-edit.php:165
|
1241 |
+
#: dashboard/publisher/groups-edit.php:319
|
1242 |
msgid "In a post or page"
|
1243 |
msgstr "In un post o in una pagina"
|
1244 |
|
1245 |
#: dashboard/publisher/adverts-edit.php:215
|
1246 |
+
#: dashboard/publisher/adverts-edit.php:455
|
1247 |
+
#: dashboard/publisher/groups-edit.php:167
|
1248 |
+
#: dashboard/publisher/groups-edit.php:321
|
1249 |
msgid "Directly in a theme"
|
1250 |
msgstr "Direttamente in un tema"
|
1251 |
|
1252 |
#: dashboard/publisher/adverts-edit.php:221
|
|
|
|
|
|
|
|
|
1253 |
msgid "Schedule your advert"
|
1254 |
msgstr "Pianifica la tua inserzione"
|
1255 |
|
1256 |
+
#: dashboard/publisher/adverts-edit.php:222
|
1257 |
msgid ""
|
1258 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1259 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1263 |
"tienilo a mente: se l'ora di inizio o di fine è dopo pranzo, aggiungi 12 "
|
1264 |
"ore. 2PM è 14:00 ore. 6AM è 6:00 ore."
|
1265 |
|
1266 |
+
#: dashboard/publisher/adverts-edit.php:226
|
1267 |
msgid "Start date"
|
1268 |
msgstr "Data di inizio"
|
1269 |
|
1270 |
+
#: dashboard/publisher/adverts-edit.php:230
|
1271 |
msgid "End date"
|
1272 |
msgstr "Data fine"
|
1273 |
|
1274 |
+
#: dashboard/publisher/adverts-edit.php:236
|
1275 |
msgid "Start time"
|
1276 |
msgstr "Ora di inizio"
|
1277 |
|
1278 |
+
#: dashboard/publisher/adverts-edit.php:243
|
1279 |
msgid "End time"
|
1280 |
msgstr "Ora fine"
|
1281 |
|
1282 |
+
#: dashboard/publisher/adverts-edit.php:253
|
1283 |
msgid "Maximum Clicks"
|
1284 |
msgstr "Numero massimo di clic"
|
1285 |
|
1286 |
+
#: dashboard/publisher/adverts-edit.php:254
|
1287 |
+
#: dashboard/publisher/adverts-edit.php:256
|
1288 |
msgid "Leave empty or 0 to skip this."
|
1289 |
msgstr "Lasciare vuoto o 0 per ignorare questa opzione."
|
1290 |
|
1291 |
+
#: dashboard/publisher/adverts-edit.php:255
|
1292 |
msgid "Maximum Impressions"
|
1293 |
msgstr "Numero massimo di impressioni"
|
1294 |
|
1295 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1296 |
msgid ""
|
1297 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1298 |
"Pro."
|
1300 |
"Crea pianificazioni multiple e più avanzate per ogni inserzione con AdRotate "
|
1301 |
"Pro."
|
1302 |
|
1303 |
+
#: dashboard/publisher/adverts-edit.php:268
|
1304 |
+
#: dashboard/publisher/groups-edit.php:178 dashboard/settings/statistics.php:27
|
1305 |
#: dashboard/settings/statistics.php:29
|
1306 |
msgid "Advanced"
|
1307 |
msgstr "Avanzate"
|
1308 |
|
1309 |
+
#: dashboard/publisher/adverts-edit.php:269
|
1310 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1311 |
msgid "Available in AdRotate Pro!"
|
1312 |
msgstr "Disponibile in AdRotate Pro!"
|
1313 |
|
1314 |
+
#: dashboard/publisher/adverts-edit.php:274
|
1315 |
msgid "Show to everyone"
|
1316 |
msgstr "Mostra a tutti"
|
1317 |
|
1318 |
+
#: dashboard/publisher/adverts-edit.php:276
|
1319 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1320 |
msgstr ""
|
1321 |
"Disattiva questa opzione per nascondere l'inserzione ai visitatori che hanno "
|
1322 |
"effettuato l'accesso."
|
1323 |
|
1324 |
+
#: dashboard/publisher/adverts-edit.php:281
|
1325 |
+
#: dashboard/publisher/groups-edit.php:362
|
1326 |
msgid "Weight"
|
1327 |
msgstr "Peso"
|
1328 |
|
1329 |
+
#: dashboard/publisher/adverts-edit.php:284
|
1330 |
msgid "Few impressions"
|
1331 |
msgstr "Poche impressioni"
|
1332 |
|
1333 |
+
#: dashboard/publisher/adverts-edit.php:289
|
1334 |
msgid "Less than average"
|
1335 |
msgstr "Meno della media"
|
1336 |
|
1337 |
+
#: dashboard/publisher/adverts-edit.php:294
|
1338 |
msgid "Normal impressions"
|
1339 |
msgstr "Impressioni normali"
|
1340 |
|
1341 |
+
#: dashboard/publisher/adverts-edit.php:299
|
1342 |
msgid "More than average"
|
1343 |
msgstr "Più della media"
|
1344 |
|
1345 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1346 |
msgid "Many impressions"
|
1347 |
msgstr "Molte impressioni"
|
1348 |
|
1349 |
+
#: dashboard/publisher/adverts-edit.php:309
|
1350 |
msgid "Mobile"
|
1351 |
msgstr "Cellulare"
|
1352 |
|
1353 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1354 |
msgid "Desktops/Laptops"
|
1355 |
msgstr "Desktops/Laptops"
|
1356 |
|
1357 |
+
#: dashboard/publisher/adverts-edit.php:314
|
1358 |
msgid "Smartphones"
|
1359 |
msgstr "Smartphones"
|
1360 |
|
1361 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1362 |
msgid "Tablets"
|
1363 |
msgstr "Tablet"
|
1364 |
|
1365 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1366 |
msgid ""
|
1367 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1368 |
"and 'Operating System' are ignored!"
|
1371 |
"questa inserzione oppure 'Dispositivo' e 'Sistema Operativo' verranno "
|
1372 |
"ignorati!"
|
1373 |
|
1374 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1375 |
msgid ""
|
1376 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1377 |
"Other' for everything else."
|
1379 |
"L'individuazione dei sistemi operativi individua solo iOS e Android, "
|
1380 |
"seleziona 'Non Mobili/Altri' per tutto il resto."
|
1381 |
|
1382 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1383 |
msgid "Mobile OS"
|
1384 |
msgstr "Sistema operativo mobile"
|
1385 |
|
1386 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1387 |
msgid "iOS"
|
1388 |
msgstr "iOS"
|
1389 |
|
1390 |
+
#: dashboard/publisher/adverts-edit.php:329
|
1391 |
msgid "Android"
|
1392 |
msgstr "Android"
|
1393 |
|
1394 |
+
#: dashboard/publisher/adverts-edit.php:332
|
1395 |
msgid "Not mobile/Others"
|
1396 |
msgstr "Non mobili/Altri"
|
1397 |
|
1398 |
+
#: dashboard/publisher/adverts-edit.php:336
|
1399 |
msgid "Auto-delete"
|
1400 |
msgstr "Auto-eliminazione"
|
1401 |
|
1402 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1403 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1404 |
msgstr "Eliminare automaticamente l'inserzione 1 giorno dopo la scadenza?"
|
1405 |
|
1406 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1407 |
msgid ""
|
1408 |
"This is useful for short running campaigns that do not require attention "
|
1409 |
"after they finish."
|
1411 |
"Ciò è utile per le campagne a breve esecuzione che non richiedono attenzione "
|
1412 |
"al termine."
|
1413 |
|
1414 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1415 |
msgid ""
|
1416 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1417 |
"systems the advert should show on!"
|
1419 |
"Con AdRotate Pro puoi facilmente selezionare su quali dispositivi e sistemi "
|
1420 |
"operativi mobili l'annuncio dovrebbe essere mostrato!"
|
1421 |
|
1422 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1423 |
msgid ""
|
1424 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1425 |
msgstr ""
|
1426 |
"Assegna l'annuncio a un gruppo e abilita quel gruppo a utilizzare il Geo "
|
1427 |
"Targeting."
|
1428 |
|
1429 |
+
#: dashboard/publisher/adverts-edit.php:353
|
1430 |
msgid "Enter cities or metro IDs (DMA)"
|
1431 |
msgstr "Immettere città o metro-ID (DMA)"
|
1432 |
|
1433 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1434 |
msgid "A comma separated list of Cities or Metro IDs:"
|
1435 |
msgstr "Un elenco separato da virgole di città o indirizzi di lavoro metro:"
|
1436 |
|
1437 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1438 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1439 |
msgid ""
|
1440 |
"AdRotate does not check the validity of names and assumes the basic english "
|
1441 |
"name."
|
1442 |
msgstr ""
|
1443 |
"AdRotate non controlla la validità dei nomi e assume il nome inglese di base."
|
1444 |
|
1445 |
+
#: dashboard/publisher/adverts-edit.php:361
|
1446 |
msgid "Enter States or State ISO3166-2 codes"
|
1447 |
msgstr "Immettere gli stati o i codici ISO3166-2 di stato"
|
1448 |
|
1449 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1450 |
msgid "The listed cities must be in these states?"
|
1451 |
msgstr "Le città elencate devono trovarsi in questi stati?"
|
1452 |
|
1453 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1454 |
msgid "A comma separated list of states:"
|
1455 |
msgstr "Un elenco di stati separati da virgole:"
|
1456 |
|
1457 |
+
#: dashboard/publisher/adverts-edit.php:373
|
1458 |
msgid "Select Countries and or Regions"
|
1459 |
msgstr "Seleziona Paesi e Regioni"
|
1460 |
|
1461 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1462 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1463 |
msgstr "Scegli come target il tuo pubblico con Geo Targeting in AdRotate Pro"
|
1464 |
|
1465 |
+
#: dashboard/publisher/adverts-edit.php:467
|
1466 |
msgid "Select Groups"
|
1467 |
msgstr "Seleziona gruppi"
|
1468 |
|
1469 |
+
#: dashboard/publisher/adverts-edit.php:483
|
1470 |
#: dashboard/publisher/groups-main.php:60
|
1471 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1472 |
msgid "Default"
|
1473 |
msgstr "Predefinito"
|
1474 |
|
1475 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1476 |
#: dashboard/publisher/groups-main.php:61
|
1477 |
msgid "Dynamic"
|
1478 |
msgstr "Dinamico"
|
1479 |
|
1480 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1481 |
#: dashboard/publisher/groups-main.php:61
|
1482 |
msgid "second rotation"
|
1483 |
msgstr "seconda rotazione"
|
1484 |
|
1485 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1486 |
#: dashboard/publisher/groups-main.php:62
|
1487 |
msgid "Block"
|
1488 |
msgstr "Blocco"
|
1489 |
|
1490 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1491 |
#: dashboard/publisher/groups-main.php:62
|
1492 |
msgid "grid"
|
1493 |
msgstr "griglia"
|
1494 |
|
1495 |
+
#: dashboard/publisher/adverts-edit.php:486
|
1496 |
+
#: dashboard/publisher/groups-edit.php:235
|
1497 |
#: dashboard/publisher/groups-main.php:63
|
1498 |
msgid "Post Injection"
|
1499 |
msgstr "Post iniezione"
|
1500 |
|
1501 |
+
#: dashboard/publisher/adverts-edit.php:487
|
1502 |
msgid "Geolocation"
|
1503 |
msgstr "Geolocalizzazione"
|
1504 |
|
1505 |
+
#: dashboard/publisher/adverts-edit.php:494
|
1506 |
+
#: dashboard/publisher/groups-edit.php:74
|
1507 |
#: dashboard/publisher/groups-main.php:70
|
1508 |
msgid "Mode"
|
1509 |
msgstr "Modalità"
|
1510 |
|
1511 |
+
#: dashboard/publisher/adverts-edit.php:511
|
1512 |
+
#: dashboard/publisher/adverts-generator.php:145
|
1513 |
+
msgid "Portability"
|
1514 |
+
msgstr "Portabilità"
|
1515 |
+
|
1516 |
+
#: dashboard/publisher/adverts-edit.php:512
|
1517 |
+
msgid ""
|
1518 |
+
"This long code is your advert. It includes all settings from above except "
|
1519 |
+
"the schedule and group selection. You can import this hash into another "
|
1520 |
+
"setup of AdRotate or AdRotate Professional. Do not alter the hash or the "
|
1521 |
+
"advert will not work. In most browsers you can tripleclick in the field to "
|
1522 |
+
"select the whole thing. You can paste the hash into the 'Advert Hash' field "
|
1523 |
+
"in the Advert Generator of another AdRotate setup."
|
1524 |
+
msgstr ""
|
1525 |
+
"Questo codice lungo è la tua inserzione. Include tutte le impostazioni "
|
1526 |
+
"dall'alto, ad eccezione dell'abaco e della selezione del gruppo. Puoi "
|
1527 |
+
"importare questo hash in un'altra configurazione di AdRotate o AdRotate "
|
1528 |
+
"Professional. Non alterare l'hash o l'annuncio non funzionerà. Nella maggior "
|
1529 |
+
"parte dei browser è possibile fare triplo clic nel campo per selezionare "
|
1530 |
+
"l'intera cosa. Puoi incollare l'hash nel campo 'Hash annuncio' nel "
|
1531 |
+
"generatore di annunci di un'altra configurazione AdRotate."
|
1532 |
+
|
1533 |
+
#: dashboard/publisher/adverts-edit.php:516
|
1534 |
+
#: dashboard/publisher/adverts-generator.php:151
|
1535 |
+
msgid "Advert hash"
|
1536 |
+
msgstr "Hash dell'annuncio"
|
1537 |
+
|
1538 |
#: dashboard/publisher/adverts-error.php:12
|
1539 |
msgid "Adverts that need attention"
|
1540 |
msgstr "Inserzioni che necessitano di attenzione"
|
1598 |
"generatore AdRotate prenderà i tuoi pezzi e cercherà di generare un codice "
|
1599 |
"di codice funzionante da esso."
|
1600 |
|
1601 |
+
#: dashboard/publisher/adverts-generator.php:38
|
1602 |
+
msgid ""
|
1603 |
+
"If you have an advert hash from another AdRotate or AdRotate Professional "
|
1604 |
+
"setup you can enter it in the Portability field. This feature is a bit of an "
|
1605 |
+
"experiment, but the basic function works."
|
1606 |
+
msgstr ""
|
1607 |
+
"Se hai un hash pubblicitario di un'altra configurazione AdRotate o AdRotate "
|
1608 |
+
"Professional, puoi inserirlo nel campo Portabilità. Questa funzionalità è un "
|
1609 |
+
"po 'un esperimento, ma la funzione di base funziona."
|
1610 |
+
|
1611 |
#: dashboard/publisher/adverts-generator.php:39
|
1612 |
msgid ""
|
1613 |
"If you have a complete and working ad code / ad tag you do not use the "
|
1663 |
msgstr "Larghezze di schermo"
|
1664 |
|
1665 |
#: dashboard/publisher/adverts-generator.php:77
|
1666 |
+
#: dashboard/publisher/groups-edit.php:219
|
1667 |
#: dashboard/settings/notifications.php:48
|
1668 |
msgid "Available in AdRotate Pro"
|
1669 |
msgstr "Disponibile in AdRotate Pro"
|
1788 |
"Alcuni bot/crawler li usano come misura descrittiva per vedere di cosa "
|
1789 |
"tratta il codice."
|
1790 |
|
1791 |
+
#: dashboard/publisher/adverts-generator.php:153
|
1792 |
+
msgid ""
|
1793 |
+
"To import a ready made advert, enter a advert hash from another AdRotate "
|
1794 |
+
"setup..."
|
1795 |
+
msgstr ""
|
1796 |
+
"Per importare un'inserzione già pronta, inserisci un hash pubblicitario da "
|
1797 |
+
"un'altra configurazione di AdRotate..."
|
1798 |
+
|
1799 |
+
#: dashboard/publisher/adverts-generator.php:161
|
1800 |
msgid "Generate and Configure Advert"
|
1801 |
msgstr "Genera e configura inserzione"
|
1802 |
|
1803 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1804 |
msgid "Always test your adverts before activating them."
|
1805 |
msgstr "Prova sempre le tue inserzioni prima di attivarle."
|
1806 |
|
1807 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1808 |
+
msgid "Caution:"
|
1809 |
+
msgstr "Attenzione:"
|
1810 |
|
1811 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1812 |
msgid ""
|
1813 |
"While the Code Generator has been tested and works, code generation, as "
|
1814 |
"always, is a interpretation of user input. If you provide the correct bits "
|
1821 |
"funzionante. Se lasci vuoti i campi o inserisci le informazioni errate, "
|
1822 |
"probabilmente avrai un annuncio danneggiato."
|
1823 |
|
1824 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1825 |
+
msgid "NOTE:"
|
1826 |
+
msgstr "NOTA:"
|
1827 |
+
|
1828 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1829 |
+
msgid "If you insert an Advert Hash, all other fields are ignored."
|
1830 |
msgstr ""
|
1831 |
+
"Se si inserisce un hash dell'annuncio, tutti gli altri campi vengono "
|
1832 |
+
"ignorati."
|
1833 |
|
1834 |
#: dashboard/publisher/adverts-main.php:12
|
1835 |
msgid "Active Adverts"
|
1852 |
msgid "No adverts created yet!"
|
1853 |
msgstr "Non sono ancora state create inserzioni!"
|
1854 |
|
1855 |
+
#: dashboard/publisher/groups-edit.php:41
|
1856 |
+
msgid ""
|
1857 |
+
"Your block is a 1x1 grid. Either add more rows or columns or set the group "
|
1858 |
+
"to Default mode."
|
1859 |
+
msgstr ""
|
1860 |
+
"Il blocco è una griglia 1x1. Aggiungere altre righe o colonne o impostare il "
|
1861 |
+
"gruppo sulla modalità predefinita."
|
1862 |
+
|
1863 |
+
#: dashboard/publisher/groups-edit.php:44
|
1864 |
+
msgid "You have enabled Post Injection but did not select any categories."
|
1865 |
+
msgstr ""
|
1866 |
+
"È stata abilitata l'inserimento, ma non è stata selezionata alcuna categoria."
|
1867 |
+
|
1868 |
+
#: dashboard/publisher/groups-edit.php:47
|
1869 |
+
msgid "You have enabled Page Injection but did not select any pages."
|
1870 |
+
msgstr ""
|
1871 |
+
"L'inserimento di pagine è stato abilitato ma non è stato selezionato alcuna "
|
1872 |
+
"pagina."
|
1873 |
+
|
1874 |
+
#: dashboard/publisher/groups-edit.php:57
|
1875 |
msgid "New Group"
|
1876 |
msgstr "Nuovo gruppo"
|
1877 |
|
1878 |
+
#: dashboard/publisher/groups-edit.php:59
|
1879 |
msgid "Edit Group"
|
1880 |
msgstr "Modifica Gruppo"
|
1881 |
|
1882 |
+
#: dashboard/publisher/groups-edit.php:77
|
1883 |
msgid "Default - Show one ad at a time"
|
1884 |
msgstr "Predefinito - Mostra un annuncio alla volta"
|
1885 |
|
1886 |
+
#: dashboard/publisher/groups-edit.php:78
|
1887 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1888 |
msgstr "Modalità Dinamica - Mostra un annuncio differente ogni pochi secondi"
|
1889 |
|
1890 |
+
#: dashboard/publisher/groups-edit.php:79
|
1891 |
msgid "Block Mode - Show a block of adverts"
|
1892 |
msgstr "Blocco - Mostra un blocco di inserzioni"
|
1893 |
|
1894 |
+
#: dashboard/publisher/groups-edit.php:83
|
1895 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1896 |
msgstr ""
|
1897 |
"La modalità dinamica richiede jQuery.Dynamic mode requires jQuery. È "
|
1898 |
"possibile abilitare questa funzionalità in Impostazioni AdRotate.You can "
|
1899 |
"enable this in AdRotate Settings."
|
1900 |
|
1901 |
+
#: dashboard/publisher/groups-edit.php:87
|
1902 |
msgid "Advert size"
|
1903 |
msgstr "Dimensioni dell'inserzione"
|
1904 |
|
1905 |
+
#: dashboard/publisher/groups-edit.php:89
|
1906 |
msgid "pixel(s) wide"
|
1907 |
msgstr "pixel(i) di larghezza"
|
1908 |
|
1909 |
+
#: dashboard/publisher/groups-edit.php:89
|
1910 |
msgid "pixel(s) high."
|
1911 |
msgstr "pixel(i) in alto."
|
1912 |
|
1913 |
+
#: dashboard/publisher/groups-edit.php:92
|
1914 |
msgid ""
|
1915 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1916 |
"recommended)."
|
1918 |
"Definisci le dimensioni massime delle inserzioni in pixel. La dimensione può "
|
1919 |
"essere 'auto' (scelta non consigliata)."
|
1920 |
|
1921 |
+
#: dashboard/publisher/groups-edit.php:98
|
1922 |
msgid "Dynamic and Block Mode"
|
1923 |
msgstr "Modalità dinamica e di blocco"
|
1924 |
|
1925 |
+
#: dashboard/publisher/groups-edit.php:102
|
1926 |
msgid "Block size"
|
1927 |
msgstr "Dimensione blocco"
|
1928 |
|
1929 |
+
#: dashboard/publisher/groups-edit.php:108
|
1930 |
msgid "rows"
|
1931 |
msgstr "righe"
|
1932 |
|
1933 |
+
#: dashboard/publisher/groups-edit.php:112
|
1934 |
msgid "columns"
|
1935 |
msgstr "colonne"
|
1936 |
|
1937 |
+
#: dashboard/publisher/groups-edit.php:115
|
1938 |
msgid "Block Mode"
|
1939 |
msgstr "Modalità blocco"
|
1940 |
|
1941 |
+
#: dashboard/publisher/groups-edit.php:115
|
1942 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1943 |
msgstr ""
|
1944 |
"Blocchi più grandi diminuiranno le prestazioni dei tuoi siti! Valore "
|
1945 |
"predefinito: 2/2."
|
1946 |
|
1947 |
+
#: dashboard/publisher/groups-edit.php:119
|
1948 |
msgid "Automated refresh"
|
1949 |
msgstr "Aggiornamento automatico"
|
1950 |
|
1951 |
+
#: dashboard/publisher/groups-edit.php:138
|
1952 |
msgid "seconds."
|
1953 |
msgstr "secondi."
|
1954 |
|
1955 |
+
#: dashboard/publisher/groups-edit.php:141
|
1956 |
+
#: dashboard/publisher/groups-edit.php:150
|
1957 |
msgid "Dynamic Mode"
|
1958 |
msgstr "Modalità dinamica"
|
1959 |
|
1960 |
+
#: dashboard/publisher/groups-edit.php:141
|
1961 |
msgid ""
|
1962 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1963 |
msgstr ""
|
1964 |
"Carica una nuova inserzione in questo intervallo senza ricaricare la pagina. "
|
1965 |
"Valore predefinito: 6."
|
1966 |
|
1967 |
+
#: dashboard/publisher/groups-edit.php:145
|
1968 |
msgid "Repeat impressions"
|
1969 |
msgstr "Ripeti impressioni"
|
1970 |
|
1971 |
+
#: dashboard/publisher/groups-edit.php:147
|
1972 |
msgid "Count impressions for every cycle of adverts?"
|
1973 |
msgstr "Contare le impressioni per ogni ciclo di inserzioni?"
|
1974 |
|
1975 |
+
#: dashboard/publisher/groups-edit.php:150
|
1976 |
msgid ""
|
1977 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1978 |
msgstr ""
|
1979 |
"Deseleziona questa opzione per contare solo le impressioni per il primo "
|
1980 |
"ciclo di inserzioni."
|
1981 |
|
1982 |
+
#: dashboard/publisher/groups-edit.php:155
|
1983 |
+
#: dashboard/publisher/groups-edit.php:228
|
1984 |
msgid "Get access to all features in AdRotate Pro."
|
1985 |
msgstr "Accedi a tutte le funzioni di AdRotate Pro."
|
1986 |
|
1987 |
+
#: dashboard/publisher/groups-edit.php:155
|
1988 |
msgid "Upgrade today"
|
1989 |
msgstr "Aggiorna oggi stesso"
|
1990 |
|
1991 |
+
#: dashboard/publisher/groups-edit.php:162
|
1992 |
+
#: dashboard/publisher/groups-edit.php:316
|
1993 |
msgid ""
|
1994 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1995 |
"Adverts\" and enter ID"
|
1997 |
"Trascina il widget AdRotate nella sidebar in cui vuoi metterlo, seleziona "
|
1998 |
"\"Gruppo di Inserzioni\" e immetti l'ID"
|
1999 |
|
2000 |
+
#: dashboard/publisher/groups-edit.php:174
|
2001 |
+
#: dashboard/publisher/groups-edit.php:328
|
2002 |
+
#: dashboard/publisher/groups-edit.php:422
|
2003 |
msgid "Save Group"
|
2004 |
msgstr "Salva gruppo"
|
2005 |
|
2006 |
+
#: dashboard/publisher/groups-edit.php:182
|
2007 |
msgid "Advert Margin"
|
2008 |
msgstr "Margine dell'inserzione"
|
2009 |
|
2010 |
+
#: dashboard/publisher/groups-edit.php:184
|
2011 |
msgid "pixel(s)"
|
2012 |
msgstr "pixel"
|
2013 |
|
2014 |
+
#: dashboard/publisher/groups-edit.php:187
|
2015 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2016 |
msgstr ""
|
2017 |
"Un'area trasparente al di fuori dell'annuncio in pixel. Valore predefinito: "
|
2018 |
"0."
|
2019 |
|
2020 |
+
#: dashboard/publisher/groups-edit.php:187
|
2021 |
msgid "Set to 0 to disable."
|
2022 |
msgstr "Impostare su 0 per disabilitare."
|
2023 |
|
2024 |
+
#: dashboard/publisher/groups-edit.php:187
|
2025 |
msgid "Margins are automatically disabled for blocks where required."
|
2026 |
msgstr ""
|
2027 |
"I margini vengono disattivati automaticamente per i blocchi dove richiesto."
|
2028 |
|
2029 |
+
#: dashboard/publisher/groups-edit.php:191
|
2030 |
msgid "Align the group"
|
2031 |
msgstr "Allineare il gruppo"
|
2032 |
|
2033 |
+
#: dashboard/publisher/groups-edit.php:194
|
2034 |
msgid "None (Default)"
|
2035 |
msgstr "Nessuno (default)"
|
2036 |
|
2037 |
+
#: dashboard/publisher/groups-edit.php:195
|
2038 |
msgid "Left"
|
2039 |
msgstr "Sinistra"
|
2040 |
|
2041 |
+
#: dashboard/publisher/groups-edit.php:196
|
2042 |
msgid "Right"
|
2043 |
msgstr "Destra"
|
2044 |
|
2045 |
+
#: dashboard/publisher/groups-edit.php:197
|
2046 |
msgid "Center"
|
2047 |
msgstr "Centro"
|
2048 |
|
2049 |
+
#: dashboard/publisher/groups-edit.php:201
|
2050 |
msgid ""
|
2051 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2052 |
"setting. Not every theme supports this feature."
|
2055 |
"influire sull'impostazione del margine. Non tutti i temi supportano questa "
|
2056 |
"funzione."
|
2057 |
|
2058 |
+
#: dashboard/publisher/groups-edit.php:206
|
2059 |
msgid "Enable Geo Targeting for this group."
|
2060 |
msgstr "Abilita targeting geografico per questo gruppo."
|
2061 |
|
2062 |
+
#: dashboard/publisher/groups-edit.php:207
|
2063 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2064 |
msgstr ""
|
2065 |
"Non dimenticare di comunicare gli annunci per quali aree dovrebbero mostrare."
|
2066 |
|
2067 |
+
#: dashboard/publisher/groups-edit.php:210
|
2068 |
msgid "Mobile Support"
|
2069 |
msgstr "Supporto mobile"
|
2070 |
|
2071 |
+
#: dashboard/publisher/groups-edit.php:211
|
2072 |
msgid "Enable mobile support for this group."
|
2073 |
msgstr "Abilitare il supporto per dispositivi mobili per questo gruppo."
|
2074 |
|
2075 |
+
#: dashboard/publisher/groups-edit.php:212
|
2076 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2077 |
msgstr "Non dimenticare di mettere almeno un annuncio mobile in questo gruppo."
|
2078 |
|
2079 |
+
#: dashboard/publisher/groups-edit.php:215
|
2080 |
msgid "Fallback Group"
|
2081 |
msgstr "Fallback Group"
|
2082 |
|
2083 |
+
#: dashboard/publisher/groups-edit.php:223
|
2084 |
msgid ""
|
2085 |
"Select another group to fall back on when all adverts are expired, not in "
|
2086 |
"the visitors geographic area or are otherwise unavailable."
|
2088 |
"Seleziona un altro gruppo su cui ripiegare quando tutte le inserzioni sono "
|
2089 |
"scadute, non nell'area geografica dei visitatori o non sono disponibili."
|
2090 |
|
2091 |
+
#: dashboard/publisher/groups-edit.php:239
|
2092 |
+
#: dashboard/publisher/groups-edit.php:276
|
2093 |
#: dashboard/settings/geotargeting.php:24
|
2094 |
msgid "Disabled"
|
2095 |
msgstr "Disabilitato"
|
2096 |
|
2097 |
+
#: dashboard/publisher/groups-edit.php:240
|
2098 |
+
#: dashboard/publisher/groups-edit.php:277
|
2099 |
msgid "Widget (Pro only)"
|
2100 |
msgstr "Widget (solo Pro)"
|
2101 |
|
2102 |
+
#: dashboard/publisher/groups-edit.php:241
|
2103 |
+
#: dashboard/publisher/groups-edit.php:278
|
2104 |
msgid "Before content"
|
2105 |
msgstr "Prima del contenuto"
|
2106 |
|
2107 |
+
#: dashboard/publisher/groups-edit.php:242
|
2108 |
+
#: dashboard/publisher/groups-edit.php:279
|
2109 |
msgid "After content"
|
2110 |
msgstr "Dopo il contenuto"
|
2111 |
|
2112 |
+
#: dashboard/publisher/groups-edit.php:243
|
2113 |
+
#: dashboard/publisher/groups-edit.php:280
|
2114 |
msgid "Before and after content"
|
2115 |
msgstr "Contenuto prima e dopo"
|
2116 |
|
2117 |
+
#: dashboard/publisher/groups-edit.php:244
|
2118 |
+
#: dashboard/publisher/groups-edit.php:281
|
2119 |
msgid "Inside the content..."
|
2120 |
msgstr "All'interno del contenuto..."
|
2121 |
|
2122 |
+
#: dashboard/publisher/groups-edit.php:250
|
2123 |
+
#: dashboard/publisher/groups-edit.php:287
|
2124 |
msgid "after the middle paragraph"
|
2125 |
msgstr "dopo il paragrafo centrale"
|
2126 |
|
2127 |
+
#: dashboard/publisher/groups-edit.php:251
|
2128 |
+
#: dashboard/publisher/groups-edit.php:288
|
2129 |
msgid "after the 1st paragraph"
|
2130 |
msgstr "dopo il primo paragrafo"
|
2131 |
|
2132 |
+
#: dashboard/publisher/groups-edit.php:252
|
2133 |
+
#: dashboard/publisher/groups-edit.php:289
|
2134 |
msgid "after the 2nd paragraph"
|
2135 |
msgstr "dopo il secondo paragrafo"
|
2136 |
|
2137 |
+
#: dashboard/publisher/groups-edit.php:253
|
2138 |
+
#: dashboard/publisher/groups-edit.php:290
|
2139 |
msgid "after the 3rd paragraph"
|
2140 |
msgstr "dopo il terzo paragrafo"
|
2141 |
|
2142 |
+
#: dashboard/publisher/groups-edit.php:254
|
2143 |
+
#: dashboard/publisher/groups-edit.php:291
|
2144 |
msgid "after the 4th paragraph"
|
2145 |
msgstr "dopo il quarto paragrafo"
|
2146 |
|
2147 |
+
#: dashboard/publisher/groups-edit.php:255
|
2148 |
+
#: dashboard/publisher/groups-edit.php:292
|
2149 |
msgid "after the 5th paragraph"
|
2150 |
msgstr "dopo il quinto paragrafo"
|
2151 |
|
2152 |
+
#: dashboard/publisher/groups-edit.php:256
|
2153 |
+
#: dashboard/publisher/groups-edit.php:293
|
2154 |
msgid "after the 6th paragraph"
|
2155 |
msgstr "dopo il sesto paragrafo"
|
2156 |
|
2157 |
+
#: dashboard/publisher/groups-edit.php:257
|
2158 |
+
#: dashboard/publisher/groups-edit.php:294
|
2159 |
msgid "after the 7th paragraph"
|
2160 |
msgstr "dopo il settimo paragrafo"
|
2161 |
|
2162 |
+
#: dashboard/publisher/groups-edit.php:258
|
2163 |
+
#: dashboard/publisher/groups-edit.php:295
|
2164 |
msgid "after the 8th paragraph"
|
2165 |
msgstr "dopo l'ottavo paragrafo"
|
2166 |
|
2167 |
+
#: dashboard/publisher/groups-edit.php:272
|
2168 |
msgid "Page Injection"
|
2169 |
msgstr "Inserimento di pagine"
|
2170 |
|
2171 |
+
#: dashboard/publisher/groups-edit.php:332
|
2172 |
msgid "Wrapper code"
|
2173 |
msgstr "Codice wrapper"
|
2174 |
|
2175 |
+
#: dashboard/publisher/groups-edit.php:333
|
2176 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2177 |
msgstr ""
|
2178 |
"Avvolge ogni inserzione. HTML/JavaScript consentito, utilizzare con cura!"
|
2179 |
|
2180 |
+
#: dashboard/publisher/groups-edit.php:337
|
2181 |
msgid "Before advert"
|
2182 |
msgstr "Before advert"
|
2183 |
|
2184 |
+
#: dashboard/publisher/groups-edit.php:340
|
2185 |
+
#: dashboard/publisher/groups-edit.php:348
|
2186 |
msgid "Example:"
|
2187 |
msgstr "Esempio:"
|
2188 |
|
2189 |
+
#: dashboard/publisher/groups-edit.php:341
|
2190 |
msgid "Options:"
|
2191 |
msgstr "Opzioni:"
|
2192 |
|
2193 |
+
#: dashboard/publisher/groups-edit.php:345
|
2194 |
msgid "After advert"
|
2195 |
msgstr "After advert"
|
2196 |
|
2197 |
+
#: dashboard/publisher/groups-edit.php:354
|
2198 |
msgid "Select adverts"
|
2199 |
msgstr "Seleziona le inserzioni"
|
2200 |
|
2201 |
+
#: dashboard/publisher/groups-edit.php:361
|
2202 |
msgid "Visible until"
|
2203 |
msgstr "Visibile fino a"
|
2204 |
|
2205 |
+
#: dashboard/publisher/groups-edit.php:409
|
2206 |
msgid "No adverts created!"
|
2207 |
msgstr "Non sono state create inserzioni!"
|
2208 |
|
2209 |
+
#: dashboard/publisher/groups-edit.php:416
|
2210 |
msgid "Configuration errors."
|
2211 |
msgstr "Errori di configurazione."
|
2212 |
|
2213 |
+
#: dashboard/publisher/groups-edit.php:417
|
2214 |
#: dashboard/publisher/schedules-main.php:87
|
2215 |
msgid "Expires soon."
|
2216 |
msgstr "Scadrà presto"
|
2217 |
|
2218 |
+
#: dashboard/publisher/groups-edit.php:418
|
2219 |
#: dashboard/publisher/schedules-main.php:88
|
2220 |
msgid "Has expired."
|
2221 |
msgstr "È scaduto."
|
2301 |
"Assicurati che le immagini del banner non siano in uso dalle inserzioni "
|
2302 |
"quando le elimini!"
|
2303 |
|
2304 |
+
#: dashboard/publisher/media.php:73
|
2305 |
#: dashboard/publisher/statistics-advert.php:109
|
2306 |
#: dashboard/publisher/statistics-group.php:113
|
2307 |
#: dashboard/publisher/statistics-main.php:83
|
2321 |
"essere attive in determinati giorni della settimana o in determinate ore del "
|
2322 |
"giorno."
|
2323 |
|
2324 |
+
#: dashboard/publisher/schedules-main.php:13
|
2325 |
+
msgid "Get more scheduling options with"
|
2326 |
+
msgstr "Ottieni più opzioni di pianificazione con"
|
2327 |
+
|
2328 |
#: dashboard/publisher/schedules-main.php:36
|
2329 |
msgid "Max Shown"
|
2330 |
msgstr "Massimo mostrato"
|
3425 |
"Questo numero non può essere vuoto, essere inferiore a 60 o superiore a "
|
3426 |
"86400 (24 ore)."
|
3427 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3428 |
#: dashboard/support.php:83
|
3429 |
msgid "Premium Support available in AdRotate Pro"
|
3430 |
msgstr "Supporto Premium disponibile in AdRotate Pro"
|
3491 |
msgid "Premium Support is available in AdRotate Pro!"
|
3492 |
msgstr "Premium Support è disponibile in AdRotate Pro!"
|
3493 |
|
3494 |
+
#~ msgid "Join the Media.net advertising network"
|
3495 |
+
#~ msgstr "Entra a far parte della rete pubblicitaria Media.net"
|
3496 |
+
|
3497 |
+
#~ msgid "Get contextual adverts from Media.net"
|
3498 |
+
#~ msgstr "Ottenere inserzioni contestuali da Media.net"
|
3499 |
+
|
3500 |
+
#~ msgid ""
|
3501 |
+
#~ "Based on your input and experiences later iterations of the Code "
|
3502 |
+
#~ "Generator will be better and more feature rich."
|
3503 |
+
#~ msgstr ""
|
3504 |
+
#~ "In base all'input ed esperienze successive del generatore di codice sarà "
|
3505 |
+
#~ "migliore e più ricco di funzionalità."
|
3506 |
+
|
3507 |
+
#~ msgid "Upgrade instructions"
|
3508 |
+
#~ msgstr "Istruzioni per l'aggiornamento"
|
3509 |
+
|
3510 |
+
#~ msgid "AdRotate Banner Manager"
|
3511 |
+
#~ msgstr "AdRotate Banner Manager"
|
3512 |
+
|
3513 |
+
#~ msgid "Support AdRotate Banner Manager"
|
3514 |
+
#~ msgstr "Supporto AdRotate Banner Manager"
|
3515 |
+
|
3516 |
+
#~ msgid ""
|
3517 |
+
#~ "Consider writing a review or making a donation if you like the plugin or "
|
3518 |
+
#~ "if you find the plugin useful. Thanks for your support!"
|
3519 |
+
#~ msgstr ""
|
3520 |
+
#~ "Prendi in considerazione la possibilità di scrivere una recensione o di "
|
3521 |
+
#~ "fare una donazione se ti piace il plugin o se ritieni che il plugin sia "
|
3522 |
+
#~ "utile. Grazie per il vostro sostegno!"
|
3523 |
+
|
3524 |
+
#~ msgid "Plugins and services"
|
3525 |
+
#~ msgstr "Plugin e servizi"
|
3526 |
+
|
3527 |
+
#~ msgid "WP Maintenance"
|
3528 |
+
#~ msgstr "WP Maintenance"
|
3529 |
+
|
3530 |
+
#~ msgid "Professional service"
|
3531 |
+
#~ msgstr "Servizio professionale"
|
3532 |
+
|
3533 |
+
#~ msgid ""
|
3534 |
+
#~ "Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
3535 |
+
#~ "spam and clean up files."
|
3536 |
+
#~ msgstr ""
|
3537 |
+
#~ "Ottenere tutti gli ultimi aggiornamenti per WordPress e plugin. "
|
3538 |
+
#~ "Manutenzione, eliminazione di spam e pulizia dei file."
|
3539 |
+
|
3540 |
+
#~ msgid "HTML5 Advert setup"
|
3541 |
+
#~ msgstr "Impostazione Inserzione HTML5"
|
3542 |
+
|
3543 |
+
#~ msgid ""
|
3544 |
+
#~ "Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
3545 |
+
#~ "install and configure it for you."
|
3546 |
+
#~ msgstr ""
|
3547 |
+
#~ "Hai ricevuto un annuncio HTML5 e non riesci a farlo funzionare in "
|
3548 |
+
#~ "AdRotate Pro? Lo installerò e configurerò per te."
|
3549 |
+
|
3550 |
+
#~ msgid "Single Page Checkout"
|
3551 |
+
#~ msgstr "Pagina singola Checkout"
|
3552 |
+
|
3553 |
+
#~ msgid "WooCommerce Plugin"
|
3554 |
+
#~ msgstr "WooCommerce Plugin"
|
3555 |
+
|
3556 |
+
#~ msgid ""
|
3557 |
+
#~ "Merge your cart and checkout pages into one single page in seconds with "
|
3558 |
+
#~ "no setup required at all."
|
3559 |
+
#~ msgstr ""
|
3560 |
+
#~ "Unisci il carrello e le pagine di checkout in un'unica pagina in pochi "
|
3561 |
+
#~ "secondi senza alcuna configurazione richiesta."
|
3562 |
+
|
3563 |
+
#~ msgid "News & Updates"
|
3564 |
+
#~ msgstr "News ed aggiornamenti"
|
3565 |
+
|
3566 |
+
#~ msgid "Support Forums"
|
3567 |
+
#~ msgstr "Forum di supporto"
|
3568 |
+
|
3569 |
+
#~ msgid ""
|
3570 |
+
#~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3571 |
+
#~ "Chances are your question has already been asked and answered!"
|
3572 |
+
#~ msgstr ""
|
3573 |
+
#~ "Se sei bloccato con AdRotate o AdRotate Pro, controlla prima i forum. È "
|
3574 |
+
#~ "probabile che la tua domanda sia già stata fatta e abbia delle risposte!"
|
3575 |
+
|
3576 |
+
#~ msgid ""
|
3577 |
+
#~ "Next to the forum there are many manuals and guides available for almost "
|
3578 |
+
#~ "every function and feature in the plugin."
|
3579 |
+
#~ msgstr ""
|
3580 |
+
#~ "Oltre al forum ci sono molti manuali e guide disponibili per quasi tutte "
|
3581 |
+
#~ "le funzioni e funzionalità del plugin."
|
3582 |
+
|
3583 |
+
#~ msgid "Take a look at the AdRotate Manuals"
|
3584 |
+
#~ msgstr "Dai un'occhiata ai Manuali di AdRotate"
|
3585 |
+
|
3586 |
+
#~ msgid "View topics"
|
3587 |
+
#~ msgstr "Visualizza argomenti"
|
3588 |
+
|
3589 |
#~ msgid "[AdRotate] CSV Report!"
|
3590 |
#~ msgstr "[AdRotate] Report CSV!"
|
3591 |
|
4689 |
#~ "tabella di database separata che può aumentare la velocità complessiva "
|
4690 |
#~ "del tuo sito."
|
4691 |
|
|
|
|
|
|
|
4692 |
#, fuzzy
|
4693 |
#~ msgid ""
|
4694 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
language/adrotate-nl_NL.mo
CHANGED
Binary file
|
language/adrotate-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
@@ -60,10 +60,11 @@ msgstr "Export gemaakt"
|
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
-
"below."
|
64 |
msgstr ""
|
65 |
-
"Advertentie-HTML gegenereerd en geplaatst in het veld AdCode. Configureer
|
66 |
-
"advertentie
|
|
|
67 |
|
68 |
#: adrotate-functions.php:737
|
69 |
msgid "Settings saved"
|
@@ -115,10 +116,27 @@ msgid "No ads found."
|
|
115 |
msgstr "Geen advertenties gevonden."
|
116 |
|
117 |
#: adrotate-functions.php:782
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Unexpected error"
|
119 |
msgstr "Onverwachte fout"
|
120 |
|
121 |
-
#: adrotate-manage-publisher.php:
|
122 |
msgid "AdRotate Advertiser"
|
123 |
msgstr "AdRotate Adverteerder"
|
124 |
|
@@ -266,15 +284,15 @@ msgstr "De banner map instellen"
|
|
266 |
|
267 |
#: adrotate-output.php:652
|
268 |
msgid ""
|
269 |
-
"You have
|
270 |
-
"
|
271 |
msgstr ""
|
272 |
-
"
|
273 |
-
"
|
274 |
|
275 |
#: adrotate-output.php:652
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
#: adrotate-output.php:655
|
280 |
msgid ""
|
@@ -319,7 +337,7 @@ msgstr "forums"
|
|
319 |
msgid "Help AdRotate Grow"
|
320 |
msgstr "Help AdRotate groeien"
|
321 |
|
322 |
-
#: adrotate-output.php:835 adrotate.php:
|
323 |
msgid "AdRotate Professional"
|
324 |
msgstr "AdRotate Professional"
|
325 |
|
@@ -475,78 +493,78 @@ msgstr "ID:"
|
|
475 |
msgid "Fill in the ID of the type you want to display!"
|
476 |
msgstr "Vul het ID in van het type dat je wilt weergeven!"
|
477 |
|
478 |
-
#: adrotate.php:
|
479 |
msgid "General Info"
|
480 |
msgstr "Algemene info"
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
msgid "AdRotate Pro"
|
484 |
msgstr "AdRotate Pro"
|
485 |
|
486 |
-
#: adrotate.php:
|
487 |
msgid "Manage Adverts"
|
488 |
msgstr "Advertenties beheren"
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
msgid "Manage Groups"
|
492 |
msgstr "Beheer Groepen"
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
msgid "Manage Schedules"
|
496 |
msgstr "Schema's beheren"
|
497 |
|
498 |
-
#: adrotate.php:
|
499 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
500 |
#: dashboard/publisher/statistics-main.php:23
|
501 |
#: dashboard/settings/statistics.php:17
|
502 |
msgid "Statistics"
|
503 |
msgstr "Statistieken"
|
504 |
|
505 |
-
#: adrotate.php:
|
506 |
msgid "Manage Media"
|
507 |
msgstr "Beheer Media"
|
508 |
|
509 |
-
#: adrotate.php:
|
510 |
msgid "Support"
|
511 |
msgstr "Ondersteuning"
|
512 |
|
513 |
-
#: adrotate.php:
|
514 |
msgid "Settings"
|
515 |
msgstr "Instellingen"
|
516 |
|
517 |
-
#: adrotate.php:
|
518 |
msgid "AdRotate Info"
|
519 |
msgstr "AdRotate Info"
|
520 |
|
521 |
-
#: adrotate.php:
|
522 |
msgid "Advert Management"
|
523 |
msgstr "Advertentiemanagement"
|
524 |
|
525 |
-
#: adrotate.php:
|
526 |
msgid "Manage"
|
527 |
msgstr "Beheren"
|
528 |
|
529 |
-
#: adrotate.php:
|
530 |
msgid "Generator"
|
531 |
msgstr "Genereren"
|
532 |
|
533 |
-
#: adrotate.php:
|
534 |
msgid "Add New"
|
535 |
msgstr "Nieuw"
|
536 |
|
537 |
-
#: adrotate.php:
|
538 |
msgid "Group Management"
|
539 |
msgstr "Groepsmanagement"
|
540 |
|
541 |
-
#: adrotate.php:
|
542 |
msgid "Schedules"
|
543 |
msgstr "Schema’s"
|
544 |
|
545 |
-
#: adrotate.php:
|
546 |
msgid "Media and Assets"
|
547 |
msgstr "Media en assets"
|
548 |
|
549 |
-
#: adrotate.php:
|
550 |
msgid ""
|
551 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
552 |
"if you have HTML5 adverts containing multiple files."
|
@@ -554,45 +572,45 @@ msgstr ""
|
|
554 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
555 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
556 |
|
557 |
-
#: adrotate.php:
|
558 |
msgid "Get more features"
|
559 |
msgstr "Krijg meer functies"
|
560 |
|
561 |
-
#: adrotate.php:
|
562 |
msgid "Get AdRotate Pro"
|
563 |
msgstr "Koop AdRotate Pro"
|
564 |
|
565 |
-
#: adrotate.php:
|
566 |
msgid "AdRotate Settings"
|
567 |
msgstr "AdRotate-instellingen"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
msgid "General"
|
571 |
msgstr "Algemeen"
|
572 |
|
573 |
-
#: adrotate.php:
|
574 |
msgid "Notifications"
|
575 |
msgstr "Meldingen"
|
576 |
|
577 |
-
#: adrotate.php:
|
578 |
-
#: dashboard/publisher/groups-edit.php:
|
579 |
#: dashboard/settings/advertisers.php:38
|
580 |
msgid "Geo Targeting"
|
581 |
msgstr "Geo-targeting"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
msgid "Advertisers"
|
585 |
msgstr "Adverteerders"
|
586 |
|
587 |
-
#: adrotate.php:
|
588 |
msgid "Access Roles"
|
589 |
msgstr "Rollen"
|
590 |
|
591 |
-
#: adrotate.php:
|
592 |
msgid "Miscellaneous"
|
593 |
msgstr "Diversen"
|
594 |
|
595 |
-
#: adrotate.php:
|
596 |
msgid "Maintenance"
|
597 |
msgstr "Onderhoud"
|
598 |
|
@@ -741,7 +759,7 @@ msgstr "Uw installatie"
|
|
741 |
msgid "Adverts that need you"
|
742 |
msgstr "Controleer advertenties"
|
743 |
|
744 |
-
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:
|
745 |
#: dashboard/publisher/groups-main.php:34
|
746 |
#: dashboard/publisher/schedules-main.php:34
|
747 |
#: dashboard/publisher/statistics-main.php:35
|
@@ -760,80 +778,11 @@ msgstr "Groepen"
|
|
760 |
msgid "Have errors"
|
761 |
msgstr "Fouten hebben"
|
762 |
|
763 |
-
#: dashboard/info.php:
|
764 |
-
msgid "AdRotate Banner Manager"
|
765 |
-
msgstr "AdRotate Banner Manager"
|
766 |
-
|
767 |
-
#: dashboard/info.php:49
|
768 |
-
msgid "Support AdRotate Banner Manager"
|
769 |
-
msgstr "Ondersteun AdRotate Banner Manager"
|
770 |
-
|
771 |
-
#: dashboard/info.php:50
|
772 |
-
msgid ""
|
773 |
-
"Consider writing a review or making a donation if you like the plugin or if "
|
774 |
-
"you find the plugin useful. Thanks for your support!"
|
775 |
-
msgstr ""
|
776 |
-
"Overweeg het schrijven van een recensie of het maken van een donatie als je "
|
777 |
-
"de plugin nuttig vind. Dankjewel voor je steun!"
|
778 |
-
|
779 |
-
#: dashboard/info.php:53 dashboard/support.php:39
|
780 |
-
msgid "Plugins and services"
|
781 |
-
msgstr "Plugins en services"
|
782 |
-
|
783 |
-
#: dashboard/info.php:59 dashboard/support.php:47
|
784 |
-
msgid "WP Maintenance"
|
785 |
-
msgstr "WP-onderhoud"
|
786 |
-
|
787 |
-
#: dashboard/info.php:60 dashboard/info.php:70 dashboard/support.php:48
|
788 |
-
#: dashboard/support.php:58
|
789 |
-
msgid "Professional service"
|
790 |
-
msgstr "Professionele service"
|
791 |
-
|
792 |
-
#: dashboard/info.php:63 dashboard/support.php:51
|
793 |
-
msgid ""
|
794 |
-
"Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
795 |
-
"spam and clean up files."
|
796 |
-
msgstr ""
|
797 |
-
"Ontvang de nieuwste updates voor WordPress en plug-ins. Onderhoud, spam "
|
798 |
-
"verwijderen en bestanden opruimen."
|
799 |
-
|
800 |
-
#: dashboard/info.php:69 dashboard/support.php:57
|
801 |
-
msgid "HTML5 Advert setup"
|
802 |
-
msgstr "HTML5-advertentie-instelling"
|
803 |
-
|
804 |
-
#: dashboard/info.php:73 dashboard/support.php:61
|
805 |
-
msgid ""
|
806 |
-
"Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
807 |
-
"install and configure it for you."
|
808 |
-
msgstr ""
|
809 |
-
"Heb je een HTML5-advertentie en krijg je het niet aan het werk in AdRotate "
|
810 |
-
"Pro? Ik zal installeren en configureren voor je."
|
811 |
-
|
812 |
-
#: dashboard/info.php:79 dashboard/support.php:67
|
813 |
-
msgid "Single Page Checkout"
|
814 |
-
msgstr "Enkele pagina KASSA"
|
815 |
-
|
816 |
-
#: dashboard/info.php:80 dashboard/support.php:68
|
817 |
-
msgid "WooCommerce Plugin"
|
818 |
-
msgstr "WooCommerce plugin"
|
819 |
-
|
820 |
-
#: dashboard/info.php:83 dashboard/support.php:71
|
821 |
-
msgid ""
|
822 |
-
"Merge your cart and checkout pages into one single page in seconds with no "
|
823 |
-
"setup required at all."
|
824 |
-
msgstr ""
|
825 |
-
"Voeg uw winkelwagen- en betaalpagina's in enkele seconden samen in één "
|
826 |
-
"pagina zonder dat u hoeft te worden ingesteld."
|
827 |
-
|
828 |
-
#: dashboard/info.php:95
|
829 |
-
msgid "News & Updates"
|
830 |
-
msgstr "Nieuws & updates"
|
831 |
-
|
832 |
-
#: dashboard/info.php:108
|
833 |
msgid "Buy AdRotate Professional"
|
834 |
msgstr "Koop AdRotate Professional"
|
835 |
|
836 |
-
#: dashboard/info.php:
|
837 |
msgid ""
|
838 |
"AdRotate Professional has a lot more functions for even better advertising "
|
839 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -844,48 +793,48 @@ msgstr ""
|
|
844 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
845 |
"heeft!"
|
846 |
|
847 |
-
#: dashboard/info.php:
|
848 |
msgid "Single License"
|
849 |
msgstr "Enkele licentie"
|
850 |
|
851 |
-
#: dashboard/info.php:
|
852 |
msgid "Use on ONE WordPress installation."
|
853 |
msgstr "Gebruik op één WordPress-installatie."
|
854 |
|
855 |
-
#: dashboard/info.php:
|
856 |
-
#: dashboard/info.php:
|
857 |
msgid "Buy now"
|
858 |
msgstr "Koop nu"
|
859 |
|
860 |
-
#: dashboard/info.php:
|
861 |
msgid "Duo License"
|
862 |
msgstr "Duo Licentie"
|
863 |
|
864 |
-
#: dashboard/info.php:
|
865 |
msgid "Use on TWO WordPress installations."
|
866 |
msgstr "Gebruik op twee WordPress-installaties."
|
867 |
|
868 |
-
#: dashboard/info.php:
|
869 |
msgid "Multi License"
|
870 |
msgstr "Multi Licentie"
|
871 |
|
872 |
-
#: dashboard/info.php:
|
873 |
msgid "Use on up to FIVE WordPress installations."
|
874 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
875 |
|
876 |
-
#: dashboard/info.php:
|
877 |
msgid "Developer License"
|
878 |
msgstr "Ontwikkelaarslicentie"
|
879 |
|
880 |
-
#: dashboard/info.php:
|
881 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
882 |
msgstr "Gebruik op maximaal honderd WordPress-installaties en/of -netwerken."
|
883 |
|
884 |
-
#: dashboard/info.php:
|
885 |
msgid "Advertising Partners & Affiliates"
|
886 |
msgstr "Advertentie Partners & Affiliates"
|
887 |
|
888 |
-
#: dashboard/info.php:
|
889 |
msgid ""
|
890 |
"A selection of quality advertiser networks and useful products. If you need "
|
891 |
"adverts or just want more or more diverse adverts. Check out these great "
|
@@ -895,9 +844,13 @@ msgstr ""
|
|
895 |
"Als je advertenties nodig hebt of gewoon meer of meer diverse advertenties "
|
896 |
"wilt. Bekijk deze geweldige opties!"
|
897 |
|
898 |
-
#: dashboard/info.php:
|
899 |
-
msgid "
|
900 |
-
msgstr "
|
|
|
|
|
|
|
|
|
901 |
|
902 |
#: dashboard/publisher/adverts-disabled.php:15
|
903 |
msgid "Disabled Adverts"
|
@@ -937,10 +890,10 @@ msgid "Go"
|
|
937 |
msgstr "Ga"
|
938 |
|
939 |
#: dashboard/publisher/adverts-disabled.php:35
|
940 |
-
#: dashboard/publisher/adverts-edit.php:
|
941 |
#: dashboard/publisher/adverts-error.php:39
|
942 |
#: dashboard/publisher/adverts-main.php:39
|
943 |
-
#: dashboard/publisher/groups-edit.php:
|
944 |
#: dashboard/publisher/groups-main.php:32
|
945 |
#: dashboard/publisher/schedules-main.php:31
|
946 |
msgid "ID"
|
@@ -955,11 +908,11 @@ msgstr "Begin/einde"
|
|
955 |
|
956 |
#: dashboard/publisher/adverts-disabled.php:37
|
957 |
#: dashboard/publisher/adverts-edit.php:112
|
958 |
-
#: dashboard/publisher/adverts-edit.php:
|
959 |
#: dashboard/publisher/adverts-error.php:40
|
960 |
#: dashboard/publisher/adverts-main.php:41
|
961 |
-
#: dashboard/publisher/groups-edit.php:
|
962 |
-
#: dashboard/publisher/groups-edit.php:
|
963 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
964 |
#: dashboard/publisher/schedules-main.php:33
|
965 |
msgid "Name"
|
@@ -967,14 +920,14 @@ msgstr "Naam"
|
|
967 |
|
968 |
#: dashboard/publisher/adverts-disabled.php:39
|
969 |
#: dashboard/publisher/adverts-main.php:43
|
970 |
-
#: dashboard/publisher/groups-edit.php:
|
971 |
#: dashboard/publisher/groups-main.php:36
|
972 |
msgid "Shown"
|
973 |
msgstr "Getoonde"
|
974 |
|
975 |
#: dashboard/publisher/adverts-disabled.php:40
|
976 |
#: dashboard/publisher/adverts-main.php:45
|
977 |
-
#: dashboard/publisher/groups-edit.php:
|
978 |
#: dashboard/publisher/groups-main.php:38
|
979 |
#: dashboard/publisher/statistics-advert.php:52
|
980 |
#: dashboard/publisher/statistics-advert.php:58
|
@@ -1231,19 +1184,14 @@ msgid "Disabled, do not show this advert anywhere"
|
|
1231 |
msgstr "Inactief, laat deze advertentie nergens zien"
|
1232 |
|
1233 |
#: dashboard/publisher/adverts-edit.php:198
|
1234 |
-
#: dashboard/publisher/adverts-main.php:90
|
1235 |
-
#: dashboard/publisher/groups-main.php:89
|
1236 |
msgid "Get more features with AdRotate Pro."
|
1237 |
msgstr "Beschik over meer functies met AdRotate Pro."
|
1238 |
|
1239 |
#: dashboard/publisher/adverts-edit.php:198
|
1240 |
-
#: dashboard/publisher/adverts-edit.php:
|
1241 |
-
#: dashboard/publisher/adverts-edit.php:
|
1242 |
-
#: dashboard/publisher/adverts-edit.php:
|
1243 |
-
#: dashboard/publisher/
|
1244 |
-
#: dashboard/publisher/groups-edit.php:216
|
1245 |
-
#: dashboard/publisher/groups-main.php:89 dashboard/publisher/media.php:73
|
1246 |
-
#: dashboard/publisher/schedules-main.php:89
|
1247 |
#: dashboard/publisher/statistics-advert.php:109
|
1248 |
#: dashboard/publisher/statistics-group.php:113
|
1249 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -1251,39 +1199,39 @@ msgid "Upgrade now"
|
|
1251 |
msgstr "Nu bijwerken"
|
1252 |
|
1253 |
#: dashboard/publisher/adverts-edit.php:201
|
1254 |
-
#: dashboard/publisher/adverts-edit.php:
|
1255 |
-
#: dashboard/publisher/adverts-edit.php:
|
1256 |
-
#: dashboard/publisher/adverts-edit.php:
|
1257 |
msgid "Save Advert"
|
1258 |
msgstr "Advertentie opslaan"
|
1259 |
|
1260 |
#: dashboard/publisher/adverts-edit.php:202
|
1261 |
-
#: dashboard/publisher/adverts-edit.php:
|
1262 |
-
#: dashboard/publisher/adverts-edit.php:
|
1263 |
-
#: dashboard/publisher/adverts-edit.php:
|
1264 |
-
#: dashboard/publisher/adverts-generator.php:
|
1265 |
-
#: dashboard/publisher/groups-edit.php:
|
1266 |
-
#: dashboard/publisher/groups-edit.php:
|
1267 |
-
#: dashboard/publisher/groups-edit.php:
|
1268 |
msgid "Cancel"
|
1269 |
msgstr "Annuleren"
|
1270 |
|
1271 |
#: dashboard/publisher/adverts-edit.php:205
|
1272 |
-
#: dashboard/publisher/adverts-edit.php:
|
1273 |
-
#: dashboard/publisher/groups-edit.php:
|
1274 |
-
#: dashboard/publisher/groups-edit.php:
|
1275 |
msgid "Usage"
|
1276 |
msgstr "Gebruik"
|
1277 |
|
1278 |
#: dashboard/publisher/adverts-edit.php:209
|
1279 |
-
#: dashboard/publisher/adverts-edit.php:
|
1280 |
-
#: dashboard/publisher/groups-edit.php:
|
1281 |
-
#: dashboard/publisher/groups-edit.php:
|
1282 |
msgid "Widget"
|
1283 |
msgstr "Widget"
|
1284 |
|
1285 |
#: dashboard/publisher/adverts-edit.php:210
|
1286 |
-
#: dashboard/publisher/adverts-edit.php:
|
1287 |
msgid ""
|
1288 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1289 |
"and select the advert or the group the advert is in."
|
@@ -1293,28 +1241,24 @@ msgstr ""
|
|
1293 |
"de groep waarin de advertentie zich bevindt."
|
1294 |
|
1295 |
#: dashboard/publisher/adverts-edit.php:213
|
1296 |
-
#: dashboard/publisher/adverts-edit.php:
|
1297 |
-
#: dashboard/publisher/groups-edit.php:
|
1298 |
-
#: dashboard/publisher/groups-edit.php:
|
1299 |
msgid "In a post or page"
|
1300 |
msgstr "In een bericht of pagina"
|
1301 |
|
1302 |
#: dashboard/publisher/adverts-edit.php:215
|
1303 |
-
#: dashboard/publisher/adverts-edit.php:
|
1304 |
-
#: dashboard/publisher/groups-edit.php:
|
1305 |
-
#: dashboard/publisher/groups-edit.php:
|
1306 |
msgid "Directly in a theme"
|
1307 |
msgstr "Direct in een thema"
|
1308 |
|
1309 |
#: dashboard/publisher/adverts-edit.php:221
|
1310 |
-
msgid "Get contextual adverts from Media.net"
|
1311 |
-
msgstr "Ontvang contextuele advertenties van Media.net"
|
1312 |
-
|
1313 |
-
#: dashboard/publisher/adverts-edit.php:234
|
1314 |
msgid "Schedule your advert"
|
1315 |
msgstr "Plan jouw advertentie"
|
1316 |
|
1317 |
-
#: dashboard/publisher/adverts-edit.php:
|
1318 |
msgid ""
|
1319 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1320 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
@@ -1324,36 +1268,36 @@ msgstr ""
|
|
1324 |
"systeem, houdt u dit in gedachten: Als de begin- of eindtijd na de lunch is, "
|
1325 |
"voegt u 12 uur toe. 14.00 uur is 14:00 uur. 6am is 6:00 uur."
|
1326 |
|
1327 |
-
#: dashboard/publisher/adverts-edit.php:
|
1328 |
msgid "Start date"
|
1329 |
msgstr "Startdatum"
|
1330 |
|
1331 |
-
#: dashboard/publisher/adverts-edit.php:
|
1332 |
msgid "End date"
|
1333 |
msgstr "Einddatum"
|
1334 |
|
1335 |
-
#: dashboard/publisher/adverts-edit.php:
|
1336 |
msgid "Start time"
|
1337 |
msgstr "Starttijd"
|
1338 |
|
1339 |
-
#: dashboard/publisher/adverts-edit.php:
|
1340 |
msgid "End time"
|
1341 |
msgstr "Eindtijd"
|
1342 |
|
1343 |
-
#: dashboard/publisher/adverts-edit.php:
|
1344 |
msgid "Maximum Clicks"
|
1345 |
msgstr "Maximale klikken"
|
1346 |
|
1347 |
-
#: dashboard/publisher/adverts-edit.php:
|
1348 |
-
#: dashboard/publisher/adverts-edit.php:
|
1349 |
msgid "Leave empty or 0 to skip this."
|
1350 |
msgstr "Laat leeg of 0 om dit over te slaan."
|
1351 |
|
1352 |
-
#: dashboard/publisher/adverts-edit.php:
|
1353 |
msgid "Maximum Impressions"
|
1354 |
msgstr "Maximale vertoningen"
|
1355 |
|
1356 |
-
#: dashboard/publisher/adverts-edit.php:
|
1357 |
msgid ""
|
1358 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1359 |
"Pro."
|
@@ -1361,69 +1305,69 @@ msgstr ""
|
|
1361 |
"Maak meerdere en meer geavanceerde schema's voor elke advertentie met "
|
1362 |
"AdRotate Pro."
|
1363 |
|
1364 |
-
#: dashboard/publisher/adverts-edit.php:
|
1365 |
-
#: dashboard/publisher/groups-edit.php:
|
1366 |
#: dashboard/settings/statistics.php:29
|
1367 |
msgid "Advanced"
|
1368 |
msgstr "Geavanceerd"
|
1369 |
|
1370 |
-
#: dashboard/publisher/adverts-edit.php:
|
1371 |
-
#: dashboard/publisher/adverts-edit.php:
|
1372 |
msgid "Available in AdRotate Pro!"
|
1373 |
msgstr "Beschikbaar in AdRotate Pro!"
|
1374 |
|
1375 |
-
#: dashboard/publisher/adverts-edit.php:
|
1376 |
msgid "Show to everyone"
|
1377 |
msgstr "Aan iedereen weergeven"
|
1378 |
|
1379 |
-
#: dashboard/publisher/adverts-edit.php:
|
1380 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1381 |
msgstr ""
|
1382 |
"Schakel deze optie uit om de advertentie te verbergen voor ingelogde "
|
1383 |
"bezoekers."
|
1384 |
|
1385 |
-
#: dashboard/publisher/adverts-edit.php:
|
1386 |
-
#: dashboard/publisher/groups-edit.php:
|
1387 |
msgid "Weight"
|
1388 |
msgstr "Gewicht"
|
1389 |
|
1390 |
-
#: dashboard/publisher/adverts-edit.php:
|
1391 |
msgid "Few impressions"
|
1392 |
msgstr "Weinig vertoningen"
|
1393 |
|
1394 |
-
#: dashboard/publisher/adverts-edit.php:
|
1395 |
msgid "Less than average"
|
1396 |
msgstr "Minder dan gemiddeld"
|
1397 |
|
1398 |
-
#: dashboard/publisher/adverts-edit.php:
|
1399 |
msgid "Normal impressions"
|
1400 |
msgstr "Normale vertoningen"
|
1401 |
|
1402 |
-
#: dashboard/publisher/adverts-edit.php:
|
1403 |
msgid "More than average"
|
1404 |
msgstr "Meer dan gemiddeld"
|
1405 |
|
1406 |
-
#: dashboard/publisher/adverts-edit.php:
|
1407 |
msgid "Many impressions"
|
1408 |
msgstr "Veel vertoningen"
|
1409 |
|
1410 |
-
#: dashboard/publisher/adverts-edit.php:
|
1411 |
msgid "Mobile"
|
1412 |
msgstr "Mobiel"
|
1413 |
|
1414 |
-
#: dashboard/publisher/adverts-edit.php:
|
1415 |
msgid "Desktops/Laptops"
|
1416 |
msgstr "Desktops/laptops"
|
1417 |
|
1418 |
-
#: dashboard/publisher/adverts-edit.php:
|
1419 |
msgid "Smartphones"
|
1420 |
msgstr "Smartphones"
|
1421 |
|
1422 |
-
#: dashboard/publisher/adverts-edit.php:
|
1423 |
msgid "Tablets"
|
1424 |
msgstr "Tabletten"
|
1425 |
|
1426 |
-
#: dashboard/publisher/adverts-edit.php:
|
1427 |
msgid ""
|
1428 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1429 |
"and 'Operating System' are ignored!"
|
@@ -1431,7 +1375,7 @@ msgstr ""
|
|
1431 |
"Ook inschakelen 'Mobiele ondersteuning' in de groep deze advertentie gaat in "
|
1432 |
"of 'Apparaat' en 'Besturingssysteem' worden genegeerd!"
|
1433 |
|
1434 |
-
#: dashboard/publisher/adverts-edit.php:
|
1435 |
msgid ""
|
1436 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1437 |
"Other' for everything else."
|
@@ -1439,32 +1383,32 @@ msgstr ""
|
|
1439 |
"Besturingssysteemdetectie detecteert alleen iOS en Android, selecteer 'Niet "
|
1440 |
"mobiel/ander' voor al het andere."
|
1441 |
|
1442 |
-
#: dashboard/publisher/adverts-edit.php:
|
1443 |
msgid "Mobile OS"
|
1444 |
msgstr "Mobiel besturingssysteem"
|
1445 |
|
1446 |
-
#: dashboard/publisher/adverts-edit.php:
|
1447 |
msgid "iOS"
|
1448 |
msgstr "iOS"
|
1449 |
|
1450 |
-
#: dashboard/publisher/adverts-edit.php:
|
1451 |
msgid "Android"
|
1452 |
msgstr "Android"
|
1453 |
|
1454 |
-
#: dashboard/publisher/adverts-edit.php:
|
1455 |
msgid "Not mobile/Others"
|
1456 |
msgstr "Niet mobiel/Anderen"
|
1457 |
|
1458 |
-
#: dashboard/publisher/adverts-edit.php:
|
1459 |
msgid "Auto-delete"
|
1460 |
msgstr "Automatisch verwijderen"
|
1461 |
|
1462 |
-
#: dashboard/publisher/adverts-edit.php:
|
1463 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1464 |
msgstr ""
|
1465 |
"Automatisch verwijderen van de advertentie 1 dag nadat deze is verlopen?"
|
1466 |
|
1467 |
-
#: dashboard/publisher/adverts-edit.php:
|
1468 |
msgid ""
|
1469 |
"This is useful for short running campaigns that do not require attention "
|
1470 |
"after they finish."
|
@@ -1472,7 +1416,7 @@ msgstr ""
|
|
1472 |
"Dit is handig voor kortlopende campagnes die geen aandacht nodig hebben "
|
1473 |
"nadat ze zijn voltooid."
|
1474 |
|
1475 |
-
#: dashboard/publisher/adverts-edit.php:
|
1476 |
msgid ""
|
1477 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1478 |
"systems the advert should show on!"
|
@@ -1480,23 +1424,23 @@ msgstr ""
|
|
1480 |
"Met AdRotate Pro kun je eenvoudig selecteren op welke apparaten en mobiele "
|
1481 |
"besturingssystemen de advertentie moet worden weergegeven!"
|
1482 |
|
1483 |
-
#: dashboard/publisher/adverts-edit.php:
|
1484 |
msgid ""
|
1485 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1486 |
msgstr ""
|
1487 |
"Wijs de advertentie toe aan een groep en stel die groep in staat "
|
1488 |
"geotargeting te gebruiken."
|
1489 |
|
1490 |
-
#: dashboard/publisher/adverts-edit.php:
|
1491 |
msgid "Enter cities or metro IDs (DMA)"
|
1492 |
msgstr "Vul steden of metro-IDen in"
|
1493 |
|
1494 |
-
#: dashboard/publisher/adverts-edit.php:
|
1495 |
msgid "A comma separated list of Cities or Metro IDs:"
|
1496 |
msgstr "Een door komma's gescheiden lijst steden of metro IDs:"
|
1497 |
|
1498 |
-
#: dashboard/publisher/adverts-edit.php:
|
1499 |
-
#: dashboard/publisher/adverts-edit.php:
|
1500 |
msgid ""
|
1501 |
"AdRotate does not check the validity of names and assumes the basic english "
|
1502 |
"name."
|
@@ -1504,72 +1448,99 @@ msgstr ""
|
|
1504 |
"AdRotate controleert de geldigheid van namen niet gaat uit van de standaard "
|
1505 |
"engelse spelling."
|
1506 |
|
1507 |
-
#: dashboard/publisher/adverts-edit.php:
|
1508 |
msgid "Enter States or State ISO3166-2 codes"
|
1509 |
msgstr "Vul Staten of ISO3166-2 codes van staten in"
|
1510 |
|
1511 |
-
#: dashboard/publisher/adverts-edit.php:
|
1512 |
msgid "The listed cities must be in these states?"
|
1513 |
msgstr "Moeten de steden moeten in deze staten liggen?"
|
1514 |
|
1515 |
-
#: dashboard/publisher/adverts-edit.php:
|
1516 |
msgid "A comma separated list of states:"
|
1517 |
msgstr "Een door komma's gescheiden lijst met staten:"
|
1518 |
|
1519 |
-
#: dashboard/publisher/adverts-edit.php:
|
1520 |
msgid "Select Countries and or Regions"
|
1521 |
msgstr "Selecteer landen en/of regio's"
|
1522 |
|
1523 |
-
#: dashboard/publisher/adverts-edit.php:
|
1524 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1525 |
msgstr "Target je doelgroep met Geo Targeting in AdRotate Pro"
|
1526 |
|
1527 |
-
#: dashboard/publisher/adverts-edit.php:
|
1528 |
msgid "Select Groups"
|
1529 |
msgstr "Groepen selecteren"
|
1530 |
|
1531 |
-
#: dashboard/publisher/adverts-edit.php:
|
1532 |
#: dashboard/publisher/groups-main.php:60
|
1533 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1534 |
msgid "Default"
|
1535 |
msgstr "Standaard"
|
1536 |
|
1537 |
-
#: dashboard/publisher/adverts-edit.php:
|
1538 |
#: dashboard/publisher/groups-main.php:61
|
1539 |
msgid "Dynamic"
|
1540 |
msgstr "Dynamisch"
|
1541 |
|
1542 |
-
#: dashboard/publisher/adverts-edit.php:
|
1543 |
#: dashboard/publisher/groups-main.php:61
|
1544 |
msgid "second rotation"
|
1545 |
msgstr "tweede rotatie"
|
1546 |
|
1547 |
-
#: dashboard/publisher/adverts-edit.php:
|
1548 |
#: dashboard/publisher/groups-main.php:62
|
1549 |
msgid "Block"
|
1550 |
msgstr "Blok"
|
1551 |
|
1552 |
-
#: dashboard/publisher/adverts-edit.php:
|
1553 |
#: dashboard/publisher/groups-main.php:62
|
1554 |
msgid "grid"
|
1555 |
msgstr "rooster"
|
1556 |
|
1557 |
-
#: dashboard/publisher/adverts-edit.php:
|
1558 |
-
#: dashboard/publisher/groups-edit.php:
|
1559 |
#: dashboard/publisher/groups-main.php:63
|
1560 |
msgid "Post Injection"
|
1561 |
msgstr "Na injectie"
|
1562 |
|
1563 |
-
#: dashboard/publisher/adverts-edit.php:
|
1564 |
msgid "Geolocation"
|
1565 |
msgstr "Geolocatie"
|
1566 |
|
1567 |
-
#: dashboard/publisher/adverts-edit.php:
|
1568 |
-
#: dashboard/publisher/groups-edit.php:
|
1569 |
#: dashboard/publisher/groups-main.php:70
|
1570 |
msgid "Mode"
|
1571 |
msgstr "Modus"
|
1572 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1573 |
#: dashboard/publisher/adverts-error.php:12
|
1574 |
msgid "Adverts that need attention"
|
1575 |
msgstr "Advertenties die aandacht nodig hebben"
|
@@ -1633,6 +1604,16 @@ msgstr ""
|
|
1633 |
"gebruiken. De AdRotate Generator neemt uw bits en bits en probeert er een "
|
1634 |
"werkende adcode van te genereren."
|
1635 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1636 |
#: dashboard/publisher/adverts-generator.php:39
|
1637 |
msgid ""
|
1638 |
"If you have a complete and working ad code / ad tag you do not use the "
|
@@ -1687,7 +1668,7 @@ msgid "Viewports"
|
|
1687 |
msgstr "Poorten bekijken"
|
1688 |
|
1689 |
#: dashboard/publisher/adverts-generator.php:77
|
1690 |
-
#: dashboard/publisher/groups-edit.php:
|
1691 |
#: dashboard/settings/notifications.php:48
|
1692 |
msgid "Available in AdRotate Pro"
|
1693 |
msgstr "Beschikbaar in AdRotate Pro"
|
@@ -1811,19 +1792,27 @@ msgstr ""
|
|
1811 |
"Sommige bots / crawlers gebruiken ze als een beschrijvende maatregel om te "
|
1812 |
"zien waar de code over gaat."
|
1813 |
|
1814 |
-
#: dashboard/publisher/adverts-generator.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1815 |
msgid "Generate and Configure Advert"
|
1816 |
msgstr "Advertentie genereren en configureren"
|
1817 |
|
1818 |
-
#: dashboard/publisher/adverts-generator.php:
|
1819 |
msgid "Always test your adverts before activating them."
|
1820 |
msgstr "Test je advertenties altijd voordat je ze activeert."
|
1821 |
|
1822 |
-
#: dashboard/publisher/adverts-generator.php:
|
1823 |
-
msgid "
|
1824 |
-
msgstr "
|
1825 |
|
1826 |
-
#: dashboard/publisher/adverts-generator.php:
|
1827 |
msgid ""
|
1828 |
"While the Code Generator has been tested and works, code generation, as "
|
1829 |
"always, is a interpretation of user input. If you provide the correct bits "
|
@@ -1836,13 +1825,14 @@ msgstr ""
|
|
1836 |
"velden leeg laat staan of de verkeerde informatie invoegt, komt u "
|
1837 |
"waarschijnlijk met een kapotte advertentie terecht."
|
1838 |
|
1839 |
-
#: dashboard/publisher/adverts-generator.php:
|
1840 |
-
msgid ""
|
1841 |
-
|
1842 |
-
|
|
|
|
|
1843 |
msgstr ""
|
1844 |
-
"
|
1845 |
-
"zal beter en meer functie rijk."
|
1846 |
|
1847 |
#: dashboard/publisher/adverts-main.php:12
|
1848 |
msgid "Active Adverts"
|
@@ -1865,45 +1855,63 @@ msgstr "Vandaag"
|
|
1865 |
msgid "No adverts created yet!"
|
1866 |
msgstr "Nog geen advertenties gemaakt!"
|
1867 |
|
1868 |
-
#: dashboard/publisher/groups-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1869 |
msgid "New Group"
|
1870 |
msgstr "Nieuwe groep"
|
1871 |
|
1872 |
-
#: dashboard/publisher/groups-edit.php:
|
1873 |
msgid "Edit Group"
|
1874 |
msgstr "Groep bewerken"
|
1875 |
|
1876 |
-
#: dashboard/publisher/groups-edit.php:
|
1877 |
msgid "Default - Show one ad at a time"
|
1878 |
msgstr "Standaard - Eén advertentie tegelijk weergeven"
|
1879 |
|
1880 |
-
#: dashboard/publisher/groups-edit.php:
|
1881 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1882 |
msgstr "Dynamische modus - Elke paar seconden een andere advertentie weergeven"
|
1883 |
|
1884 |
-
#: dashboard/publisher/groups-edit.php:
|
1885 |
msgid "Block Mode - Show a block of adverts"
|
1886 |
msgstr "Blokmodus - Een blok advertenties weergeven"
|
1887 |
|
1888 |
-
#: dashboard/publisher/groups-edit.php:
|
1889 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1890 |
msgstr ""
|
1891 |
"Dynamische modus vereist jQuery. Je kunt dit inschakelen in AdRotate-"
|
1892 |
"instellingen."
|
1893 |
|
1894 |
-
#: dashboard/publisher/groups-edit.php:
|
1895 |
msgid "Advert size"
|
1896 |
msgstr "Advertentiegrootte"
|
1897 |
|
1898 |
-
#: dashboard/publisher/groups-edit.php:
|
1899 |
msgid "pixel(s) wide"
|
1900 |
msgstr "pixel(s) breed"
|
1901 |
|
1902 |
-
#: dashboard/publisher/groups-edit.php:
|
1903 |
msgid "pixel(s) high."
|
1904 |
msgstr "pixel(s) hoog."
|
1905 |
|
1906 |
-
#: dashboard/publisher/groups-edit.php:
|
1907 |
msgid ""
|
1908 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1909 |
"recommended)."
|
@@ -1911,78 +1919,78 @@ msgstr ""
|
|
1911 |
"Definieer de maximale grootte van de advertenties in pixels. Grootte kan "
|
1912 |
"'auto' zijn (niet aanbevolen)."
|
1913 |
|
1914 |
-
#: dashboard/publisher/groups-edit.php:
|
1915 |
msgid "Dynamic and Block Mode"
|
1916 |
msgstr "Dynamische en blokmodus"
|
1917 |
|
1918 |
-
#: dashboard/publisher/groups-edit.php:
|
1919 |
msgid "Block size"
|
1920 |
msgstr "Blokgrootte"
|
1921 |
|
1922 |
-
#: dashboard/publisher/groups-edit.php:
|
1923 |
msgid "rows"
|
1924 |
msgstr "rijen"
|
1925 |
|
1926 |
-
#: dashboard/publisher/groups-edit.php:
|
1927 |
msgid "columns"
|
1928 |
msgstr "kolommen"
|
1929 |
|
1930 |
-
#: dashboard/publisher/groups-edit.php:
|
1931 |
msgid "Block Mode"
|
1932 |
msgstr "Blokmodus"
|
1933 |
|
1934 |
-
#: dashboard/publisher/groups-edit.php:
|
1935 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1936 |
msgstr ""
|
1937 |
"Grotere blokken zullen de prestaties van uw sites verslechteren! Standaard: "
|
1938 |
"2/2."
|
1939 |
|
1940 |
-
#: dashboard/publisher/groups-edit.php:
|
1941 |
msgid "Automated refresh"
|
1942 |
msgstr "Automatisch vernieuwen"
|
1943 |
|
1944 |
-
#: dashboard/publisher/groups-edit.php:
|
1945 |
msgid "seconds."
|
1946 |
msgstr "seconden."
|
1947 |
|
1948 |
-
#: dashboard/publisher/groups-edit.php:
|
1949 |
-
#: dashboard/publisher/groups-edit.php:
|
1950 |
msgid "Dynamic Mode"
|
1951 |
msgstr "Dynamische modus"
|
1952 |
|
1953 |
-
#: dashboard/publisher/groups-edit.php:
|
1954 |
msgid ""
|
1955 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1956 |
msgstr ""
|
1957 |
"Laad een nieuwe advertentie in dit interval zonder de pagina opnieuw te "
|
1958 |
"laden. Standaard: 6."
|
1959 |
|
1960 |
-
#: dashboard/publisher/groups-edit.php:
|
1961 |
msgid "Repeat impressions"
|
1962 |
msgstr "Herhaalde vertoningen"
|
1963 |
|
1964 |
-
#: dashboard/publisher/groups-edit.php:
|
1965 |
msgid "Count impressions for every cycle of adverts?"
|
1966 |
msgstr "Aantal vertoningen voor elke cyclus van advertenties?"
|
1967 |
|
1968 |
-
#: dashboard/publisher/groups-edit.php:
|
1969 |
msgid ""
|
1970 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1971 |
msgstr ""
|
1972 |
"Schakel deze optie uit om alleen vertoningen voor de eerste cyclus van "
|
1973 |
"advertenties te tellen."
|
1974 |
|
1975 |
-
#: dashboard/publisher/groups-edit.php:
|
1976 |
-
#: dashboard/publisher/groups-edit.php:
|
1977 |
msgid "Get access to all features in AdRotate Pro."
|
1978 |
msgstr "Krijg toegang tot alle functies in AdRotate Pro."
|
1979 |
|
1980 |
-
#: dashboard/publisher/groups-edit.php:
|
1981 |
msgid "Upgrade today"
|
1982 |
msgstr "Upgrade vandaag"
|
1983 |
|
1984 |
-
#: dashboard/publisher/groups-edit.php:
|
1985 |
-
#: dashboard/publisher/groups-edit.php:
|
1986 |
msgid ""
|
1987 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1988 |
"Adverts\" and enter ID"
|
@@ -1990,53 +1998,53 @@ msgstr ""
|
|
1990 |
"Sleep de AdRotate widget naar de zijbalk waarin je deze wilt hebben, "
|
1991 |
"selecteer de “Advertentie groep\" en voer een ID in"
|
1992 |
|
1993 |
-
#: dashboard/publisher/groups-edit.php:
|
1994 |
-
#: dashboard/publisher/groups-edit.php:
|
1995 |
-
#: dashboard/publisher/groups-edit.php:
|
1996 |
msgid "Save Group"
|
1997 |
msgstr "Groep opslaan"
|
1998 |
|
1999 |
-
#: dashboard/publisher/groups-edit.php:
|
2000 |
msgid "Advert Margin"
|
2001 |
msgstr "Advertentiemarge"
|
2002 |
|
2003 |
-
#: dashboard/publisher/groups-edit.php:
|
2004 |
msgid "pixel(s)"
|
2005 |
msgstr "pixel(en)"
|
2006 |
|
2007 |
-
#: dashboard/publisher/groups-edit.php:
|
2008 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2009 |
msgstr "Een transparant gebied buiten de advertentie in pixels. Standaard: 0."
|
2010 |
|
2011 |
-
#: dashboard/publisher/groups-edit.php:
|
2012 |
msgid "Set to 0 to disable."
|
2013 |
msgstr "Stel in op 0 om uit te schakelen."
|
2014 |
|
2015 |
-
#: dashboard/publisher/groups-edit.php:
|
2016 |
msgid "Margins are automatically disabled for blocks where required."
|
2017 |
msgstr "Marges worden automatisch uitgeschakeld voor blokken waar nodig."
|
2018 |
|
2019 |
-
#: dashboard/publisher/groups-edit.php:
|
2020 |
msgid "Align the group"
|
2021 |
msgstr "De groep uitlijnen"
|
2022 |
|
2023 |
-
#: dashboard/publisher/groups-edit.php:
|
2024 |
msgid "None (Default)"
|
2025 |
msgstr "None"
|
2026 |
|
2027 |
-
#: dashboard/publisher/groups-edit.php:
|
2028 |
msgid "Left"
|
2029 |
msgstr "Links"
|
2030 |
|
2031 |
-
#: dashboard/publisher/groups-edit.php:
|
2032 |
msgid "Right"
|
2033 |
msgstr "Rechts"
|
2034 |
|
2035 |
-
#: dashboard/publisher/groups-edit.php:
|
2036 |
msgid "Center"
|
2037 |
msgstr "Midden"
|
2038 |
|
2039 |
-
#: dashboard/publisher/groups-edit.php:
|
2040 |
msgid ""
|
2041 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2042 |
"setting. Not every theme supports this feature."
|
@@ -2044,34 +2052,34 @@ msgstr ""
|
|
2044 |
"Lijn de groep uit op je bericht of pagina. Het gebruik van 'center' kan van "
|
2045 |
"invloed zijn op uw marge-instelling. Niet elk thema ondersteunt deze functie."
|
2046 |
|
2047 |
-
#: dashboard/publisher/groups-edit.php:
|
2048 |
msgid "Enable Geo Targeting for this group."
|
2049 |
msgstr "Geotargeting inschakelen voor deze groep."
|
2050 |
|
2051 |
-
#: dashboard/publisher/groups-edit.php:
|
2052 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2053 |
msgstr ""
|
2054 |
"Vergeet niet om de advertenties te vertellen voor welke gebieden ze moeten "
|
2055 |
"laten zien."
|
2056 |
|
2057 |
-
#: dashboard/publisher/groups-edit.php:
|
2058 |
msgid "Mobile Support"
|
2059 |
msgstr "Mobiele ondersteuning"
|
2060 |
|
2061 |
-
#: dashboard/publisher/groups-edit.php:
|
2062 |
msgid "Enable mobile support for this group."
|
2063 |
msgstr "Mobiele ondersteuning voor deze groep inschakelen."
|
2064 |
|
2065 |
-
#: dashboard/publisher/groups-edit.php:
|
2066 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2067 |
msgstr ""
|
2068 |
"Vergeet niet om tenminste één mobiele advertentie in deze groep te plaatsen."
|
2069 |
|
2070 |
-
#: dashboard/publisher/groups-edit.php:
|
2071 |
msgid "Fallback Group"
|
2072 |
msgstr "Fallback-groep"
|
2073 |
|
2074 |
-
#: dashboard/publisher/groups-edit.php:
|
2075 |
msgid ""
|
2076 |
"Select another group to fall back on when all adverts are expired, not in "
|
2077 |
"the visitors geographic area or are otherwise unavailable."
|
@@ -2080,134 +2088,134 @@ msgstr ""
|
|
2080 |
"advertenties zijn verlopen, niet in het geografische gebied van bezoekers of "
|
2081 |
"anderszins niet beschikbaar zijn."
|
2082 |
|
2083 |
-
#: dashboard/publisher/groups-edit.php:
|
2084 |
-
#: dashboard/publisher/groups-edit.php:
|
2085 |
#: dashboard/settings/geotargeting.php:24
|
2086 |
msgid "Disabled"
|
2087 |
msgstr "Uitgeschakeld"
|
2088 |
|
2089 |
-
#: dashboard/publisher/groups-edit.php:
|
2090 |
-
#: dashboard/publisher/groups-edit.php:
|
2091 |
msgid "Widget (Pro only)"
|
2092 |
msgstr "Widget (alleen Pro)"
|
2093 |
|
2094 |
-
#: dashboard/publisher/groups-edit.php:
|
2095 |
-
#: dashboard/publisher/groups-edit.php:
|
2096 |
msgid "Before content"
|
2097 |
msgstr "Voor de inhoud"
|
2098 |
|
2099 |
-
#: dashboard/publisher/groups-edit.php:
|
2100 |
-
#: dashboard/publisher/groups-edit.php:
|
2101 |
msgid "After content"
|
2102 |
msgstr "Na inhoud (content)"
|
2103 |
|
2104 |
-
#: dashboard/publisher/groups-edit.php:
|
2105 |
-
#: dashboard/publisher/groups-edit.php:
|
2106 |
msgid "Before and after content"
|
2107 |
msgstr "Voor en na de inhoud"
|
2108 |
|
2109 |
-
#: dashboard/publisher/groups-edit.php:
|
2110 |
-
#: dashboard/publisher/groups-edit.php:
|
2111 |
msgid "Inside the content..."
|
2112 |
msgstr "Binnen de inhoud..."
|
2113 |
|
2114 |
-
#: dashboard/publisher/groups-edit.php:
|
2115 |
-
#: dashboard/publisher/groups-edit.php:
|
2116 |
msgid "after the middle paragraph"
|
2117 |
msgstr "na de middelste alinea"
|
2118 |
|
2119 |
-
#: dashboard/publisher/groups-edit.php:
|
2120 |
-
#: dashboard/publisher/groups-edit.php:
|
2121 |
msgid "after the 1st paragraph"
|
2122 |
msgstr "na de 1e alinea"
|
2123 |
|
2124 |
-
#: dashboard/publisher/groups-edit.php:
|
2125 |
-
#: dashboard/publisher/groups-edit.php:
|
2126 |
msgid "after the 2nd paragraph"
|
2127 |
msgstr "na de 2e alinea"
|
2128 |
|
2129 |
-
#: dashboard/publisher/groups-edit.php:
|
2130 |
-
#: dashboard/publisher/groups-edit.php:
|
2131 |
msgid "after the 3rd paragraph"
|
2132 |
msgstr "na de 3e alinea"
|
2133 |
|
2134 |
-
#: dashboard/publisher/groups-edit.php:
|
2135 |
-
#: dashboard/publisher/groups-edit.php:
|
2136 |
msgid "after the 4th paragraph"
|
2137 |
msgstr "na de 4e alinea"
|
2138 |
|
2139 |
-
#: dashboard/publisher/groups-edit.php:
|
2140 |
-
#: dashboard/publisher/groups-edit.php:
|
2141 |
msgid "after the 5th paragraph"
|
2142 |
msgstr "na de 5e alinea"
|
2143 |
|
2144 |
-
#: dashboard/publisher/groups-edit.php:
|
2145 |
-
#: dashboard/publisher/groups-edit.php:
|
2146 |
msgid "after the 6th paragraph"
|
2147 |
msgstr "na de 6e alinea"
|
2148 |
|
2149 |
-
#: dashboard/publisher/groups-edit.php:
|
2150 |
-
#: dashboard/publisher/groups-edit.php:
|
2151 |
msgid "after the 7th paragraph"
|
2152 |
msgstr "na de 7e alinea"
|
2153 |
|
2154 |
-
#: dashboard/publisher/groups-edit.php:
|
2155 |
-
#: dashboard/publisher/groups-edit.php:
|
2156 |
msgid "after the 8th paragraph"
|
2157 |
msgstr "na de 8e alinea"
|
2158 |
|
2159 |
-
#: dashboard/publisher/groups-edit.php:
|
2160 |
msgid "Page Injection"
|
2161 |
msgstr "Pagina-injectie"
|
2162 |
|
2163 |
-
#: dashboard/publisher/groups-edit.php:
|
2164 |
msgid "Wrapper code"
|
2165 |
msgstr "Wrapper-code"
|
2166 |
|
2167 |
-
#: dashboard/publisher/groups-edit.php:
|
2168 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2169 |
msgstr ""
|
2170 |
"Wraps rond elke advertentie. HTML/JavaScript toegestaan, gebruik met zorg!"
|
2171 |
|
2172 |
-
#: dashboard/publisher/groups-edit.php:
|
2173 |
msgid "Before advert"
|
2174 |
msgstr "Voor de advertentie"
|
2175 |
|
2176 |
-
#: dashboard/publisher/groups-edit.php:
|
2177 |
-
#: dashboard/publisher/groups-edit.php:
|
2178 |
msgid "Example:"
|
2179 |
msgstr "Voorbeeld:"
|
2180 |
|
2181 |
-
#: dashboard/publisher/groups-edit.php:
|
2182 |
msgid "Options:"
|
2183 |
msgstr "Opties:"
|
2184 |
|
2185 |
-
#: dashboard/publisher/groups-edit.php:
|
2186 |
msgid "After advert"
|
2187 |
msgstr "Na advertentie"
|
2188 |
|
2189 |
-
#: dashboard/publisher/groups-edit.php:
|
2190 |
msgid "Select adverts"
|
2191 |
msgstr "Advertenties selecteren"
|
2192 |
|
2193 |
-
#: dashboard/publisher/groups-edit.php:
|
2194 |
msgid "Visible until"
|
2195 |
msgstr "Zichtbaar tot"
|
2196 |
|
2197 |
-
#: dashboard/publisher/groups-edit.php:
|
2198 |
msgid "No adverts created!"
|
2199 |
msgstr "Geen advertenties gemaakt!"
|
2200 |
|
2201 |
-
#: dashboard/publisher/groups-edit.php:
|
2202 |
msgid "Configuration errors."
|
2203 |
msgstr "Configuratiefouten."
|
2204 |
|
2205 |
-
#: dashboard/publisher/groups-edit.php:
|
2206 |
#: dashboard/publisher/schedules-main.php:87
|
2207 |
msgid "Expires soon."
|
2208 |
msgstr "Verloopt binnenkort."
|
2209 |
|
2210 |
-
#: dashboard/publisher/groups-edit.php:
|
2211 |
#: dashboard/publisher/schedules-main.php:88
|
2212 |
msgid "Has expired."
|
2213 |
msgstr "Is verlopen."
|
@@ -2293,7 +2301,7 @@ msgstr ""
|
|
2293 |
"Zorg ervoor dat de bannerafbeeldingen niet worden gebruikt door advertenties "
|
2294 |
"wanneer u ze verwijdert!"
|
2295 |
|
2296 |
-
#: dashboard/publisher/media.php:73
|
2297 |
#: dashboard/publisher/statistics-advert.php:109
|
2298 |
#: dashboard/publisher/statistics-group.php:113
|
2299 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -2312,6 +2320,10 @@ msgstr ""
|
|
2312 |
"meerdere advertentiecampagnes kunt beheren. Schema's kunnen actief zijn op "
|
2313 |
"bepaalde dagen van de week of op bepaalde uren van de dag."
|
2314 |
|
|
|
|
|
|
|
|
|
2315 |
#: dashboard/publisher/schedules-main.php:36
|
2316 |
msgid "Max Shown"
|
2317 |
msgstr "Max getoond"
|
@@ -3406,36 +3418,6 @@ msgstr ""
|
|
3406 |
"Dit aantal mag niet leeg zijn, lager zijn dan 60 of hoger zijn dan 86400 (24 "
|
3407 |
"uur)."
|
3408 |
|
3409 |
-
#: dashboard/support.php:25
|
3410 |
-
msgid "Support Forums"
|
3411 |
-
msgstr "Supportfora"
|
3412 |
-
|
3413 |
-
#: dashboard/support.php:27
|
3414 |
-
msgid ""
|
3415 |
-
"When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3416 |
-
"Chances are your question has already been asked and answered!"
|
3417 |
-
msgstr ""
|
3418 |
-
"Wanneer u vastzit aan AdRotate Banner Manager of AdRotate Professional, "
|
3419 |
-
"controleert u eerst de forums. De kans is groot dat uw vraag al is gesteld "
|
3420 |
-
"en beantwoord!"
|
3421 |
-
|
3422 |
-
#: dashboard/support.php:27
|
3423 |
-
msgid ""
|
3424 |
-
"Next to the forum there are many manuals and guides available for almost "
|
3425 |
-
"every function and feature in the plugin."
|
3426 |
-
msgstr ""
|
3427 |
-
"Naast het forum zijn er veel handleidingen en gidsen beschikbaar voor bijna "
|
3428 |
-
"elke functie en functie in de plugin."
|
3429 |
-
|
3430 |
-
#: dashboard/support.php:27
|
3431 |
-
msgid "Take a look at the AdRotate Manuals"
|
3432 |
-
msgstr "Bekijk de handleidingen voor AdRotate"
|
3433 |
-
|
3434 |
-
#: dashboard/support.php:29 dashboard/support.php:30 dashboard/support.php:31
|
3435 |
-
#: dashboard/support.php:32 dashboard/support.php:33 dashboard/support.php:34
|
3436 |
-
msgid "View topics"
|
3437 |
-
msgstr "Bekijk onderwerpen"
|
3438 |
-
|
3439 |
#: dashboard/support.php:83
|
3440 |
msgid "Premium Support available in AdRotate Pro"
|
3441 |
msgstr "Premium-ondersteuning beschikbaar in AdRotate Pro"
|
@@ -3503,6 +3485,101 @@ msgstr "Hulp vragen"
|
|
3503 |
msgid "Premium Support is available in AdRotate Pro!"
|
3504 |
msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
3505 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3506 |
#~ msgid ""
|
3507 |
#~ "AdRotate does not check the validity of names and assumes the basic "
|
3508 |
#~ "english name"
|
@@ -4493,9 +4570,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
|
4493 |
#~ "Gearchiveerde advertenties hebben hun statistieken verplaatst naar een "
|
4494 |
#~ "aparte database tabel die de algehele snelheid van uw site kan verhogen."
|
4495 |
|
4496 |
-
#~ msgid "Caution:"
|
4497 |
-
#~ msgstr "Waarschuwing:"
|
4498 |
-
|
4499 |
#~ msgid ""
|
4500 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
4501 |
#~ "some cases a lot of data has to be moved. Not every hosting provider "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-05-18 14:02-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-05-18 14:09-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
60 |
#: adrotate-functions.php:732
|
61 |
msgid ""
|
62 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
63 |
+
"below. Do not forget to check all settings and schedule it."
|
64 |
msgstr ""
|
65 |
+
"Advertentie-HTML gegenereerd en geplaatst in het veld AdCode. Configureer "
|
66 |
+
"hieronder uw advertentie. Vergeet niet om alle instellingen te controleren "
|
67 |
+
"en de advertentie in te plannen."
|
68 |
|
69 |
#: adrotate-functions.php:737
|
70 |
msgid "Settings saved"
|
116 |
msgstr "Geen advertenties gevonden."
|
117 |
|
118 |
#: adrotate-functions.php:782
|
119 |
+
msgid ""
|
120 |
+
"The advert hash is not usable or is missing required data. Please copy the "
|
121 |
+
"hash correctly and try again."
|
122 |
+
msgstr ""
|
123 |
+
"De advert hash is niet bruikbaar of mist vereiste informatie. Probeer het "
|
124 |
+
"opnieuw met een nieuwe hash."
|
125 |
+
|
126 |
+
#: adrotate-functions.php:786
|
127 |
+
msgid ""
|
128 |
+
"The advert hash can not be used on the same site as it originated from or is "
|
129 |
+
"not a valid hash for importing."
|
130 |
+
msgstr ""
|
131 |
+
"De advert hash is niet bruikbaar op dezelfde website als waar hij "
|
132 |
+
"gegenereerd is of de hash is niet een geldige hash voor het importeren van "
|
133 |
+
"een advertentie."
|
134 |
+
|
135 |
+
#: adrotate-functions.php:790
|
136 |
msgid "Unexpected error"
|
137 |
msgstr "Onverwachte fout"
|
138 |
|
139 |
+
#: adrotate-manage-publisher.php:782
|
140 |
msgid "AdRotate Advertiser"
|
141 |
msgstr "AdRotate Adverteerder"
|
142 |
|
284 |
|
285 |
#: adrotate-output.php:652
|
286 |
msgid ""
|
287 |
+
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
288 |
+
"can delete this plugin after AdRotate Pro is activated."
|
289 |
msgstr ""
|
290 |
+
"Je hebt AdRotate Professional geïnstalleerd. Stap over naar AdRotate Pro! Je "
|
291 |
+
"kunt deze plug-in verwijderen nadat AdRotate Pro is geactiveerd."
|
292 |
|
293 |
#: adrotate-output.php:652
|
294 |
+
msgid "Switch plugins"
|
295 |
+
msgstr "Stap over"
|
296 |
|
297 |
#: adrotate-output.php:655
|
298 |
msgid ""
|
337 |
msgid "Help AdRotate Grow"
|
338 |
msgstr "Help AdRotate groeien"
|
339 |
|
340 |
+
#: adrotate-output.php:835 adrotate.php:150
|
341 |
msgid "AdRotate Professional"
|
342 |
msgstr "AdRotate Professional"
|
343 |
|
493 |
msgid "Fill in the ID of the type you want to display!"
|
494 |
msgstr "Vul het ID in van het type dat je wilt weergeven!"
|
495 |
|
496 |
+
#: adrotate.php:103
|
497 |
msgid "General Info"
|
498 |
msgstr "Algemene info"
|
499 |
|
500 |
+
#: adrotate.php:104
|
501 |
msgid "AdRotate Pro"
|
502 |
msgstr "AdRotate Pro"
|
503 |
|
504 |
+
#: adrotate.php:105
|
505 |
msgid "Manage Adverts"
|
506 |
msgstr "Advertenties beheren"
|
507 |
|
508 |
+
#: adrotate.php:106 dashboard/publisher/groups-main.php:12
|
509 |
msgid "Manage Groups"
|
510 |
msgstr "Beheer Groepen"
|
511 |
|
512 |
+
#: adrotate.php:107 dashboard/publisher/schedules-main.php:12
|
513 |
msgid "Manage Schedules"
|
514 |
msgstr "Schema's beheren"
|
515 |
|
516 |
+
#: adrotate.php:108 adrotate.php:388 adrotate.php:505
|
517 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
518 |
#: dashboard/publisher/statistics-main.php:23
|
519 |
#: dashboard/settings/statistics.php:17
|
520 |
msgid "Statistics"
|
521 |
msgstr "Statistieken"
|
522 |
|
523 |
+
#: adrotate.php:109
|
524 |
msgid "Manage Media"
|
525 |
msgstr "Beheer Media"
|
526 |
|
527 |
+
#: adrotate.php:110 adrotate.php:469
|
528 |
msgid "Support"
|
529 |
msgstr "Ondersteuning"
|
530 |
|
531 |
+
#: adrotate.php:111
|
532 |
msgid "Settings"
|
533 |
msgstr "Instellingen"
|
534 |
|
535 |
+
#: adrotate.php:132
|
536 |
msgid "AdRotate Info"
|
537 |
msgstr "AdRotate Info"
|
538 |
|
539 |
+
#: adrotate.php:190
|
540 |
msgid "Advert Management"
|
541 |
msgstr "Advertentiemanagement"
|
542 |
|
543 |
+
#: adrotate.php:250 adrotate.php:318
|
544 |
msgid "Manage"
|
545 |
msgstr "Beheren"
|
546 |
|
547 |
+
#: adrotate.php:251
|
548 |
msgid "Generator"
|
549 |
msgstr "Genereren"
|
550 |
|
551 |
+
#: adrotate.php:252 adrotate.php:319
|
552 |
msgid "Add New"
|
553 |
msgstr "Nieuw"
|
554 |
|
555 |
+
#: adrotate.php:312
|
556 |
msgid "Group Management"
|
557 |
msgstr "Groepsmanagement"
|
558 |
|
559 |
+
#: adrotate.php:349
|
560 |
msgid "Schedules"
|
561 |
msgstr "Schema’s"
|
562 |
|
563 |
+
#: adrotate.php:430
|
564 |
msgid "Media and Assets"
|
565 |
msgstr "Media en assets"
|
566 |
|
567 |
+
#: adrotate.php:434
|
568 |
msgid ""
|
569 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
570 |
"if you have HTML5 adverts containing multiple files."
|
572 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
573 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
574 |
|
575 |
+
#: adrotate.php:434
|
576 |
msgid "Get more features"
|
577 |
msgstr "Krijg meer functies"
|
578 |
|
579 |
+
#: adrotate.php:434
|
580 |
msgid "Get AdRotate Pro"
|
581 |
msgstr "Koop AdRotate Pro"
|
582 |
|
583 |
+
#: adrotate.php:498
|
584 |
msgid "AdRotate Settings"
|
585 |
msgstr "AdRotate-instellingen"
|
586 |
|
587 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
588 |
msgid "General"
|
589 |
msgstr "Algemeen"
|
590 |
|
591 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
592 |
msgid "Notifications"
|
593 |
msgstr "Meldingen"
|
594 |
|
595 |
+
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:345
|
596 |
+
#: dashboard/publisher/groups-edit.php:205
|
597 |
#: dashboard/settings/advertisers.php:38
|
598 |
msgid "Geo Targeting"
|
599 |
msgstr "Geo-targeting"
|
600 |
|
601 |
+
#: adrotate.php:507 dashboard/settings/notifications.php:70
|
602 |
msgid "Advertisers"
|
603 |
msgstr "Adverteerders"
|
604 |
|
605 |
+
#: adrotate.php:508 dashboard/settings/roles.php:17
|
606 |
msgid "Access Roles"
|
607 |
msgstr "Rollen"
|
608 |
|
609 |
+
#: adrotate.php:509 dashboard/settings/misc.php:16
|
610 |
msgid "Miscellaneous"
|
611 |
msgstr "Diversen"
|
612 |
|
613 |
+
#: adrotate.php:510 dashboard/settings/maintenance.php:16
|
614 |
msgid "Maintenance"
|
615 |
msgstr "Onderhoud"
|
616 |
|
759 |
msgid "Adverts that need you"
|
760 |
msgstr "Controleer advertenties"
|
761 |
|
762 |
+
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:474
|
763 |
#: dashboard/publisher/groups-main.php:34
|
764 |
#: dashboard/publisher/schedules-main.php:34
|
765 |
#: dashboard/publisher/statistics-main.php:35
|
778 |
msgid "Have errors"
|
779 |
msgstr "Fouten hebben"
|
780 |
|
781 |
+
#: dashboard/info.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
782 |
msgid "Buy AdRotate Professional"
|
783 |
msgstr "Koop AdRotate Professional"
|
784 |
|
785 |
+
#: dashboard/info.php:111
|
786 |
msgid ""
|
787 |
"AdRotate Professional has a lot more functions for even better advertising "
|
788 |
"management. Check out the feature comparison tab on any of the product pages "
|
793 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
794 |
"heeft!"
|
795 |
|
796 |
+
#: dashboard/info.php:113
|
797 |
msgid "Single License"
|
798 |
msgstr "Enkele licentie"
|
799 |
|
800 |
+
#: dashboard/info.php:113
|
801 |
msgid "Use on ONE WordPress installation."
|
802 |
msgstr "Gebruik op één WordPress-installatie."
|
803 |
|
804 |
+
#: dashboard/info.php:113 dashboard/info.php:114 dashboard/info.php:115
|
805 |
+
#: dashboard/info.php:116
|
806 |
msgid "Buy now"
|
807 |
msgstr "Koop nu"
|
808 |
|
809 |
+
#: dashboard/info.php:114
|
810 |
msgid "Duo License"
|
811 |
msgstr "Duo Licentie"
|
812 |
|
813 |
+
#: dashboard/info.php:114
|
814 |
msgid "Use on TWO WordPress installations."
|
815 |
msgstr "Gebruik op twee WordPress-installaties."
|
816 |
|
817 |
+
#: dashboard/info.php:115
|
818 |
msgid "Multi License"
|
819 |
msgstr "Multi Licentie"
|
820 |
|
821 |
+
#: dashboard/info.php:115
|
822 |
msgid "Use on up to FIVE WordPress installations."
|
823 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
824 |
|
825 |
+
#: dashboard/info.php:116
|
826 |
msgid "Developer License"
|
827 |
msgstr "Ontwikkelaarslicentie"
|
828 |
|
829 |
+
#: dashboard/info.php:116
|
830 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
831 |
msgstr "Gebruik op maximaal honderd WordPress-installaties en/of -netwerken."
|
832 |
|
833 |
+
#: dashboard/info.php:127
|
834 |
msgid "Advertising Partners & Affiliates"
|
835 |
msgstr "Advertentie Partners & Affiliates"
|
836 |
|
837 |
+
#: dashboard/info.php:128
|
838 |
msgid ""
|
839 |
"A selection of quality advertiser networks and useful products. If you need "
|
840 |
"adverts or just want more or more diverse adverts. Check out these great "
|
844 |
"Als je advertenties nodig hebt of gewoon meer of meer diverse advertenties "
|
845 |
"wilt. Bekijk deze geweldige opties!"
|
846 |
|
847 |
+
#: dashboard/info.php:128
|
848 |
+
msgid "Check out these and other preferred products or providers on my"
|
849 |
+
msgstr "Bekijk deze en andere aanbevolen producten en diensten op mijn"
|
850 |
+
|
851 |
+
#: dashboard/info.php:128
|
852 |
+
msgid "recommended products page"
|
853 |
+
msgstr "aanbevolen producten pagina"
|
854 |
|
855 |
#: dashboard/publisher/adverts-disabled.php:15
|
856 |
msgid "Disabled Adverts"
|
890 |
msgstr "Ga"
|
891 |
|
892 |
#: dashboard/publisher/adverts-disabled.php:35
|
893 |
+
#: dashboard/publisher/adverts-edit.php:472
|
894 |
#: dashboard/publisher/adverts-error.php:39
|
895 |
#: dashboard/publisher/adverts-main.php:39
|
896 |
+
#: dashboard/publisher/groups-edit.php:359
|
897 |
#: dashboard/publisher/groups-main.php:32
|
898 |
#: dashboard/publisher/schedules-main.php:31
|
899 |
msgid "ID"
|
908 |
|
909 |
#: dashboard/publisher/adverts-disabled.php:37
|
910 |
#: dashboard/publisher/adverts-edit.php:112
|
911 |
+
#: dashboard/publisher/adverts-edit.php:473
|
912 |
#: dashboard/publisher/adverts-error.php:40
|
913 |
#: dashboard/publisher/adverts-main.php:41
|
914 |
+
#: dashboard/publisher/groups-edit.php:65
|
915 |
+
#: dashboard/publisher/groups-edit.php:360
|
916 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
917 |
#: dashboard/publisher/schedules-main.php:33
|
918 |
msgid "Name"
|
920 |
|
921 |
#: dashboard/publisher/adverts-disabled.php:39
|
922 |
#: dashboard/publisher/adverts-main.php:43
|
923 |
+
#: dashboard/publisher/groups-edit.php:364
|
924 |
#: dashboard/publisher/groups-main.php:36
|
925 |
msgid "Shown"
|
926 |
msgstr "Getoonde"
|
927 |
|
928 |
#: dashboard/publisher/adverts-disabled.php:40
|
929 |
#: dashboard/publisher/adverts-main.php:45
|
930 |
+
#: dashboard/publisher/groups-edit.php:365
|
931 |
#: dashboard/publisher/groups-main.php:38
|
932 |
#: dashboard/publisher/statistics-advert.php:52
|
933 |
#: dashboard/publisher/statistics-advert.php:58
|
1184 |
msgstr "Inactief, laat deze advertentie nergens zien"
|
1185 |
|
1186 |
#: dashboard/publisher/adverts-edit.php:198
|
|
|
|
|
1187 |
msgid "Get more features with AdRotate Pro."
|
1188 |
msgstr "Beschik over meer functies met AdRotate Pro."
|
1189 |
|
1190 |
#: dashboard/publisher/adverts-edit.php:198
|
1191 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1192 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1193 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1194 |
+
#: dashboard/publisher/groups-edit.php:228 dashboard/publisher/media.php:73
|
|
|
|
|
|
|
1195 |
#: dashboard/publisher/statistics-advert.php:109
|
1196 |
#: dashboard/publisher/statistics-group.php:113
|
1197 |
#: dashboard/publisher/statistics-main.php:83
|
1199 |
msgstr "Nu bijwerken"
|
1200 |
|
1201 |
#: dashboard/publisher/adverts-edit.php:201
|
1202 |
+
#: dashboard/publisher/adverts-edit.php:264
|
1203 |
+
#: dashboard/publisher/adverts-edit.php:462
|
1204 |
+
#: dashboard/publisher/adverts-edit.php:505
|
1205 |
msgid "Save Advert"
|
1206 |
msgstr "Advertentie opslaan"
|
1207 |
|
1208 |
#: dashboard/publisher/adverts-edit.php:202
|
1209 |
+
#: dashboard/publisher/adverts-edit.php:265
|
1210 |
+
#: dashboard/publisher/adverts-edit.php:463
|
1211 |
+
#: dashboard/publisher/adverts-edit.php:506
|
1212 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1213 |
+
#: dashboard/publisher/groups-edit.php:175
|
1214 |
+
#: dashboard/publisher/groups-edit.php:329
|
1215 |
+
#: dashboard/publisher/groups-edit.php:423
|
1216 |
msgid "Cancel"
|
1217 |
msgstr "Annuleren"
|
1218 |
|
1219 |
#: dashboard/publisher/adverts-edit.php:205
|
1220 |
+
#: dashboard/publisher/adverts-edit.php:445
|
1221 |
+
#: dashboard/publisher/groups-edit.php:157
|
1222 |
+
#: dashboard/publisher/groups-edit.php:311
|
1223 |
msgid "Usage"
|
1224 |
msgstr "Gebruik"
|
1225 |
|
1226 |
#: dashboard/publisher/adverts-edit.php:209
|
1227 |
+
#: dashboard/publisher/adverts-edit.php:449
|
1228 |
+
#: dashboard/publisher/groups-edit.php:161
|
1229 |
+
#: dashboard/publisher/groups-edit.php:315
|
1230 |
msgid "Widget"
|
1231 |
msgstr "Widget"
|
1232 |
|
1233 |
#: dashboard/publisher/adverts-edit.php:210
|
1234 |
+
#: dashboard/publisher/adverts-edit.php:450
|
1235 |
msgid ""
|
1236 |
"Drag the AdRotate widget to the sidebar where you want to place the advert "
|
1237 |
"and select the advert or the group the advert is in."
|
1241 |
"de groep waarin de advertentie zich bevindt."
|
1242 |
|
1243 |
#: dashboard/publisher/adverts-edit.php:213
|
1244 |
+
#: dashboard/publisher/adverts-edit.php:453
|
1245 |
+
#: dashboard/publisher/groups-edit.php:165
|
1246 |
+
#: dashboard/publisher/groups-edit.php:319
|
1247 |
msgid "In a post or page"
|
1248 |
msgstr "In een bericht of pagina"
|
1249 |
|
1250 |
#: dashboard/publisher/adverts-edit.php:215
|
1251 |
+
#: dashboard/publisher/adverts-edit.php:455
|
1252 |
+
#: dashboard/publisher/groups-edit.php:167
|
1253 |
+
#: dashboard/publisher/groups-edit.php:321
|
1254 |
msgid "Directly in a theme"
|
1255 |
msgstr "Direct in een thema"
|
1256 |
|
1257 |
#: dashboard/publisher/adverts-edit.php:221
|
|
|
|
|
|
|
|
|
1258 |
msgid "Schedule your advert"
|
1259 |
msgstr "Plan jouw advertentie"
|
1260 |
|
1261 |
+
#: dashboard/publisher/adverts-edit.php:222
|
1262 |
msgid ""
|
1263 |
"Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
|
1264 |
"mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
|
1268 |
"systeem, houdt u dit in gedachten: Als de begin- of eindtijd na de lunch is, "
|
1269 |
"voegt u 12 uur toe. 14.00 uur is 14:00 uur. 6am is 6:00 uur."
|
1270 |
|
1271 |
+
#: dashboard/publisher/adverts-edit.php:226
|
1272 |
msgid "Start date"
|
1273 |
msgstr "Startdatum"
|
1274 |
|
1275 |
+
#: dashboard/publisher/adverts-edit.php:230
|
1276 |
msgid "End date"
|
1277 |
msgstr "Einddatum"
|
1278 |
|
1279 |
+
#: dashboard/publisher/adverts-edit.php:236
|
1280 |
msgid "Start time"
|
1281 |
msgstr "Starttijd"
|
1282 |
|
1283 |
+
#: dashboard/publisher/adverts-edit.php:243
|
1284 |
msgid "End time"
|
1285 |
msgstr "Eindtijd"
|
1286 |
|
1287 |
+
#: dashboard/publisher/adverts-edit.php:253
|
1288 |
msgid "Maximum Clicks"
|
1289 |
msgstr "Maximale klikken"
|
1290 |
|
1291 |
+
#: dashboard/publisher/adverts-edit.php:254
|
1292 |
+
#: dashboard/publisher/adverts-edit.php:256
|
1293 |
msgid "Leave empty or 0 to skip this."
|
1294 |
msgstr "Laat leeg of 0 om dit over te slaan."
|
1295 |
|
1296 |
+
#: dashboard/publisher/adverts-edit.php:255
|
1297 |
msgid "Maximum Impressions"
|
1298 |
msgstr "Maximale vertoningen"
|
1299 |
|
1300 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1301 |
msgid ""
|
1302 |
"Create multiple and more advanced schedules for each advert with AdRotate "
|
1303 |
"Pro."
|
1305 |
"Maak meerdere en meer geavanceerde schema's voor elke advertentie met "
|
1306 |
"AdRotate Pro."
|
1307 |
|
1308 |
+
#: dashboard/publisher/adverts-edit.php:268
|
1309 |
+
#: dashboard/publisher/groups-edit.php:178 dashboard/settings/statistics.php:27
|
1310 |
#: dashboard/settings/statistics.php:29
|
1311 |
msgid "Advanced"
|
1312 |
msgstr "Geavanceerd"
|
1313 |
|
1314 |
+
#: dashboard/publisher/adverts-edit.php:269
|
1315 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1316 |
msgid "Available in AdRotate Pro!"
|
1317 |
msgstr "Beschikbaar in AdRotate Pro!"
|
1318 |
|
1319 |
+
#: dashboard/publisher/adverts-edit.php:274
|
1320 |
msgid "Show to everyone"
|
1321 |
msgstr "Aan iedereen weergeven"
|
1322 |
|
1323 |
+
#: dashboard/publisher/adverts-edit.php:276
|
1324 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1325 |
msgstr ""
|
1326 |
"Schakel deze optie uit om de advertentie te verbergen voor ingelogde "
|
1327 |
"bezoekers."
|
1328 |
|
1329 |
+
#: dashboard/publisher/adverts-edit.php:281
|
1330 |
+
#: dashboard/publisher/groups-edit.php:362
|
1331 |
msgid "Weight"
|
1332 |
msgstr "Gewicht"
|
1333 |
|
1334 |
+
#: dashboard/publisher/adverts-edit.php:284
|
1335 |
msgid "Few impressions"
|
1336 |
msgstr "Weinig vertoningen"
|
1337 |
|
1338 |
+
#: dashboard/publisher/adverts-edit.php:289
|
1339 |
msgid "Less than average"
|
1340 |
msgstr "Minder dan gemiddeld"
|
1341 |
|
1342 |
+
#: dashboard/publisher/adverts-edit.php:294
|
1343 |
msgid "Normal impressions"
|
1344 |
msgstr "Normale vertoningen"
|
1345 |
|
1346 |
+
#: dashboard/publisher/adverts-edit.php:299
|
1347 |
msgid "More than average"
|
1348 |
msgstr "Meer dan gemiddeld"
|
1349 |
|
1350 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1351 |
msgid "Many impressions"
|
1352 |
msgstr "Veel vertoningen"
|
1353 |
|
1354 |
+
#: dashboard/publisher/adverts-edit.php:309
|
1355 |
msgid "Mobile"
|
1356 |
msgstr "Mobiel"
|
1357 |
|
1358 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1359 |
msgid "Desktops/Laptops"
|
1360 |
msgstr "Desktops/laptops"
|
1361 |
|
1362 |
+
#: dashboard/publisher/adverts-edit.php:314
|
1363 |
msgid "Smartphones"
|
1364 |
msgstr "Smartphones"
|
1365 |
|
1366 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1367 |
msgid "Tablets"
|
1368 |
msgstr "Tabletten"
|
1369 |
|
1370 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1371 |
msgid ""
|
1372 |
"Also enable 'Mobile Support' in the group this advert goes in or 'Device' "
|
1373 |
"and 'Operating System' are ignored!"
|
1375 |
"Ook inschakelen 'Mobiele ondersteuning' in de groep deze advertentie gaat in "
|
1376 |
"of 'Apparaat' en 'Besturingssysteem' worden genegeerd!"
|
1377 |
|
1378 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1379 |
msgid ""
|
1380 |
"Operating system detection only detects iOS and Android, select 'Not Mobile/"
|
1381 |
"Other' for everything else."
|
1383 |
"Besturingssysteemdetectie detecteert alleen iOS en Android, selecteer 'Niet "
|
1384 |
"mobiel/ander' voor al het andere."
|
1385 |
|
1386 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1387 |
msgid "Mobile OS"
|
1388 |
msgstr "Mobiel besturingssysteem"
|
1389 |
|
1390 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1391 |
msgid "iOS"
|
1392 |
msgstr "iOS"
|
1393 |
|
1394 |
+
#: dashboard/publisher/adverts-edit.php:329
|
1395 |
msgid "Android"
|
1396 |
msgstr "Android"
|
1397 |
|
1398 |
+
#: dashboard/publisher/adverts-edit.php:332
|
1399 |
msgid "Not mobile/Others"
|
1400 |
msgstr "Niet mobiel/Anderen"
|
1401 |
|
1402 |
+
#: dashboard/publisher/adverts-edit.php:336
|
1403 |
msgid "Auto-delete"
|
1404 |
msgstr "Automatisch verwijderen"
|
1405 |
|
1406 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1407 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1408 |
msgstr ""
|
1409 |
"Automatisch verwijderen van de advertentie 1 dag nadat deze is verlopen?"
|
1410 |
|
1411 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1412 |
msgid ""
|
1413 |
"This is useful for short running campaigns that do not require attention "
|
1414 |
"after they finish."
|
1416 |
"Dit is handig voor kortlopende campagnes die geen aandacht nodig hebben "
|
1417 |
"nadat ze zijn voltooid."
|
1418 |
|
1419 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1420 |
msgid ""
|
1421 |
"With AdRotate Pro you can easily select which devices and mobile operating "
|
1422 |
"systems the advert should show on!"
|
1424 |
"Met AdRotate Pro kun je eenvoudig selecteren op welke apparaten en mobiele "
|
1425 |
"besturingssystemen de advertentie moet worden weergegeven!"
|
1426 |
|
1427 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1428 |
msgid ""
|
1429 |
"Assign the advert to a group and enable that group to use Geo Targeting."
|
1430 |
msgstr ""
|
1431 |
"Wijs de advertentie toe aan een groep en stel die groep in staat "
|
1432 |
"geotargeting te gebruiken."
|
1433 |
|
1434 |
+
#: dashboard/publisher/adverts-edit.php:353
|
1435 |
msgid "Enter cities or metro IDs (DMA)"
|
1436 |
msgstr "Vul steden of metro-IDen in"
|
1437 |
|
1438 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1439 |
msgid "A comma separated list of Cities or Metro IDs:"
|
1440 |
msgstr "Een door komma's gescheiden lijst steden of metro IDs:"
|
1441 |
|
1442 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1443 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1444 |
msgid ""
|
1445 |
"AdRotate does not check the validity of names and assumes the basic english "
|
1446 |
"name."
|
1448 |
"AdRotate controleert de geldigheid van namen niet gaat uit van de standaard "
|
1449 |
"engelse spelling."
|
1450 |
|
1451 |
+
#: dashboard/publisher/adverts-edit.php:361
|
1452 |
msgid "Enter States or State ISO3166-2 codes"
|
1453 |
msgstr "Vul Staten of ISO3166-2 codes van staten in"
|
1454 |
|
1455 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1456 |
msgid "The listed cities must be in these states?"
|
1457 |
msgstr "Moeten de steden moeten in deze staten liggen?"
|
1458 |
|
1459 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1460 |
msgid "A comma separated list of states:"
|
1461 |
msgstr "Een door komma's gescheiden lijst met staten:"
|
1462 |
|
1463 |
+
#: dashboard/publisher/adverts-edit.php:373
|
1464 |
msgid "Select Countries and or Regions"
|
1465 |
msgstr "Selecteer landen en/of regio's"
|
1466 |
|
1467 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1468 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1469 |
msgstr "Target je doelgroep met Geo Targeting in AdRotate Pro"
|
1470 |
|
1471 |
+
#: dashboard/publisher/adverts-edit.php:467
|
1472 |
msgid "Select Groups"
|
1473 |
msgstr "Groepen selecteren"
|
1474 |
|
1475 |
+
#: dashboard/publisher/adverts-edit.php:483
|
1476 |
#: dashboard/publisher/groups-main.php:60
|
1477 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1478 |
msgid "Default"
|
1479 |
msgstr "Standaard"
|
1480 |
|
1481 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1482 |
#: dashboard/publisher/groups-main.php:61
|
1483 |
msgid "Dynamic"
|
1484 |
msgstr "Dynamisch"
|
1485 |
|
1486 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1487 |
#: dashboard/publisher/groups-main.php:61
|
1488 |
msgid "second rotation"
|
1489 |
msgstr "tweede rotatie"
|
1490 |
|
1491 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1492 |
#: dashboard/publisher/groups-main.php:62
|
1493 |
msgid "Block"
|
1494 |
msgstr "Blok"
|
1495 |
|
1496 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1497 |
#: dashboard/publisher/groups-main.php:62
|
1498 |
msgid "grid"
|
1499 |
msgstr "rooster"
|
1500 |
|
1501 |
+
#: dashboard/publisher/adverts-edit.php:486
|
1502 |
+
#: dashboard/publisher/groups-edit.php:235
|
1503 |
#: dashboard/publisher/groups-main.php:63
|
1504 |
msgid "Post Injection"
|
1505 |
msgstr "Na injectie"
|
1506 |
|
1507 |
+
#: dashboard/publisher/adverts-edit.php:487
|
1508 |
msgid "Geolocation"
|
1509 |
msgstr "Geolocatie"
|
1510 |
|
1511 |
+
#: dashboard/publisher/adverts-edit.php:494
|
1512 |
+
#: dashboard/publisher/groups-edit.php:74
|
1513 |
#: dashboard/publisher/groups-main.php:70
|
1514 |
msgid "Mode"
|
1515 |
msgstr "Modus"
|
1516 |
|
1517 |
+
#: dashboard/publisher/adverts-edit.php:511
|
1518 |
+
#: dashboard/publisher/adverts-generator.php:145
|
1519 |
+
msgid "Portability"
|
1520 |
+
msgstr "Advertentie hash:"
|
1521 |
+
|
1522 |
+
#: dashboard/publisher/adverts-edit.php:512
|
1523 |
+
msgid ""
|
1524 |
+
"This long code is your advert. It includes all settings from above except "
|
1525 |
+
"the schedule and group selection. You can import this hash into another "
|
1526 |
+
"setup of AdRotate or AdRotate Professional. Do not alter the hash or the "
|
1527 |
+
"advert will not work. In most browsers you can tripleclick in the field to "
|
1528 |
+
"select the whole thing. You can paste the hash into the 'Advert Hash' field "
|
1529 |
+
"in the Advert Generator of another AdRotate setup."
|
1530 |
+
msgstr ""
|
1531 |
+
"Deze lange code is de advertentie. Op het schema en de groepselectie na "
|
1532 |
+
"bevat deze alle instellingen van hierboven. Je kunt deze hash importeren in "
|
1533 |
+
"een andere installatie van AdRotate of AdRotate Professional. Wijzig de hash "
|
1534 |
+
"niet of de advertentie werkt niet. In de meeste browsers kun je "
|
1535 |
+
"tripleclicken (3x klikken) in het veld om de hele hash te selecteren. Je "
|
1536 |
+
"kunt de hash in het veld ‘Advert Hash', plakken in de advertentie generator "
|
1537 |
+
"van een andere installatie van AdRotate."
|
1538 |
+
|
1539 |
+
#: dashboard/publisher/adverts-edit.php:516
|
1540 |
+
#: dashboard/publisher/adverts-generator.php:151
|
1541 |
+
msgid "Advert hash"
|
1542 |
+
msgstr "Advertentie hash"
|
1543 |
+
|
1544 |
#: dashboard/publisher/adverts-error.php:12
|
1545 |
msgid "Adverts that need attention"
|
1546 |
msgstr "Advertenties die aandacht nodig hebben"
|
1604 |
"gebruiken. De AdRotate Generator neemt uw bits en bits en probeert er een "
|
1605 |
"werkende adcode van te genereren."
|
1606 |
|
1607 |
+
#: dashboard/publisher/adverts-generator.php:38
|
1608 |
+
msgid ""
|
1609 |
+
"If you have an advert hash from another AdRotate or AdRotate Professional "
|
1610 |
+
"setup you can enter it in the Portability field. This feature is a bit of an "
|
1611 |
+
"experiment, but the basic function works."
|
1612 |
+
msgstr ""
|
1613 |
+
"Als je een advertentie hash hebt van een andere installatie van AdRotate of "
|
1614 |
+
"AdRotate Professional hebt kun je deze invoeren in het advertentie hash "
|
1615 |
+
"veld. Deze functie is een beetje een experiment, maar de basisfunctie werkt."
|
1616 |
+
|
1617 |
#: dashboard/publisher/adverts-generator.php:39
|
1618 |
msgid ""
|
1619 |
"If you have a complete and working ad code / ad tag you do not use the "
|
1668 |
msgstr "Poorten bekijken"
|
1669 |
|
1670 |
#: dashboard/publisher/adverts-generator.php:77
|
1671 |
+
#: dashboard/publisher/groups-edit.php:219
|
1672 |
#: dashboard/settings/notifications.php:48
|
1673 |
msgid "Available in AdRotate Pro"
|
1674 |
msgstr "Beschikbaar in AdRotate Pro"
|
1792 |
"Sommige bots / crawlers gebruiken ze als een beschrijvende maatregel om te "
|
1793 |
"zien waar de code over gaat."
|
1794 |
|
1795 |
+
#: dashboard/publisher/adverts-generator.php:153
|
1796 |
+
msgid ""
|
1797 |
+
"To import a ready made advert, enter a advert hash from another AdRotate "
|
1798 |
+
"setup..."
|
1799 |
+
msgstr ""
|
1800 |
+
"Als je een kant-en-klare advertentie wilt importeren, voert dan een "
|
1801 |
+
"advertentie hash in van een andere installatie van AdRotate..."
|
1802 |
+
|
1803 |
+
#: dashboard/publisher/adverts-generator.php:161
|
1804 |
msgid "Generate and Configure Advert"
|
1805 |
msgstr "Advertentie genereren en configureren"
|
1806 |
|
1807 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1808 |
msgid "Always test your adverts before activating them."
|
1809 |
msgstr "Test je advertenties altijd voordat je ze activeert."
|
1810 |
|
1811 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1812 |
+
msgid "Caution:"
|
1813 |
+
msgstr "Waarschuwing:"
|
1814 |
|
1815 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1816 |
msgid ""
|
1817 |
"While the Code Generator has been tested and works, code generation, as "
|
1818 |
"always, is a interpretation of user input. If you provide the correct bits "
|
1825 |
"velden leeg laat staan of de verkeerde informatie invoegt, komt u "
|
1826 |
"waarschijnlijk met een kapotte advertentie terecht."
|
1827 |
|
1828 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1829 |
+
msgid "NOTE:"
|
1830 |
+
msgstr "OPMERKING:"
|
1831 |
+
|
1832 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1833 |
+
msgid "If you insert an Advert Hash, all other fields are ignored."
|
1834 |
msgstr ""
|
1835 |
+
"Als je een advertentie hash invuld, worden alle andere velden genegeerd."
|
|
|
1836 |
|
1837 |
#: dashboard/publisher/adverts-main.php:12
|
1838 |
msgid "Active Adverts"
|
1855 |
msgid "No adverts created yet!"
|
1856 |
msgstr "Nog geen advertenties gemaakt!"
|
1857 |
|
1858 |
+
#: dashboard/publisher/groups-edit.php:41
|
1859 |
+
msgid ""
|
1860 |
+
"Your block is a 1x1 grid. Either add more rows or columns or set the group "
|
1861 |
+
"to Default mode."
|
1862 |
+
msgstr ""
|
1863 |
+
"Het blok is een 1x1 raster. Voeg meer rijen of kolommen toe of stel de groep "
|
1864 |
+
"in op de standaardmodus."
|
1865 |
+
|
1866 |
+
#: dashboard/publisher/groups-edit.php:44
|
1867 |
+
msgid "You have enabled Post Injection but did not select any categories."
|
1868 |
+
msgstr ""
|
1869 |
+
"U hebt Post Injection ingeschakeld, maar hebt geen categorieën geselecteerd."
|
1870 |
+
|
1871 |
+
#: dashboard/publisher/groups-edit.php:47
|
1872 |
+
msgid "You have enabled Page Injection but did not select any pages."
|
1873 |
+
msgstr ""
|
1874 |
+
"U hebt pagina-injectie ingeschakeld, maar hebt geen pagina's geselecteerd."
|
1875 |
+
|
1876 |
+
#: dashboard/publisher/groups-edit.php:57
|
1877 |
msgid "New Group"
|
1878 |
msgstr "Nieuwe groep"
|
1879 |
|
1880 |
+
#: dashboard/publisher/groups-edit.php:59
|
1881 |
msgid "Edit Group"
|
1882 |
msgstr "Groep bewerken"
|
1883 |
|
1884 |
+
#: dashboard/publisher/groups-edit.php:77
|
1885 |
msgid "Default - Show one ad at a time"
|
1886 |
msgstr "Standaard - Eén advertentie tegelijk weergeven"
|
1887 |
|
1888 |
+
#: dashboard/publisher/groups-edit.php:78
|
1889 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1890 |
msgstr "Dynamische modus - Elke paar seconden een andere advertentie weergeven"
|
1891 |
|
1892 |
+
#: dashboard/publisher/groups-edit.php:79
|
1893 |
msgid "Block Mode - Show a block of adverts"
|
1894 |
msgstr "Blokmodus - Een blok advertenties weergeven"
|
1895 |
|
1896 |
+
#: dashboard/publisher/groups-edit.php:83
|
1897 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1898 |
msgstr ""
|
1899 |
"Dynamische modus vereist jQuery. Je kunt dit inschakelen in AdRotate-"
|
1900 |
"instellingen."
|
1901 |
|
1902 |
+
#: dashboard/publisher/groups-edit.php:87
|
1903 |
msgid "Advert size"
|
1904 |
msgstr "Advertentiegrootte"
|
1905 |
|
1906 |
+
#: dashboard/publisher/groups-edit.php:89
|
1907 |
msgid "pixel(s) wide"
|
1908 |
msgstr "pixel(s) breed"
|
1909 |
|
1910 |
+
#: dashboard/publisher/groups-edit.php:89
|
1911 |
msgid "pixel(s) high."
|
1912 |
msgstr "pixel(s) hoog."
|
1913 |
|
1914 |
+
#: dashboard/publisher/groups-edit.php:92
|
1915 |
msgid ""
|
1916 |
"Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
|
1917 |
"recommended)."
|
1919 |
"Definieer de maximale grootte van de advertenties in pixels. Grootte kan "
|
1920 |
"'auto' zijn (niet aanbevolen)."
|
1921 |
|
1922 |
+
#: dashboard/publisher/groups-edit.php:98
|
1923 |
msgid "Dynamic and Block Mode"
|
1924 |
msgstr "Dynamische en blokmodus"
|
1925 |
|
1926 |
+
#: dashboard/publisher/groups-edit.php:102
|
1927 |
msgid "Block size"
|
1928 |
msgstr "Blokgrootte"
|
1929 |
|
1930 |
+
#: dashboard/publisher/groups-edit.php:108
|
1931 |
msgid "rows"
|
1932 |
msgstr "rijen"
|
1933 |
|
1934 |
+
#: dashboard/publisher/groups-edit.php:112
|
1935 |
msgid "columns"
|
1936 |
msgstr "kolommen"
|
1937 |
|
1938 |
+
#: dashboard/publisher/groups-edit.php:115
|
1939 |
msgid "Block Mode"
|
1940 |
msgstr "Blokmodus"
|
1941 |
|
1942 |
+
#: dashboard/publisher/groups-edit.php:115
|
1943 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1944 |
msgstr ""
|
1945 |
"Grotere blokken zullen de prestaties van uw sites verslechteren! Standaard: "
|
1946 |
"2/2."
|
1947 |
|
1948 |
+
#: dashboard/publisher/groups-edit.php:119
|
1949 |
msgid "Automated refresh"
|
1950 |
msgstr "Automatisch vernieuwen"
|
1951 |
|
1952 |
+
#: dashboard/publisher/groups-edit.php:138
|
1953 |
msgid "seconds."
|
1954 |
msgstr "seconden."
|
1955 |
|
1956 |
+
#: dashboard/publisher/groups-edit.php:141
|
1957 |
+
#: dashboard/publisher/groups-edit.php:150
|
1958 |
msgid "Dynamic Mode"
|
1959 |
msgstr "Dynamische modus"
|
1960 |
|
1961 |
+
#: dashboard/publisher/groups-edit.php:141
|
1962 |
msgid ""
|
1963 |
"Load a new advert in this interval without reloading the page. Default: 6."
|
1964 |
msgstr ""
|
1965 |
"Laad een nieuwe advertentie in dit interval zonder de pagina opnieuw te "
|
1966 |
"laden. Standaard: 6."
|
1967 |
|
1968 |
+
#: dashboard/publisher/groups-edit.php:145
|
1969 |
msgid "Repeat impressions"
|
1970 |
msgstr "Herhaalde vertoningen"
|
1971 |
|
1972 |
+
#: dashboard/publisher/groups-edit.php:147
|
1973 |
msgid "Count impressions for every cycle of adverts?"
|
1974 |
msgstr "Aantal vertoningen voor elke cyclus van advertenties?"
|
1975 |
|
1976 |
+
#: dashboard/publisher/groups-edit.php:150
|
1977 |
msgid ""
|
1978 |
"Uncheck this option to only count impressions for the first cycle of adverts."
|
1979 |
msgstr ""
|
1980 |
"Schakel deze optie uit om alleen vertoningen voor de eerste cyclus van "
|
1981 |
"advertenties te tellen."
|
1982 |
|
1983 |
+
#: dashboard/publisher/groups-edit.php:155
|
1984 |
+
#: dashboard/publisher/groups-edit.php:228
|
1985 |
msgid "Get access to all features in AdRotate Pro."
|
1986 |
msgstr "Krijg toegang tot alle functies in AdRotate Pro."
|
1987 |
|
1988 |
+
#: dashboard/publisher/groups-edit.php:155
|
1989 |
msgid "Upgrade today"
|
1990 |
msgstr "Upgrade vandaag"
|
1991 |
|
1992 |
+
#: dashboard/publisher/groups-edit.php:162
|
1993 |
+
#: dashboard/publisher/groups-edit.php:316
|
1994 |
msgid ""
|
1995 |
"Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
|
1996 |
"Adverts\" and enter ID"
|
1998 |
"Sleep de AdRotate widget naar de zijbalk waarin je deze wilt hebben, "
|
1999 |
"selecteer de “Advertentie groep\" en voer een ID in"
|
2000 |
|
2001 |
+
#: dashboard/publisher/groups-edit.php:174
|
2002 |
+
#: dashboard/publisher/groups-edit.php:328
|
2003 |
+
#: dashboard/publisher/groups-edit.php:422
|
2004 |
msgid "Save Group"
|
2005 |
msgstr "Groep opslaan"
|
2006 |
|
2007 |
+
#: dashboard/publisher/groups-edit.php:182
|
2008 |
msgid "Advert Margin"
|
2009 |
msgstr "Advertentiemarge"
|
2010 |
|
2011 |
+
#: dashboard/publisher/groups-edit.php:184
|
2012 |
msgid "pixel(s)"
|
2013 |
msgstr "pixel(en)"
|
2014 |
|
2015 |
+
#: dashboard/publisher/groups-edit.php:187
|
2016 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
2017 |
msgstr "Een transparant gebied buiten de advertentie in pixels. Standaard: 0."
|
2018 |
|
2019 |
+
#: dashboard/publisher/groups-edit.php:187
|
2020 |
msgid "Set to 0 to disable."
|
2021 |
msgstr "Stel in op 0 om uit te schakelen."
|
2022 |
|
2023 |
+
#: dashboard/publisher/groups-edit.php:187
|
2024 |
msgid "Margins are automatically disabled for blocks where required."
|
2025 |
msgstr "Marges worden automatisch uitgeschakeld voor blokken waar nodig."
|
2026 |
|
2027 |
+
#: dashboard/publisher/groups-edit.php:191
|
2028 |
msgid "Align the group"
|
2029 |
msgstr "De groep uitlijnen"
|
2030 |
|
2031 |
+
#: dashboard/publisher/groups-edit.php:194
|
2032 |
msgid "None (Default)"
|
2033 |
msgstr "None"
|
2034 |
|
2035 |
+
#: dashboard/publisher/groups-edit.php:195
|
2036 |
msgid "Left"
|
2037 |
msgstr "Links"
|
2038 |
|
2039 |
+
#: dashboard/publisher/groups-edit.php:196
|
2040 |
msgid "Right"
|
2041 |
msgstr "Rechts"
|
2042 |
|
2043 |
+
#: dashboard/publisher/groups-edit.php:197
|
2044 |
msgid "Center"
|
2045 |
msgstr "Midden"
|
2046 |
|
2047 |
+
#: dashboard/publisher/groups-edit.php:201
|
2048 |
msgid ""
|
2049 |
"Align the group in your post or page. Using 'center' may affect your margin "
|
2050 |
"setting. Not every theme supports this feature."
|
2052 |
"Lijn de groep uit op je bericht of pagina. Het gebruik van 'center' kan van "
|
2053 |
"invloed zijn op uw marge-instelling. Niet elk thema ondersteunt deze functie."
|
2054 |
|
2055 |
+
#: dashboard/publisher/groups-edit.php:206
|
2056 |
msgid "Enable Geo Targeting for this group."
|
2057 |
msgstr "Geotargeting inschakelen voor deze groep."
|
2058 |
|
2059 |
+
#: dashboard/publisher/groups-edit.php:207
|
2060 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
2061 |
msgstr ""
|
2062 |
"Vergeet niet om de advertenties te vertellen voor welke gebieden ze moeten "
|
2063 |
"laten zien."
|
2064 |
|
2065 |
+
#: dashboard/publisher/groups-edit.php:210
|
2066 |
msgid "Mobile Support"
|
2067 |
msgstr "Mobiele ondersteuning"
|
2068 |
|
2069 |
+
#: dashboard/publisher/groups-edit.php:211
|
2070 |
msgid "Enable mobile support for this group."
|
2071 |
msgstr "Mobiele ondersteuning voor deze groep inschakelen."
|
2072 |
|
2073 |
+
#: dashboard/publisher/groups-edit.php:212
|
2074 |
msgid "Do not forget to put at least one mobile advert in this group."
|
2075 |
msgstr ""
|
2076 |
"Vergeet niet om tenminste één mobiele advertentie in deze groep te plaatsen."
|
2077 |
|
2078 |
+
#: dashboard/publisher/groups-edit.php:215
|
2079 |
msgid "Fallback Group"
|
2080 |
msgstr "Fallback-groep"
|
2081 |
|
2082 |
+
#: dashboard/publisher/groups-edit.php:223
|
2083 |
msgid ""
|
2084 |
"Select another group to fall back on when all adverts are expired, not in "
|
2085 |
"the visitors geographic area or are otherwise unavailable."
|
2088 |
"advertenties zijn verlopen, niet in het geografische gebied van bezoekers of "
|
2089 |
"anderszins niet beschikbaar zijn."
|
2090 |
|
2091 |
+
#: dashboard/publisher/groups-edit.php:239
|
2092 |
+
#: dashboard/publisher/groups-edit.php:276
|
2093 |
#: dashboard/settings/geotargeting.php:24
|
2094 |
msgid "Disabled"
|
2095 |
msgstr "Uitgeschakeld"
|
2096 |
|
2097 |
+
#: dashboard/publisher/groups-edit.php:240
|
2098 |
+
#: dashboard/publisher/groups-edit.php:277
|
2099 |
msgid "Widget (Pro only)"
|
2100 |
msgstr "Widget (alleen Pro)"
|
2101 |
|
2102 |
+
#: dashboard/publisher/groups-edit.php:241
|
2103 |
+
#: dashboard/publisher/groups-edit.php:278
|
2104 |
msgid "Before content"
|
2105 |
msgstr "Voor de inhoud"
|
2106 |
|
2107 |
+
#: dashboard/publisher/groups-edit.php:242
|
2108 |
+
#: dashboard/publisher/groups-edit.php:279
|
2109 |
msgid "After content"
|
2110 |
msgstr "Na inhoud (content)"
|
2111 |
|
2112 |
+
#: dashboard/publisher/groups-edit.php:243
|
2113 |
+
#: dashboard/publisher/groups-edit.php:280
|
2114 |
msgid "Before and after content"
|
2115 |
msgstr "Voor en na de inhoud"
|
2116 |
|
2117 |
+
#: dashboard/publisher/groups-edit.php:244
|
2118 |
+
#: dashboard/publisher/groups-edit.php:281
|
2119 |
msgid "Inside the content..."
|
2120 |
msgstr "Binnen de inhoud..."
|
2121 |
|
2122 |
+
#: dashboard/publisher/groups-edit.php:250
|
2123 |
+
#: dashboard/publisher/groups-edit.php:287
|
2124 |
msgid "after the middle paragraph"
|
2125 |
msgstr "na de middelste alinea"
|
2126 |
|
2127 |
+
#: dashboard/publisher/groups-edit.php:251
|
2128 |
+
#: dashboard/publisher/groups-edit.php:288
|
2129 |
msgid "after the 1st paragraph"
|
2130 |
msgstr "na de 1e alinea"
|
2131 |
|
2132 |
+
#: dashboard/publisher/groups-edit.php:252
|
2133 |
+
#: dashboard/publisher/groups-edit.php:289
|
2134 |
msgid "after the 2nd paragraph"
|
2135 |
msgstr "na de 2e alinea"
|
2136 |
|
2137 |
+
#: dashboard/publisher/groups-edit.php:253
|
2138 |
+
#: dashboard/publisher/groups-edit.php:290
|
2139 |
msgid "after the 3rd paragraph"
|
2140 |
msgstr "na de 3e alinea"
|
2141 |
|
2142 |
+
#: dashboard/publisher/groups-edit.php:254
|
2143 |
+
#: dashboard/publisher/groups-edit.php:291
|
2144 |
msgid "after the 4th paragraph"
|
2145 |
msgstr "na de 4e alinea"
|
2146 |
|
2147 |
+
#: dashboard/publisher/groups-edit.php:255
|
2148 |
+
#: dashboard/publisher/groups-edit.php:292
|
2149 |
msgid "after the 5th paragraph"
|
2150 |
msgstr "na de 5e alinea"
|
2151 |
|
2152 |
+
#: dashboard/publisher/groups-edit.php:256
|
2153 |
+
#: dashboard/publisher/groups-edit.php:293
|
2154 |
msgid "after the 6th paragraph"
|
2155 |
msgstr "na de 6e alinea"
|
2156 |
|
2157 |
+
#: dashboard/publisher/groups-edit.php:257
|
2158 |
+
#: dashboard/publisher/groups-edit.php:294
|
2159 |
msgid "after the 7th paragraph"
|
2160 |
msgstr "na de 7e alinea"
|
2161 |
|
2162 |
+
#: dashboard/publisher/groups-edit.php:258
|
2163 |
+
#: dashboard/publisher/groups-edit.php:295
|
2164 |
msgid "after the 8th paragraph"
|
2165 |
msgstr "na de 8e alinea"
|
2166 |
|
2167 |
+
#: dashboard/publisher/groups-edit.php:272
|
2168 |
msgid "Page Injection"
|
2169 |
msgstr "Pagina-injectie"
|
2170 |
|
2171 |
+
#: dashboard/publisher/groups-edit.php:332
|
2172 |
msgid "Wrapper code"
|
2173 |
msgstr "Wrapper-code"
|
2174 |
|
2175 |
+
#: dashboard/publisher/groups-edit.php:333
|
2176 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
2177 |
msgstr ""
|
2178 |
"Wraps rond elke advertentie. HTML/JavaScript toegestaan, gebruik met zorg!"
|
2179 |
|
2180 |
+
#: dashboard/publisher/groups-edit.php:337
|
2181 |
msgid "Before advert"
|
2182 |
msgstr "Voor de advertentie"
|
2183 |
|
2184 |
+
#: dashboard/publisher/groups-edit.php:340
|
2185 |
+
#: dashboard/publisher/groups-edit.php:348
|
2186 |
msgid "Example:"
|
2187 |
msgstr "Voorbeeld:"
|
2188 |
|
2189 |
+
#: dashboard/publisher/groups-edit.php:341
|
2190 |
msgid "Options:"
|
2191 |
msgstr "Opties:"
|
2192 |
|
2193 |
+
#: dashboard/publisher/groups-edit.php:345
|
2194 |
msgid "After advert"
|
2195 |
msgstr "Na advertentie"
|
2196 |
|
2197 |
+
#: dashboard/publisher/groups-edit.php:354
|
2198 |
msgid "Select adverts"
|
2199 |
msgstr "Advertenties selecteren"
|
2200 |
|
2201 |
+
#: dashboard/publisher/groups-edit.php:361
|
2202 |
msgid "Visible until"
|
2203 |
msgstr "Zichtbaar tot"
|
2204 |
|
2205 |
+
#: dashboard/publisher/groups-edit.php:409
|
2206 |
msgid "No adverts created!"
|
2207 |
msgstr "Geen advertenties gemaakt!"
|
2208 |
|
2209 |
+
#: dashboard/publisher/groups-edit.php:416
|
2210 |
msgid "Configuration errors."
|
2211 |
msgstr "Configuratiefouten."
|
2212 |
|
2213 |
+
#: dashboard/publisher/groups-edit.php:417
|
2214 |
#: dashboard/publisher/schedules-main.php:87
|
2215 |
msgid "Expires soon."
|
2216 |
msgstr "Verloopt binnenkort."
|
2217 |
|
2218 |
+
#: dashboard/publisher/groups-edit.php:418
|
2219 |
#: dashboard/publisher/schedules-main.php:88
|
2220 |
msgid "Has expired."
|
2221 |
msgstr "Is verlopen."
|
2301 |
"Zorg ervoor dat de bannerafbeeldingen niet worden gebruikt door advertenties "
|
2302 |
"wanneer u ze verwijdert!"
|
2303 |
|
2304 |
+
#: dashboard/publisher/media.php:73
|
2305 |
#: dashboard/publisher/statistics-advert.php:109
|
2306 |
#: dashboard/publisher/statistics-group.php:113
|
2307 |
#: dashboard/publisher/statistics-main.php:83
|
2320 |
"meerdere advertentiecampagnes kunt beheren. Schema's kunnen actief zijn op "
|
2321 |
"bepaalde dagen van de week of op bepaalde uren van de dag."
|
2322 |
|
2323 |
+
#: dashboard/publisher/schedules-main.php:13
|
2324 |
+
msgid "Get more scheduling options with"
|
2325 |
+
msgstr "Meer planningsopties met"
|
2326 |
+
|
2327 |
#: dashboard/publisher/schedules-main.php:36
|
2328 |
msgid "Max Shown"
|
2329 |
msgstr "Max getoond"
|
3418 |
"Dit aantal mag niet leeg zijn, lager zijn dan 60 of hoger zijn dan 86400 (24 "
|
3419 |
"uur)."
|
3420 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3421 |
#: dashboard/support.php:83
|
3422 |
msgid "Premium Support available in AdRotate Pro"
|
3423 |
msgstr "Premium-ondersteuning beschikbaar in AdRotate Pro"
|
3485 |
msgid "Premium Support is available in AdRotate Pro!"
|
3486 |
msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
3487 |
|
3488 |
+
#~ msgid "Join the Media.net advertising network"
|
3489 |
+
#~ msgstr "Word lid van het Media.net advertentienetwerk"
|
3490 |
+
|
3491 |
+
#~ msgid "Get contextual adverts from Media.net"
|
3492 |
+
#~ msgstr "Ontvang contextuele advertenties van Media.net"
|
3493 |
+
|
3494 |
+
#~ msgid ""
|
3495 |
+
#~ "Based on your input and experiences later iterations of the Code "
|
3496 |
+
#~ "Generator will be better and more feature rich."
|
3497 |
+
#~ msgstr ""
|
3498 |
+
#~ "Op basis van uw input en ervaringen later iteraties van de Code Generator "
|
3499 |
+
#~ "zal beter en meer functie rijk."
|
3500 |
+
|
3501 |
+
#~ msgid "Upgrade instructions"
|
3502 |
+
#~ msgstr "Instructies voor upgrade"
|
3503 |
+
|
3504 |
+
#~ msgid "AdRotate Banner Manager"
|
3505 |
+
#~ msgstr "AdRotate Banner Manager"
|
3506 |
+
|
3507 |
+
#~ msgid "Support AdRotate Banner Manager"
|
3508 |
+
#~ msgstr "Ondersteun AdRotate Banner Manager"
|
3509 |
+
|
3510 |
+
#~ msgid ""
|
3511 |
+
#~ "Consider writing a review or making a donation if you like the plugin or "
|
3512 |
+
#~ "if you find the plugin useful. Thanks for your support!"
|
3513 |
+
#~ msgstr ""
|
3514 |
+
#~ "Overweeg het schrijven van een recensie of het maken van een donatie als "
|
3515 |
+
#~ "je de plugin nuttig vind. Dankjewel voor je steun!"
|
3516 |
+
|
3517 |
+
#~ msgid "Plugins and services"
|
3518 |
+
#~ msgstr "Plugins en services"
|
3519 |
+
|
3520 |
+
#~ msgid "WP Maintenance"
|
3521 |
+
#~ msgstr "WP-onderhoud"
|
3522 |
+
|
3523 |
+
#~ msgid "Professional service"
|
3524 |
+
#~ msgstr "Professionele service"
|
3525 |
+
|
3526 |
+
#~ msgid ""
|
3527 |
+
#~ "Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
3528 |
+
#~ "spam and clean up files."
|
3529 |
+
#~ msgstr ""
|
3530 |
+
#~ "Ontvang de nieuwste updates voor WordPress en plug-ins. Onderhoud, spam "
|
3531 |
+
#~ "verwijderen en bestanden opruimen."
|
3532 |
+
|
3533 |
+
#~ msgid "HTML5 Advert setup"
|
3534 |
+
#~ msgstr "HTML5-advertentie-instelling"
|
3535 |
+
|
3536 |
+
#~ msgid ""
|
3537 |
+
#~ "Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
3538 |
+
#~ "install and configure it for you."
|
3539 |
+
#~ msgstr ""
|
3540 |
+
#~ "Heb je een HTML5-advertentie en krijg je het niet aan het werk in "
|
3541 |
+
#~ "AdRotate Pro? Ik zal installeren en configureren voor je."
|
3542 |
+
|
3543 |
+
#~ msgid "Single Page Checkout"
|
3544 |
+
#~ msgstr "Enkele pagina KASSA"
|
3545 |
+
|
3546 |
+
#~ msgid "WooCommerce Plugin"
|
3547 |
+
#~ msgstr "WooCommerce plugin"
|
3548 |
+
|
3549 |
+
#~ msgid ""
|
3550 |
+
#~ "Merge your cart and checkout pages into one single page in seconds with "
|
3551 |
+
#~ "no setup required at all."
|
3552 |
+
#~ msgstr ""
|
3553 |
+
#~ "Voeg uw winkelwagen- en betaalpagina's in enkele seconden samen in één "
|
3554 |
+
#~ "pagina zonder dat u hoeft te worden ingesteld."
|
3555 |
+
|
3556 |
+
#~ msgid "News & Updates"
|
3557 |
+
#~ msgstr "Nieuws & updates"
|
3558 |
+
|
3559 |
+
#~ msgid "Support Forums"
|
3560 |
+
#~ msgstr "Supportfora"
|
3561 |
+
|
3562 |
+
#~ msgid ""
|
3563 |
+
#~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3564 |
+
#~ "Chances are your question has already been asked and answered!"
|
3565 |
+
#~ msgstr ""
|
3566 |
+
#~ "Wanneer u vastzit aan AdRotate Banner Manager of AdRotate Professional, "
|
3567 |
+
#~ "controleert u eerst de forums. De kans is groot dat uw vraag al is "
|
3568 |
+
#~ "gesteld en beantwoord!"
|
3569 |
+
|
3570 |
+
#~ msgid ""
|
3571 |
+
#~ "Next to the forum there are many manuals and guides available for almost "
|
3572 |
+
#~ "every function and feature in the plugin."
|
3573 |
+
#~ msgstr ""
|
3574 |
+
#~ "Naast het forum zijn er veel handleidingen en gidsen beschikbaar voor "
|
3575 |
+
#~ "bijna elke functie en functie in de plugin."
|
3576 |
+
|
3577 |
+
#~ msgid "Take a look at the AdRotate Manuals"
|
3578 |
+
#~ msgstr "Bekijk de handleidingen voor AdRotate"
|
3579 |
+
|
3580 |
+
#~ msgid "View topics"
|
3581 |
+
#~ msgstr "Bekijk onderwerpen"
|
3582 |
+
|
3583 |
#~ msgid ""
|
3584 |
#~ "AdRotate does not check the validity of names and assumes the basic "
|
3585 |
#~ "english name"
|
4570 |
#~ "Gearchiveerde advertenties hebben hun statistieken verplaatst naar een "
|
4571 |
#~ "aparte database tabel die de algehele snelheid van uw site kan verhogen."
|
4572 |
|
|
|
|
|
|
|
4573 |
#~ msgid ""
|
4574 |
#~ "Archiving multiple adverts at the same time may slow down your site, in "
|
4575 |
#~ "some cases a lot of data has to be moved. Not every hosting provider "
|
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: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
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"
|
@@ -294,18 +294,16 @@ msgstr "Ustaw folder banerów"
|
|
294 |
#| "nessesary. Please check out the upgrade manual for instructions on how to "
|
295 |
#| "fix this."
|
296 |
msgid ""
|
297 |
-
"You have
|
298 |
-
"
|
299 |
msgstr ""
|
300 |
"Nadal masz zainstalowaną darmową wersję AdRotate. To nie jest nessesary. "
|
301 |
"Zapoznaj się z instrukcją uaktualnienia, aby uzyskać instrukcje, jak to "
|
302 |
"naprawić."
|
303 |
|
304 |
#: adrotate-output.php:652
|
305 |
-
|
306 |
-
|
307 |
-
msgid "Upgrade instructions"
|
308 |
-
msgstr "Instrukcje usuwania"
|
309 |
|
310 |
#: adrotate-output.php:655
|
311 |
msgid ""
|
@@ -362,7 +360,7 @@ msgstr "forum"
|
|
362 |
msgid "Help AdRotate Grow"
|
363 |
msgstr "Aktualizuj AdRotate Pro"
|
364 |
|
365 |
-
#: adrotate-output.php:835 adrotate.php:
|
366 |
msgid "AdRotate Professional"
|
367 |
msgstr "AdRotate Professional"
|
368 |
|
@@ -533,86 +531,86 @@ msgstr "ID"
|
|
533 |
msgid "Fill in the ID of the type you want to display!"
|
534 |
msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
msgid "General Info"
|
538 |
msgstr "Informacje ogólne"
|
539 |
|
540 |
-
#: adrotate.php:
|
541 |
#, fuzzy
|
542 |
#| msgid "AdRotate Info"
|
543 |
msgid "AdRotate Pro"
|
544 |
msgstr "Informacja AdRotate"
|
545 |
|
546 |
-
#: adrotate.php:
|
547 |
msgid "Manage Adverts"
|
548 |
msgstr "Zarządzaj reklamami"
|
549 |
|
550 |
-
#: adrotate.php:
|
551 |
msgid "Manage Groups"
|
552 |
msgstr "Zarządzaj grupami"
|
553 |
|
554 |
-
#: adrotate.php:
|
555 |
msgid "Manage Schedules"
|
556 |
msgstr "Zarządzaj harmonogramami"
|
557 |
|
558 |
-
#: adrotate.php:
|
559 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
560 |
#: dashboard/publisher/statistics-main.php:23
|
561 |
#: dashboard/settings/statistics.php:17
|
562 |
msgid "Statistics"
|
563 |
msgstr "Statystyka"
|
564 |
|
565 |
-
#: adrotate.php:
|
566 |
msgid "Manage Media"
|
567 |
msgstr "Zarządzaj mediami"
|
568 |
|
569 |
-
#: adrotate.php:
|
570 |
#, fuzzy
|
571 |
#| msgid "Supports:"
|
572 |
msgid "Support"
|
573 |
msgstr "Wspiera:"
|
574 |
|
575 |
-
#: adrotate.php:
|
576 |
msgid "Settings"
|
577 |
msgstr "Ustawienia"
|
578 |
|
579 |
-
#: adrotate.php:
|
580 |
msgid "AdRotate Info"
|
581 |
msgstr "Informacja AdRotate"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
#, fuzzy
|
585 |
#| msgid "Advert Margin"
|
586 |
msgid "Advert Management"
|
587 |
msgstr "Margines reklamy"
|
588 |
|
589 |
-
#: adrotate.php:
|
590 |
msgid "Manage"
|
591 |
msgstr "Zarządzaj"
|
592 |
|
593 |
-
#: adrotate.php:
|
594 |
msgid "Generator"
|
595 |
msgstr "Generator"
|
596 |
|
597 |
-
#: adrotate.php:
|
598 |
msgid "Add New"
|
599 |
msgstr "Dodaj nową"
|
600 |
|
601 |
-
#: adrotate.php:
|
602 |
#, fuzzy
|
603 |
#| msgid "Group deleted"
|
604 |
msgid "Group Management"
|
605 |
msgstr "Grupa usunięta"
|
606 |
|
607 |
-
#: adrotate.php:
|
608 |
msgid "Schedules"
|
609 |
msgstr "Harmonogramy"
|
610 |
|
611 |
-
#: adrotate.php:
|
612 |
msgid "Media and Assets"
|
613 |
msgstr "Media i reklamy"
|
614 |
|
615 |
-
#: adrotate.php:
|
616 |
#, fuzzy
|
617 |
#| msgid ""
|
618 |
#| "Upload images and assets to the AdRotate Professional banners folder from "
|
@@ -624,49 +622,49 @@ msgstr ""
|
|
624 |
"Prześlij obrazy i zasoby do folderu banerów AdRotate Professional. Jest to "
|
625 |
"przydatne, jeśli masz reklamy HTML5 zawierające wiele plików."
|
626 |
|
627 |
-
#: adrotate.php:
|
628 |
msgid "Get more features"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: adrotate.php:
|
632 |
#, fuzzy
|
633 |
#| msgid "Update AdRotate Pro"
|
634 |
msgid "Get AdRotate Pro"
|
635 |
msgstr "Aktualizuj AdRotate Pro"
|
636 |
|
637 |
-
#: adrotate.php:
|
638 |
#, fuzzy
|
639 |
#| msgid "AdRotate version"
|
640 |
msgid "AdRotate Settings"
|
641 |
msgstr "Wersja AdRotate"
|
642 |
|
643 |
-
#: adrotate.php:
|
644 |
msgid "General"
|
645 |
msgstr "Ogólne"
|
646 |
|
647 |
-
#: adrotate.php:
|
648 |
msgid "Notifications"
|
649 |
msgstr "Powiadomienia"
|
650 |
|
651 |
-
#: adrotate.php:
|
652 |
#: dashboard/publisher/groups-edit.php:193
|
653 |
#: dashboard/settings/advertisers.php:38
|
654 |
msgid "Geo Targeting"
|
655 |
msgstr "Geolokalizacja"
|
656 |
|
657 |
-
#: adrotate.php:
|
658 |
msgid "Advertisers"
|
659 |
msgstr "Reklamodawcy"
|
660 |
|
661 |
-
#: adrotate.php:
|
662 |
msgid "Access Roles"
|
663 |
msgstr "Rola programu Access"
|
664 |
|
665 |
-
#: adrotate.php:
|
666 |
msgid "Miscellaneous"
|
667 |
msgstr "Różne"
|
668 |
|
669 |
-
#: adrotate.php:
|
670 |
msgid "Maintenance"
|
671 |
msgstr "Obsługa"
|
672 |
|
@@ -811,79 +809,6 @@ msgstr "Grupy"
|
|
811 |
msgid "Have errors"
|
812 |
msgstr "Z błędami"
|
813 |
|
814 |
-
#: dashboard/info.php:47
|
815 |
-
#, fuzzy
|
816 |
-
#| msgid "AdRotate Tracker"
|
817 |
-
msgid "AdRotate Banner Manager"
|
818 |
-
msgstr "Śledzenie AdRotate"
|
819 |
-
|
820 |
-
#: dashboard/info.php:49
|
821 |
-
#, fuzzy
|
822 |
-
#| msgid "Support AdRotate Professional"
|
823 |
-
msgid "Support AdRotate Banner Manager"
|
824 |
-
msgstr "Wsparcie AdRotate Professional"
|
825 |
-
|
826 |
-
#: dashboard/info.php:50
|
827 |
-
msgid ""
|
828 |
-
"Consider writing a review or making a donation if you like the plugin or if "
|
829 |
-
"you find the plugin useful. Thanks for your support!"
|
830 |
-
msgstr ""
|
831 |
-
"Rozważ napisanie recenzji lub wpłatę, jeśli podoba Ci się wtyczka lub jeśli "
|
832 |
-
"uważasz, że wtyczka jest przydatna. Dziękujemy za wsparcie!"
|
833 |
-
|
834 |
-
#: dashboard/info.php:53 dashboard/support.php:39
|
835 |
-
msgid "Plugins and services"
|
836 |
-
msgstr "Wtyczki i usługi"
|
837 |
-
|
838 |
-
#: dashboard/info.php:59 dashboard/support.php:47
|
839 |
-
msgid "WP Maintenance"
|
840 |
-
msgstr "Konserwacja WP"
|
841 |
-
|
842 |
-
#: dashboard/info.php:60 dashboard/info.php:70 dashboard/support.php:48
|
843 |
-
#: dashboard/support.php:58
|
844 |
-
msgid "Professional service"
|
845 |
-
msgstr "Usługi"
|
846 |
-
|
847 |
-
#: dashboard/info.php:63 dashboard/support.php:51
|
848 |
-
msgid ""
|
849 |
-
"Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
850 |
-
"spam and clean up files."
|
851 |
-
msgstr ""
|
852 |
-
"Pobierz wszystkie najnowsze aktualizacje dla WordPress i wtyczek. "
|
853 |
-
"Konserwacja, usuwanie spamu i czyszczenie plików."
|
854 |
-
|
855 |
-
#: dashboard/info.php:69 dashboard/support.php:57
|
856 |
-
msgid "HTML5 Advert setup"
|
857 |
-
msgstr "Konfiguracja reklamy HTML5"
|
858 |
-
|
859 |
-
#: dashboard/info.php:73 dashboard/support.php:61
|
860 |
-
msgid ""
|
861 |
-
"Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
862 |
-
"install and configure it for you."
|
863 |
-
msgstr ""
|
864 |
-
"Czy masz reklamę HTML5 i nie możesz go dostać do pracy w AdRotate Pro? "
|
865 |
-
"Zainstaluję i skonfiguruję go dla Ciebie."
|
866 |
-
|
867 |
-
#: dashboard/info.php:79 dashboard/support.php:67
|
868 |
-
msgid "Single Page Checkout"
|
869 |
-
msgstr "Kasa na jedną stronę"
|
870 |
-
|
871 |
-
#: dashboard/info.php:80 dashboard/support.php:68
|
872 |
-
msgid "WooCommerce Plugin"
|
873 |
-
msgstr "Wtyczka WooCommerce"
|
874 |
-
|
875 |
-
#: dashboard/info.php:83 dashboard/support.php:71
|
876 |
-
msgid ""
|
877 |
-
"Merge your cart and checkout pages into one single page in seconds with no "
|
878 |
-
"setup required at all."
|
879 |
-
msgstr ""
|
880 |
-
"Scal koszyk i strony kasy w jedną stronę w ciągu kilku sekund bez potrzeby "
|
881 |
-
"konfiguracji."
|
882 |
-
|
883 |
-
#: dashboard/info.php:95
|
884 |
-
msgid "News & Updates"
|
885 |
-
msgstr "Aktualności i aktualizacje"
|
886 |
-
|
887 |
#: dashboard/info.php:108
|
888 |
#, fuzzy
|
889 |
#| msgid "AdRotate Professional"
|
@@ -3565,40 +3490,6 @@ msgstr ""
|
|
3565 |
"Ta liczba nie może być pusta, mniejsza od 60 lub większa od 86400 (24 "
|
3566 |
"godziny)."
|
3567 |
|
3568 |
-
#: dashboard/support.php:25
|
3569 |
-
msgid "Support Forums"
|
3570 |
-
msgstr "Forum wsparcia"
|
3571 |
-
|
3572 |
-
#: dashboard/support.php:27
|
3573 |
-
#, fuzzy
|
3574 |
-
#| msgid ""
|
3575 |
-
#| "When you are stuck with AdRotate Banner Manager or AdRotate Professional, "
|
3576 |
-
#| "check the forums first. Chances are your question has already been asked "
|
3577 |
-
#| "and answered!"
|
3578 |
-
msgid ""
|
3579 |
-
"When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3580 |
-
"Chances are your question has already been asked and answered!"
|
3581 |
-
msgstr ""
|
3582 |
-
"Gdy utkniesz z AdRotate Banner Manager lub AdRotate Professional, najpierw "
|
3583 |
-
"sprawdź fora. Są szanse, że twoje pytanie zostało już zadane i odpowiedział!"
|
3584 |
-
|
3585 |
-
#: dashboard/support.php:27
|
3586 |
-
msgid ""
|
3587 |
-
"Next to the forum there are many manuals and guides available for almost "
|
3588 |
-
"every function and feature in the plugin."
|
3589 |
-
msgstr ""
|
3590 |
-
"Oprócz forum dostępne są podręczniki i poradniki dla większości funkcji "
|
3591 |
-
"wtyczki."
|
3592 |
-
|
3593 |
-
#: dashboard/support.php:27
|
3594 |
-
msgid "Take a look at the AdRotate Manuals"
|
3595 |
-
msgstr "Zajrzyj do podręczników AdRotate"
|
3596 |
-
|
3597 |
-
#: dashboard/support.php:29 dashboard/support.php:30 dashboard/support.php:31
|
3598 |
-
#: dashboard/support.php:32 dashboard/support.php:33 dashboard/support.php:34
|
3599 |
-
msgid "View topics"
|
3600 |
-
msgstr "Zobacz tematy"
|
3601 |
-
|
3602 |
#: dashboard/support.php:83
|
3603 |
msgid "Premium Support available in AdRotate Pro"
|
3604 |
msgstr ""
|
@@ -3665,6 +3556,99 @@ msgstr "Uzyskaj pomoc"
|
|
3665 |
msgid "Premium Support is available in AdRotate Pro!"
|
3666 |
msgstr ""
|
3667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3668 |
#, fuzzy
|
3669 |
#~| msgid ""
|
3670 |
#~| "AdRotate does not check the validity of names so make sure you spell "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-05-02 17:09-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-05-02 17:09-0500\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"
|
294 |
#| "nessesary. Please check out the upgrade manual for instructions on how to "
|
295 |
#| "fix this."
|
296 |
msgid ""
|
297 |
+
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
298 |
+
"can delete this plugin after AdRotate Pro is activated."
|
299 |
msgstr ""
|
300 |
"Nadal masz zainstalowaną darmową wersję AdRotate. To nie jest nessesary. "
|
301 |
"Zapoznaj się z instrukcją uaktualnienia, aby uzyskać instrukcje, jak to "
|
302 |
"naprawić."
|
303 |
|
304 |
#: adrotate-output.php:652
|
305 |
+
msgid "Switch plugins"
|
306 |
+
msgstr ""
|
|
|
|
|
307 |
|
308 |
#: adrotate-output.php:655
|
309 |
msgid ""
|
360 |
msgid "Help AdRotate Grow"
|
361 |
msgstr "Aktualizuj AdRotate Pro"
|
362 |
|
363 |
+
#: adrotate-output.php:835 adrotate.php:150
|
364 |
msgid "AdRotate Professional"
|
365 |
msgstr "AdRotate Professional"
|
366 |
|
531 |
msgid "Fill in the ID of the type you want to display!"
|
532 |
msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
|
533 |
|
534 |
+
#: adrotate.php:103
|
535 |
msgid "General Info"
|
536 |
msgstr "Informacje ogólne"
|
537 |
|
538 |
+
#: adrotate.php:104
|
539 |
#, fuzzy
|
540 |
#| msgid "AdRotate Info"
|
541 |
msgid "AdRotate Pro"
|
542 |
msgstr "Informacja AdRotate"
|
543 |
|
544 |
+
#: adrotate.php:105
|
545 |
msgid "Manage Adverts"
|
546 |
msgstr "Zarządzaj reklamami"
|
547 |
|
548 |
+
#: adrotate.php:106 dashboard/publisher/groups-main.php:12
|
549 |
msgid "Manage Groups"
|
550 |
msgstr "Zarządzaj grupami"
|
551 |
|
552 |
+
#: adrotate.php:107 dashboard/publisher/schedules-main.php:12
|
553 |
msgid "Manage Schedules"
|
554 |
msgstr "Zarządzaj harmonogramami"
|
555 |
|
556 |
+
#: adrotate.php:108 adrotate.php:388 adrotate.php:505
|
557 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
558 |
#: dashboard/publisher/statistics-main.php:23
|
559 |
#: dashboard/settings/statistics.php:17
|
560 |
msgid "Statistics"
|
561 |
msgstr "Statystyka"
|
562 |
|
563 |
+
#: adrotate.php:109
|
564 |
msgid "Manage Media"
|
565 |
msgstr "Zarządzaj mediami"
|
566 |
|
567 |
+
#: adrotate.php:110 adrotate.php:469
|
568 |
#, fuzzy
|
569 |
#| msgid "Supports:"
|
570 |
msgid "Support"
|
571 |
msgstr "Wspiera:"
|
572 |
|
573 |
+
#: adrotate.php:111
|
574 |
msgid "Settings"
|
575 |
msgstr "Ustawienia"
|
576 |
|
577 |
+
#: adrotate.php:132
|
578 |
msgid "AdRotate Info"
|
579 |
msgstr "Informacja AdRotate"
|
580 |
|
581 |
+
#: adrotate.php:190
|
582 |
#, fuzzy
|
583 |
#| msgid "Advert Margin"
|
584 |
msgid "Advert Management"
|
585 |
msgstr "Margines reklamy"
|
586 |
|
587 |
+
#: adrotate.php:250 adrotate.php:318
|
588 |
msgid "Manage"
|
589 |
msgstr "Zarządzaj"
|
590 |
|
591 |
+
#: adrotate.php:251
|
592 |
msgid "Generator"
|
593 |
msgstr "Generator"
|
594 |
|
595 |
+
#: adrotate.php:252 adrotate.php:319
|
596 |
msgid "Add New"
|
597 |
msgstr "Dodaj nową"
|
598 |
|
599 |
+
#: adrotate.php:312
|
600 |
#, fuzzy
|
601 |
#| msgid "Group deleted"
|
602 |
msgid "Group Management"
|
603 |
msgstr "Grupa usunięta"
|
604 |
|
605 |
+
#: adrotate.php:349
|
606 |
msgid "Schedules"
|
607 |
msgstr "Harmonogramy"
|
608 |
|
609 |
+
#: adrotate.php:430
|
610 |
msgid "Media and Assets"
|
611 |
msgstr "Media i reklamy"
|
612 |
|
613 |
+
#: adrotate.php:434
|
614 |
#, fuzzy
|
615 |
#| msgid ""
|
616 |
#| "Upload images and assets to the AdRotate Professional banners folder from "
|
622 |
"Prześlij obrazy i zasoby do folderu banerów AdRotate Professional. Jest to "
|
623 |
"przydatne, jeśli masz reklamy HTML5 zawierające wiele plików."
|
624 |
|
625 |
+
#: adrotate.php:434 dashboard/publisher/schedules-main.php:13
|
626 |
msgid "Get more features"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: adrotate.php:434 dashboard/publisher/schedules-main.php:13
|
630 |
#, fuzzy
|
631 |
#| msgid "Update AdRotate Pro"
|
632 |
msgid "Get AdRotate Pro"
|
633 |
msgstr "Aktualizuj AdRotate Pro"
|
634 |
|
635 |
+
#: adrotate.php:498
|
636 |
#, fuzzy
|
637 |
#| msgid "AdRotate version"
|
638 |
msgid "AdRotate Settings"
|
639 |
msgstr "Wersja AdRotate"
|
640 |
|
641 |
+
#: adrotate.php:503 dashboard/publisher/statistics-main.php:28
|
642 |
msgid "General"
|
643 |
msgstr "Ogólne"
|
644 |
|
645 |
+
#: adrotate.php:504 dashboard/settings/notifications.php:18
|
646 |
msgid "Notifications"
|
647 |
msgstr "Powiadomienia"
|
648 |
|
649 |
+
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:358
|
650 |
#: dashboard/publisher/groups-edit.php:193
|
651 |
#: dashboard/settings/advertisers.php:38
|
652 |
msgid "Geo Targeting"
|
653 |
msgstr "Geolokalizacja"
|
654 |
|
655 |
+
#: adrotate.php:507 dashboard/settings/notifications.php:70
|
656 |
msgid "Advertisers"
|
657 |
msgstr "Reklamodawcy"
|
658 |
|
659 |
+
#: adrotate.php:508 dashboard/settings/roles.php:17
|
660 |
msgid "Access Roles"
|
661 |
msgstr "Rola programu Access"
|
662 |
|
663 |
+
#: adrotate.php:509 dashboard/settings/misc.php:16
|
664 |
msgid "Miscellaneous"
|
665 |
msgstr "Różne"
|
666 |
|
667 |
+
#: adrotate.php:510 dashboard/settings/maintenance.php:16
|
668 |
msgid "Maintenance"
|
669 |
msgstr "Obsługa"
|
670 |
|
809 |
msgid "Have errors"
|
810 |
msgstr "Z błędami"
|
811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
#: dashboard/info.php:108
|
813 |
#, fuzzy
|
814 |
#| msgid "AdRotate Professional"
|
3490 |
"Ta liczba nie może być pusta, mniejsza od 60 lub większa od 86400 (24 "
|
3491 |
"godziny)."
|
3492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3493 |
#: dashboard/support.php:83
|
3494 |
msgid "Premium Support available in AdRotate Pro"
|
3495 |
msgstr ""
|
3556 |
msgid "Premium Support is available in AdRotate Pro!"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#, fuzzy
|
3560 |
+
#~| msgid "Removal instructions"
|
3561 |
+
#~ msgid "Upgrade instructions"
|
3562 |
+
#~ msgstr "Instrukcje usuwania"
|
3563 |
+
|
3564 |
+
#, fuzzy
|
3565 |
+
#~| msgid "AdRotate Tracker"
|
3566 |
+
#~ msgid "AdRotate Banner Manager"
|
3567 |
+
#~ msgstr "Śledzenie AdRotate"
|
3568 |
+
|
3569 |
+
#, fuzzy
|
3570 |
+
#~| msgid "Support AdRotate Professional"
|
3571 |
+
#~ msgid "Support AdRotate Banner Manager"
|
3572 |
+
#~ msgstr "Wsparcie AdRotate Professional"
|
3573 |
+
|
3574 |
+
#~ msgid ""
|
3575 |
+
#~ "Consider writing a review or making a donation if you like the plugin or "
|
3576 |
+
#~ "if you find the plugin useful. Thanks for your support!"
|
3577 |
+
#~ msgstr ""
|
3578 |
+
#~ "Rozważ napisanie recenzji lub wpłatę, jeśli podoba Ci się wtyczka lub "
|
3579 |
+
#~ "jeśli uważasz, że wtyczka jest przydatna. Dziękujemy za wsparcie!"
|
3580 |
+
|
3581 |
+
#~ msgid "Plugins and services"
|
3582 |
+
#~ msgstr "Wtyczki i usługi"
|
3583 |
+
|
3584 |
+
#~ msgid "WP Maintenance"
|
3585 |
+
#~ msgstr "Konserwacja WP"
|
3586 |
+
|
3587 |
+
#~ msgid "Professional service"
|
3588 |
+
#~ msgstr "Usługi"
|
3589 |
+
|
3590 |
+
#~ msgid ""
|
3591 |
+
#~ "Get all the latest updates for WordPress and plugins. Maintenance, delete "
|
3592 |
+
#~ "spam and clean up files."
|
3593 |
+
#~ msgstr ""
|
3594 |
+
#~ "Pobierz wszystkie najnowsze aktualizacje dla WordPress i wtyczek. "
|
3595 |
+
#~ "Konserwacja, usuwanie spamu i czyszczenie plików."
|
3596 |
+
|
3597 |
+
#~ msgid "HTML5 Advert setup"
|
3598 |
+
#~ msgstr "Konfiguracja reklamy HTML5"
|
3599 |
+
|
3600 |
+
#~ msgid ""
|
3601 |
+
#~ "Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll "
|
3602 |
+
#~ "install and configure it for you."
|
3603 |
+
#~ msgstr ""
|
3604 |
+
#~ "Czy masz reklamę HTML5 i nie możesz go dostać do pracy w AdRotate Pro? "
|
3605 |
+
#~ "Zainstaluję i skonfiguruję go dla Ciebie."
|
3606 |
+
|
3607 |
+
#~ msgid "Single Page Checkout"
|
3608 |
+
#~ msgstr "Kasa na jedną stronę"
|
3609 |
+
|
3610 |
+
#~ msgid "WooCommerce Plugin"
|
3611 |
+
#~ msgstr "Wtyczka WooCommerce"
|
3612 |
+
|
3613 |
+
#~ msgid ""
|
3614 |
+
#~ "Merge your cart and checkout pages into one single page in seconds with "
|
3615 |
+
#~ "no setup required at all."
|
3616 |
+
#~ msgstr ""
|
3617 |
+
#~ "Scal koszyk i strony kasy w jedną stronę w ciągu kilku sekund bez "
|
3618 |
+
#~ "potrzeby konfiguracji."
|
3619 |
+
|
3620 |
+
#~ msgid "News & Updates"
|
3621 |
+
#~ msgstr "Aktualności i aktualizacje"
|
3622 |
+
|
3623 |
+
#~ msgid "Support Forums"
|
3624 |
+
#~ msgstr "Forum wsparcia"
|
3625 |
+
|
3626 |
+
#, fuzzy
|
3627 |
+
#~| msgid ""
|
3628 |
+
#~| "When you are stuck with AdRotate Banner Manager or AdRotate "
|
3629 |
+
#~| "Professional, check the forums first. Chances are your question has "
|
3630 |
+
#~| "already been asked and answered!"
|
3631 |
+
#~ msgid ""
|
3632 |
+
#~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
|
3633 |
+
#~ "Chances are your question has already been asked and answered!"
|
3634 |
+
#~ msgstr ""
|
3635 |
+
#~ "Gdy utkniesz z AdRotate Banner Manager lub AdRotate Professional, "
|
3636 |
+
#~ "najpierw sprawdź fora. Są szanse, że twoje pytanie zostało już zadane i "
|
3637 |
+
#~ "odpowiedział!"
|
3638 |
+
|
3639 |
+
#~ msgid ""
|
3640 |
+
#~ "Next to the forum there are many manuals and guides available for almost "
|
3641 |
+
#~ "every function and feature in the plugin."
|
3642 |
+
#~ msgstr ""
|
3643 |
+
#~ "Oprócz forum dostępne są podręczniki i poradniki dla większości funkcji "
|
3644 |
+
#~ "wtyczki."
|
3645 |
+
|
3646 |
+
#~ msgid "Take a look at the AdRotate Manuals"
|
3647 |
+
#~ msgstr "Zajrzyj do podręczników AdRotate"
|
3648 |
+
|
3649 |
+
#~ msgid "View topics"
|
3650 |
+
#~ msgstr "Zobacz tematy"
|
3651 |
+
|
3652 |
#, fuzzy
|
3653 |
#~| msgid ""
|
3654 |
#~| "AdRotate does not check the validity of names so make sure you spell "
|
language/adrotate.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
-
"POT-Creation-Date: 2020-
|
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"
|
@@ -58,7 +58,7 @@ msgid "Export created"
|
|
58 |
msgstr ""
|
59 |
|
60 |
#: adrotate-functions.php:732
|
61 |
-
msgid "Advert HTML generated and placed in the AdCode field. Configure your advert below."
|
62 |
msgstr ""
|
63 |
|
64 |
#: adrotate-functions.php:737
|
@@ -106,10 +106,18 @@ msgid "No ads found."
|
|
106 |
msgstr ""
|
107 |
|
108 |
#: adrotate-functions.php:782
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "Unexpected error"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: adrotate-manage-publisher.php:
|
113 |
msgid "AdRotate Advertiser"
|
114 |
msgstr ""
|
115 |
|
@@ -215,11 +223,11 @@ msgid "Set up your banner folder"
|
|
215 |
msgstr ""
|
216 |
|
217 |
#: adrotate-output.php:652
|
218 |
-
msgid "You have
|
219 |
msgstr ""
|
220 |
|
221 |
#: adrotate-output.php:652
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
#: adrotate-output.php:655
|
@@ -254,7 +262,7 @@ msgstr ""
|
|
254 |
msgid "Help AdRotate Grow"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:835 adrotate.php:
|
258 |
msgid "AdRotate Professional"
|
259 |
msgstr ""
|
260 |
|
@@ -400,86 +408,86 @@ msgstr ""
|
|
400 |
msgid "Fill in the ID of the type you want to display!"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: adrotate.php:
|
404 |
msgid "General Info"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: adrotate.php:
|
408 |
msgid "AdRotate Pro"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: adrotate.php:
|
412 |
msgid "Manage Adverts"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: adrotate.php:
|
416 |
msgid "Manage Groups"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: adrotate.php:
|
420 |
msgid "Manage Schedules"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: adrotate.php:
|
424 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
425 |
#: dashboard/publisher/statistics-main.php:23
|
426 |
#: dashboard/settings/statistics.php:17
|
427 |
msgid "Statistics"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: adrotate.php:
|
431 |
msgid "Manage Media"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: adrotate.php:
|
435 |
msgid "Support"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: adrotate.php:
|
439 |
msgid "Settings"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: adrotate.php:
|
443 |
msgid "AdRotate Info"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: adrotate.php:
|
447 |
msgid "Advert Management"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: adrotate.php:
|
451 |
msgid "Manage"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: adrotate.php:
|
455 |
msgid "Generator"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: adrotate.php:
|
459 |
msgid "Add New"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: adrotate.php:
|
463 |
msgid "Group Management"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: adrotate.php:
|
467 |
msgid "Schedules"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: adrotate.php:
|
471 |
msgid "Media and Assets"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: adrotate.php:
|
475 |
msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: adrotate.php:
|
479 |
msgid "Get more features"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
msgid "Get AdRotate Pro"
|
484 |
msgstr ""
|
485 |
|
@@ -495,8 +503,8 @@ msgstr ""
|
|
495 |
msgid "Notifications"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:
|
499 |
-
#: dashboard/publisher/groups-edit.php:
|
500 |
#: dashboard/settings/advertisers.php:38
|
501 |
msgid "Geo Targeting"
|
502 |
msgstr ""
|
@@ -589,7 +597,7 @@ msgstr ""
|
|
589 |
msgid "Adverts that need you"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:
|
593 |
#: dashboard/publisher/groups-main.php:34
|
594 |
#: dashboard/publisher/schedules-main.php:34
|
595 |
#: dashboard/publisher/statistics-main.php:35
|
@@ -608,114 +616,65 @@ msgstr ""
|
|
608 |
msgid "Have errors"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: dashboard/info.php:
|
612 |
-
msgid "AdRotate Banner Manager"
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: dashboard/info.php:49
|
616 |
-
msgid "Support AdRotate Banner Manager"
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: dashboard/info.php:50
|
620 |
-
msgid "Consider writing a review or making a donation if you like the plugin or if you find the plugin useful. Thanks for your support!"
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: dashboard/info.php:53 dashboard/support.php:39
|
624 |
-
msgid "Plugins and services"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: dashboard/info.php:59 dashboard/support.php:47
|
628 |
-
msgid "WP Maintenance"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: dashboard/info.php:60 dashboard/info.php:70 dashboard/support.php:48
|
632 |
-
#: dashboard/support.php:58
|
633 |
-
msgid "Professional service"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: dashboard/info.php:63 dashboard/support.php:51
|
637 |
-
msgid "Get all the latest updates for WordPress and plugins. Maintenance, delete spam and clean up files."
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: dashboard/info.php:69 dashboard/support.php:57
|
641 |
-
msgid "HTML5 Advert setup"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: dashboard/info.php:73 dashboard/support.php:61
|
645 |
-
msgid "Did you get a HTML5 advert and can’t get it to work in AdRotate Pro? I’ll install and configure it for you."
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: dashboard/info.php:79 dashboard/support.php:67
|
649 |
-
msgid "Single Page Checkout"
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: dashboard/info.php:80 dashboard/support.php:68
|
653 |
-
msgid "WooCommerce Plugin"
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: dashboard/info.php:83 dashboard/support.php:71
|
657 |
-
msgid "Merge your cart and checkout pages into one single page in seconds with no setup required at all."
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: dashboard/info.php:95
|
661 |
-
msgid "News & Updates"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: dashboard/info.php:108
|
665 |
msgid "Buy AdRotate Professional"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: dashboard/info.php:
|
669 |
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!"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: dashboard/info.php:
|
673 |
msgid "Single License"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: dashboard/info.php:
|
677 |
msgid "Use on ONE WordPress installation."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: dashboard/info.php:
|
681 |
-
#: dashboard/info.php:
|
682 |
msgid "Buy now"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: dashboard/info.php:
|
686 |
msgid "Duo License"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: dashboard/info.php:
|
690 |
msgid "Use on TWO WordPress installations."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: dashboard/info.php:
|
694 |
msgid "Multi License"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: dashboard/info.php:
|
698 |
msgid "Use on up to FIVE WordPress installations."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: dashboard/info.php:
|
702 |
msgid "Developer License"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: dashboard/info.php:
|
706 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: dashboard/info.php:
|
710 |
msgid "Advertising Partners & Affiliates"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: dashboard/info.php:
|
714 |
msgid "A selection of quality advertiser networks and useful products. If you need adverts or just want more or more diverse adverts. Check out these great options!"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: dashboard/info.php:
|
718 |
-
msgid "
|
|
|
|
|
|
|
|
|
719 |
msgstr ""
|
720 |
|
721 |
#: dashboard/publisher/adverts-disabled.php:15
|
@@ -756,10 +715,10 @@ msgid "Go"
|
|
756 |
msgstr ""
|
757 |
|
758 |
#: dashboard/publisher/adverts-disabled.php:35
|
759 |
-
#: dashboard/publisher/adverts-edit.php:
|
760 |
#: dashboard/publisher/adverts-error.php:39
|
761 |
#: dashboard/publisher/adverts-main.php:39
|
762 |
-
#: dashboard/publisher/groups-edit.php:
|
763 |
#: dashboard/publisher/groups-main.php:32
|
764 |
#: dashboard/publisher/schedules-main.php:31
|
765 |
msgid "ID"
|
@@ -774,11 +733,11 @@ msgstr ""
|
|
774 |
|
775 |
#: dashboard/publisher/adverts-disabled.php:37
|
776 |
#: dashboard/publisher/adverts-edit.php:112
|
777 |
-
#: dashboard/publisher/adverts-edit.php:
|
778 |
#: dashboard/publisher/adverts-error.php:40
|
779 |
#: dashboard/publisher/adverts-main.php:41
|
780 |
-
#: dashboard/publisher/groups-edit.php:
|
781 |
-
#: dashboard/publisher/groups-edit.php:
|
782 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
783 |
#: dashboard/publisher/schedules-main.php:33
|
784 |
msgid "Name"
|
@@ -786,14 +745,14 @@ msgstr ""
|
|
786 |
|
787 |
#: dashboard/publisher/adverts-disabled.php:39
|
788 |
#: dashboard/publisher/adverts-main.php:43
|
789 |
-
#: dashboard/publisher/groups-edit.php:
|
790 |
#: dashboard/publisher/groups-main.php:36
|
791 |
msgid "Shown"
|
792 |
msgstr ""
|
793 |
|
794 |
#: dashboard/publisher/adverts-disabled.php:40
|
795 |
#: dashboard/publisher/adverts-main.php:45
|
796 |
-
#: dashboard/publisher/groups-edit.php:
|
797 |
#: dashboard/publisher/groups-main.php:38
|
798 |
#: dashboard/publisher/statistics-advert.php:52
|
799 |
#: dashboard/publisher/statistics-advert.php:58
|
@@ -996,27 +955,22 @@ msgid "Note: Clicktracking does not work for Javascript adverts such as those pr
|
|
996 |
msgstr ""
|
997 |
|
998 |
#: dashboard/publisher/adverts-edit.php:190
|
999 |
-
msgid "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
#: dashboard/publisher/adverts-edit.php:191
|
1003 |
-
msgid "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
#: dashboard/publisher/adverts-edit.php:198
|
1007 |
-
#: dashboard/publisher/adverts-main.php:90
|
1008 |
-
#: dashboard/publisher/groups-main.php:89
|
1009 |
msgid "Get more features with AdRotate Pro."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: dashboard/publisher/adverts-edit.php:198
|
1013 |
-
#: dashboard/publisher/adverts-edit.php:
|
1014 |
-
#: dashboard/publisher/adverts-edit.php:
|
1015 |
-
#: dashboard/publisher/adverts-edit.php:
|
1016 |
-
#: dashboard/publisher/
|
1017 |
-
#: dashboard/publisher/groups-edit.php:216
|
1018 |
-
#: dashboard/publisher/groups-main.php:89 dashboard/publisher/media.php:73
|
1019 |
-
#: dashboard/publisher/schedules-main.php:89
|
1020 |
#: dashboard/publisher/statistics-advert.php:109
|
1021 |
#: dashboard/publisher/statistics-group.php:113
|
1022 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -1024,271 +978,294 @@ msgid "Upgrade now"
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: dashboard/publisher/adverts-edit.php:201
|
1027 |
-
#: dashboard/publisher/adverts-edit.php:
|
1028 |
-
#: dashboard/publisher/adverts-edit.php:
|
1029 |
-
#: dashboard/publisher/adverts-edit.php:
|
1030 |
msgid "Save Advert"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: dashboard/publisher/adverts-edit.php:202
|
1034 |
-
#: dashboard/publisher/adverts-edit.php:
|
1035 |
-
#: dashboard/publisher/adverts-edit.php:
|
1036 |
-
#: dashboard/publisher/adverts-edit.php:
|
1037 |
-
#: dashboard/publisher/adverts-generator.php:
|
1038 |
-
#: dashboard/publisher/groups-edit.php:
|
1039 |
-
#: dashboard/publisher/groups-edit.php:
|
1040 |
-
#: dashboard/publisher/groups-edit.php:
|
1041 |
msgid "Cancel"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: dashboard/publisher/adverts-edit.php:205
|
1045 |
-
#: dashboard/publisher/adverts-edit.php:
|
1046 |
-
#: dashboard/publisher/groups-edit.php:
|
1047 |
-
#: dashboard/publisher/groups-edit.php:
|
1048 |
msgid "Usage"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
#: dashboard/publisher/adverts-edit.php:209
|
1052 |
-
#: dashboard/publisher/adverts-edit.php:
|
1053 |
-
#: dashboard/publisher/groups-edit.php:
|
1054 |
-
#: dashboard/publisher/groups-edit.php:
|
1055 |
msgid "Widget"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: dashboard/publisher/adverts-edit.php:210
|
1059 |
-
#: dashboard/publisher/adverts-edit.php:
|
1060 |
msgid "Drag the AdRotate widget to the sidebar where you want to place the advert and select the advert or the group the advert is in."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
#: dashboard/publisher/adverts-edit.php:213
|
1064 |
-
#: dashboard/publisher/adverts-edit.php:
|
1065 |
-
#: dashboard/publisher/groups-edit.php:
|
1066 |
-
#: dashboard/publisher/groups-edit.php:
|
1067 |
msgid "In a post or page"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: dashboard/publisher/adverts-edit.php:215
|
1071 |
-
#: dashboard/publisher/adverts-edit.php:
|
1072 |
-
#: dashboard/publisher/groups-edit.php:
|
1073 |
-
#: dashboard/publisher/groups-edit.php:
|
1074 |
msgid "Directly in a theme"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
#: dashboard/publisher/adverts-edit.php:221
|
1078 |
-
msgid "Get contextual adverts from Media.net"
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: dashboard/publisher/adverts-edit.php:234
|
1082 |
msgid "Schedule your advert"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: dashboard/publisher/adverts-edit.php:
|
1086 |
msgid "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: dashboard/publisher/adverts-edit.php:
|
1090 |
msgid "Start date"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: dashboard/publisher/adverts-edit.php:
|
1094 |
msgid "End date"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: dashboard/publisher/adverts-edit.php:
|
1098 |
msgid "Start time"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: dashboard/publisher/adverts-edit.php:
|
1102 |
msgid "End time"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: dashboard/publisher/adverts-edit.php:
|
1106 |
msgid "Maximum Clicks"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: dashboard/publisher/adverts-edit.php:
|
1110 |
-
#: dashboard/publisher/adverts-edit.php:
|
1111 |
msgid "Leave empty or 0 to skip this."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: dashboard/publisher/adverts-edit.php:
|
1115 |
msgid "Maximum Impressions"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: dashboard/publisher/adverts-edit.php:
|
1119 |
msgid "Create multiple and more advanced schedules for each advert with AdRotate Pro."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: dashboard/publisher/adverts-edit.php:
|
1123 |
-
#: dashboard/publisher/groups-edit.php:
|
1124 |
#: dashboard/settings/statistics.php:29
|
1125 |
msgid "Advanced"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: dashboard/publisher/adverts-edit.php:
|
1129 |
-
#: dashboard/publisher/adverts-edit.php:
|
1130 |
msgid "Available in AdRotate Pro!"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: dashboard/publisher/adverts-edit.php:
|
1134 |
msgid "Show to everyone"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: dashboard/publisher/adverts-edit.php:
|
1138 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: dashboard/publisher/adverts-edit.php:
|
1142 |
-
#: dashboard/publisher/groups-edit.php:
|
1143 |
msgid "Weight"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: dashboard/publisher/adverts-edit.php:
|
1147 |
msgid "Few impressions"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: dashboard/publisher/adverts-edit.php:
|
1151 |
msgid "Less than average"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: dashboard/publisher/adverts-edit.php:
|
1155 |
msgid "Normal impressions"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: dashboard/publisher/adverts-edit.php:
|
1159 |
msgid "More than average"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: dashboard/publisher/adverts-edit.php:
|
1163 |
msgid "Many impressions"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: dashboard/publisher/adverts-edit.php:
|
1167 |
msgid "Mobile"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: dashboard/publisher/adverts-edit.php:
|
1171 |
msgid "Desktops/Laptops"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: dashboard/publisher/adverts-edit.php:
|
1175 |
msgid "Smartphones"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: dashboard/publisher/adverts-edit.php:
|
1179 |
msgid "Tablets"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: dashboard/publisher/adverts-edit.php:
|
1183 |
msgid "Also enable 'Mobile Support' in the group this advert goes in or 'Device' and 'Operating System' are ignored!"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: dashboard/publisher/adverts-edit.php:
|
1187 |
msgid "Operating system detection only detects iOS and Android, select 'Not Mobile/Other' for everything else."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: dashboard/publisher/adverts-edit.php:
|
1191 |
msgid "Mobile OS"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: dashboard/publisher/adverts-edit.php:
|
1195 |
msgid "iOS"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: dashboard/publisher/adverts-edit.php:
|
1199 |
msgid "Android"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: dashboard/publisher/adverts-edit.php:
|
1203 |
msgid "Not mobile/Others"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: dashboard/publisher/adverts-edit.php:
|
1207 |
msgid "Auto-delete"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: dashboard/publisher/adverts-edit.php:
|
1211 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: dashboard/publisher/adverts-edit.php:
|
1215 |
msgid "This is useful for short running campaigns that do not require attention after they finish."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: dashboard/publisher/adverts-edit.php:
|
1219 |
msgid "With AdRotate Pro you can easily select which devices and mobile operating systems the advert should show on!"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: dashboard/publisher/adverts-edit.php:
|
1223 |
msgid "Assign the advert to a group and enable that group to use Geo Targeting."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: dashboard/publisher/adverts-edit.php:
|
1227 |
-
msgid "
|
|
|
|
|
|
|
|
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: dashboard/publisher/adverts-edit.php:
|
1231 |
-
|
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: dashboard/publisher/adverts-edit.php:
|
1235 |
-
msgid "
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: dashboard/publisher/adverts-edit.php:
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: dashboard/publisher/adverts-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1243 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: dashboard/publisher/adverts-edit.php:
|
1247 |
msgid "Select Groups"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: dashboard/publisher/adverts-edit.php:
|
1251 |
#: dashboard/publisher/groups-main.php:60
|
1252 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1253 |
msgid "Default"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: dashboard/publisher/adverts-edit.php:
|
1257 |
#: dashboard/publisher/groups-main.php:61
|
1258 |
msgid "Dynamic"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: dashboard/publisher/adverts-edit.php:
|
1262 |
#: dashboard/publisher/groups-main.php:61
|
1263 |
msgid "second rotation"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: dashboard/publisher/adverts-edit.php:
|
1267 |
#: dashboard/publisher/groups-main.php:62
|
1268 |
msgid "Block"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: dashboard/publisher/adverts-edit.php:
|
1272 |
#: dashboard/publisher/groups-main.php:62
|
1273 |
msgid "grid"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: dashboard/publisher/adverts-edit.php:
|
1277 |
-
#: dashboard/publisher/groups-edit.php:
|
1278 |
#: dashboard/publisher/groups-main.php:63
|
1279 |
msgid "Post Injection"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: dashboard/publisher/adverts-edit.php:
|
1283 |
msgid "Geolocation"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: dashboard/publisher/adverts-edit.php:
|
1287 |
-
#: dashboard/publisher/groups-edit.php:
|
1288 |
#: dashboard/publisher/groups-main.php:70
|
1289 |
msgid "Mode"
|
1290 |
msgstr ""
|
1291 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1292 |
#: dashboard/publisher/adverts-error.php:12
|
1293 |
msgid "Adverts that need attention"
|
1294 |
msgstr ""
|
@@ -1344,6 +1321,10 @@ msgstr ""
|
|
1344 |
msgid "Use the Generator if you have received a target url, banner image and/or some separate files with a description on how to use those. The AdRotate Generator will take your bits and pieces and try to generate a working adcode from it."
|
1345 |
msgstr ""
|
1346 |
|
|
|
|
|
|
|
|
|
1347 |
#: dashboard/publisher/adverts-generator.php:39
|
1348 |
msgid "If you have a complete and working ad code / ad tag you do not use the Generator. You can simply paste that code in the AdCode field when creating your advert. For example as provided by Media.net or Google AdSense among others."
|
1349 |
msgstr ""
|
@@ -1385,7 +1366,7 @@ msgid "Viewports"
|
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: dashboard/publisher/adverts-generator.php:77
|
1388 |
-
#: dashboard/publisher/groups-edit.php:
|
1389 |
#: dashboard/settings/notifications.php:48
|
1390 |
msgid "Available in AdRotate Pro"
|
1391 |
msgstr ""
|
@@ -1478,24 +1459,32 @@ msgstr ""
|
|
1478 |
msgid "Some bots/crawlers use them as a descriptive measure to see what the code is about."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: dashboard/publisher/adverts-generator.php:
|
|
|
|
|
|
|
|
|
1482 |
msgid "Generate and Configure Advert"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: dashboard/publisher/adverts-generator.php:
|
1486 |
msgid "Always test your adverts before activating them."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: dashboard/publisher/adverts-generator.php:
|
1490 |
-
msgid "
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: dashboard/publisher/adverts-generator.php:
|
1494 |
msgid "While the Code Generator has been tested and works, code generation, as always, is a interpretation of user input. If you provide the correct bits and pieces, a working advert may be generated. If you leave fields empty or insert the wrong info you probably end up with a broken advert."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: dashboard/publisher/adverts-generator.php:
|
1498 |
-
msgid "
|
|
|
|
|
|
|
|
|
1499 |
msgstr ""
|
1500 |
|
1501 |
#: dashboard/publisher/adverts-main.php:12
|
@@ -1519,318 +1508,330 @@ msgstr ""
|
|
1519 |
msgid "No adverts created yet!"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: dashboard/publisher/groups-edit.php:
|
1523 |
-
msgid "
|
|
|
|
|
|
|
|
|
1524 |
msgstr ""
|
1525 |
|
1526 |
#: dashboard/publisher/groups-edit.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1527 |
msgid "Edit Group"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: dashboard/publisher/groups-edit.php:
|
1531 |
msgid "Default - Show one ad at a time"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: dashboard/publisher/groups-edit.php:
|
1535 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: dashboard/publisher/groups-edit.php:
|
1539 |
msgid "Block Mode - Show a block of adverts"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: dashboard/publisher/groups-edit.php:
|
1543 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: dashboard/publisher/groups-edit.php:
|
1547 |
msgid "Advert size"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: dashboard/publisher/groups-edit.php:
|
1551 |
msgid "pixel(s) wide"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: dashboard/publisher/groups-edit.php:
|
1555 |
msgid "pixel(s) high."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: dashboard/publisher/groups-edit.php:
|
1559 |
msgid "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not recommended)."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: dashboard/publisher/groups-edit.php:
|
1563 |
msgid "Dynamic and Block Mode"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: dashboard/publisher/groups-edit.php:
|
1567 |
msgid "Block size"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: dashboard/publisher/groups-edit.php:
|
1571 |
msgid "rows"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: dashboard/publisher/groups-edit.php:
|
1575 |
msgid "columns"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: dashboard/publisher/groups-edit.php:
|
1579 |
msgid "Block Mode"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: dashboard/publisher/groups-edit.php:
|
1583 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: dashboard/publisher/groups-edit.php:
|
1587 |
msgid "Automated refresh"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: dashboard/publisher/groups-edit.php:
|
1591 |
msgid "seconds."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: dashboard/publisher/groups-edit.php:
|
1595 |
-
#: dashboard/publisher/groups-edit.php:
|
1596 |
msgid "Dynamic Mode"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: dashboard/publisher/groups-edit.php:
|
1600 |
msgid "Load a new advert in this interval without reloading the page. Default: 6."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: dashboard/publisher/groups-edit.php:
|
1604 |
msgid "Repeat impressions"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: dashboard/publisher/groups-edit.php:
|
1608 |
msgid "Count impressions for every cycle of adverts?"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: dashboard/publisher/groups-edit.php:
|
1612 |
msgid "Uncheck this option to only count impressions for the first cycle of adverts."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: dashboard/publisher/groups-edit.php:
|
1616 |
-
#: dashboard/publisher/groups-edit.php:
|
1617 |
msgid "Get access to all features in AdRotate Pro."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: dashboard/publisher/groups-edit.php:
|
1621 |
msgid "Upgrade today"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: dashboard/publisher/groups-edit.php:
|
1625 |
-
#: dashboard/publisher/groups-edit.php:
|
1626 |
msgid "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Adverts\" and enter ID"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: dashboard/publisher/groups-edit.php:
|
1630 |
-
#: dashboard/publisher/groups-edit.php:
|
1631 |
-
#: dashboard/publisher/groups-edit.php:
|
1632 |
msgid "Save Group"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: dashboard/publisher/groups-edit.php:
|
1636 |
msgid "Advert Margin"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: dashboard/publisher/groups-edit.php:
|
1640 |
msgid "pixel(s)"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: dashboard/publisher/groups-edit.php:
|
1644 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: dashboard/publisher/groups-edit.php:
|
1648 |
msgid "Set to 0 to disable."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: dashboard/publisher/groups-edit.php:
|
1652 |
msgid "Margins are automatically disabled for blocks where required."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: dashboard/publisher/groups-edit.php:
|
1656 |
msgid "Align the group"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: dashboard/publisher/groups-edit.php:
|
1660 |
msgid "None (Default)"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: dashboard/publisher/groups-edit.php:
|
1664 |
msgid "Left"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: dashboard/publisher/groups-edit.php:
|
1668 |
msgid "Right"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: dashboard/publisher/groups-edit.php:
|
1672 |
msgid "Center"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: dashboard/publisher/groups-edit.php:
|
1676 |
msgid "Align the group in your post or page. Using 'center' may affect your margin setting. Not every theme supports this feature."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: dashboard/publisher/groups-edit.php:
|
1680 |
msgid "Enable Geo Targeting for this group."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: dashboard/publisher/groups-edit.php:
|
1684 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: dashboard/publisher/groups-edit.php:
|
1688 |
msgid "Mobile Support"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: dashboard/publisher/groups-edit.php:
|
1692 |
msgid "Enable mobile support for this group."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: dashboard/publisher/groups-edit.php:
|
1696 |
msgid "Do not forget to put at least one mobile advert in this group."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: dashboard/publisher/groups-edit.php:
|
1700 |
msgid "Fallback Group"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: dashboard/publisher/groups-edit.php:
|
1704 |
msgid "Select another group to fall back on when all adverts are expired, not in the visitors geographic area or are otherwise unavailable."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: dashboard/publisher/groups-edit.php:
|
1708 |
-
#: dashboard/publisher/groups-edit.php:
|
1709 |
#: dashboard/settings/geotargeting.php:24
|
1710 |
msgid "Disabled"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: dashboard/publisher/groups-edit.php:
|
1714 |
-
#: dashboard/publisher/groups-edit.php:
|
1715 |
msgid "Widget (Pro only)"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: dashboard/publisher/groups-edit.php:
|
1719 |
-
#: dashboard/publisher/groups-edit.php:
|
1720 |
msgid "Before content"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: dashboard/publisher/groups-edit.php:
|
1724 |
-
#: dashboard/publisher/groups-edit.php:
|
1725 |
msgid "After content"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: dashboard/publisher/groups-edit.php:
|
1729 |
-
#: dashboard/publisher/groups-edit.php:
|
1730 |
msgid "Before and after content"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: dashboard/publisher/groups-edit.php:
|
1734 |
-
#: dashboard/publisher/groups-edit.php:
|
1735 |
msgid "Inside the content..."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: dashboard/publisher/groups-edit.php:
|
1739 |
-
#: dashboard/publisher/groups-edit.php:
|
1740 |
msgid "after the middle paragraph"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: dashboard/publisher/groups-edit.php:
|
1744 |
-
#: dashboard/publisher/groups-edit.php:
|
1745 |
msgid "after the 1st paragraph"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: dashboard/publisher/groups-edit.php:
|
1749 |
-
#: dashboard/publisher/groups-edit.php:
|
1750 |
msgid "after the 2nd paragraph"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: dashboard/publisher/groups-edit.php:
|
1754 |
-
#: dashboard/publisher/groups-edit.php:
|
1755 |
msgid "after the 3rd paragraph"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: dashboard/publisher/groups-edit.php:
|
1759 |
-
#: dashboard/publisher/groups-edit.php:
|
1760 |
msgid "after the 4th paragraph"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: dashboard/publisher/groups-edit.php:
|
1764 |
-
#: dashboard/publisher/groups-edit.php:
|
1765 |
msgid "after the 5th paragraph"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: dashboard/publisher/groups-edit.php:
|
1769 |
-
#: dashboard/publisher/groups-edit.php:
|
1770 |
msgid "after the 6th paragraph"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: dashboard/publisher/groups-edit.php:
|
1774 |
-
#: dashboard/publisher/groups-edit.php:
|
1775 |
msgid "after the 7th paragraph"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: dashboard/publisher/groups-edit.php:
|
1779 |
-
#: dashboard/publisher/groups-edit.php:
|
1780 |
msgid "after the 8th paragraph"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: dashboard/publisher/groups-edit.php:
|
1784 |
msgid "Page Injection"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: dashboard/publisher/groups-edit.php:
|
1788 |
msgid "Wrapper code"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: dashboard/publisher/groups-edit.php:
|
1792 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: dashboard/publisher/groups-edit.php:
|
1796 |
msgid "Before advert"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: dashboard/publisher/groups-edit.php:
|
1800 |
-
#: dashboard/publisher/groups-edit.php:
|
1801 |
msgid "Example:"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: dashboard/publisher/groups-edit.php:
|
1805 |
msgid "Options:"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: dashboard/publisher/groups-edit.php:
|
1809 |
msgid "After advert"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: dashboard/publisher/groups-edit.php:
|
1813 |
msgid "Select adverts"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: dashboard/publisher/groups-edit.php:
|
1817 |
msgid "Visible until"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: dashboard/publisher/groups-edit.php:
|
1821 |
msgid "No adverts created!"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: dashboard/publisher/groups-edit.php:
|
1825 |
msgid "Configuration errors."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: dashboard/publisher/groups-edit.php:
|
1829 |
#: dashboard/publisher/schedules-main.php:87
|
1830 |
msgid "Expires soon."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: dashboard/publisher/groups-edit.php:
|
1834 |
#: dashboard/publisher/schedules-main.php:88
|
1835 |
msgid "Has expired."
|
1836 |
msgstr ""
|
@@ -1904,7 +1905,7 @@ msgstr ""
|
|
1904 |
msgid "Make sure the banner images are not in use by adverts when you delete them!"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: dashboard/publisher/media.php:73
|
1908 |
#: dashboard/publisher/statistics-advert.php:109
|
1909 |
#: dashboard/publisher/statistics-group.php:113
|
1910 |
#: dashboard/publisher/statistics-main.php:83
|
@@ -1915,6 +1916,10 @@ msgstr ""
|
|
1915 |
msgid "In AdRotate Pro you can schedule adverts for multiple periods of time. One schedule can be assigned to many adverts allowing you to manage multi advert campaigns easily. Schedules can be active on certain days of the week or on certain hours of the day."
|
1916 |
msgstr ""
|
1917 |
|
|
|
|
|
|
|
|
|
1918 |
#: dashboard/publisher/schedules-main.php:36
|
1919 |
msgid "Max Shown"
|
1920 |
msgstr ""
|
@@ -2227,7 +2232,7 @@ msgid "Which Geo Service"
|
|
2227 |
msgstr ""
|
2228 |
|
2229 |
#: dashboard/settings/geotargeting.php:32
|
2230 |
-
msgid "
|
2231 |
msgstr ""
|
2232 |
|
2233 |
#: dashboard/settings/geotargeting.php:33
|
@@ -2250,6 +2255,11 @@ msgstr ""
|
|
2250 |
msgid "Suitable for small to medium sized websites."
|
2251 |
msgstr ""
|
2252 |
|
|
|
|
|
|
|
|
|
|
|
2253 |
#: dashboard/settings/geotargeting.php:36
|
2254 |
msgid "10000 free lookups per month, requires account."
|
2255 |
msgstr ""
|
@@ -2772,27 +2782,6 @@ msgstr ""
|
|
2772 |
msgid "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: dashboard/support.php:25
|
2776 |
-
msgid "Support Forums"
|
2777 |
-
msgstr ""
|
2778 |
-
|
2779 |
-
#: dashboard/support.php:27
|
2780 |
-
msgid "When you are stuck with AdRotate or AdRotate Pro, check the forums first. Chances are your question has already been asked and answered!"
|
2781 |
-
msgstr ""
|
2782 |
-
|
2783 |
-
#: dashboard/support.php:27
|
2784 |
-
msgid "Next to the forum there are many manuals and guides available for almost every function and feature in the plugin."
|
2785 |
-
msgstr ""
|
2786 |
-
|
2787 |
-
#: dashboard/support.php:27
|
2788 |
-
msgid "Take a look at the AdRotate Manuals"
|
2789 |
-
msgstr ""
|
2790 |
-
|
2791 |
-
#: dashboard/support.php:29 dashboard/support.php:30 dashboard/support.php:31
|
2792 |
-
#: dashboard/support.php:32 dashboard/support.php:33 dashboard/support.php:34
|
2793 |
-
msgid "View topics"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
#: dashboard/support.php:83
|
2797 |
msgid "Premium Support available in AdRotate Pro"
|
2798 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
+
"POT-Creation-Date: 2020-05-18 14:02-0500\n"
|
6 |
"PO-Revision-Date: 2019-09-20 12:05-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
58 |
msgstr ""
|
59 |
|
60 |
#: adrotate-functions.php:732
|
61 |
+
msgid "Advert HTML generated and placed in the AdCode field. Configure your advert below. Do not forget to check all settings and schedule it."
|
62 |
msgstr ""
|
63 |
|
64 |
#: adrotate-functions.php:737
|
106 |
msgstr ""
|
107 |
|
108 |
#: adrotate-functions.php:782
|
109 |
+
msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: adrotate-functions.php:786
|
113 |
+
msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: adrotate-functions.php:790
|
117 |
msgid "Unexpected error"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: adrotate-manage-publisher.php:782
|
121 |
msgid "AdRotate Advertiser"
|
122 |
msgstr ""
|
123 |
|
223 |
msgstr ""
|
224 |
|
225 |
#: adrotate-output.php:652
|
226 |
+
msgid "You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated."
|
227 |
msgstr ""
|
228 |
|
229 |
#: adrotate-output.php:652
|
230 |
+
msgid "Switch plugins"
|
231 |
msgstr ""
|
232 |
|
233 |
#: adrotate-output.php:655
|
262 |
msgid "Help AdRotate Grow"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:835 adrotate.php:150
|
266 |
msgid "AdRotate Professional"
|
267 |
msgstr ""
|
268 |
|
408 |
msgid "Fill in the ID of the type you want to display!"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: adrotate.php:103
|
412 |
msgid "General Info"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: adrotate.php:104
|
416 |
msgid "AdRotate Pro"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: adrotate.php:105
|
420 |
msgid "Manage Adverts"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: adrotate.php:106 dashboard/publisher/groups-main.php:12
|
424 |
msgid "Manage Groups"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: adrotate.php:107 dashboard/publisher/schedules-main.php:12
|
428 |
msgid "Manage Schedules"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: adrotate.php:108 adrotate.php:388 adrotate.php:505
|
432 |
#: dashboard/adrotatepro.php:69 dashboard/publisher/adverts-edit.php:177
|
433 |
#: dashboard/publisher/statistics-main.php:23
|
434 |
#: dashboard/settings/statistics.php:17
|
435 |
msgid "Statistics"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: adrotate.php:109
|
439 |
msgid "Manage Media"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: adrotate.php:110 adrotate.php:469
|
443 |
msgid "Support"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: adrotate.php:111
|
447 |
msgid "Settings"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: adrotate.php:132
|
451 |
msgid "AdRotate Info"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: adrotate.php:190
|
455 |
msgid "Advert Management"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: adrotate.php:250 adrotate.php:318
|
459 |
msgid "Manage"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: adrotate.php:251
|
463 |
msgid "Generator"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: adrotate.php:252 adrotate.php:319
|
467 |
msgid "Add New"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: adrotate.php:312
|
471 |
msgid "Group Management"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: adrotate.php:349
|
475 |
msgid "Schedules"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: adrotate.php:430
|
479 |
msgid "Media and Assets"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: adrotate.php:434
|
483 |
msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: adrotate.php:434
|
487 |
msgid "Get more features"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: adrotate.php:434
|
491 |
msgid "Get AdRotate Pro"
|
492 |
msgstr ""
|
493 |
|
503 |
msgid "Notifications"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: adrotate.php:506 dashboard/publisher/adverts-edit.php:345
|
507 |
+
#: dashboard/publisher/groups-edit.php:205
|
508 |
#: dashboard/settings/advertisers.php:38
|
509 |
msgid "Geo Targeting"
|
510 |
msgstr ""
|
597 |
msgid "Adverts that need you"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:474
|
601 |
#: dashboard/publisher/groups-main.php:34
|
602 |
#: dashboard/publisher/schedules-main.php:34
|
603 |
#: dashboard/publisher/statistics-main.php:35
|
616 |
msgid "Have errors"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: dashboard/info.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
msgid "Buy AdRotate Professional"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: dashboard/info.php:111
|
624 |
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!"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: dashboard/info.php:113
|
628 |
msgid "Single License"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: dashboard/info.php:113
|
632 |
msgid "Use on ONE WordPress installation."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: dashboard/info.php:113 dashboard/info.php:114 dashboard/info.php:115
|
636 |
+
#: dashboard/info.php:116
|
637 |
msgid "Buy now"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: dashboard/info.php:114
|
641 |
msgid "Duo License"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: dashboard/info.php:114
|
645 |
msgid "Use on TWO WordPress installations."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: dashboard/info.php:115
|
649 |
msgid "Multi License"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: dashboard/info.php:115
|
653 |
msgid "Use on up to FIVE WordPress installations."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: dashboard/info.php:116
|
657 |
msgid "Developer License"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: dashboard/info.php:116
|
661 |
msgid "Use on up to a HUNDRED WordPress installations and/or networks."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: dashboard/info.php:127
|
665 |
msgid "Advertising Partners & Affiliates"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: dashboard/info.php:128
|
669 |
msgid "A selection of quality advertiser networks and useful products. If you need adverts or just want more or more diverse adverts. Check out these great options!"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: dashboard/info.php:128
|
673 |
+
msgid "Check out these and other preferred products or providers on my"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: dashboard/info.php:128
|
677 |
+
msgid "recommended products page"
|
678 |
msgstr ""
|
679 |
|
680 |
#: dashboard/publisher/adverts-disabled.php:15
|
715 |
msgstr ""
|
716 |
|
717 |
#: dashboard/publisher/adverts-disabled.php:35
|
718 |
+
#: dashboard/publisher/adverts-edit.php:472
|
719 |
#: dashboard/publisher/adverts-error.php:39
|
720 |
#: dashboard/publisher/adverts-main.php:39
|
721 |
+
#: dashboard/publisher/groups-edit.php:359
|
722 |
#: dashboard/publisher/groups-main.php:32
|
723 |
#: dashboard/publisher/schedules-main.php:31
|
724 |
msgid "ID"
|
733 |
|
734 |
#: dashboard/publisher/adverts-disabled.php:37
|
735 |
#: dashboard/publisher/adverts-edit.php:112
|
736 |
+
#: dashboard/publisher/adverts-edit.php:473
|
737 |
#: dashboard/publisher/adverts-error.php:40
|
738 |
#: dashboard/publisher/adverts-main.php:41
|
739 |
+
#: dashboard/publisher/groups-edit.php:65
|
740 |
+
#: dashboard/publisher/groups-edit.php:360
|
741 |
#: dashboard/publisher/groups-main.php:33 dashboard/publisher/media.php:30
|
742 |
#: dashboard/publisher/schedules-main.php:33
|
743 |
msgid "Name"
|
745 |
|
746 |
#: dashboard/publisher/adverts-disabled.php:39
|
747 |
#: dashboard/publisher/adverts-main.php:43
|
748 |
+
#: dashboard/publisher/groups-edit.php:364
|
749 |
#: dashboard/publisher/groups-main.php:36
|
750 |
msgid "Shown"
|
751 |
msgstr ""
|
752 |
|
753 |
#: dashboard/publisher/adverts-disabled.php:40
|
754 |
#: dashboard/publisher/adverts-main.php:45
|
755 |
+
#: dashboard/publisher/groups-edit.php:365
|
756 |
#: dashboard/publisher/groups-main.php:38
|
757 |
#: dashboard/publisher/statistics-advert.php:52
|
758 |
#: dashboard/publisher/statistics-advert.php:58
|
955 |
msgstr ""
|
956 |
|
957 |
#: dashboard/publisher/adverts-edit.php:190
|
958 |
+
msgid "Enabled, this ad will be visible"
|
959 |
msgstr ""
|
960 |
|
961 |
#: dashboard/publisher/adverts-edit.php:191
|
962 |
+
msgid "Disabled, do not show this advert anywhere"
|
963 |
msgstr ""
|
964 |
|
965 |
#: dashboard/publisher/adverts-edit.php:198
|
|
|
|
|
966 |
msgid "Get more features with AdRotate Pro."
|
967 |
msgstr ""
|
968 |
|
969 |
#: dashboard/publisher/adverts-edit.php:198
|
970 |
+
#: dashboard/publisher/adverts-edit.php:261
|
971 |
+
#: dashboard/publisher/adverts-edit.php:343
|
972 |
+
#: dashboard/publisher/adverts-edit.php:443
|
973 |
+
#: dashboard/publisher/groups-edit.php:228 dashboard/publisher/media.php:73
|
|
|
|
|
|
|
974 |
#: dashboard/publisher/statistics-advert.php:109
|
975 |
#: dashboard/publisher/statistics-group.php:113
|
976 |
#: dashboard/publisher/statistics-main.php:83
|
978 |
msgstr ""
|
979 |
|
980 |
#: dashboard/publisher/adverts-edit.php:201
|
981 |
+
#: dashboard/publisher/adverts-edit.php:264
|
982 |
+
#: dashboard/publisher/adverts-edit.php:462
|
983 |
+
#: dashboard/publisher/adverts-edit.php:505
|
984 |
msgid "Save Advert"
|
985 |
msgstr ""
|
986 |
|
987 |
#: dashboard/publisher/adverts-edit.php:202
|
988 |
+
#: dashboard/publisher/adverts-edit.php:265
|
989 |
+
#: dashboard/publisher/adverts-edit.php:463
|
990 |
+
#: dashboard/publisher/adverts-edit.php:506
|
991 |
+
#: dashboard/publisher/adverts-generator.php:162
|
992 |
+
#: dashboard/publisher/groups-edit.php:175
|
993 |
+
#: dashboard/publisher/groups-edit.php:329
|
994 |
+
#: dashboard/publisher/groups-edit.php:423
|
995 |
msgid "Cancel"
|
996 |
msgstr ""
|
997 |
|
998 |
#: dashboard/publisher/adverts-edit.php:205
|
999 |
+
#: dashboard/publisher/adverts-edit.php:445
|
1000 |
+
#: dashboard/publisher/groups-edit.php:157
|
1001 |
+
#: dashboard/publisher/groups-edit.php:311
|
1002 |
msgid "Usage"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
#: dashboard/publisher/adverts-edit.php:209
|
1006 |
+
#: dashboard/publisher/adverts-edit.php:449
|
1007 |
+
#: dashboard/publisher/groups-edit.php:161
|
1008 |
+
#: dashboard/publisher/groups-edit.php:315
|
1009 |
msgid "Widget"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: dashboard/publisher/adverts-edit.php:210
|
1013 |
+
#: dashboard/publisher/adverts-edit.php:450
|
1014 |
msgid "Drag the AdRotate widget to the sidebar where you want to place the advert and select the advert or the group the advert is in."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: dashboard/publisher/adverts-edit.php:213
|
1018 |
+
#: dashboard/publisher/adverts-edit.php:453
|
1019 |
+
#: dashboard/publisher/groups-edit.php:165
|
1020 |
+
#: dashboard/publisher/groups-edit.php:319
|
1021 |
msgid "In a post or page"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
#: dashboard/publisher/adverts-edit.php:215
|
1025 |
+
#: dashboard/publisher/adverts-edit.php:455
|
1026 |
+
#: dashboard/publisher/groups-edit.php:167
|
1027 |
+
#: dashboard/publisher/groups-edit.php:321
|
1028 |
msgid "Directly in a theme"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: dashboard/publisher/adverts-edit.php:221
|
|
|
|
|
|
|
|
|
1032 |
msgid "Schedule your advert"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: dashboard/publisher/adverts-edit.php:222
|
1036 |
msgid "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: dashboard/publisher/adverts-edit.php:226
|
1040 |
msgid "Start date"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: dashboard/publisher/adverts-edit.php:230
|
1044 |
msgid "End date"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: dashboard/publisher/adverts-edit.php:236
|
1048 |
msgid "Start time"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: dashboard/publisher/adverts-edit.php:243
|
1052 |
msgid "End time"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: dashboard/publisher/adverts-edit.php:253
|
1056 |
msgid "Maximum Clicks"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: dashboard/publisher/adverts-edit.php:254
|
1060 |
+
#: dashboard/publisher/adverts-edit.php:256
|
1061 |
msgid "Leave empty or 0 to skip this."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: dashboard/publisher/adverts-edit.php:255
|
1065 |
msgid "Maximum Impressions"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: dashboard/publisher/adverts-edit.php:261
|
1069 |
msgid "Create multiple and more advanced schedules for each advert with AdRotate Pro."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: dashboard/publisher/adverts-edit.php:268
|
1073 |
+
#: dashboard/publisher/groups-edit.php:178 dashboard/settings/statistics.php:27
|
1074 |
#: dashboard/settings/statistics.php:29
|
1075 |
msgid "Advanced"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: dashboard/publisher/adverts-edit.php:269
|
1079 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1080 |
msgid "Available in AdRotate Pro!"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: dashboard/publisher/adverts-edit.php:274
|
1084 |
msgid "Show to everyone"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: dashboard/publisher/adverts-edit.php:276
|
1088 |
msgid "Disable this option to hide the advert from logged-in visitors."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: dashboard/publisher/adverts-edit.php:281
|
1092 |
+
#: dashboard/publisher/groups-edit.php:362
|
1093 |
msgid "Weight"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: dashboard/publisher/adverts-edit.php:284
|
1097 |
msgid "Few impressions"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: dashboard/publisher/adverts-edit.php:289
|
1101 |
msgid "Less than average"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: dashboard/publisher/adverts-edit.php:294
|
1105 |
msgid "Normal impressions"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: dashboard/publisher/adverts-edit.php:299
|
1109 |
msgid "More than average"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: dashboard/publisher/adverts-edit.php:304
|
1113 |
msgid "Many impressions"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: dashboard/publisher/adverts-edit.php:309
|
1117 |
msgid "Mobile"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: dashboard/publisher/adverts-edit.php:311
|
1121 |
msgid "Desktops/Laptops"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: dashboard/publisher/adverts-edit.php:314
|
1125 |
msgid "Smartphones"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: dashboard/publisher/adverts-edit.php:317
|
1129 |
msgid "Tablets"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1133 |
msgid "Also enable 'Mobile Support' in the group this advert goes in or 'Device' and 'Operating System' are ignored!"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: dashboard/publisher/adverts-edit.php:320
|
1137 |
msgid "Operating system detection only detects iOS and Android, select 'Not Mobile/Other' for everything else."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: dashboard/publisher/adverts-edit.php:324
|
1141 |
msgid "Mobile OS"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: dashboard/publisher/adverts-edit.php:326
|
1145 |
msgid "iOS"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: dashboard/publisher/adverts-edit.php:329
|
1149 |
msgid "Android"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: dashboard/publisher/adverts-edit.php:332
|
1153 |
msgid "Not mobile/Others"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: dashboard/publisher/adverts-edit.php:336
|
1157 |
msgid "Auto-delete"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1161 |
msgid "Automatically delete the advert 1 day after it expires?"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: dashboard/publisher/adverts-edit.php:338
|
1165 |
msgid "This is useful for short running campaigns that do not require attention after they finish."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: dashboard/publisher/adverts-edit.php:343
|
1169 |
msgid "With AdRotate Pro you can easily select which devices and mobile operating systems the advert should show on!"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: dashboard/publisher/adverts-edit.php:346
|
1173 |
msgid "Assign the advert to a group and enable that group to use Geo Targeting."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: dashboard/publisher/adverts-edit.php:353
|
1177 |
+
msgid "Enter cities or metro IDs (DMA)"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1181 |
+
msgid "A comma separated list of Cities or Metro IDs:"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: dashboard/publisher/adverts-edit.php:356
|
1185 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1186 |
+
msgid "AdRotate does not check the validity of names and assumes the basic english name."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: dashboard/publisher/adverts-edit.php:361
|
1190 |
+
msgid "Enter States or State ISO3166-2 codes"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: dashboard/publisher/adverts-edit.php:363
|
1194 |
+
msgid "The listed cities must be in these states?"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: dashboard/publisher/adverts-edit.php:365
|
1198 |
+
msgid "A comma separated list of states:"
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: dashboard/publisher/adverts-edit.php:373
|
1202 |
+
msgid "Select Countries and or Regions"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: dashboard/publisher/adverts-edit.php:443
|
1206 |
msgid "Target your audience with Geo Targeting in AdRotate Pro"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: dashboard/publisher/adverts-edit.php:467
|
1210 |
msgid "Select Groups"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: dashboard/publisher/adverts-edit.php:483
|
1214 |
#: dashboard/publisher/groups-main.php:60
|
1215 |
#: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
|
1216 |
msgid "Default"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1220 |
#: dashboard/publisher/groups-main.php:61
|
1221 |
msgid "Dynamic"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: dashboard/publisher/adverts-edit.php:484
|
1225 |
#: dashboard/publisher/groups-main.php:61
|
1226 |
msgid "second rotation"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1230 |
#: dashboard/publisher/groups-main.php:62
|
1231 |
msgid "Block"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: dashboard/publisher/adverts-edit.php:485
|
1235 |
#: dashboard/publisher/groups-main.php:62
|
1236 |
msgid "grid"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: dashboard/publisher/adverts-edit.php:486
|
1240 |
+
#: dashboard/publisher/groups-edit.php:235
|
1241 |
#: dashboard/publisher/groups-main.php:63
|
1242 |
msgid "Post Injection"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: dashboard/publisher/adverts-edit.php:487
|
1246 |
msgid "Geolocation"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: dashboard/publisher/adverts-edit.php:494
|
1250 |
+
#: dashboard/publisher/groups-edit.php:74
|
1251 |
#: dashboard/publisher/groups-main.php:70
|
1252 |
msgid "Mode"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: dashboard/publisher/adverts-edit.php:511
|
1256 |
+
#: dashboard/publisher/adverts-generator.php:145
|
1257 |
+
msgid "Portability"
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: dashboard/publisher/adverts-edit.php:512
|
1261 |
+
msgid "This long code is your advert. It includes all settings from above except the schedule and group selection. You can import this hash into another setup of AdRotate or AdRotate Professional. Do not alter the hash or the advert will not work. In most browsers you can tripleclick in the field to select the whole thing. You can paste the hash into the 'Advert Hash' field in the Advert Generator of another AdRotate setup."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: dashboard/publisher/adverts-edit.php:516
|
1265 |
+
#: dashboard/publisher/adverts-generator.php:151
|
1266 |
+
msgid "Advert hash"
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
#: dashboard/publisher/adverts-error.php:12
|
1270 |
msgid "Adverts that need attention"
|
1271 |
msgstr ""
|
1321 |
msgid "Use the Generator if you have received a target url, banner image and/or some separate files with a description on how to use those. The AdRotate Generator will take your bits and pieces and try to generate a working adcode from it."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: dashboard/publisher/adverts-generator.php:38
|
1325 |
+
msgid "If you have an advert hash from another AdRotate or AdRotate Professional setup you can enter it in the Portability field. This feature is a bit of an experiment, but the basic function works."
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
#: dashboard/publisher/adverts-generator.php:39
|
1329 |
msgid "If you have a complete and working ad code / ad tag you do not use the Generator. You can simply paste that code in the AdCode field when creating your advert. For example as provided by Media.net or Google AdSense among others."
|
1330 |
msgstr ""
|
1366 |
msgstr ""
|
1367 |
|
1368 |
#: dashboard/publisher/adverts-generator.php:77
|
1369 |
+
#: dashboard/publisher/groups-edit.php:219
|
1370 |
#: dashboard/settings/notifications.php:48
|
1371 |
msgid "Available in AdRotate Pro"
|
1372 |
msgstr ""
|
1459 |
msgid "Some bots/crawlers use them as a descriptive measure to see what the code is about."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: dashboard/publisher/adverts-generator.php:153
|
1463 |
+
msgid "To import a ready made advert, enter a advert hash from another AdRotate setup..."
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: dashboard/publisher/adverts-generator.php:161
|
1467 |
msgid "Generate and Configure Advert"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: dashboard/publisher/adverts-generator.php:162
|
1471 |
msgid "Always test your adverts before activating them."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1475 |
+
msgid "Caution:"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1479 |
msgid "While the Code Generator has been tested and works, code generation, as always, is a interpretation of user input. If you provide the correct bits and pieces, a working advert may be generated. If you leave fields empty or insert the wrong info you probably end up with a broken advert."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1483 |
+
msgid "NOTE:"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: dashboard/publisher/adverts-generator.php:165
|
1487 |
+
msgid "If you insert an Advert Hash, all other fields are ignored."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: dashboard/publisher/adverts-main.php:12
|
1508 |
msgid "No adverts created yet!"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: dashboard/publisher/groups-edit.php:41
|
1512 |
+
msgid "Your block is a 1x1 grid. Either add more rows or columns or set the group to Default mode."
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: dashboard/publisher/groups-edit.php:44
|
1516 |
+
msgid "You have enabled Post Injection but did not select any categories."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
#: dashboard/publisher/groups-edit.php:47
|
1520 |
+
msgid "You have enabled Page Injection but did not select any pages."
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: dashboard/publisher/groups-edit.php:57
|
1524 |
+
msgid "New Group"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: dashboard/publisher/groups-edit.php:59
|
1528 |
msgid "Edit Group"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: dashboard/publisher/groups-edit.php:77
|
1532 |
msgid "Default - Show one ad at a time"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: dashboard/publisher/groups-edit.php:78
|
1536 |
msgid "Dynamic Mode - Show a different ad every few seconds"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: dashboard/publisher/groups-edit.php:79
|
1540 |
msgid "Block Mode - Show a block of adverts"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: dashboard/publisher/groups-edit.php:83
|
1544 |
msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: dashboard/publisher/groups-edit.php:87
|
1548 |
msgid "Advert size"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: dashboard/publisher/groups-edit.php:89
|
1552 |
msgid "pixel(s) wide"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: dashboard/publisher/groups-edit.php:89
|
1556 |
msgid "pixel(s) high."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: dashboard/publisher/groups-edit.php:92
|
1560 |
msgid "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not recommended)."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: dashboard/publisher/groups-edit.php:98
|
1564 |
msgid "Dynamic and Block Mode"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: dashboard/publisher/groups-edit.php:102
|
1568 |
msgid "Block size"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: dashboard/publisher/groups-edit.php:108
|
1572 |
msgid "rows"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: dashboard/publisher/groups-edit.php:112
|
1576 |
msgid "columns"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: dashboard/publisher/groups-edit.php:115
|
1580 |
msgid "Block Mode"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: dashboard/publisher/groups-edit.php:115
|
1584 |
msgid "Larger blocks will degrade your sites performance! Default: 2/2."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: dashboard/publisher/groups-edit.php:119
|
1588 |
msgid "Automated refresh"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: dashboard/publisher/groups-edit.php:138
|
1592 |
msgid "seconds."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: dashboard/publisher/groups-edit.php:141
|
1596 |
+
#: dashboard/publisher/groups-edit.php:150
|
1597 |
msgid "Dynamic Mode"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: dashboard/publisher/groups-edit.php:141
|
1601 |
msgid "Load a new advert in this interval without reloading the page. Default: 6."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: dashboard/publisher/groups-edit.php:145
|
1605 |
msgid "Repeat impressions"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: dashboard/publisher/groups-edit.php:147
|
1609 |
msgid "Count impressions for every cycle of adverts?"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: dashboard/publisher/groups-edit.php:150
|
1613 |
msgid "Uncheck this option to only count impressions for the first cycle of adverts."
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: dashboard/publisher/groups-edit.php:155
|
1617 |
+
#: dashboard/publisher/groups-edit.php:228
|
1618 |
msgid "Get access to all features in AdRotate Pro."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: dashboard/publisher/groups-edit.php:155
|
1622 |
msgid "Upgrade today"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: dashboard/publisher/groups-edit.php:162
|
1626 |
+
#: dashboard/publisher/groups-edit.php:316
|
1627 |
msgid "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Adverts\" and enter ID"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: dashboard/publisher/groups-edit.php:174
|
1631 |
+
#: dashboard/publisher/groups-edit.php:328
|
1632 |
+
#: dashboard/publisher/groups-edit.php:422
|
1633 |
msgid "Save Group"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: dashboard/publisher/groups-edit.php:182
|
1637 |
msgid "Advert Margin"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: dashboard/publisher/groups-edit.php:184
|
1641 |
msgid "pixel(s)"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: dashboard/publisher/groups-edit.php:187
|
1645 |
msgid "A transparent area outside the advert in pixels. Default: 0."
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: dashboard/publisher/groups-edit.php:187
|
1649 |
msgid "Set to 0 to disable."
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: dashboard/publisher/groups-edit.php:187
|
1653 |
msgid "Margins are automatically disabled for blocks where required."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: dashboard/publisher/groups-edit.php:191
|
1657 |
msgid "Align the group"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: dashboard/publisher/groups-edit.php:194
|
1661 |
msgid "None (Default)"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: dashboard/publisher/groups-edit.php:195
|
1665 |
msgid "Left"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: dashboard/publisher/groups-edit.php:196
|
1669 |
msgid "Right"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: dashboard/publisher/groups-edit.php:197
|
1673 |
msgid "Center"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: dashboard/publisher/groups-edit.php:201
|
1677 |
msgid "Align the group in your post or page. Using 'center' may affect your margin setting. Not every theme supports this feature."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: dashboard/publisher/groups-edit.php:206
|
1681 |
msgid "Enable Geo Targeting for this group."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: dashboard/publisher/groups-edit.php:207
|
1685 |
msgid "Do not forget to tell the adverts for which areas they should show."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: dashboard/publisher/groups-edit.php:210
|
1689 |
msgid "Mobile Support"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: dashboard/publisher/groups-edit.php:211
|
1693 |
msgid "Enable mobile support for this group."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: dashboard/publisher/groups-edit.php:212
|
1697 |
msgid "Do not forget to put at least one mobile advert in this group."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: dashboard/publisher/groups-edit.php:215
|
1701 |
msgid "Fallback Group"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: dashboard/publisher/groups-edit.php:223
|
1705 |
msgid "Select another group to fall back on when all adverts are expired, not in the visitors geographic area or are otherwise unavailable."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: dashboard/publisher/groups-edit.php:239
|
1709 |
+
#: dashboard/publisher/groups-edit.php:276
|
1710 |
#: dashboard/settings/geotargeting.php:24
|
1711 |
msgid "Disabled"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: dashboard/publisher/groups-edit.php:240
|
1715 |
+
#: dashboard/publisher/groups-edit.php:277
|
1716 |
msgid "Widget (Pro only)"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: dashboard/publisher/groups-edit.php:241
|
1720 |
+
#: dashboard/publisher/groups-edit.php:278
|
1721 |
msgid "Before content"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: dashboard/publisher/groups-edit.php:242
|
1725 |
+
#: dashboard/publisher/groups-edit.php:279
|
1726 |
msgid "After content"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: dashboard/publisher/groups-edit.php:243
|
1730 |
+
#: dashboard/publisher/groups-edit.php:280
|
1731 |
msgid "Before and after content"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: dashboard/publisher/groups-edit.php:244
|
1735 |
+
#: dashboard/publisher/groups-edit.php:281
|
1736 |
msgid "Inside the content..."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: dashboard/publisher/groups-edit.php:250
|
1740 |
+
#: dashboard/publisher/groups-edit.php:287
|
1741 |
msgid "after the middle paragraph"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: dashboard/publisher/groups-edit.php:251
|
1745 |
+
#: dashboard/publisher/groups-edit.php:288
|
1746 |
msgid "after the 1st paragraph"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: dashboard/publisher/groups-edit.php:252
|
1750 |
+
#: dashboard/publisher/groups-edit.php:289
|
1751 |
msgid "after the 2nd paragraph"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: dashboard/publisher/groups-edit.php:253
|
1755 |
+
#: dashboard/publisher/groups-edit.php:290
|
1756 |
msgid "after the 3rd paragraph"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: dashboard/publisher/groups-edit.php:254
|
1760 |
+
#: dashboard/publisher/groups-edit.php:291
|
1761 |
msgid "after the 4th paragraph"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: dashboard/publisher/groups-edit.php:255
|
1765 |
+
#: dashboard/publisher/groups-edit.php:292
|
1766 |
msgid "after the 5th paragraph"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: dashboard/publisher/groups-edit.php:256
|
1770 |
+
#: dashboard/publisher/groups-edit.php:293
|
1771 |
msgid "after the 6th paragraph"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: dashboard/publisher/groups-edit.php:257
|
1775 |
+
#: dashboard/publisher/groups-edit.php:294
|
1776 |
msgid "after the 7th paragraph"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: dashboard/publisher/groups-edit.php:258
|
1780 |
+
#: dashboard/publisher/groups-edit.php:295
|
1781 |
msgid "after the 8th paragraph"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: dashboard/publisher/groups-edit.php:272
|
1785 |
msgid "Page Injection"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: dashboard/publisher/groups-edit.php:332
|
1789 |
msgid "Wrapper code"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: dashboard/publisher/groups-edit.php:333
|
1793 |
msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: dashboard/publisher/groups-edit.php:337
|
1797 |
msgid "Before advert"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: dashboard/publisher/groups-edit.php:340
|
1801 |
+
#: dashboard/publisher/groups-edit.php:348
|
1802 |
msgid "Example:"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: dashboard/publisher/groups-edit.php:341
|
1806 |
msgid "Options:"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: dashboard/publisher/groups-edit.php:345
|
1810 |
msgid "After advert"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: dashboard/publisher/groups-edit.php:354
|
1814 |
msgid "Select adverts"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: dashboard/publisher/groups-edit.php:361
|
1818 |
msgid "Visible until"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: dashboard/publisher/groups-edit.php:409
|
1822 |
msgid "No adverts created!"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: dashboard/publisher/groups-edit.php:416
|
1826 |
msgid "Configuration errors."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: dashboard/publisher/groups-edit.php:417
|
1830 |
#: dashboard/publisher/schedules-main.php:87
|
1831 |
msgid "Expires soon."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: dashboard/publisher/groups-edit.php:418
|
1835 |
#: dashboard/publisher/schedules-main.php:88
|
1836 |
msgid "Has expired."
|
1837 |
msgstr ""
|
1905 |
msgid "Make sure the banner images are not in use by adverts when you delete them!"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: dashboard/publisher/media.php:73
|
1909 |
#: dashboard/publisher/statistics-advert.php:109
|
1910 |
#: dashboard/publisher/statistics-group.php:113
|
1911 |
#: dashboard/publisher/statistics-main.php:83
|
1916 |
msgid "In AdRotate Pro you can schedule adverts for multiple periods of time. One schedule can be assigned to many adverts allowing you to manage multi advert campaigns easily. Schedules can be active on certain days of the week or on certain hours of the day."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: dashboard/publisher/schedules-main.php:13
|
1920 |
+
msgid "Get more scheduling options with"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
#: dashboard/publisher/schedules-main.php:36
|
1924 |
msgid "Max Shown"
|
1925 |
msgstr ""
|
2232 |
msgstr ""
|
2233 |
|
2234 |
#: dashboard/settings/geotargeting.php:32
|
2235 |
+
msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
#: dashboard/settings/geotargeting.php:33
|
2255 |
msgid "Suitable for small to medium sized websites."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: dashboard/settings/geotargeting.php:36
|
2259 |
+
#: dashboard/settings/geotargeting.php:40
|
2260 |
+
msgid "More info"
|
2261 |
+
msgstr ""
|
2262 |
+
|
2263 |
#: dashboard/settings/geotargeting.php:36
|
2264 |
msgid "10000 free lookups per month, requires account."
|
2265 |
msgstr ""
|
2782 |
msgid "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
|
2783 |
msgstr ""
|
2784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2785 |
#: dashboard/support.php:83
|
2786 |
msgid "Premium Support available in AdRotate Pro"
|
2787 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,61 +5,45 @@ Tags: adverts, ads, banners, advert manager, ad manager, banner manager, monetis
|
|
5 |
Requires at least: 4.6
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.4.1
|
8 |
-
Stable tag: 5.8.
|
9 |
License: GPLv3
|
10 |
|
11 |
-
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
16 |
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
Including Google's new Auto-Ads, Javascript adverts, HTML5, VAST and even old-school Flash adverts.
|
22 |
-
|
23 |
-
AdRotate looks and feels similar to the WordPress dashboard you already know, this means you're already familiar with AdRotate before you even start using it. Familiarize yourself with the many useful features and you'll be up and running in minutes.
|
24 |
-
|
25 |
-
<strong>Getting started</strong>
|
26 |
-
Get your ad campaigns online in minutes. Simply install the plugin, explore the dashboard pages and new options and start creating ads.
|
27 |
-
If you need a hand installing AdRotate or you just want someone to handle the initial setup. Take a look at these [services](https://ajdg.solutions/services/?pk_campaign=adrotatefree&pk_keyword=readme).
|
28 |
-
|
29 |
-
Getting started with AdRotate is not complex, but a little help or advise is never bad.
|
30 |
|
31 |
**Some of the AdRotate Features**
|
32 |
|
33 |
-
* Works with
|
34 |
-
*
|
35 |
-
*
|
36 |
-
* Track
|
37 |
-
*
|
38 |
-
*
|
39 |
-
*
|
40 |
-
* Dashboard notifications when
|
41 |
-
* Show
|
42 |
-
*
|
43 |
-
*
|
44 |
-
*
|
45 |
-
*
|
46 |
-
*
|
47 |
-
*
|
48 |
-
*
|
49 |
-
*
|
50 |
-
* Get email notifications when your adverts need you
|
51 |
-
* Couple adverts to users for personalized stats
|
52 |
-
* Preview banners when creating or editing them
|
53 |
-
* Advanced time schedules and restrictions you control
|
54 |
-
* AdRotate Geo, AJdG Solutions' exclusive Geo Targeting service
|
55 |
-
* Export statistics to CSV
|
56 |
|
57 |
AdRotate and AdRotate Professional share many features. But some features are available in AdRotate Professional only. Learn more about [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme) on my website.
|
58 |
|
59 |
== Installation ==
|
60 |
|
61 |
-
Installing the plugin is as easy as searching for "Arnan
|
62 |
-
Once activated, a new menu appears called "AdRotate" in the dashboard menu from which you
|
63 |
|
64 |
For more detailed instructions check out the [installation steps](https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/?pk_campaign=adrotatefree&pk_keyword=readme) on the AdRotate website.
|
65 |
|
@@ -67,6 +51,13 @@ For more detailed instructions check out the [installation steps](https://ajdg.s
|
|
67 |
|
68 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
= AdRotate 5.8.2 =
|
71 |
* Improved WordPress 5.4.1 compatibility
|
72 |
* [i18n] Updated french translation
|
@@ -74,21 +65,22 @@ For the full changelog check out the [development page](https://ajdg.solutions/s
|
|
74 |
= AdRotate 5.8.1 =
|
75 |
* [fix] Uninstall not working for some people
|
76 |
|
77 |
-
= AdRotate 5.8 =
|
78 |
-
* [change] Maintenance dashboard optimised and reworded
|
79 |
-
* [change] Removed old/unused debug code
|
80 |
-
* [change] Compacted Javascript files
|
81 |
-
* [new] Check if AdRotate Pro is installed
|
82 |
-
* [new] Check if faulty adrotate plugin folders exist
|
83 |
-
* [new] Skip uninstall procedure if AdRotate Pro is installed
|
84 |
-
* [i18n] Added French translation using pre-translation
|
85 |
-
* [i18n] Added Italian translation using pre-translation
|
86 |
-
* [i18n] Added Dutch translation using pre-translation
|
87 |
-
* [i18n] Added German translation using pre-translation
|
88 |
-
* [i18n] Updated Spanish translation using pre-translation
|
89 |
-
|
90 |
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
= AdRotate Professional 5.8.2 =
|
93 |
* Improved WordPress 5.4.1 compatibility
|
94 |
* [i18n] Updated french translation
|
@@ -96,87 +88,64 @@ Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category
|
|
96 |
= AdRotate Professional 5.8.1 =
|
97 |
* [fix] Uninstall not working for some people
|
98 |
|
99 |
-
= AdRotate Professional 5.8 =
|
100 |
-
* [change] No longer uses WordPress mechanism for update checks
|
101 |
-
* [change] Maintenance dashboard optimised and reworded
|
102 |
-
* [change] Removed old/unused debug code
|
103 |
-
* [change] Compacted Javascript files
|
104 |
-
* [new] Check if AdRotate is installed
|
105 |
-
* [new] Check if faulty adrotate plugin folders exist
|
106 |
-
* [new] Added separate State field
|
107 |
-
* [new] Option to require cities to be in states or provinces
|
108 |
-
* [new] Skip uninstall procedure if AdRotate is installed
|
109 |
-
* [new] Updated advertiser add/edit advert dashboard
|
110 |
-
* [fix] Warnings when trying to add advert as disabled advertiser
|
111 |
-
* [i18n] Updated Polish translation, Thanks Michal
|
112 |
-
* [i18n] Updated Dutch translation using pre-translation
|
113 |
-
* [i18n] Updated Spanish translation using pre-translation
|
114 |
-
* [i18n] Updated German translation using pre-translation
|
115 |
-
* [i18n] Added French translation using pre-translation
|
116 |
-
* [i18n] Added Italian translation using pre-translation
|
117 |
-
* [i18n] Removed Greek translation
|
118 |
-
* [i18n] Removed Bulgarian translation
|
119 |
-
* [i18n] Removed Russian translation
|
120 |
-
* [i18n] Removed Swedish translation
|
121 |
-
* [i18n] Removed Brazilian translation
|
122 |
-
|
123 |
-
All recent changes are available on the [AdRotate Changelog](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
124 |
-
|
125 |
== Upgrade Notice ==
|
126 |
|
127 |
-
Enjoy this latest update with the latest tweaks and
|
128 |
|
129 |
== Frequently Asked Questions ==
|
130 |
|
131 |
= How do I use AdRotate =
|
132 |
-
|
133 |
-
You can also post your questions on the [forum](https://ajdg.solutions/forums/?pk_campaign=adrotatefree&pk_keyword=readme).
|
134 |
|
135 |
-
=
|
136 |
-
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
= I need help with this plugin =
|
140 |
-
You can asks your questions on my [support forum](https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree).
|
141 |
|
142 |
= This is cool, do you have more plugins? =
|
143 |
-
Yep, check out my website [AJdG Solutions](https://ajdg.solutions/?pk_campaign=adrotatefree)
|
|
|
|
|
|
|
|
|
144 |
|
145 |
= Is AdRotate compatible with Yoast SEO or other SEO plugins? =
|
146 |
-
Yes, Yoast SEO, All
|
147 |
|
148 |
= Is Jetpack compatible with AdRotate? =
|
149 |
Yes.
|
150 |
|
151 |
= Does AdRotate work alongside caching plugins? =
|
152 |
AdRotate works best with Borlabs Cache and W3 Total Cache.
|
153 |
-
|
154 |
-
|
155 |
-
= Can I use my adverts from Google AdSense? =
|
156 |
-
Yes, usually you can use their code as-is.
|
157 |
-
Even Googles new Auto-Ads are supported.
|
158 |
-
|
159 |
-
= Does AdRotate support HTML5 adverts? =
|
160 |
-
Yes!
|
161 |
|
162 |
= Does AdRotate work with WooCommerce? =
|
163 |
Yes!
|
164 |
|
165 |
-
=
|
166 |
Yes!
|
167 |
|
168 |
-
= Does AdRotate offer click tracking? =
|
169 |
-
Yes, and it counts impressions and CTR as well.
|
170 |
-
|
171 |
-
= Can I place adverts on forms from Contact Form 7? =
|
172 |
-
All contact form plugins should work fine.
|
173 |
-
|
174 |
= Are emails sent by AdRotate sent through my installed SMTP plugin? =
|
175 |
-
Yes!
|
176 |
|
177 |
== Screenshots ==
|
178 |
|
179 |
-
1.
|
180 |
-
2. Managing adverts
|
181 |
-
3.
|
182 |
-
4.
|
|
|
|
|
|
|
|
|
|
5 |
Requires at least: 4.6
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.4.1
|
8 |
+
Stable tag: 5.8.3
|
9 |
License: GPLv3
|
10 |
|
11 |
+
AdRotate is the only advert manager you'll ever need for WordPress.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Are you looking for a easy to use way to manage all your adverts from the dashboard? AdRotate is easy to set up, easy to use and is built for your website.
|
16 |
|
17 |
+
AdRotate is intentionally designed to be simple to use yet offers a professional set of features for newcomers and experiences users alike.
|
18 |
|
19 |
+
With AdRotate you can easily create your own adverts and campaigns with HTML and/or Javascript code or use adverts from your favorite Ad Server such as Media.net, Blind Ferret, Yahoo! Adverts, DFP, Google AdSense, Google Ad Manager, Bing Ads, Amazon Affiliates, Chitika, Doubleclick, JuiceAds and many more similar ad servers and affiliate programs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
**Some of the AdRotate Features**
|
22 |
|
23 |
+
* Works with any advert.
|
24 |
+
* Place random, or selected, banners in pages or posts.
|
25 |
+
* Manage Adverts, Groups and Schedules.
|
26 |
+
* Track clicks, impressions and calculate the Cick-Through-Ratio (CTR).
|
27 |
+
* Disguise adverts from ad blockers so they're less likely to be blocked.
|
28 |
+
* Automagically disable Ads after they expire.
|
29 |
+
* Use shortcodes, widgets or PHP to put Adverts anywhere on your site.
|
30 |
+
* Dashboard and Email notifications when Adverts are about to expire or need attention.
|
31 |
+
* Show groups of Adverts in a grid, column or row.
|
32 |
+
* Advert statistics.
|
33 |
+
* Automatically delete short running adverts and stats after they expire.
|
34 |
+
* Advertisers can add/edit/manage their own Adverts.
|
35 |
+
* Geo Targeting for every country.
|
36 |
+
* Mobile Adverts.
|
37 |
+
* Portable Adverts.
|
38 |
+
* Preview Adverts when editing.
|
39 |
+
* Export statistics to CSV files.
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
AdRotate and AdRotate Professional share many features. But some features are available in AdRotate Professional only. Learn more about [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme) on my website.
|
42 |
|
43 |
== Installation ==
|
44 |
|
45 |
+
Installing the plugin is as easy as searching for "AdRotate Arnan" or simply "AdRotate" in your plugin dashboard and clicking "Install Now" from your dashboards plugin page. Just like every other plugin.
|
46 |
+
Once activated, a new menu appears called "AdRotate" in the dashboard menu from which you handle everything in AdRotate.
|
47 |
|
48 |
For more detailed instructions check out the [installation steps](https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/?pk_campaign=adrotatefree&pk_keyword=readme) on the AdRotate website.
|
49 |
|
51 |
|
52 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
53 |
|
54 |
+
= AdRotate 5.8.3 =
|
55 |
+
* [new] Configuration notifications when editing groups
|
56 |
+
* [new] Portable adverts
|
57 |
+
* [change] Dashboard tweaks
|
58 |
+
* [fix] 'Unexpected output' notice on activation of the plugin
|
59 |
+
* [i18n] Updated Dutch, French, German and Italian
|
60 |
+
|
61 |
= AdRotate 5.8.2 =
|
62 |
* Improved WordPress 5.4.1 compatibility
|
63 |
* [i18n] Updated french translation
|
65 |
= AdRotate 5.8.1 =
|
66 |
* [fix] Uninstall not working for some people
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
|
69 |
|
70 |
+
= AdRotate Professional 5.8.3 =
|
71 |
+
* [new] Configuration notifications when editing groups
|
72 |
+
* [new] Configuration notifications when editing schedules
|
73 |
+
* [new] Set schedule to auto-delete when creating an advert
|
74 |
+
* [new] Added ipstack status notifications
|
75 |
+
* [new] Portable adverts
|
76 |
+
* [fix] Better handling for errors when the update check fails
|
77 |
+
* [change] Better 'onboarding' for new users
|
78 |
+
* [change] Tweaks to notification banner for upgrading users
|
79 |
+
* [change] Tweaks to AdRotate Geo notifications
|
80 |
+
* [change] Dashboard tweaks
|
81 |
+
* [i18n] Updated Dutch, French, German, Italian and Spanish
|
82 |
+
* [api] Provide basic update info for inactive licenses
|
83 |
+
|
84 |
= AdRotate Professional 5.8.2 =
|
85 |
* Improved WordPress 5.4.1 compatibility
|
86 |
* [i18n] Updated french translation
|
88 |
= AdRotate Professional 5.8.1 =
|
89 |
* [fix] Uninstall not working for some people
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
== Upgrade Notice ==
|
92 |
|
93 |
+
Enjoy this latest update with the latest tweaks and improvements for AdRotate for WordPress!
|
94 |
|
95 |
== Frequently Asked Questions ==
|
96 |
|
97 |
= How do I use AdRotate =
|
98 |
+
Take a look at the [user guides](https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=readme).
|
99 |
+
You can also post your questions on the [forum](https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=readme).
|
100 |
|
101 |
+
= Does AdRotate offer click tracking? =
|
102 |
+
Yes, clicks and impressions.
|
103 |
+
|
104 |
+
= Can I use my adverts from Google AdSense? =
|
105 |
+
Yes, usually you can use their code as-is.
|
106 |
+
Googles new Auto-Ads are supported as well.
|
107 |
+
|
108 |
+
= Does AdRotate support HTML5 adverts? =
|
109 |
+
Yes!
|
110 |
|
111 |
= I need help with this plugin =
|
112 |
+
You can asks your questions on my [support forum](https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=readme).
|
113 |
|
114 |
= This is cool, do you have more plugins? =
|
115 |
+
Yep, check out my website [AJdG Solutions](https://ajdg.solutions/?pk_campaign=adrotatefree&pk_keyword=readme)
|
116 |
+
|
117 |
+
= Why do some dashboard notifications look so ugly =
|
118 |
+
If a dashboard notification misses it's layout or looks out of shape try clearing your browser cache.
|
119 |
+
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/?pk_campaign=adrotatefree&pk_keyword=readme).
|
120 |
|
121 |
= Is AdRotate compatible with Yoast SEO or other SEO plugins? =
|
122 |
+
Yes, Yoast SEO, All-in-One SEO pack and all other SEO plugins work fine with AdRotate.
|
123 |
|
124 |
= Is Jetpack compatible with AdRotate? =
|
125 |
Yes.
|
126 |
|
127 |
= Does AdRotate work alongside caching plugins? =
|
128 |
AdRotate works best with Borlabs Cache and W3 Total Cache.
|
129 |
+
Personally I prefer Borlabs Cache.
|
130 |
+
Other plugins such as WP Super Cache, WP Rocket or WP Fastest Cache may work, but are untested.
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
= Does AdRotate work with WooCommerce? =
|
133 |
Yes!
|
134 |
|
135 |
+
= Does AdRotate work with bbPress? =
|
136 |
Yes!
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
= Are emails sent by AdRotate sent through my installed SMTP plugin? =
|
139 |
+
Yes! Such plugins take over the wp_mail() function which is what AdRotate uses.
|
140 |
|
141 |
== Screenshots ==
|
142 |
|
143 |
+
1. The AdRotate menu
|
144 |
+
2. Managing adverts and general overview in AdRotate
|
145 |
+
3. Error checking for adverts in AdRotate
|
146 |
+
4. Easily create and edit your advert campaigns with AdRotate
|
147 |
+
5. Schedule you advert to the minute with AdRotate
|
148 |
+
6. Manage groups, which can act as locations or slots on your website via AdRotate
|
149 |
+
7. Create groups to easily place multiple adverts in one spot on your site with AdRotate
|
150 |
+
8. Customize your group and select adverts from the group settings with AdRotate
|
151 |
+
9. Set up groups to do exactly what you want with AdRotate
|