AdRotate Banner Manager - Version 3.13

Version Description

FREE = * [change] Use ABSPATH for files instead of own function * [change] Dashboard optimizations and improvements * [fix] Table layout for adverts, groups and schedules * [fix] Select box layout for Post Injection * [fix] Tracking error when using HTML5/JS/Flash ads * [fix] Rare error when using bulk actions * [i18n] New and changed translation strings

Download this release

Release Info

Developer adegans
Plugin Icon 128x128 AdRotate Banner Manager
Version 3.13
Comparing to
See all releases

Code changes from version 3.12.1 to 3.13

adrotate-functions.php CHANGED
@@ -367,11 +367,11 @@ function adrotate_select_categories($savedcats, $count = 2, $child_of = 0, $pare
367
  $indent = '';
368
  }
369
  $output .= '<tr>';
370
- $output .= '<td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_categories[]" value="'.$category->cat_ID.'"';
371
  if(in_array($category->cat_ID, $savedcats)) {
372
  $output .= ' checked';
373
  }
374
- $output .= '></td><td style="padding: 0px;">'.$indent.$category->name.' ('.$category->category_count.')</td>';
375
  $output .= '</tr>';
376
  $output .= adrotate_select_categories($savedcats, $count, $category->parent, $category->cat_ID);
377
  $child_of = $parent;
@@ -414,11 +414,11 @@ function adrotate_select_pages($savedpages, $count = 2, $child_of = 0, $parent =
414
  $indent = '';
415
  }
416
  $output .= '<tr>';
417
- $output .= '<td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_pages[]" value="'.$page->ID.'"';
418
  if(in_array($page->ID, $savedpages)) {
419
  $output .= ' checked';
420
  }
421
- $output .= '></td><td style="padding: 0px;">'.$indent.$page->post_title.'</td>';
422
  $output .= '</tr>';
423
  $output .= adrotate_select_pages($savedpages, $count, $page->post_parent, $page->ID);
424
  $child_of = $parent;
@@ -534,7 +534,7 @@ function adrotate_evaluate_ad($ad_id) {
534
  // Determine error states
535
  if(
536
  strlen($bannercode) < 1 // AdCode empty
537
- OR (!preg_match_all('/<a[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link present
538
  OR (preg_match("/%image%/i", $bannercode) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
539
  OR (!preg_match("/%image%/i", $bannercode) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
540
  OR (!preg_match("/%image%/i", $bannercode) AND $ad->responsive == 'Y') // Didn't use %image% but enabled Responsive
367
  $indent = '';
368
  }
369
  $output .= '<tr>';
370
+ $output .= '<th class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_categories[]" value="'.$category->cat_ID.'"';
371
  if(in_array($category->cat_ID, $savedcats)) {
372
  $output .= ' checked';
373
  }
374
+ $output .= '></th><td style="padding: 0px;">'.$indent.$category->name.' ('.$category->category_count.')</td>';
375
  $output .= '</tr>';
376
  $output .= adrotate_select_categories($savedcats, $count, $category->parent, $category->cat_ID);
377
  $child_of = $parent;
414
  $indent = '';
415
  }
416
  $output .= '<tr>';
417
+ $output .= '<th class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_pages[]" value="'.$page->ID.'"';
418
  if(in_array($page->ID, $savedpages)) {
419
  $output .= ' checked';
420
  }
421
+ $output .= '></th><td style="padding: 0px;">'.$indent.$page->post_title.'</td>';
422
  $output .= '</tr>';
423
  $output .= adrotate_select_pages($savedpages, $count, $page->post_parent, $page->ID);
424
  $child_of = $parent;
534
  // Determine error states
535
  if(
536
  strlen($bannercode) < 1 // AdCode empty
537
+ OR (!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link/tag present
538
  OR (preg_match("/%image%/i", $bannercode) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
539
  OR (!preg_match("/%image%/i", $bannercode) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
540
  OR (!preg_match("/%image%/i", $bannercode) AND $ad->responsive == 'Y') // Didn't use %image% but enabled Responsive
adrotate-manage-publisher.php CHANGED
@@ -355,7 +355,11 @@ function adrotate_request_action() {
355
  // Erroneous ads listing call
356
  $actions = $_POST['adrotate_error_action'];
357
  }
358
- list($action, $specific) = explode("-", $actions);
 
 
 
 
359
 
360
  if($banner_ids != '') {
361
  $return = 'adrotate-ads';
355
  // Erroneous ads listing call
356
  $actions = $_POST['adrotate_error_action'];
357
  }
358
+ if(preg_match("/-/", $actions)) {
359
+ list($action, $specific) = explode("-", $actions);
360
+ } else {
361
+ $action = $actions;
362
+ }
363
 
364
  if($banner_ids != '') {
365
  $return = 'adrotate-ads';
adrotate-output.php CHANGED
@@ -397,9 +397,9 @@ function adrotate_ad_output($id, $group = 0, $name, $bannercode, $tracker, $link
397
  }
398
 
399
  if($adrotate_config['stats'] == 1 AND $tracker == "Y") { // Internal tracker
400
- $banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
401
  preg_match_all('/<a[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
402
  if(isset($matches[0])) {
 
403
  foreach($matches[0] as $value) {
404
  if(preg_match('/<a[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
405
  $result = $regs[1]." gofollow";
@@ -413,7 +413,6 @@ function adrotate_ad_output($id, $group = 0, $name, $bannercode, $tracker, $link
413
  if($adrotate_debug['timers'] == true) {
414
  $banner_output = str_replace('<a ', '<a data-debug="1" ', $banner_output);
415
  }
416
- unset($matches);
417
  }
418
  }
419
 
@@ -735,7 +734,7 @@ function adrotate_notifications_dashboard() {
735
  if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
736
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
737
  echo ' <div class="adrotate_banner">';
738
- echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/cart/?add-to-cart=1126?pk_campaign=adrotatefree-upgradebanner&pk_kwd=upgrade_adrotatefree">'.__('Buy now', 'adrotate').'</a></div>';
739
  echo ' <div class="text">'.__("You've been using <strong>AdRotate</strong> for a while now. Why not upgrade to the <strong>PRO</strong> version", 'adrotate').'?<br /><span>'.__('Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!', 'adrotate' ).' '.__('Thank you for your purchase!', 'adrotate' ).'</span></div>';
740
  echo ' <a class="close_banner" href="admin.php?page=adrotate-pro&hide=1"><img title="Close" src="'.plugins_url('images/icon-close.png', __FILE__).'" alt=""/></a>';
741
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
@@ -748,7 +747,7 @@ function adrotate_notifications_dashboard() {
748
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
749
  echo ' <div class="adrotate_banner">';
750
  echo ' <div class="button_div"><a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a></div>';
751
- echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner&pk_kwd=get_help" target="_blank">get in touch</a>!</span></div>';
752
  echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><img title="Close" src="'.plugins_url('images/icon-close.png', __FILE__).'" alt=""/></a>';
753
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
754
  echo ' </div>';
@@ -816,18 +815,18 @@ function adrotate_help_info() {
816
  'title' => __('Useful Links'),
817
  'content' => '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>'.
818
  '<ul>'.
819
- '<li><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-helptab&pk_kwd=adrotate_page" target="_blank">'.__('AdRotate Page', 'adrotate').'</a>.</li>'.
820
- '<li><a href="https://ajdg.solutions/manuals/adrotate/getting-started-with-adrotate/?pk_campaign=adrotatefree-helptab&pk_kwd=gettingstarted" target="_blank">'.__('Getting Started With AdRotate', 'adrotate').'</a>.</li>'.
821
- '<li><a href="https://ajdg.solutions/manuals/adrotate/?pk_campaign=adrotatefree-helptab&pk_kwd=manuals" target="_blank">'.__('AdRotate manuals', 'adrotate').'</a>.</li>'.
822
- '<li><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-helptab&pk_kwd=forum" target="_blank">'.__('AdRotate Support Forum', 'adrotate').'</a>.</li>'.
823
  '</ul>'
824
  )
825
  );
826
  $screen->add_help_tab(array(
827
  'id' => 'adrotate_thanks',
828
  'title' => 'Thank You',
829
- 'content' => '<h4>Thank you for using AdRotate</h4><p>AdRotate is growing to be one of the most popular WordPress plugins for Advertising and is a household name for many companies around the world. AdRotate wouldn\'t be possible without your support and my life wouldn\'t be what it is today without your help.</p><p><em>- Arnan from AJdG Solutions</em></p>'.
830
- '<p><strong>Add me:</strong> <a href="http://twitter.com/ajdgsolutions/" target="_blank">Twitter</a>, <a href="https://www.facebook.com/AJdgSolutions" target="_blank">Facebook</a>. <strong>Business:</strong> <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-helptab&pk_kwd=ajdgsolutions" target="_blank">ajdg.solutions</a> <strong>Blog:</strong> <a href="http://meandmymac.net/?pk_campaign=adrotatefree-helptab&pk_kwd=meandmymac" target="_blank">meandmymac.net</a> and <strong>adventure:</strong> <a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-helptab&pk_kwd=floatingcoconut" target="_blank">floatingcoconut.net</a>.</p>'
831
  )
832
  );
833
  }
@@ -855,7 +854,7 @@ function adrotate_credits() {
855
  echo '<td><center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-credits&pk_kwd=adrotate_logo" title="AdRotate plugin for WordPress"><img src="'.plugins_url('/images/adrotate-logo-60x60.png', __FILE__).'" alt="adrotate-logo-60x60" width="60" height="60" /></a></center></td>';
856
  echo '<td>'.__("A lot of users only think to review AdRotate when something goes wrong while thousands of people use AdRotate satisfactory. Don't let this go unnoticed.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your honest", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('and','adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate" target="_blank">'.__('review','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
857
 
858
- echo '<td><center><a href="https://ajdg.solutions/?pk_campaign=adrotatefree-credits&pk_kwd=ajdg_logo" title="AJdG Solutions"><img src="'.plugins_url('/images/ajdg-logo-100x60.png', __FILE__).'" alt="ajdg-logo-100x60" width="100" height="60" /></a></center></td></td>';
859
  echo '</tr>';
860
  echo '</tbody>';
861
 
397
  }
398
 
399
  if($adrotate_config['stats'] == 1 AND $tracker == "Y") { // Internal tracker
 
400
  preg_match_all('/<a[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
401
  if(isset($matches[0])) {
402
+ $banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
403
  foreach($matches[0] as $value) {
404
  if(preg_match('/<a[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
405
  $result = $regs[1]." gofollow";
413
  if($adrotate_debug['timers'] == true) {
414
  $banner_output = str_replace('<a ', '<a data-debug="1" ', $banner_output);
415
  }
 
416
  }
417
  }
418
 
734
  if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
735
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
736
  echo ' <div class="adrotate_banner">';
737
+ echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?add-to-cart=1126?pk_campaign=adrotatefree-upgradebanner">'.__('Buy now', 'adrotate').'</a></div>';
738
  echo ' <div class="text">'.__("You've been using <strong>AdRotate</strong> for a while now. Why not upgrade to the <strong>PRO</strong> version", 'adrotate').'?<br /><span>'.__('Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!', 'adrotate' ).' '.__('Thank you for your purchase!', 'adrotate' ).'</span></div>';
739
  echo ' <a class="close_banner" href="admin.php?page=adrotate-pro&hide=1"><img title="Close" src="'.plugins_url('images/icon-close.png', __FILE__).'" alt=""/></a>';
740
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
747
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
748
  echo ' <div class="adrotate_banner">';
749
  echo ' <div class="button_div"><a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a></div>';
750
+ echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner" target="_blank">get in touch</a>!</span></div>';
751
  echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><img title="Close" src="'.plugins_url('images/icon-close.png', __FILE__).'" alt=""/></a>';
752
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
753
  echo ' </div>';
815
  'title' => __('Useful Links'),
816
  'content' => '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>'.
817
  '<ul>'.
818
+ '<li><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-helptab" target="_blank">'.__('AdRotate Page', 'adrotate').'</a>.</li>'.
819
+ '<li><a href="https://ajdg.solutions/manuals/adrotate-manuals/getting-started-with-adrotate/?pk_campaign=adrotatefree-helptab?pk_campaign=adrotatefree-helptab" target="_blank">'.__('Getting Started With AdRotate', 'adrotate').'</a>.</li>'.
820
+ '<li><a href="https://ajdg.solutions/manuals/adrotate-manuals/?pk_campaign=adrotatefree-helptab" target="_blank">'.__('AdRotate manuals', 'adrotate').'</a>.</li>'.
821
+ '<li><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-helptab" target="_blank">'.__('AdRotate Support Forum', 'adrotate').'</a>.</li>'.
822
  '</ul>'
823
  )
824
  );
825
  $screen->add_help_tab(array(
826
  'id' => 'adrotate_thanks',
827
  'title' => 'Thank You',
828
+ 'content' => '<h4>Thank you for using AdRotate</h4><p>AdRotate is growing to be one of the most popular WordPress plugins for Advertising and is a household name for many companies around the world. AdRotate wouldn\'t be possible without your support and my life wouldn\'t be what it is today without your help.</p><p><em>- Arnan</em></p>'.
829
+ '<p><strong>Add me:</strong> <a href="http://twitter.com/arnandegans/" target="_blank">Twitter</a>, <a href="https://www.facebook.com/adegans" target="_blank">Facebook</a>. <strong>Business:</strong> <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-helptab&pk_kwd=ajdgsolutions" target="_blank">ajdg.solutions</a> <strong>Blog:</strong> <a href="http://meandmymac.net/?pk_campaign=adrotatefree-helptab&pk_kwd=meandmymac" target="_blank">meandmymac.net</a> and <strong>adventure:</strong> <a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-helptab&pk_kwd=floatingcoconut" target="_blank">floatingcoconut.net</a>.</p>'
830
  )
831
  );
832
  }
854
  echo '<td><center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-credits&pk_kwd=adrotate_logo" title="AdRotate plugin for WordPress"><img src="'.plugins_url('/images/adrotate-logo-60x60.png', __FILE__).'" alt="adrotate-logo-60x60" width="60" height="60" /></a></center></td>';
855
  echo '<td>'.__("A lot of users only think to review AdRotate when something goes wrong while thousands of people use AdRotate satisfactory. Don't let this go unnoticed.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your honest", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('and','adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate" target="_blank">'.__('review','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
856
 
857
+ echo '<td><center><a href="https://ajdg.solutions/?pk_campaign=adrotatefree-credits" title="Arnan de Gans"><img src="'.plugins_url('/images/arnan-jungle.jpg', __FILE__).'" alt="Arnan de Gans" width="60" height="60" align="left" class="adrotate-photo" /></a><a href="http://www.floatingcoconut.net?pk_campaign=adrotatefree-credits" target="_blank">Arnan de Gans</a><br />from<br /><a href="https://ajdg.solutions?pk_campaign=adrotatefree-credits" target="_blank">AJdG Solutions</a></center></td></td>';
858
  echo '</tr>';
859
  echo '</tbody>';
860
 
adrotate-setup.php CHANGED
@@ -277,6 +277,7 @@ function adrotate_check_config() {
277
  if(!isset($config['geo_pass'])) $config['geo_pass'] = '';
278
  if(!isset($config['geo_cookie_life'])) $config['geo_cookie_life'] = 86400;
279
  if(!isset($config['enable_geo_advertisers'])) $config['enable_geo_advertisers'] = 0;
 
280
  if(!isset($config['banner_folder'])) $config['banner_folder'] = "wp-content/banners/";
281
  if(!isset($config['adminbar']) OR ($config['adminbar'] != 'Y' AND $config['adminbar'] != 'N')) $config['adminbar'] = 'Y';
282
  if(!isset($config['impression_timer']) OR $config['impression_timer'] < 10 OR $config['impression_timer'] > 3600) $config['impression_timer'] = 60;
@@ -285,6 +286,7 @@ function adrotate_check_config() {
285
  if(!isset($config['widgetalign']) OR ($config['widgetalign'] != 'Y' AND $config['widgetalign'] != 'N')) $config['widgetalign'] = 'N';
286
  if(!isset($config['widgetpadding']) OR ($config['widgetpadding'] != 'Y' AND $config['widgetpadding'] != 'N')) $config['widgetpadding'] = 'N';
287
  if(!isset($config['w3caching']) OR ($config['w3caching'] != 'Y' AND $config['w3caching'] != 'N')) $config['w3caching'] = 'N';
 
288
  if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
289
  if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
290
  if(!isset($config['adblock']) OR ($config['adblock'] != 'Y' AND $config['adblock'] != 'N')) $config['adblock'] = 'N';
@@ -341,7 +343,7 @@ function adrotate_dummy_data() {
341
 
342
  if(is_null($no_ads) AND is_null($no_schedules) AND is_null($no_linkmeta)) {
343
  // Demo ad 1
344
- $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
345
  $ad_id = $wpdb->insert_id;
346
  $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
347
  $schedule_id = $wpdb->insert_id;
@@ -349,7 +351,7 @@ function adrotate_dummy_data() {
349
  unset($ad_id, $schedule_id);
350
 
351
  // Demo ad 2
352
- $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
353
  $ad_id = $wpdb->insert_id;
354
  $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
355
  $schedule_id = $wpdb->insert_id;
@@ -401,9 +403,10 @@ function adrotate_database_install() {
401
  `imagetype` varchar(10) NOT NULL,
402
  `image` varchar(255) NOT NULL,
403
  `link` longtext NOT NULL,
404
- `tracker` varchar(5) NOT NULL default 'N',
405
- `mobile` varchar(5) NOT NULL default 'N',
406
- `responsive` varchar(5) NOT NULL default 'N',
 
407
  `type` varchar(10) NOT NULL default '0',
408
  `weight` int(3) NOT NULL default '6',
409
  `sortorder` int(5) NOT NULL default '0',
@@ -748,6 +751,15 @@ function adrotate_database_upgrade() {
748
  adrotate_add_column("{$wpdb->prefix}adrotate", 'mobile', 'varchar(5) NOT NULL default \'N\' AFTER `tracker`');
749
  adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'mobile', 'tinyint(1) NOT NULL default \'0\' AFTER `page_par`');
750
  }
 
 
 
 
 
 
 
 
 
751
 
752
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
753
  }
277
  if(!isset($config['geo_pass'])) $config['geo_pass'] = '';
278
  if(!isset($config['geo_cookie_life'])) $config['geo_cookie_life'] = 86400;
279
  if(!isset($config['enable_geo_advertisers'])) $config['enable_geo_advertisers'] = 0;
280
+ if(!isset($config['adblock_disguise'])) $config['adblock_disguise'] = '';
281
  if(!isset($config['banner_folder'])) $config['banner_folder'] = "wp-content/banners/";
282
  if(!isset($config['adminbar']) OR ($config['adminbar'] != 'Y' AND $config['adminbar'] != 'N')) $config['adminbar'] = 'Y';
283
  if(!isset($config['impression_timer']) OR $config['impression_timer'] < 10 OR $config['impression_timer'] > 3600) $config['impression_timer'] = 60;
286
  if(!isset($config['widgetalign']) OR ($config['widgetalign'] != 'Y' AND $config['widgetalign'] != 'N')) $config['widgetalign'] = 'N';
287
  if(!isset($config['widgetpadding']) OR ($config['widgetpadding'] != 'Y' AND $config['widgetpadding'] != 'N')) $config['widgetpadding'] = 'N';
288
  if(!isset($config['w3caching']) OR ($config['w3caching'] != 'Y' AND $config['w3caching'] != 'N')) $config['w3caching'] = 'N';
289
+ if(!isset($config['textwidget_shortcodes']) OR ($config['textwidget_shortcodes'] != 'Y' AND $config['textwidget_shortcodes'] != 'N')) $config['textwidget_shortcodes'] = 'N';
290
  if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
291
  if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
292
  if(!isset($config['adblock']) OR ($config['adblock'] != 'Y' AND $config['adblock'] != 'N')) $config['adblock'] = 'N';
343
 
344
  if(is_null($no_ads) AND is_null($no_schedules) AND is_null($no_linkmeta)) {
345
  // Demo ad 1
346
+ $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => 'N', 'tablet' => 'N', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
347
  $ad_id = $wpdb->insert_id;
348
  $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
349
  $schedule_id = $wpdb->insert_id;
351
  unset($ad_id, $schedule_id);
352
 
353
  // Demo ad 2
354
+ $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => 'N', 'tablet' => 'N', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
355
  $ad_id = $wpdb->insert_id;
356
  $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
357
  $schedule_id = $wpdb->insert_id;
403
  `imagetype` varchar(10) NOT NULL,
404
  `image` varchar(255) NOT NULL,
405
  `link` longtext NOT NULL,
406
+ `tracker` varchar(2) NOT NULL default 'N',
407
+ `mobile` varchar(2) NOT NULL default 'N',
408
+ `tablet` varchar(2) NOT NULL default 'N',
409
+ `responsive` varchar(2) NOT NULL default 'N',
410
  `type` varchar(10) NOT NULL default '0',
411
  `weight` int(3) NOT NULL default '6',
412
  `sortorder` int(5) NOT NULL default '0',
751
  adrotate_add_column("{$wpdb->prefix}adrotate", 'mobile', 'varchar(5) NOT NULL default \'N\' AFTER `tracker`');
752
  adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'mobile', 'tinyint(1) NOT NULL default \'0\' AFTER `page_par`');
753
  }
754
+
755
+ // Database: 52
756
+ // AdRotate: 3.13
757
+ if($adrotate_db_version['current'] < 52) {
758
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'tablet', 'varchar(2) NOT NULL default \'N\' AFTER `mobile`');
759
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate` CHANGE `tracker` `tracker` varchar(2) NOT NULL default 'N';");
760
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate` CHANGE `mobile` `mobile` varchar(2) NOT NULL default 'N';");
761
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate` CHANGE `responsive` `responsive` varchar(2) NOT NULL default 'N';");
762
+ }
763
 
764
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
765
  }
adrotate.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=
5
  Author: Arnan de Gans of AJdG Solutions
6
  Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage
7
  Description: Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple.
8
- Version: 3.12.1
9
  License: GPLv3
10
  */
11
 
@@ -20,9 +20,9 @@ License: GPLv3
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
- define("ADROTATE_DISPLAY", '3.12.1');
24
  define("ADROTATE_VERSION", 380);
25
- define("ADROTATE_DB_VERSION", 51);
26
  /*-----------------------------------------------------------*/
27
 
28
  /*--- Load Files --------------------------------------------*/
@@ -105,8 +105,8 @@ function adrotate_dashboard() {
105
  $adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
106
  $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
107
  $adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
108
- $adrotate_schedules = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
109
- $adrotate_media = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
110
  $adrotate_settings = add_submenu_page('adrotate', 'AdRotate > '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
111
 
112
  // Add help tabs
@@ -420,13 +420,13 @@ function adrotate_manage_schedules() {
420
  <table class="widefat" style="margin-top: .5em">
421
  <thead>
422
  <tr>
423
- <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" disabled/></th>
424
  <th width="4%"><center><?php _e('ID', 'adrotate'); ?></center></th>
425
- <th width="17%"><?php _e('Start', 'adrotate'); ?> / <?php _e('End', 'adrotate'); ?></th>
426
  <th width="4%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
427
  <th>&nbsp;</th>
428
- <th width="15%"><center><?php _e('Max Clicks', 'adrotate'); ?></center></th>
429
  <th width="15%"><center><?php _e('Max Impressions', 'adrotate'); ?></center></th>
 
430
  </tr>
431
  </thead>
432
  <tbody>
@@ -436,8 +436,8 @@ function adrotate_manage_schedules() {
436
  $class = '';
437
  foreach($schedules as $schedule) {
438
  $schedulesmeta = $wpdb->get_results("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = 0 AND `user` = 0 AND `schedule` = ".$schedule->id.";");
439
- if($schedule->maxclicks == 0) $schedule->maxclicks = 'unlimited';
440
- if($schedule->maximpressions == 0) $schedule->maximpressions = 'unlimited';
441
 
442
  ($class != 'alternate') ? $class = 'alternate' : $class = '';
443
  if($schedule->stoptime < $in2days) $class = 'row_urgent';
@@ -449,8 +449,8 @@ function adrotate_manage_schedules() {
449
  <td><?php echo date_i18n("F d, Y H:i", $schedule->starttime);?><br /><span style="color: <?php echo adrotate_prepare_color($schedule->stoptime);?>;"><?php echo date_i18n("F d, Y H:i", $schedule->stoptime);?></span></td>
450
  <td><center><?php echo count($schedulesmeta); ?></center></td>
451
  <td><?php echo stripslashes(html_entity_decode($schedule->name)); ?></td>
452
- <td><center><?php echo $schedule->maxclicks; ?></center></td>
453
  <td><center><?php echo $schedule->maximpressions; ?></center></td>
 
454
  </tr>
455
  <?php } ?>
456
  <?php } else { ?>
5
  Author: Arnan de Gans of AJdG Solutions
6
  Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage
7
  Description: Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple.
8
+ Version: 3.13
9
  License: GPLv3
10
  */
11
 
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
+ define("ADROTATE_DISPLAY", '3.13');
24
  define("ADROTATE_VERSION", 380);
25
+ define("ADROTATE_DB_VERSION", 52);
26
  /*-----------------------------------------------------------*/
27
 
28
  /*--- Load Files --------------------------------------------*/
105
  $adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
106
  $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
107
  $adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
108
+ $adrotate_schedules = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
109
+ $adrotate_media = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
110
  $adrotate_settings = add_submenu_page('adrotate', 'AdRotate > '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
111
 
112
  // Add help tabs
420
  <table class="widefat" style="margin-top: .5em">
421
  <thead>
422
  <tr>
423
+ <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" disabled/></td>
424
  <th width="4%"><center><?php _e('ID', 'adrotate'); ?></center></th>
425
+ <th width="20%"><?php _e('Start', 'adrotate'); ?> / <?php _e('End', 'adrotate'); ?></th>
426
  <th width="4%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
427
  <th>&nbsp;</th>
 
428
  <th width="15%"><center><?php _e('Max Impressions', 'adrotate'); ?></center></th>
429
+ <th width="10%"><center><?php _e('Max Clicks', 'adrotate'); ?></center></th>
430
  </tr>
431
  </thead>
432
  <tbody>
436
  $class = '';
437
  foreach($schedules as $schedule) {
438
  $schedulesmeta = $wpdb->get_results("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = 0 AND `user` = 0 AND `schedule` = ".$schedule->id.";");
439
+ if($schedule->maxclicks == 0) $schedule->maxclicks = '&infin;';
440
+ if($schedule->maximpressions == 0) $schedule->maximpressions = '&infin;';
441
 
442
  ($class != 'alternate') ? $class = 'alternate' : $class = '';
443
  if($schedule->stoptime < $in2days) $class = 'row_urgent';
449
  <td><?php echo date_i18n("F d, Y H:i", $schedule->starttime);?><br /><span style="color: <?php echo adrotate_prepare_color($schedule->stoptime);?>;"><?php echo date_i18n("F d, Y H:i", $schedule->stoptime);?></span></td>
450
  <td><center><?php echo count($schedulesmeta); ?></center></td>
451
  <td><?php echo stripslashes(html_entity_decode($schedule->name)); ?></td>
 
452
  <td><center><?php echo $schedule->maximpressions; ?></center></td>
453
+ <td><center><?php echo $schedule->maxclicks; ?></center></td>
454
  </tr>
455
  <?php } ?>
456
  <?php } else { ?>
dashboard/adrotatepro.php CHANGED
@@ -41,10 +41,10 @@
41
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
42
  <div class="postbox-adrotate">
43
  <div class="inside">
44
- <p><a href="https://ajdg.solutions/?pk_campaign=adrotatefree-propage&pk_kwd=ajdg_logo" title="AJdG Solutions"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/ajdg-logo-100x60.png" alt="ajdg-logo-100x60" width="100" height="60" align="left" style="padding: 0 10px 10px 0;" /></a>
45
- <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-propage&pk_kwd=ajdg_link" title="AJdG Solutions">AJdG Solutions</a> - <?php _e('Premium plugins, consultancy and anything WordPress! Visit my website for details!', 'adrotate'); ?> <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-propage&pk_kwd=ajdg_link" title="AJdG Solutions"><?php _e('Find out more', 'adrotate'); ?></a>!</p>
46
 
47
- <p><center><a href="https://twitter.com/AJdGSolutions" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @AJdGSolutions</a>
48
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
49
  </div>
50
  </div>
41
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
42
  <div class="postbox-adrotate">
43
  <div class="inside">
44
+ <p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/arnan-jungle.jpg" alt="Arnan de Gans" width="100" height="100" align="left" class="adrotate-photo" style="margin: 0 10px 0 0;" />
45
+ <a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('Premium plugins for WordPress and WooCommerce. Providing business advise for starters or people looking for a new direction!', 'adrotate'); ?></p>
46
 
47
+ <p><center><a href="https://twitter.com/arnandegans" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @arnandegans</a>
48
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
49
  </div>
50
  </div>
dashboard/info.php CHANGED
@@ -8,52 +8,11 @@
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
- ?>
12
- <style type="text/css" media="screen">
13
- .postbox-adrotate {
14
- margin-bottom: 20px;
15
- padding: 0;
16
- position: relative;
17
- min-width: 255px;
18
- border: #dfdfdf 1px solid;
19
- background-color: #fff;
20
- -moz-box-shadow: inset 0 1px 0 #fff;
21
- -webkit-box-shadow: inset 0 1px 0 #fff;
22
- box-shadow: inset 0 1px 0 #fff;
23
- line-height: 1.5;
24
- }
25
-
26
- .postbox-adrotate h3 {
27
- margin: 0;
28
- padding: 7px 10px 7px 10px;
29
- box-shadow: #ddd 0px 1px 0px 0px;
30
- -moz-box-shadow: inset 0 1px 0 #ddd;
31
- -webkit-box-shadow: #ddd 0px 1px 0px 0px;
32
- display: block;
33
- line-height: 15px;
34
- }
35
-
36
- .postbox-adrotate .inside {
37
- margin: 10px 0px 0px 10px;
38
- padding: 0px 10px 10px 0px;
39
- min-height: 40px;
40
- position: relative;
41
- display: block;
42
- line-height: 16px;
43
- }
44
 
45
- .inside {
46
- padding: 6px 10px 12px;
47
- clear: both;
48
- }
49
- </style>
50
-
51
- <?php
52
  $banners = $groups = 0;
53
- $banners = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate` WHERE `type` != 'empty' AND `type` != 'a_empty';");
54
- $groups = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '';");
55
  $data = get_option("adrotate_advert_status");
56
- $adrotate_config = get_option('adrotate_config');
57
  ?>
58
 
59
  <div id="dashboard-widgets-wrap">
@@ -160,10 +119,10 @@ $adrotate_config = get_option('adrotate_config');
160
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
161
  <div class="postbox-adrotate">
162
  <div class="inside">
163
- <p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/ajdg-logo-100x60.png" alt="ajdg-logo-100x60" width="100" height="60" align="left" style="padding: 0 10px 10px 0;" />
164
- <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage&pk_kwd=ajdg_link" title="AJdG Solutions">AJdG Solutions</a> - <?php _e('Premium plugins, consultancy and anything WordPress! Visit my website for details!', 'adrotate'); ?> <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage&pk_kwd=ajdg_link" title="AJdG Solutions"><?php _e('Find out more', 'adrotate'); ?></a>!</p>
165
 
166
- <p><center><a href="https://twitter.com/AJdGSolutions" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true"><?php _e('Follow', 'adrotate'); ?> @AJdGSolutions</a>
167
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
168
  </div>
169
  </div>
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
 
 
 
 
 
 
 
12
  $banners = $groups = 0;
13
+ $banners = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `type` != 'empty' AND `type` != 'a_empty';");
14
+ $groups = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '';");
15
  $data = get_option("adrotate_advert_status");
 
16
  ?>
17
 
18
  <div id="dashboard-widgets-wrap">
119
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
120
  <div class="postbox-adrotate">
121
  <div class="inside">
122
+ <p><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/arnan-jungle.jpg" alt="Arnan de Gans" width="100" height="100" align="left" class="adrotate-photo" style="margin: 0 10px 0 0;" />
123
+ <a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('Premium plugins for WordPress and WooCommerce. Providing business advise for starters or people looking for a new direction!', 'adrotate'); ?></p>
124
 
125
+ <p><center><a href="https://twitter.com/arnandegans" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @arnandegans</a>
126
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
127
  </div>
128
  </div>
dashboard/publisher/adverts-disabled.php CHANGED
@@ -30,12 +30,12 @@
30
 
31
  <table class="widefat" style="margin-top: .5em">
32
  <thead>
33
- <tr>
34
- <th scope="col" class="manage-column column-cb check-column" style=""><input type="checkbox" /></th>
35
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
36
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
37
  <th><?php _e('Title', 'adrotate'); ?></th>
38
- <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
39
  <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
40
  <th width="5%"><center><?php _e('CTR', 'adrotate'); ?></center></th>
41
  </tr>
30
 
31
  <table class="widefat" style="margin-top: .5em">
32
  <thead>
33
+ <tr>
34
+ <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
35
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
36
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
37
  <th><?php _e('Title', 'adrotate'); ?></th>
38
+ <th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
39
  <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
40
  <th width="5%"><center><?php _e('CTR', 'adrotate'); ?></center></th>
41
  </tr>
dashboard/publisher/adverts-edit.php CHANGED
@@ -12,7 +12,7 @@
12
  if(!$ad_edit_id) {
13
  $edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' ORDER BY `id` DESC LIMIT 1;");
14
  if($edit_id == 0) {
15
- $wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => 'dropdown', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => 'N', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
16
  $edit_id = $wpdb->insert_id;
17
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0));
18
  $schedule_id = $wpdb->insert_id;
@@ -60,8 +60,8 @@ if($ad_edit_id) {
60
  if(strlen($edit_banner->image) > 0 AND !preg_match("/full/", $edit_banner->image) AND $edit_banner->responsive == 'Y')
61
  echo '<div class="error"><p>'. __('Responsive is enabled but your banner image has the wrong name.', 'adrotate').'</p></div>';
62
 
63
- if(!preg_match_all('/<a[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
64
- echo '<div class="error"><p>'. __("Clicktracking is enabled but no valid link was found in the adcode!", 'adrotate').'</p></div>';
65
 
66
  // Ad Notices
67
  $adstate = adrotate_evaluate_ad($edit_banner->id);
@@ -122,7 +122,7 @@ if($edit_banner->imagetype == "field") {
122
  <td>
123
  <label for="adrotate_bannercode"><textarea tabindex="2" id="adrotate_bannercode" name="adrotate_bannercode" cols="65" rows="10"><?php echo stripslashes($edit_banner->bannercode); ?></textarea></label>
124
  </td>
125
- <td width="40%">
126
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
127
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.adrotateforwordpress.com"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
128
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.adrotateforwordpress.com"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
@@ -135,6 +135,16 @@ if($edit_banner->imagetype == "field") {
135
  <p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
136
  </td>
137
  </tr>
 
 
 
 
 
 
 
 
 
 
138
  <tr>
139
  <th valign="top"><?php _e('Banner asset', 'adrotate'); ?></th>
140
  <td colspan="2">
@@ -156,7 +166,7 @@ if($edit_banner->imagetype == "field") {
156
  <th width="15%" valign="top"><?php _e('Statistics', 'adrotate'); ?></th>
157
  <td colspan="2">
158
  <label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click and impression tracking for this advert.', 'adrotate'); ?> <br />
159
- <em><?php _e('Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always supported.', 'adrotate'); ?></em>
160
  </label>
161
  </td>
162
  </tr>
@@ -180,21 +190,6 @@ if($edit_banner->imagetype == "field") {
180
  <input tabindex="8" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
181
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
182
  </p>
183
-
184
- <?php if($edit_banner->type != 'empty') { ?>
185
- <h3><?php _e('Preview', 'adrotate'); ?></h3>
186
- <table class="widefat" style="margin-top: .5em">
187
- <tbody>
188
- <tr>
189
- <td>
190
- <div><?php echo adrotate_preview($edit_banner->id); ?></div>
191
- <br /><em><?php _e('Note: While this preview is an accurate one, it might look different then it does on the website.', 'adrotate'); ?>
192
- <br /><?php _e('This is because of CSS differences. Your themes CSS file is not active here!', 'adrotate'); ?></em>
193
- </td>
194
- </tr>
195
- </tbody>
196
- </table>
197
- <?php } ?>
198
 
199
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
200
  <table class="widefat" style="margin-top: .5em">
@@ -309,19 +304,7 @@ if($edit_banner->imagetype == "field") {
309
  <em><strong><?php _e('Example:', 'adrotate'); ?></strong> <?php _e('image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert for different viewports.', 'adrotate'); ?></em></label>
310
  </td>
311
  </tr>
312
- <tr>
313
- <th valign="top"><?php _e('Weight', 'adrotate'); ?><br /><em><?php _e('Available in AdRotate Pro', 'adrotate'); ?></em></th>
314
- <td colspan="3">
315
- <label for="adrotate_weight">
316
- &nbsp;<input type="radio" name="adrotate_weight" value="2" disabled />&nbsp;&nbsp;&nbsp;2, <?php _e('Barely visible', 'adrotate'); ?><br />
317
- &nbsp;<input type="radio" name="adrotate_weight" value="4" disabled />&nbsp;&nbsp;&nbsp;4, <?php _e('Less than average', 'adrotate'); ?><br />
318
- &nbsp;<input type="radio" name="adrotate_weight" value="6" disabled checked />&nbsp;&nbsp;&nbsp;6, <?php _e('Normal coverage', 'adrotate'); ?><br />
319
- &nbsp;<input type="radio" name="adrotate_weight" value="8" disabled />&nbsp;&nbsp;&nbsp;8, <?php _e('More than average', 'adrotate'); ?><br />
320
- &nbsp;<input type="radio" name="adrotate_weight" value="10" disabled />&nbsp;&nbsp;&nbsp;10, <?php _e('Best visibility', 'adrotate'); ?>
321
- </label>
322
- </td>
323
- </tr>
324
- <tr>
325
  <th><?php _e('Sortorder', 'adrotate'); ?></th>
326
  <td colspan="3">
327
  <label for="adrotate_sortorder"><input tabindex="23" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_banner->sortorder;?>" /> <em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to ad id.', 'adrotate'); ?></em></label>
@@ -329,7 +312,7 @@ if($edit_banner->imagetype == "field") {
329
  </tr>
330
  </tbody>
331
  </table>
332
- <center><?php _e('With AdRotate Pro you can set the weight to give adverts more or less exposure.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>!</center>
333
 
334
  <h3><?php _e('Geo Targeting in AdRotate Pro', 'adrotate'); ?></h3>
335
  <p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?></em></p>
@@ -401,9 +384,9 @@ if($edit_banner->imagetype == "field") {
401
  <table class="widefat" style="margin-top: .5em">
402
  <thead>
403
  <tr>
404
- <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></th>
405
  <th><?php _e('ID - Name', 'adrotate'); ?></th>
406
- <th><center><?php _e('Ads in group', 'adrotate'); ?></center></th>
407
  </tr>
408
  </thead>
409
 
@@ -423,7 +406,7 @@ if($edit_banner->imagetype == "field") {
423
  <tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
424
  <th class="check-column" width="2%"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
425
  <td><?php echo $group->id; ?> - <strong><?php echo $group->name; ?></strong><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
426
- <td width="15%"><center><?php echo $ads_in_group; ?> <?php _e('Ads', 'adrotate'); ?></center></td>
427
  </tr>
428
  <?php
429
  unset($modus);
12
  if(!$ad_edit_id) {
13
  $edit_id = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' ORDER BY `id` DESC LIMIT 1;");
14
  if($edit_id == 0) {
15
+ $wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => 'dropdown', 'image' => '', 'link' => '', 'tracker' => 'N', 'mobile' => 'N', 'tablet' => 'N', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
16
  $edit_id = $wpdb->insert_id;
17
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0));
18
  $schedule_id = $wpdb->insert_id;
60
  if(strlen($edit_banner->image) > 0 AND !preg_match("/full/", $edit_banner->image) AND $edit_banner->responsive == 'Y')
61
  echo '<div class="error"><p>'. __('Responsive is enabled but your banner image has the wrong name.', 'adrotate').'</p></div>';
62
 
63
+ if(!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
64
+ echo '<div class="error"><p>'. __("Tracking is enabled but no valid link/tag was found in the adcode!", 'adrotate').'</p></div>';
65
 
66
  // Ad Notices
67
  $adstate = adrotate_evaluate_ad($edit_banner->id);
122
  <td>
123
  <label for="adrotate_bannercode"><textarea tabindex="2" id="adrotate_bannercode" name="adrotate_bannercode" cols="65" rows="10"><?php echo stripslashes($edit_banner->bannercode); ?></textarea></label>
124
  </td>
125
+ <td width="30%">
126
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
127
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.adrotateforwordpress.com"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
128
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.adrotateforwordpress.com"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
135
  <p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
136
  </td>
137
  </tr>
138
+ <?php if($edit_banner->type != 'empty') { ?>
139
+ <tr>
140
+ <th valign="top"><?php _e('Preview', 'adrotate'); ?></th>
141
+ <td colspan="2">
142
+ <div><?php echo adrotate_preview($edit_banner->id); ?></div>
143
+ <br /><em><?php _e('Note: While this preview is an accurate one, it might look different then it does on the website.', 'adrotate'); ?>
144
+ <br /><?php _e('This is because of CSS differences. Your themes CSS file is not active here!', 'adrotate'); ?></em>
145
+ </td>
146
+ </tr>
147
+ <?php } ?>
148
  <tr>
149
  <th valign="top"><?php _e('Banner asset', 'adrotate'); ?></th>
150
  <td colspan="2">
166
  <th width="15%" valign="top"><?php _e('Statistics', 'adrotate'); ?></th>
167
  <td colspan="2">
168
  <label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click and impression tracking for this advert.', 'adrotate'); ?> <br />
169
+ <em><?php _e('Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not always supported.', 'adrotate'); ?></em>
170
  </label>
171
  </td>
172
  </tr>
190
  <input tabindex="8" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
191
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
192
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
195
  <table class="widefat" style="margin-top: .5em">
304
  <em><strong><?php _e('Example:', 'adrotate'); ?></strong> <?php _e('image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert for different viewports.', 'adrotate'); ?></em></label>
305
  </td>
306
  </tr>
307
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
308
  <th><?php _e('Sortorder', 'adrotate'); ?></th>
309
  <td colspan="3">
310
  <label for="adrotate_sortorder"><input tabindex="23" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_banner->sortorder;?>" /> <em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to ad id.', 'adrotate'); ?></em></label>
312
  </tr>
313
  </tbody>
314
  </table>
315
+ <center><?php _e('With AdRotate Pro you can set a weight to give adverts more or less exposure.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>!</center>
316
 
317
  <h3><?php _e('Geo Targeting in AdRotate Pro', 'adrotate'); ?></h3>
318
  <p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?></em></p>
384
  <table class="widefat" style="margin-top: .5em">
385
  <thead>
386
  <tr>
387
+ <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
388
  <th><?php _e('ID - Name', 'adrotate'); ?></th>
389
+ <th width="5%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
390
  </tr>
391
  </thead>
392
 
406
  <tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
407
  <th class="check-column" width="2%"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
408
  <td><?php echo $group->id; ?> - <strong><?php echo $group->name; ?></strong><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
409
+ <td><center><?php echo $ads_in_group; ?></center></td>
410
  </tr>
411
  <?php
412
  unset($modus);
dashboard/publisher/adverts-error.php CHANGED
@@ -34,8 +34,8 @@
34
 
35
  <table class="widefat" style="margin-top: .5em">
36
  <thead>
37
- <tr>
38
- <th scope="col" class="manage-column column-cb check-column" style=""><input type="checkbox" /></th>
39
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
@@ -65,17 +65,11 @@
65
  </tr>
66
  <?php } ?>
67
  </tbody>
68
-
69
- <thead>
70
- <tr>
71
- <th colspan="5">
72
- <center>
73
- <span style="border: 1px solid #e6db55; height: 12px; width: 12px; background-color: #ffffe0">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("Configuration errors.", "adrotate"); ?>
74
- &nbsp;&nbsp;&nbsp;&nbsp;<span style="border: 1px solid #c00; height: 12px; width: 12px; background-color: #ffebe8">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("Expires soon.", "adrotate"); ?>
75
- &nbsp;&nbsp;&nbsp;&nbsp;<span style="border: 1px solid #466f82; height: 12px; width: 12px; background-color: #8dcede">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("Has expired.", "adrotate"); ?>
76
- </center>
77
- </th>
78
- </tr>
79
- </thead>
80
  </table>
 
 
 
 
 
 
81
  </form>
34
 
35
  <table class="widefat" style="margin-top: .5em">
36
  <thead>
37
+ <tr>
38
+ <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
39
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
65
  </tr>
66
  <?php } ?>
67
  </tbody>
 
 
 
 
 
 
 
 
 
 
 
 
68
  </table>
69
+
70
+ <p><center>
71
+ <span style="border: 1px solid #e6db55; height: 12px; width: 12px; background-color: #ffffe0">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("Configuration errors.", "adrotate"); ?>
72
+ &nbsp;&nbsp;&nbsp;&nbsp;<span style="border: 1px solid #c00; height: 12px; width: 12px; background-color: #ffebe8">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("Expires soon.", "adrotate"); ?>
73
+ &nbsp;&nbsp;&nbsp;&nbsp;<span style="border: 1px solid #466f82; height: 12px; width: 12px; background-color: #8dcede">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("Has expired.", "adrotate"); ?>
74
+ </center></p>
75
  </form>
dashboard/publisher/adverts-main.php CHANGED
@@ -34,8 +34,8 @@
34
 
35
  <table class="widefat" style="margin-top: .5em">
36
  <thead>
37
- <tr>
38
- <th scope="col" class="manage-column column-cb check-column" style=""><input type="checkbox" /></th>
39
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
34
 
35
  <table class="widefat" style="margin-top: .5em">
36
  <thead>
37
+ <tr>
38
+ <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
39
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
dashboard/publisher/groups-edit.php CHANGED
@@ -327,10 +327,10 @@ if(!is_array($meta_array)) $meta_array = array();
327
  <table class="widefat" style="margin-top: .5em">
328
  <thead>
329
  <tr>
330
- <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></th>
331
- <th>&nbsp;</th>
332
  <?php if($adrotate_config['stats'] == 1) { ?>
333
- <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
334
  <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
335
  <?php } ?>
336
  <th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
327
  <table class="widefat" style="margin-top: .5em">
328
  <thead>
329
  <tr>
330
+ <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
331
+ <th><?php _e('Choose adverts', 'adrotate'); ?></th>
332
  <?php if($adrotate_config['stats'] == 1) { ?>
333
+ <th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
334
  <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
335
  <?php } ?>
336
  <th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
dashboard/publisher/groups-main.php CHANGED
@@ -26,19 +26,18 @@
26
  </div>
27
 
28
  <table class="widefat" style="margin-top: .5em">
29
- <thead>
30
- <tr>
31
- <th class="check-column">&nbsp;</th>
32
  <th width="5%"><center><?php _e('ID', 'adrotate'); ?></center></th>
33
  <th><?php _e('Name', 'adrotate'); ?></th>
34
  <th width="5%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
35
  <?php if($adrotate_config['stats'] == 1) { ?>
36
- <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
37
  <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
38
  <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
39
  <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
40
  <?php } ?>
41
- <th width="15%"><center><?php _e('Code', 'adrotate'); ?></center></th>
42
  </tr>
43
  </thead>
44
  <tbody>
@@ -76,7 +75,6 @@
76
  <td><center><?php echo $stats['clicks']; ?></center></td>
77
  <td><center><?php echo $stats_today['clicks']; ?></center></td>
78
  <?php } ?>
79
- <td><center>[adrotate group="<?php echo $group->id; ?>"]</center></td>
80
  </tr>
81
  <?php unset($stats, $stats_today, $adspeed, $modus);?>
82
  <?php } ?>
26
  </div>
27
 
28
  <table class="widefat" style="margin-top: .5em">
29
+ <thead>
30
+ <tr>
31
+ <td class="check-column">&nbsp;</td>
32
  <th width="5%"><center><?php _e('ID', 'adrotate'); ?></center></th>
33
  <th><?php _e('Name', 'adrotate'); ?></th>
34
  <th width="5%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
35
  <?php if($adrotate_config['stats'] == 1) { ?>
36
+ <th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
37
  <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
38
  <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
39
  <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
40
  <?php } ?>
 
41
  </tr>
42
  </thead>
43
  <tbody>
75
  <td><center><?php echo $stats['clicks']; ?></center></td>
76
  <td><center><?php echo $stats_today['clicks']; ?></center></td>
77
  <?php } ?>
 
78
  </tr>
79
  <?php unset($stats, $stats_today, $adspeed, $modus);?>
80
  <?php } ?>
dashboard/settings/general.php CHANGED
@@ -10,25 +10,36 @@
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('General Settings', 'adrotate'); ?></h3>
13
- <span class="description"><?php _e('General settings for AdRotate.', 'adrotate'); ?></span>
14
  <table class="form-table">
 
 
 
 
15
  <tr>
16
  <th valign="top"><?php _e('Load jQuery', 'adrotate'); ?></th>
17
- <td><label for="adrotate_jquery"><input type="checkbox" name="adrotate_jquery" <?php if($adrotate_config['jquery'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('jQuery is required for dynamic groups, ad block detection and some other features. Enable this if your theme does not load jQuery.', 'adrotate'); ?></label></td>
18
  </tr>
19
  <tr>
20
  <th valign="top"><?php _e('Load scripts in footer?', 'adrotate'); ?></th>
21
  <td><label for="adrotate_jsfooter"><input type="checkbox" name="adrotate_jsfooter" <?php if($adrotate_config['jsfooter'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable if you want to load all AdRotate Javascripts in the footer of your site.', 'adrotate'); ?></label></td>
22
  </tr>
 
 
 
 
 
 
 
23
  </table>
24
 
25
  <h3><?php _e('Banner Folder', 'adrotate'); ?></h3>
26
- <span class="description"><?php _e('Set a location where your banner images will be stored.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?></span>
27
  <table class="form-table">
28
  <tr>
29
  <th valign="top"><?php _e('Location', 'adrotate'); ?></th>
30
  <td>
31
- <label for="adrotate_banner_folder"><?php echo site_url(); ?>/<input name="adrotate_banner_folder_disabled" type="text" class="search-input" size="30" value="<?php echo $adrotate_config['banner_folder']; ?>" autocomplete="off" disabled /> <?php _e('(Default: wp-content/banners/).', 'adrotate'); ?><br />
32
  <span class="description"><?php _e('To try and trick ad blockers you could set the folder to something crazy like:', 'adrotate'); ?> "/wp-content/<?php echo adrotate_rand(12); ?>/".<br />
33
  <?php _e("This folder will not be automatically created if it doesn't exist. AdRotate will show errors when the folder is missing.", 'adrotate'); ?></span>
34
  </td>
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('General Settings', 'adrotate'); ?></h3>
13
+ <span class="description"><?php _e('General settings for AdRotate.', 'adrotate'); ?> <?php _e('Some options are only available in AdRotate Pro!', 'adrotate'); ?></span>
14
  <table class="form-table">
15
+ <tr>
16
+ <th valign="top"><?php _e('Text widgets', 'adrotate'); ?></th>
17
+ <td><label for="adrotate_textwidget_shortcodes"><input type="checkbox" name="adrotate_textwidget_shortcodes" disabled /><?php _e('Enable if your theme does not support shortcodes in the WordPress text widget.', 'adrotate'); ?></label></td>
18
+ </tr>
19
  <tr>
20
  <th valign="top"><?php _e('Load jQuery', 'adrotate'); ?></th>
21
+ <td><label for="adrotate_jquery"><input type="checkbox" name="adrotate_jquery" <?php if($adrotate_config['jquery'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable if your theme does not load jQuery. jQuery is required for dynamic groups, statistics and some other features.', 'adrotate'); ?></label></td>
22
  </tr>
23
  <tr>
24
  <th valign="top"><?php _e('Load scripts in footer?', 'adrotate'); ?></th>
25
  <td><label for="adrotate_jsfooter"><input type="checkbox" name="adrotate_jsfooter" <?php if($adrotate_config['jsfooter'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable if you want to load all AdRotate Javascripts in the footer of your site.', 'adrotate'); ?></label></td>
26
  </tr>
27
+ <tr>
28
+ <th valign="top"><?php _e('Adblock disguise', 'adrotate'); ?></th>
29
+ <td>
30
+ <label for="adrotate_adblock_disguise"><input name="adrotate_adblock_disguise" type="text" class="search-input" size="5" value="getpro" disabled /> <?php _e('Leave empty to disable. Use only lowercaps letters. For example:', 'adrotate'); ?> <?php echo adrotate_rand(6); ?><br />
31
+ <span class="description"><?php _e('Try and avoid adblock plugins in most modern browsers when using shortcodes.', 'adrotate'); ?><br /><?php _e('To also apply this feature to widgets, use a text widget with a shortcode instead of the AdRotate widget.', 'adrotate'); ?><br /><?php _e('Avoid the use of obvious keywords or filenames in your adverts or this feature will have little effect!', 'adrotate'); ?></span>
32
+ </td>
33
+ </tr>
34
  </table>
35
 
36
  <h3><?php _e('Banner Folder', 'adrotate'); ?></h3>
37
+ <span class="description"><?php _e('Set a location where your banner images will be stored.', 'adrotate'); ?></span>
38
  <table class="form-table">
39
  <tr>
40
  <th valign="top"><?php _e('Location', 'adrotate'); ?></th>
41
  <td>
42
+ <label for="adrotate_banner_folder"><?php echo site_url(); ?>/<input name="adrotate_banner_folder_disabled" type="text" class="search-input" size="30" value="wp-content/banners/" disabled /> <?php _e('(Default: wp-content/banners/).', 'adrotate'); ?><br />
43
  <span class="description"><?php _e('To try and trick ad blockers you could set the folder to something crazy like:', 'adrotate'); ?> "/wp-content/<?php echo adrotate_rand(12); ?>/".<br />
44
  <?php _e("This folder will not be automatically created if it doesn't exist. AdRotate will show errors when the folder is missing.", 'adrotate'); ?></span>
45
  </td>
dashboard/settings/geotargeting.php CHANGED
@@ -23,7 +23,6 @@
23
  <option value="0" disabled>Telize</option>
24
  </select><br />
25
  <span class="description">
26
- <strong>Disabled</strong> - <?php _e('No Geo Targeting is available for your adverts.', 'adrotate'); ?><br /><br />
27
  <strong>MaxMind</strong> - <a href="https://www.maxmind.com/en/geoip2-precision-services?rId=ajdgnet" target="_blank">GeoIP2 Precision</a> - <?php _e('The most complete and accurate geo targeting you can get for only $20 USD per 50000 lookups.', 'adrotate'); ?> <a href="https://www.maxmind.com/en/geoip2-precision-city?rId=ajdgnet" target="_blank"><?php _e('Buy now', 'adrotate'); ?>.</a><br />
28
  <em><strong>Supports:</strong> Countries, States, State ISO codes, Cities and DMA codes.</em><br /><br />
29
  <strong>AdRotate Geo</strong> - <?php _e('50000 free lookups every day, uses GeoLite2 databases from MaxMind!', 'adrotate'); ?><br />
23
  <option value="0" disabled>Telize</option>
24
  </select><br />
25
  <span class="description">
 
26
  <strong>MaxMind</strong> - <a href="https://www.maxmind.com/en/geoip2-precision-services?rId=ajdgnet" target="_blank">GeoIP2 Precision</a> - <?php _e('The most complete and accurate geo targeting you can get for only $20 USD per 50000 lookups.', 'adrotate'); ?> <a href="https://www.maxmind.com/en/geoip2-precision-city?rId=ajdgnet" target="_blank"><?php _e('Buy now', 'adrotate'); ?>.</a><br />
27
  <em><strong>Supports:</strong> Countries, States, State ISO codes, Cities and DMA codes.</em><br /><br />
28
  <strong>AdRotate Geo</strong> - <?php _e('50000 free lookups every day, uses GeoLite2 databases from MaxMind!', 'adrotate'); ?><br />
dashboard/settings/statistics.php CHANGED
@@ -10,7 +10,7 @@
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Statistics', 'adrotate'); ?></h3></td>
13
- <span class="description"><?php _e('Track statistics for your adverts.', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
16
  <th valign="top"><?php _e('How to track stats', 'adrotate'); ?></th>
@@ -22,13 +22,12 @@
22
  <option value="0" disabled>Google Analytics (Faster)</option>
23
  </select><br />
24
  <span class="description">
25
- <strong>Disabled</strong> - <?php _e('No impressions and clicks can be recorded for any of your adverts.', 'adrotate'); ?><br /><br />
26
- <strong>Interal Tracker</strong> - <?php _e('Tracks impressions and clicks internally', 'adrotate'); ?>, <a href="https://ajdg.solutions/manuals/adrotate-manuals/adrotate-statistics/?pk_campaign=adrotatepro_settings&pk_kwd=adrotate_statsmanual" target="_blank"><?php _e('manual', 'adrotate'); ?></a>.<br />
27
- <strong>Supports:</strong> <em><?php _e('Click and Impression recording, Click and impression limits, impression spread for schedules, local stats display.', 'adrotate'); ?></em><br /><br />
28
- <strong>Piwik Analytics</strong> - <?php _e('Requires Piwik Analytics tracker installed in your sites footer! Uses data attributes', 'adrotate'); ?>, <a href="https://ajdg.solutions/manuals/adrotate-manuals/piwik-analytics/?pk_campaign=adrotatepro_settings&pk_kwd=adrotate_piwikmanual" target="_blank"><?php _e('manual', 'adrotate'); ?></a>.<br />
29
- <strong>Supports:</strong> <em><?php _e('Click and Impression recording via Cookie, stats are displayed in Actions > Contents.', 'adrotate'); ?></em> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?><br /><br />
30
- <strong>Google Analytics</strong> - <?php _e('Requires Google Universal Analytics tracker installed in your sites footer! uses onClick() and onload() in adverts', 'adrotate'); ?>, <a href="https://ajdg.solutions/manuals/adrotate-manuals/google-analytics/?pk_campaign=adrotatepro_settings&pk_kwd=adrotate_googlemanual" target="_blank"><?php _e('manual', 'adrotate'); ?></a>.<br />
31
- <strong>Supports:</strong> <em><?php _e('Click and Impression recording via Cookie, stats are displayed in Events.', 'adrotate'); ?></em> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?>
32
  </span>
33
  </td>
34
  </tr>
@@ -40,24 +39,24 @@
40
  <tr>
41
  <th valign="top"><?php _e('Logged in impressions', 'adrotate'); ?></th>
42
  <td>
43
- <input type="checkbox" name="adrotate_enable_loggedin_impressions_disabled" checked="checked" disabled /> <?php _e('Track impressions from logged in users.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?>
44
  </td>
45
  </tr>
46
  <tr>
47
  <th valign="top"><?php _e('Logged in clicks', 'adrotate'); ?></th>
48
  <td>
49
- <input type="checkbox" name="adrotate_enable_loggedin_clicks_disabled" checked="checked" disabled /> <?php _e('Track clicks from logged in users.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?>
50
  </td>
51
  </tr>
52
  <tr>
53
- <th valign="top"><?php _e('Impressions timer', 'adrotate'); ?></th>
54
  <td>
55
  <input name="adrotate_impression_timer" type="text" class="search-input" size="5" value="<?php echo $adrotate_config['impression_timer']; ?>" autocomplete="off" /> <?php _e('Seconds.', 'adrotate'); ?><br />
56
  <span class="description"><?php _e('Default: 60.', 'adrotate'); ?> <?php _e('This number may not be empty, be lower than 10 or exceed 3600 (1 hour).', 'adrotate'); ?></span>
57
  </td>
58
  </tr>
59
  <tr>
60
- <th valign="top"><?php _e('Clicks timer', 'adrotate'); ?></th>
61
  <td>
62
  <input name="adrotate_click_timer" type="text" class="search-input" size="5" value="<?php echo $adrotate_config['click_timer']; ?>" autocomplete="off" /> <?php _e('Seconds.', 'adrotate'); ?><br />
63
  <span class="description"><?php _e('Default: 86400.', 'adrotate'); ?> <?php _e('This number may not be empty, be lower than 60 or exceed 86400 (24 hours).', 'adrotate'); ?></span>
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Statistics', 'adrotate'); ?></h3></td>
13
+ <span class="description"><?php _e('Track statistics for your adverts.', 'adrotate'); ?> <?php _e('Some options are only available in AdRotate Pro!', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
16
  <th valign="top"><?php _e('How to track stats', 'adrotate'); ?></th>
22
  <option value="0" disabled>Google Analytics (Faster)</option>
23
  </select><br />
24
  <span class="description">
25
+ <strong>Interal Tracker</strong> - <?php _e('Tracks impressions and clicks internally', 'adrotate'); ?>, <a href="https://ajdg.solutions/manuals/adrotate-manuals/adrotate-statistics/?pk_campaign=adrotatepro_settings" target="_blank"><?php _e('manual', 'adrotate'); ?></a>.<br />
26
+ <strong>Supports:</strong> <em><?php _e('Click and Impression recording, Click and impression limits, impression spread for schedules, local stats display. Javascript/HTML5/Flash adverts will only track impressions.', 'adrotate'); ?></em><br /><br />
27
+ <strong>Piwik Analytics (<?php _e('In AdRotate Pro!', 'adrotate'); ?>)</strong> - <?php _e('Requires Piwik Analytics tracker installed in your sites footer! Uses data attributes', 'adrotate'); ?>, <a href="https://ajdg.solutions/manuals/adrotate-manuals/piwik-analytics/?pk_campaign=adrotatepro_settings" target="_blank"><?php _e('manual', 'adrotate'); ?></a>.<br />
28
+ <strong>Supports:</strong> <em><?php _e('Click and Impression recording via Cookie, stats are displayed in Actions > Contents.', 'adrotate'); ?></em><br /><br />
29
+ <strong>Google Analytics (<?php _e('In AdRotate Pro!', 'adrotate'); ?>)</strong> - <?php _e('Requires Google Universal Analytics tracker installed in your sites footer! uses onClick() and onload() in adverts', 'adrotate'); ?>, <a href="https://ajdg.solutions/manuals/adrotate-manuals/google-analytics/?pk_campaign=adrotatepro_settings" target="_blank"><?php _e('manual', 'adrotate'); ?></a>.<br />
30
+ <strong>Supports:</strong> <em><?php _e('Click and Impression recording via Cookie, stats are displayed in Events > Banner.', 'adrotate'); ?></em>
 
31
  </span>
32
  </td>
33
  </tr>
39
  <tr>
40
  <th valign="top"><?php _e('Logged in impressions', 'adrotate'); ?></th>
41
  <td>
42
+ <input type="checkbox" name="adrotate_enable_loggedin_impressions_disabled" checked="checked" disabled /> <?php _e('Track impressions from logged in users.', 'adrotate'); ?>
43
  </td>
44
  </tr>
45
  <tr>
46
  <th valign="top"><?php _e('Logged in clicks', 'adrotate'); ?></th>
47
  <td>
48
+ <input type="checkbox" name="adrotate_enable_loggedin_clicks_disabled" checked="checked" disabled /> <?php _e('Track clicks from logged in users.', 'adrotate'); ?>
49
  </td>
50
  </tr>
51
  <tr>
52
+ <th valign="top"><?php _e('Impression timer', 'adrotate'); ?></th>
53
  <td>
54
  <input name="adrotate_impression_timer" type="text" class="search-input" size="5" value="<?php echo $adrotate_config['impression_timer']; ?>" autocomplete="off" /> <?php _e('Seconds.', 'adrotate'); ?><br />
55
  <span class="description"><?php _e('Default: 60.', 'adrotate'); ?> <?php _e('This number may not be empty, be lower than 10 or exceed 3600 (1 hour).', 'adrotate'); ?></span>
56
  </td>
57
  </tr>
58
  <tr>
59
+ <th valign="top"><?php _e('Click timer', 'adrotate'); ?></th>
60
  <td>
61
  <input name="adrotate_click_timer" type="text" class="search-input" size="5" value="<?php echo $adrotate_config['click_timer']; ?>" autocomplete="off" /> <?php _e('Seconds.', 'adrotate'); ?><br />
62
  <span class="description"><?php _e('Default: 86400.', 'adrotate'); ?> <?php _e('This number may not be empty, be lower than 60 or exceed 86400 (24 hours).', 'adrotate'); ?></span>
images/ajdg-logo-100x60.png DELETED
Binary file
images/arnan-jungle.jpg ADDED
Binary file
language/adrotate-bg_BG.mo CHANGED
Binary file
language/adrotate-bg_BG.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: 2015-08-23 20:10+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:10+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
@@ -236,10 +236,10 @@ msgstr "Поправка възможно най-скоро"
236
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
237
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
238
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
239
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
240
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
241
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
242
- #: dashboard/settings/geotargeting.php:16
243
  msgid "Buy now"
244
  msgstr "Купи сега"
245
 
@@ -336,7 +336,7 @@ msgstr "мнение"
336
  msgid "on WordPress.org to help AdRotate grow in a positive way"
337
  msgstr "на WordPress.org, за да се развива AdRotate"
338
 
339
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
340
  msgid "Available in AdRotate Pro"
341
  msgstr "Налично в AdRotate Pro"
342
 
@@ -352,63 +352,63 @@ msgstr "Тази функционалност е налична в AdRotate Pro"
352
  msgid "Learn more"
353
  msgstr "Повече информация"
354
 
355
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
356
- #: dashboard/publisher/adverts-edit.php:245
357
  msgid "January"
358
  msgstr "Януари"
359
 
360
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
361
- #: dashboard/publisher/adverts-edit.php:246
362
  msgid "February"
363
  msgstr "Февруари"
364
 
365
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
366
- #: dashboard/publisher/adverts-edit.php:247
367
  msgid "March"
368
  msgstr "Март"
369
 
370
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
371
- #: dashboard/publisher/adverts-edit.php:248
372
  msgid "April"
373
  msgstr "Април"
374
 
375
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
376
- #: dashboard/publisher/adverts-edit.php:249
377
  msgid "May"
378
  msgstr "Май"
379
 
380
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
381
- #: dashboard/publisher/adverts-edit.php:250
382
  msgid "June"
383
  msgstr "Юни"
384
 
385
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
386
- #: dashboard/publisher/adverts-edit.php:251
387
  msgid "July"
388
  msgstr "Юли"
389
 
390
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
391
- #: dashboard/publisher/adverts-edit.php:252
392
  msgid "August"
393
  msgstr "Август"
394
 
395
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
396
- #: dashboard/publisher/adverts-edit.php:253
397
  msgid "September"
398
  msgstr "Септември"
399
 
400
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
401
- #: dashboard/publisher/adverts-edit.php:254
402
  msgid "October"
403
  msgstr "Октомври"
404
 
405
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
406
- #: dashboard/publisher/adverts-edit.php:255
407
  msgid "November"
408
  msgstr "Ноември"
409
 
410
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
411
- #: dashboard/publisher/adverts-edit.php:256
412
  msgid "December"
413
  msgstr "Декември"
414
 
@@ -521,7 +521,7 @@ msgid "Group Management"
521
  msgstr "Управление на групи"
522
 
523
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
524
- #: dashboard/publisher/groups-main.php:71
525
  msgid "Report"
526
  msgstr "Доклад"
527
 
@@ -537,10 +537,10 @@ msgstr ""
537
  "Управлението на графици и множество графици за една реклама са налични в "
538
  "AdRotate Pro."
539
 
540
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
541
  #: dashboard/publisher/adverts-main.php:114
542
  #: dashboard/publisher/groups-edit.php:75
543
- #: dashboard/publisher/groups-main.php:91
544
  msgid "More information"
545
  msgstr "Повече информация"
546
 
@@ -574,19 +574,19 @@ msgstr "Начало"
574
  msgid "End"
575
  msgstr "Край"
576
 
577
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
578
  #: dashboard/publisher/groups-main.php:34
579
  msgid "Ads"
580
  msgstr "Реклами"
581
 
582
  #: adrotate.php:428
583
- msgid "Max Clicks"
584
- msgstr "Максимум кликове"
585
-
586
- #: adrotate.php:429
587
  msgid "Max Impressions"
588
  msgstr "Максимум импресии"
589
 
 
 
 
 
590
  #: adrotate.php:459
591
  msgid "No schedules created yet!"
592
  msgstr "Все още няма създадени графици!"
@@ -670,7 +670,7 @@ msgstr ""
670
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
671
  "е строго препоръчителен."
672
 
673
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
674
  msgid ""
675
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
676
  "filename instead of \".full\" for the various viewports."
@@ -679,13 +679,13 @@ msgstr ""
679
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
680
  "файловете, вместо \".full\"."
681
 
682
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
683
  #: dashboard/publisher/groups-edit.php:312
684
  #: dashboard/publisher/groups-edit.php:320
685
  msgid "Example:"
686
  msgstr "Пример:"
687
 
688
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
689
  msgid ""
690
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
691
  "for different viewports."
@@ -781,20 +781,16 @@ msgid ""
781
  "forum. Get a solution (usually) within a day."
782
  msgstr ""
783
 
784
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
785
  msgid "AdRotate is brought to you by"
786
  msgstr "AdRotate достига до Вас, благодарение на"
787
 
788
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
789
  msgid ""
790
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
791
- "details!"
792
  msgstr ""
793
 
794
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
795
- msgid "Find out more"
796
- msgstr "Научете повече"
797
-
798
  #: dashboard/adrotatepro.php:58
799
  msgid "Schedule all campaigns with ease"
800
  msgstr "Планиране на всички кампании с лекота"
@@ -821,140 +817,140 @@ msgid ""
821
  msgstr ""
822
 
823
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
824
- #: dashboard/info.php:134 dashboard/info.php:146
825
  msgid "Buy AdRotate Professional"
826
  msgstr "Купете AdRotate Professional"
827
 
828
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
829
  msgid "Single License"
830
  msgstr ""
831
 
832
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
833
  msgid "For one WordPress installation."
834
  msgstr "За една инсталация на WordPress."
835
 
836
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
837
- #: dashboard/info.php:139 dashboard/info.php:151
838
  msgid "Duo License"
839
  msgstr "Duo лиценз"
840
 
841
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
842
  msgid "For two WordPress installations."
843
  msgstr "За две Wordpress инсталации."
844
 
845
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
846
- #: dashboard/info.php:140 dashboard/info.php:152
847
  msgid "Multi License"
848
  msgstr "Multi лиценз"
849
 
850
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
851
  msgid " For up to five WordPress installations."
852
  msgstr " За до 5 Wordpress инсталации."
853
 
854
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
855
- #: dashboard/info.php:141 dashboard/info.php:153
856
  msgid "Developer License"
857
  msgstr "Developer лиценз"
858
 
859
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
860
  msgid "Unlimited WordPress installations and/or networks."
861
  msgstr ""
862
 
863
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
864
- #: dashboard/info.php:142 dashboard/info.php:155
865
  msgid "Compare licenses"
866
  msgstr "Сравнение на лицензи"
867
 
868
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
869
  msgid "Not sure which license is for you? Compare them..."
870
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
871
 
872
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
873
  msgid "All Licenses"
874
  msgstr "Всички лицензи"
875
 
876
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
877
  msgid "Lifetime License"
878
  msgstr ""
879
 
880
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
881
  msgid "Single installation."
882
  msgstr ""
883
 
884
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
885
  msgid "Up to 2 installations."
886
  msgstr ""
887
 
888
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
889
  msgid "Up to 10 installations."
890
  msgstr ""
891
 
892
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
893
  msgid "Up to 25 installations or multisite networks."
894
  msgstr ""
895
 
896
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
897
  msgid ""
898
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
899
  msgstr ""
900
 
901
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
902
  msgid "Not sure which license is for you?"
903
  msgstr ""
904
 
905
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
906
  msgid "Compare Licenses"
907
  msgstr ""
908
 
909
- #: dashboard/info.php:65
910
  msgid "Currently"
911
  msgstr "В момента"
912
 
913
- #: dashboard/info.php:71
914
  msgid "Your setup"
915
  msgstr "Вие имате"
916
 
917
- #: dashboard/info.php:72
918
  msgid "Adverts that need you"
919
  msgstr "Реклами, които изискват вниманието Ви"
920
 
921
- #: dashboard/info.php:78
922
  msgid "Adverts"
923
  msgstr "Реклами"
924
 
925
- #: dashboard/info.php:79
926
  msgid "(Almost) Expired"
927
  msgstr "(Почти) Изтекли"
928
 
929
- #: dashboard/info.php:82
930
  msgid "Groups"
931
  msgstr "Групи"
932
 
933
- #: dashboard/info.php:83
934
  msgid "Have errors"
935
  msgstr "Има грешки"
936
 
937
- #: dashboard/info.php:89
938
  msgid "Support AdRotate"
939
  msgstr "Подкрепете AdRotate"
940
 
941
- #: dashboard/info.php:96
942
  msgid "Your gift helps ensure the continued development of AdRotate!"
943
  msgstr ""
944
 
945
- #: dashboard/info.php:96
946
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
947
  msgstr ""
948
 
949
- #: dashboard/info.php:105
950
  msgid "AdRotate News and Developer Blog"
951
  msgstr "AdRotate блог за новини и разработка"
952
 
953
- #: dashboard/info.php:127
954
  msgid "Get more features with AdRotate Pro"
955
  msgstr "Получете по-голяма функционалност с AdRotate Pro"
956
 
957
- #: dashboard/info.php:130
958
  msgid ""
959
  "Benefit from extra features to reinforce your income with advertising "
960
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -964,28 +960,24 @@ msgstr ""
964
  "подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
965
  "функции, които предлага AdRotate Pro спрямо безплатната версия."
966
 
967
- #: dashboard/info.php:130
968
  msgid "Want to know more about"
969
  msgstr ""
970
 
971
- #: dashboard/info.php:130
972
  msgid "Visit the"
973
  msgstr "Посетете"
974
 
975
- #: dashboard/info.php:130
976
  msgid "website"
977
  msgstr "уебсайт"
978
 
979
- #: dashboard/info.php:166
980
- msgid "Follow"
981
- msgstr "Последвай"
982
-
983
  #: dashboard/publisher/adverts-disabled.php:15
984
  msgid "Disabled Ads"
985
  msgstr "Деактивиране на реклами"
986
 
987
  #: dashboard/publisher/adverts-disabled.php:21
988
- #: dashboard/publisher/adverts-edit.php:165
989
  msgid "Activate"
990
  msgstr "Активиране"
991
 
@@ -1010,8 +1002,6 @@ msgstr "Заглавие"
1010
 
1011
  #: dashboard/publisher/adverts-disabled.php:38
1012
  #: dashboard/publisher/adverts-report.php:34
1013
- #: dashboard/publisher/groups-edit.php:333
1014
- #: dashboard/publisher/groups-main.php:36
1015
  #: dashboard/publisher/groups-report.php:40
1016
  msgid "Impressions"
1017
  msgstr "Импресии"
@@ -1035,7 +1025,7 @@ msgstr "CTR"
1035
  #: dashboard/publisher/adverts-disabled.php:74
1036
  #: dashboard/publisher/adverts-error.php:64
1037
  #: dashboard/publisher/adverts-main.php:87
1038
- #: dashboard/publisher/groups-main.php:71
1039
  msgid "Edit"
1040
  msgstr "Редакция"
1041
 
@@ -1158,35 +1148,53 @@ msgid ""
1158
  "click to add it."
1159
  msgstr ""
1160
 
1161
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
  msgid "Banner asset"
1163
  msgstr ""
1164
 
1165
- #: dashboard/publisher/adverts-edit.php:142
1166
  msgid "WordPress media:"
1167
  msgstr ""
1168
 
1169
- #: dashboard/publisher/adverts-edit.php:142
1170
  msgid "Select Banner"
1171
  msgstr "Избор на банер"
1172
 
1173
- #: dashboard/publisher/adverts-edit.php:144
1174
  msgid "- OR -"
1175
  msgstr "- ИЛИ -"
1176
 
1177
- #: dashboard/publisher/adverts-edit.php:146
1178
  msgid "Banner folder:"
1179
  msgstr "Папка на банера:"
1180
 
1181
- #: dashboard/publisher/adverts-edit.php:147
1182
  msgid "No image selected"
1183
  msgstr "Не е избрана картинка"
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:151
1186
  msgid "Use %image% in the adcode instead of the file path."
1187
  msgstr ""
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:151
1190
  msgid ""
1191
  "Use either the text field or the dropdown. If the textfield has content that "
1192
  "field has priority."
@@ -1194,180 +1202,162 @@ msgstr ""
1194
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1195
  "попълнено, то ще бъде с преоритет."
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:156
1198
- #: dashboard/settings/statistics.php:1
1199
  msgid "Statistics"
1200
  msgstr "Статистики"
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:158
1203
  msgid "Enable click and impression tracking for this advert."
1204
  msgstr ""
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:159
1207
  msgid ""
1208
  "Note: Clicktracking does not work for Javascript adverts such as those "
1209
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1210
- "supported."
1211
  msgstr ""
1212
 
1213
- #: dashboard/publisher/adverts-edit.php:169
1214
  msgid "Yes, this ad will be used"
1215
  msgstr "Да, тази реклама ще се използва"
1216
 
1217
- #: dashboard/publisher/adverts-edit.php:170
1218
  msgid "No, do not show this ad anywhere"
1219
  msgstr "Не, не показвай тази реклама никъде"
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:177
1222
  #: dashboard/publisher/adverts-main.php:114
1223
  #: dashboard/publisher/groups-edit.php:75
1224
- #: dashboard/publisher/groups-main.php:91
1225
  msgid "Get more features with AdRotate Pro."
1226
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1227
 
1228
- #: dashboard/publisher/adverts-edit.php:180
1229
- #: dashboard/publisher/adverts-edit.php:295
1230
- #: dashboard/publisher/adverts-edit.php:395
1231
- #: dashboard/publisher/adverts-edit.php:436
1232
  msgid "Save Advert"
1233
  msgstr "Запиши рекламата"
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:181
1236
- #: dashboard/publisher/adverts-edit.php:296
1237
- #: dashboard/publisher/adverts-edit.php:396
1238
- #: dashboard/publisher/adverts-edit.php:437
1239
  #: dashboard/publisher/groups-edit.php:154
1240
  #: dashboard/publisher/groups-edit.php:301
1241
  #: dashboard/publisher/groups-edit.php:393
1242
  msgid "Cancel"
1243
  msgstr "Отказ"
1244
 
1245
- #: dashboard/publisher/adverts-edit.php:185
1246
- msgid "Preview"
1247
- msgstr "Преглед"
1248
-
1249
- #: dashboard/publisher/adverts-edit.php:191
1250
- msgid ""
1251
- "Note: While this preview is an accurate one, it might look different then it "
1252
- "does on the website."
1253
- msgstr ""
1254
- "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1255
- "изглежда по-различно, когато се показва на страницата Ви."
1256
-
1257
- #: dashboard/publisher/adverts-edit.php:192
1258
- msgid ""
1259
- "This is because of CSS differences. Your themes CSS file is not active here!"
1260
- msgstr ""
1261
- "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1262
-
1263
- #: dashboard/publisher/adverts-edit.php:199
1264
- #: dashboard/publisher/adverts-edit.php:378
1265
  #: dashboard/publisher/groups-edit.php:136
1266
  #: dashboard/publisher/groups-edit.php:283
1267
  msgid "Usage"
1268
  msgstr "Употреба"
1269
 
1270
- #: dashboard/publisher/adverts-edit.php:203
1271
- #: dashboard/publisher/adverts-edit.php:382
1272
  #: dashboard/publisher/groups-edit.php:140
1273
  #: dashboard/publisher/groups-edit.php:287
1274
  msgid "Widget"
1275
  msgstr ""
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:204
1278
- #: dashboard/publisher/adverts-edit.php:383
1279
  msgid ""
1280
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1281
  "and enter ID"
1282
  msgstr ""
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:207
1285
- #: dashboard/publisher/adverts-edit.php:386
1286
  #: dashboard/publisher/groups-edit.php:144
1287
  #: dashboard/publisher/groups-edit.php:291
1288
  msgid "In a post or page"
1289
  msgstr ""
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:209
1292
- #: dashboard/publisher/adverts-edit.php:388
1293
  #: dashboard/publisher/groups-edit.php:146
1294
  #: dashboard/publisher/groups-edit.php:293
1295
  msgid "Directly in a theme"
1296
  msgstr ""
1297
 
1298
- #: dashboard/publisher/adverts-edit.php:215
1299
  msgid "Schedule your advert"
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:219
1303
  msgid "Start date (day/month/year)"
1304
  msgstr ""
1305
 
1306
- #: dashboard/publisher/adverts-edit.php:240
1307
  msgid "End date (day/month/year)"
1308
  msgstr ""
1309
 
1310
- #: dashboard/publisher/adverts-edit.php:263
1311
  msgid "Start time (hh:mm)"
1312
  msgstr ""
1313
 
1314
- #: dashboard/publisher/adverts-edit.php:270
1315
  msgid "End time (hh:mm)"
1316
  msgstr ""
1317
 
1318
- #: dashboard/publisher/adverts-edit.php:280
1319
  msgid "Maximum Clicks"
1320
  msgstr ""
1321
 
1322
- #: dashboard/publisher/adverts-edit.php:281
1323
- #: dashboard/publisher/adverts-edit.php:283
1324
  msgid "Leave empty or 0 to skip this."
1325
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:282
1328
  msgid "Maximum Impressions"
1329
  msgstr ""
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:287
1332
  msgid "Important"
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:288
1336
  msgid ""
1337
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1338
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1339
  "14:00 hours. 6AM is 6:00 hours."
1340
  msgstr ""
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:292
1343
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1344
  msgstr "Създайте множество графици за всяка реклама с AdRotate Pro."
1345
 
1346
- #: dashboard/publisher/adverts-edit.php:292
1347
- #: dashboard/publisher/adverts-edit.php:332
1348
- #: dashboard/publisher/adverts-edit.php:376
1349
  #: dashboard/publisher/groups-edit.php:200
1350
  msgid "Upgrade today"
1351
  msgstr "Надградете днес"
1352
 
1353
- #: dashboard/publisher/adverts-edit.php:299
1354
  #: dashboard/publisher/groups-edit.php:157
1355
  msgid "Advanced"
1356
  msgstr "Разширени"
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:300
1359
  msgid "Everything below is optional."
1360
  msgstr "Всичко по-долу е по желание."
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:304
1363
  msgid "Responsive"
1364
  msgstr ""
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:306
1367
  msgid "Enable responsive support for this advert."
1368
  msgstr "Активиране на responsive дизайн за тази реклама."
1369
 
1370
- #: dashboard/publisher/adverts-edit.php:307
1371
  msgid ""
1372
  "Upload your images to the banner folder and make sure the filename is in the "
1373
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1377,74 +1367,47 @@ msgstr ""
1377
  "правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
1378
  "картинки е строго препоръчителен."
1379
 
1380
- #: dashboard/publisher/adverts-edit.php:313
1381
- #: dashboard/publisher/adverts-main.php:42
1382
- #: dashboard/publisher/groups-edit.php:336
1383
- msgid "Weight"
1384
- msgstr "Тежест"
1385
-
1386
- #: dashboard/publisher/adverts-edit.php:316
1387
- msgid "Barely visible"
1388
- msgstr "Почти видимо"
1389
-
1390
- #: dashboard/publisher/adverts-edit.php:317
1391
- msgid "Less than average"
1392
- msgstr "По-малко от нормалното"
1393
-
1394
- #: dashboard/publisher/adverts-edit.php:318
1395
- msgid "Normal coverage"
1396
- msgstr "Нормално покритие"
1397
-
1398
- #: dashboard/publisher/adverts-edit.php:319
1399
- msgid "More than average"
1400
- msgstr "Повече от нормалното"
1401
-
1402
- #: dashboard/publisher/adverts-edit.php:320
1403
- msgid "Best visibility"
1404
- msgstr "Най-добра видимост"
1405
-
1406
- #: dashboard/publisher/adverts-edit.php:325
1407
  #: dashboard/publisher/groups-edit.php:194
1408
  msgid "Sortorder"
1409
  msgstr ""
1410
 
1411
- #: dashboard/publisher/adverts-edit.php:327
1412
  #: dashboard/publisher/groups-edit.php:196
1413
  msgid "For administrative purposes set a sortorder."
1414
  msgstr "За административни цели задайте критерий за сортиране."
1415
 
1416
- #: dashboard/publisher/adverts-edit.php:327
1417
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1418
  msgstr ""
1419
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1420
  "на рекламата по подразбиране."
1421
 
1422
- #: dashboard/publisher/adverts-edit.php:332
1423
  msgid ""
1424
- "With AdRotate Pro you can set the weight to give adverts more or less "
1425
- "exposure."
1426
  msgstr ""
1427
 
1428
- #: dashboard/publisher/adverts-edit.php:334
1429
  msgid "Geo Targeting in AdRotate Pro"
1430
  msgstr ""
1431
 
1432
- #: dashboard/publisher/adverts-edit.php:335
1433
  msgid ""
1434
  "Assign the advert to a group and enable that group to use Geo Targeting."
1435
  msgstr ""
1436
 
1437
- #: dashboard/publisher/adverts-edit.php:339
1438
  msgid "Cities/States"
1439
  msgstr ""
1440
 
1441
- #: dashboard/publisher/adverts-edit.php:342
1442
  msgid ""
1443
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1444
  "states ISO codes are supported)"
1445
  msgstr ""
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:342
1448
  msgid ""
1449
  "AdRotate does not check the validity of names so make sure you spell them "
1450
  "correctly!"
@@ -1452,73 +1415,69 @@ msgstr ""
1452
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1453
  "правилно!"
1454
 
1455
- #: dashboard/publisher/adverts-edit.php:346
1456
  msgid "Countries"
1457
  msgstr ""
1458
 
1459
- #: dashboard/publisher/adverts-edit.php:371
1460
  msgid "Select the countries you want the adverts to show in."
1461
  msgstr "Изберете страните, в които искате да се показват рекламите."
1462
 
1463
- #: dashboard/publisher/adverts-edit.php:371
1464
  msgid "Cities take priority and will be filtered first."
1465
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1466
 
1467
- #: dashboard/publisher/adverts-edit.php:376
1468
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1469
  msgstr ""
1470
 
1471
- #: dashboard/publisher/adverts-edit.php:400
1472
  msgid "Select Groups"
1473
  msgstr "Избор на групи"
1474
 
1475
- #: dashboard/publisher/adverts-edit.php:405
1476
  msgid "ID - Name"
1477
  msgstr "ID - Име"
1478
 
1479
- #: dashboard/publisher/adverts-edit.php:406
1480
- msgid "Ads in group"
1481
- msgstr "Реклами в група"
1482
-
1483
- #: dashboard/publisher/adverts-edit.php:415
1484
- #: dashboard/publisher/groups-main.php:61
1485
- #: dashboard/settings/geotargeting.php:29
1486
  msgid "Default"
1487
  msgstr "По подразбиране"
1488
 
1489
- #: dashboard/publisher/adverts-edit.php:416
1490
- #: dashboard/publisher/groups-main.php:62
1491
  msgid "Dynamic"
1492
  msgstr "Динамично"
1493
 
1494
- #: dashboard/publisher/adverts-edit.php:416
1495
- #: dashboard/publisher/groups-main.php:62
1496
  msgid "second rotation"
1497
  msgstr "второ завъртане"
1498
 
1499
- #: dashboard/publisher/adverts-edit.php:417
1500
- #: dashboard/publisher/groups-main.php:63
1501
  msgid "Block"
1502
  msgstr "Блок"
1503
 
1504
- #: dashboard/publisher/adverts-edit.php:417
1505
- #: dashboard/publisher/groups-main.php:63
1506
  msgid "grid"
1507
  msgstr "решетка"
1508
 
1509
- #: dashboard/publisher/adverts-edit.php:418
1510
  #: dashboard/publisher/groups-edit.php:202
1511
- #: dashboard/publisher/groups-main.php:64
1512
  msgid "Post Injection"
1513
  msgstr "Вмъкване в публикации"
1514
 
1515
- #: dashboard/publisher/adverts-edit.php:419
1516
  msgid "Geolocation"
1517
  msgstr "Геолокация"
1518
 
1519
- #: dashboard/publisher/adverts-edit.php:425
1520
  #: dashboard/publisher/groups-edit.php:61
1521
- #: dashboard/publisher/groups-main.php:71
1522
  msgid "Mode"
1523
  msgstr "Режим"
1524
 
@@ -1569,7 +1528,14 @@ msgstr "Активиране на рекламите"
1569
  msgid "Export to XML"
1570
  msgstr "Експорт в XML"
1571
 
 
 
 
 
 
1572
  #: dashboard/publisher/adverts-main.php:44
 
 
1573
  msgid "Shown"
1574
  msgstr "Показана"
1575
 
@@ -1772,7 +1738,7 @@ msgid ""
1772
  msgstr ""
1773
 
1774
  #: dashboard/publisher/groups-edit.php:184
1775
- #: dashboard/settings/advertisers.php:17
1776
  msgid "Geo Targeting"
1777
  msgstr "Таргетиране спрямо местоположението"
1778
 
@@ -1812,7 +1778,7 @@ msgstr ""
1812
 
1813
  #: dashboard/publisher/groups-edit.php:209
1814
  #: dashboard/publisher/groups-edit.php:247
1815
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1816
  msgid "Disabled"
1817
  msgstr "Изключено"
1818
 
@@ -1925,6 +1891,10 @@ msgstr ""
1925
  msgid "Select adverts"
1926
  msgstr ""
1927
 
 
 
 
 
1928
  #: dashboard/publisher/groups-edit.php:337
1929
  msgid "Visible until"
1930
  msgstr "Да се вижда до"
@@ -1949,16 +1919,13 @@ msgstr "На път сте да изтриете група"
1949
  msgid "This action can not be undone!"
1950
  msgstr "Това действие е необратимо!"
1951
 
1952
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
1953
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
1954
  msgid "OK to continue, CANCEL to stop."
1955
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1956
 
1957
- #: dashboard/publisher/groups-main.php:41
1958
- msgid "Code"
1959
- msgstr "Код"
1960
-
1961
- #: dashboard/publisher/groups-main.php:86
1962
  msgid "No groups created!"
1963
  msgstr "Няма създадени групи!"
1964
 
@@ -1966,104 +1933,137 @@ msgstr "Няма създадени групи!"
1966
  msgid "Statistics for group"
1967
  msgstr "Статистика за групи"
1968
 
1969
- #: dashboard/settings/advertisers.php:1
1970
  msgid "Advertisers - Available in AdRotate Pro"
1971
  msgstr ""
1972
 
1973
- #: dashboard/settings/advertisers.php:2
1974
  msgid "Enable advertisers so they can review and manage their own ads."
1975
  msgstr ""
1976
  "Активирайте страницата за рекламодатели, за да могат сами да следят и "
1977
  "управляват рекламите си."
1978
 
1979
- #: dashboard/settings/advertisers.php:5
1980
  msgid "Enable Advertisers"
1981
  msgstr "Активиране на страницата за рекламодатели"
1982
 
1983
- #: dashboard/settings/advertisers.php:7
1984
  msgid "Allow adverts to be coupled to users (Advertisers)."
1985
  msgstr "Позволи рекламите да бъдат свързвани с потребители (Рекламодатели)."
1986
 
1987
- #: dashboard/settings/advertisers.php:11
1988
  msgid "Edit/update adverts"
1989
  msgstr "Редакция/Обновяване на реклами"
1990
 
1991
- #: dashboard/settings/advertisers.php:13
1992
  msgid "Allow advertisers to add new or edit their adverts."
1993
  msgstr "Позволяване на рекламодателите да редактират или добавят реклами."
1994
 
1995
- #: dashboard/settings/advertisers.php:19
1996
  msgid ""
1997
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1998
  "be enabled, too."
1999
  msgstr ""
2000
 
2001
- #: dashboard/settings/advertisers.php:23
2002
  msgid "Advertiser role"
2003
  msgstr "Роля на рекламодатели"
2004
 
2005
- #: dashboard/settings/advertisers.php:25
2006
  msgid "Create a seperate user role for your advertisers."
2007
  msgstr ""
2008
 
2009
- #: dashboard/settings/advertisers.php:26
2010
  msgid ""
2011
  "Don't forget to give these users access to their advertiser dashboard via "
2012
  "the Roles tab."
2013
  msgstr ""
2014
 
2015
- #: dashboard/settings/general.php:1
2016
  msgid "General Settings"
2017
  msgstr ""
2018
 
2019
- #: dashboard/settings/general.php:2
2020
  msgid "General settings for AdRotate."
2021
  msgstr ""
2022
 
2023
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2024
  msgid "Load jQuery"
2025
  msgstr "Зареди jQuery"
2026
 
2027
- #: dashboard/settings/general.php:6
2028
  msgid ""
2029
- "jQuery is required for dynamic groups, ad block detection and some other "
2030
- "features. Enable this if your theme does not load jQuery."
2031
  msgstr ""
2032
 
2033
- #: dashboard/settings/general.php:9
2034
  msgid "Load scripts in footer?"
2035
  msgstr ""
2036
 
2037
- #: dashboard/settings/general.php:10
2038
  msgid ""
2039
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2040
  "site."
2041
  msgstr ""
2042
 
2043
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2044
  msgid "Banner Folder"
2045
  msgstr "Папка с банери"
2046
 
2047
- #: dashboard/settings/general.php:15
2048
  msgid "Set a location where your banner images will be stored."
2049
  msgstr ""
2050
  "Задайте местоположение, където да се записват вашите картинки за банери."
2051
 
2052
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2053
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2054
- #: dashboard/settings/statistics.php:38
2055
- msgid "Available in AdRotate Pro!"
2056
- msgstr ""
2057
-
2058
- #: dashboard/settings/general.php:18
2059
  msgid "Location"
2060
  msgstr "Местоположение"
2061
 
2062
- #: dashboard/settings/general.php:20
2063
  msgid "(Default: wp-content/banners/)."
2064
  msgstr "(По подразбиране: wp-content/banners/)."
2065
 
2066
- #: dashboard/settings/general.php:21
2067
  msgid ""
2068
  "To try and trick ad blockers you could set the folder to something crazy "
2069
  "like:"
@@ -2071,7 +2071,7 @@ msgstr ""
2071
  "Опитайте да заблудите AdBlocker-ите, като използвате шантаво име за папката, "
2072
  "като например:"
2073
 
2074
- #: dashboard/settings/general.php:22
2075
  msgid ""
2076
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2077
  "will show errors when the folder is missing."
@@ -2079,129 +2079,125 @@ msgstr ""
2079
  "Папката няма да бъде създадена автоматично, ако не съществува. AdRotate ще "
2080
  "показва грешки, ако папката не съществува."
2081
 
2082
- #: dashboard/settings/general.php:27
2083
  msgid "Bot filter"
2084
  msgstr "Филтър на ботове"
2085
 
2086
- #: dashboard/settings/general.php:28
2087
  msgid "The bot filter is used for the AdRotate stats tracker."
2088
  msgstr ""
2089
 
2090
- #: dashboard/settings/general.php:31
2091
  msgid "User-Agent Filter"
2092
  msgstr "Филтър за агенти"
2093
 
2094
- #: dashboard/settings/general.php:34
2095
  msgid ""
2096
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2097
  msgstr ""
2098
 
2099
- #: dashboard/settings/general.php:35
2100
  msgid ""
2101
  "Keep in mind that this might give false positives. The word 'fire' also "
2102
  "matches 'firefox', but not vice-versa. So be careful!"
2103
  msgstr ""
2104
 
2105
- #: dashboard/settings/general.php:36
2106
  msgid ""
2107
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2108
  "characters are stripped out."
2109
  msgstr ""
2110
 
2111
- #: dashboard/settings/general.php:37
2112
  msgid ""
2113
  "Additionally to the list specified here, empty User-Agents are blocked as "
2114
  "well."
2115
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
2116
 
2117
- #: dashboard/settings/general.php:37
2118
  msgid "Learn more about"
2119
  msgstr "Научете повече за"
2120
 
2121
- #: dashboard/settings/general.php:37
2122
  msgid "user-agents"
2123
  msgstr "агенти"
2124
 
2125
- #: dashboard/settings/geotargeting.php:1
2126
  msgid "Geo Targeting - Available in AdRotate Pro"
2127
  msgstr ""
2128
 
2129
- #: dashboard/settings/geotargeting.php:2
2130
  msgid "Target certain areas in the world for better advertising oppurtunities."
2131
  msgstr ""
2132
 
2133
- #: dashboard/settings/geotargeting.php:5
2134
  msgid "Which Geo Service"
2135
  msgstr ""
2136
 
2137
- #: dashboard/settings/geotargeting.php:15
2138
- msgid "No Geo Targeting is available for your adverts."
2139
- msgstr ""
2140
-
2141
- #: dashboard/settings/geotargeting.php:16
2142
  msgid ""
2143
  "The most complete and accurate geo targeting you can get for only $20 USD "
2144
  "per 50000 lookups."
2145
  msgstr ""
2146
 
2147
- #: dashboard/settings/geotargeting.php:18
2148
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2149
  msgstr ""
2150
 
2151
- #: dashboard/settings/geotargeting.php:20
2152
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2153
  msgstr ""
2154
 
2155
- #: dashboard/settings/geotargeting.php:26
2156
  msgid "Geo Cookie Lifespan"
2157
  msgstr ""
2158
 
2159
- #: dashboard/settings/geotargeting.php:35
2160
  msgid "Hours."
2161
  msgstr ""
2162
 
2163
- #: dashboard/settings/geotargeting.php:36
2164
  msgid ""
2165
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2166
  "cookie last? A longer period is less accurate for mobile users but may "
2167
  "reduce the usage of your lookups drastically."
2168
  msgstr ""
2169
 
2170
- #: dashboard/settings/geotargeting.php:42
2171
  msgid "MaxMind City/Country"
2172
  msgstr ""
2173
 
2174
- #: dashboard/settings/geotargeting.php:45
2175
  msgid "Username/Email"
2176
  msgstr ""
2177
 
2178
- #: dashboard/settings/geotargeting.php:49
2179
  msgid "Password/License Key"
2180
  msgstr ""
2181
 
2182
- #: dashboard/settings/maintenance.php:1
2183
  msgid "Maintenance"
2184
  msgstr "Поддръжка"
2185
 
2186
- #: dashboard/settings/maintenance.php:2
2187
  msgid ""
2188
  "Use these functions when you notice your database is slow, unresponsive and "
2189
  "sluggish."
2190
  msgstr ""
2191
 
2192
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2193
  msgid "Optimize Database"
2194
  msgstr "Оптимизиране на базата данни"
2195
 
2196
- #: dashboard/settings/maintenance.php:7
2197
  msgid "You are about to optimize the AdRotate database."
2198
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
2199
 
2200
- #: dashboard/settings/maintenance.php:7
2201
  msgid "Did you make a backup of your database?"
2202
  msgstr "Направихте ли резервно копие на своята база данни?"
2203
 
2204
- #: dashboard/settings/maintenance.php:7
2205
  msgid ""
2206
  "This may take a moment and may cause your website to respond slow "
2207
  "temporarily!"
@@ -2209,11 +2205,11 @@ msgstr ""
2209
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
2210
  "момент!"
2211
 
2212
- #: dashboard/settings/maintenance.php:8
2213
  msgid "Cleans up overhead data in the AdRotate tables."
2214
  msgstr "Почиста overhead данните в таблиците на AdRotate."
2215
 
2216
- #: dashboard/settings/maintenance.php:9
2217
  msgid ""
2218
  "Overhead data is accumulated garbage resulting from many changes you've "
2219
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2221,11 +2217,11 @@ msgstr ""
2221
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
2222
  "които правите. Те могар да варират от 0 до хиляди KB."
2223
 
2224
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2225
  msgid "Clean-up Database"
2226
  msgstr "Почистване на базата данни"
2227
 
2228
- #: dashboard/settings/maintenance.php:15
2229
  msgid ""
2230
  "You are about to clean up your database. This may delete expired schedules "
2231
  "and older statistics."
@@ -2233,51 +2229,51 @@ msgstr ""
2233
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
2234
  "и стари статистики."
2235
 
2236
- #: dashboard/settings/maintenance.php:15
2237
  msgid "Are you sure you want to continue?"
2238
  msgstr "Сигурни ли сте, че искате да продължите?"
2239
 
2240
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2241
  msgid "This might take a while and may slow down your site during this action!"
2242
  msgstr ""
2243
  "Това действие ще отнеме време и може да забави сайта ви по време на "
2244
  "изпълнението му!"
2245
 
2246
- #: dashboard/settings/maintenance.php:16
2247
  msgid "Delete stats older than 356 days (Optional)."
2248
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2249
 
2250
- #: dashboard/settings/maintenance.php:17
2251
  msgid ""
2252
  "AdRotate creates empty records when you start making ads, groups or "
2253
  "schedules. In rare occasions these records are faulty."
2254
  msgstr ""
2255
 
2256
- #: dashboard/settings/maintenance.php:17
2257
  msgid ""
2258
  "If you made an ad, group or schedule that does not save when you make it use "
2259
  "this button to delete those empty records."
2260
  msgstr ""
2261
 
2262
- #: dashboard/settings/maintenance.php:17
2263
  msgid ""
2264
  "Additionally you can clean up old schedules and/or statistics. This will "
2265
  "improve the speed of your site."
2266
  msgstr ""
2267
 
2268
- #: dashboard/settings/maintenance.php:21
2269
  msgid "Re-evaluate Ads"
2270
  msgstr "Преоценка на реклами"
2271
 
2272
- #: dashboard/settings/maintenance.php:23
2273
  msgid "Re-evaluate all ads"
2274
  msgstr "Преоценка на всички реклами"
2275
 
2276
- #: dashboard/settings/maintenance.php:23
2277
  msgid "You are about to check all ads for errors."
2278
  msgstr "На път сте да проверите всички реклами за грешки."
2279
 
2280
- #: dashboard/settings/maintenance.php:24
2281
  msgid ""
2282
  "This will apply all evaluation rules to all ads to see if any error slipped "
2283
  "in. Normally you should not need this feature."
@@ -2285,7 +2281,7 @@ msgstr ""
2285
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
2286
  "нужда от тази функция."
2287
 
2288
- #: dashboard/settings/maintenance.php:28
2289
  msgid ""
2290
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2291
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2298,11 +2294,11 @@ msgid ""
2298
  "is not a valid point in any case."
2299
  msgstr ""
2300
 
2301
- #: dashboard/settings/maintenance.php:30
2302
  msgid "Troubleshooting"
2303
  msgstr "Отстраняване на проблеми"
2304
 
2305
- #: dashboard/settings/maintenance.php:31
2306
  msgid ""
2307
  "The below options are not meant for normal use and are only there for "
2308
  "developers to review saved settings or how ads are selected. These can be "
@@ -2310,19 +2306,19 @@ msgid ""
2310
  "SHOULD BE LEFT UNCHECKED!!"
2311
  msgstr ""
2312
 
2313
- #: dashboard/settings/maintenance.php:34
2314
  msgid "Developer Debug"
2315
  msgstr "Developer Debug"
2316
 
2317
- #: dashboard/settings/maintenance.php:36
2318
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2319
  msgstr ""
2320
 
2321
- #: dashboard/settings/maintenance.php:37
2322
  msgid "View advert specs and (some) stats in the dashboard."
2323
  msgstr ""
2324
 
2325
- #: dashboard/settings/maintenance.php:38
2326
  msgid ""
2327
  "Disable timers for clicks and impressions and enable a alert window for "
2328
  "clicktracking."
@@ -2330,82 +2326,77 @@ msgstr ""
2330
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2331
  "за проследяване на кликове."
2332
 
2333
- #: dashboard/settings/maintenance.php:39
2334
  msgid "Temporarily disable encryption on the redirect url."
2335
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
2336
 
2337
- #: dashboard/settings/maintenance.php:44
2338
  msgid "Status and Versions"
2339
  msgstr ""
2340
 
2341
- #: dashboard/settings/maintenance.php:47
2342
  msgid "Current version:"
2343
  msgstr "Текуща версия:"
2344
 
2345
- #: dashboard/settings/maintenance.php:48
2346
  msgid "Previous version:"
2347
  msgstr "Предишна версия:"
2348
 
2349
- #: dashboard/settings/maintenance.php:51
2350
  msgid "Current database version:"
2351
  msgstr "Текуща верския на базата данни:"
2352
 
2353
- #: dashboard/settings/maintenance.php:52
2354
  msgid "Previous database version:"
2355
  msgstr "Предишна версия на базата данни:"
2356
 
2357
- #: dashboard/settings/maintenance.php:55
2358
  msgid "Current status of adverts"
2359
  msgstr "Настоящ статус на рекламите"
2360
 
2361
- #: dashboard/settings/maintenance.php:56
2362
  msgid "Normal"
2363
  msgstr "Нормално"
2364
 
2365
- #: dashboard/settings/maintenance.php:56
2366
  msgid "Error"
2367
  msgstr "Грешка"
2368
 
2369
- #: dashboard/settings/maintenance.php:56
2370
  msgid "Expired"
2371
  msgstr "Изтекло"
2372
 
2373
- #: dashboard/settings/maintenance.php:56
2374
  msgid "Expires Soon"
2375
  msgstr "Изтича скоро"
2376
 
2377
- #: dashboard/settings/maintenance.php:56
2378
  msgid "Unknown"
2379
  msgstr ""
2380
 
2381
- #: dashboard/settings/maintenance.php:59
2382
  #, fuzzy
2383
  msgid "Ad evaluation next run:"
2384
  msgstr "Оценка на рекламата:"
2385
 
2386
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2387
- #: dashboard/settings/maintenance.php:68
2388
  msgid "Not scheduled!"
2389
  msgstr "Не е планирано!"
2390
 
2391
- #: dashboard/settings/maintenance.php:63
2392
- msgid "Ad Notifications next run:"
2393
- msgstr ""
2394
-
2395
- #: dashboard/settings/maintenance.php:67
2396
  #, fuzzy
2397
  msgid "Clean Trackerdata next run:"
2398
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
2399
 
2400
- #: dashboard/settings/misc.php:1
2401
  msgid "Miscellaneous"
2402
  msgstr "Разни"
2403
 
2404
- #: dashboard/settings/misc.php:4
2405
  msgid "Widget alignment"
2406
  msgstr "Подравняване на джаджата"
2407
 
2408
- #: dashboard/settings/misc.php:5
2409
  msgid ""
2410
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2411
  "not always help!)"
@@ -2413,11 +2404,11 @@ msgstr ""
2413
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
2414
  "темата Ви. (Не винаги помага)"
2415
 
2416
- #: dashboard/settings/misc.php:8
2417
  msgid "Widget padding"
2418
  msgstr "Padding за джаджата"
2419
 
2420
- #: dashboard/settings/misc.php:9
2421
  msgid ""
2422
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2423
  "not always work!)"
@@ -2425,11 +2416,11 @@ msgstr ""
2425
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
2426
  "джаджата. (Не винаги работи!)"
2427
 
2428
- #: dashboard/settings/misc.php:13
2429
  msgid "NOTICE:"
2430
  msgstr "ЗАБЕЛЕЖКА:"
2431
 
2432
- #: dashboard/settings/misc.php:14
2433
  msgid ""
2434
  "You have enabled W3 Total Caching support but not defined the security hash. "
2435
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2441,15 +2432,15 @@ msgstr ""
2441
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
2442
  "включена в W3 Total Cache."
2443
 
2444
- #: dashboard/settings/misc.php:18
2445
  msgid "W3 Total Caching"
2446
  msgstr "W3 Total Caching"
2447
 
2448
- #: dashboard/settings/misc.php:19
2449
  msgid "Check this box if you use W3 Total Caching on your site."
2450
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
2451
 
2452
- #: dashboard/settings/misc.php:23
2453
  msgid ""
2454
  "It may take a while for the ad to start rotating. The caching plugin needs "
2455
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2458,7 +2449,7 @@ msgstr ""
2458
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
2459
  "седмица, ако не го направите ръчно."
2460
 
2461
- #: dashboard/settings/misc.php:23
2462
  msgid ""
2463
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2464
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2467,27 +2458,27 @@ msgstr ""
2467
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
2468
  "сами."
2469
 
2470
- #: dashboard/settings/notifications.php:1
2471
  msgid "Notifications - Available in AdRotate Pro"
2472
  msgstr ""
2473
 
2474
- #: dashboard/settings/notifications.php:2
2475
  msgid "Set up who gets notifications if ads need your attention."
2476
  msgstr "Изберете кой да получава известие, ако реклама се нуждае от внимание."
2477
 
2478
- #: dashboard/settings/notifications.php:5
2479
  msgid "Delivery method"
2480
  msgstr "Метод на доставка"
2481
 
2482
- #: dashboard/settings/notifications.php:7
2483
  msgid "Email message."
2484
  msgstr "Email съобщение."
2485
 
2486
- #: dashboard/settings/notifications.php:8
2487
  msgid "Push notifications to your smartphone."
2488
  msgstr "Push известия към вашия смартфон."
2489
 
2490
- #: dashboard/settings/notifications.php:9
2491
  msgid ""
2492
  "Push notifications are delivered through Pushover, a notification service "
2493
  "for Android and iOS"
@@ -2495,7 +2486,7 @@ msgstr ""
2495
  "Push известията се доставят чрез Pushover, услуга за известия за Android и "
2496
  "iOS"
2497
 
2498
- #: dashboard/settings/notifications.php:9
2499
  msgid ""
2500
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2501
  "information can be found on the pushover website;"
@@ -2503,46 +2494,46 @@ msgstr ""
2503
  "Приложението Pushover изисква еднократна поръчка за Android и/или iOS. "
2504
  "Повече информация можете да намерите на сайта на разработчика;"
2505
 
2506
- #: dashboard/settings/notifications.php:13
2507
  msgid "Test notification"
2508
  msgstr ""
2509
 
2510
- #: dashboard/settings/notifications.php:15
2511
  msgid ""
2512
  "This sends a test notification. Before you test, save the options first!"
2513
  msgstr ""
2514
  "Изпращане на тестово известие. Преди да кликнете тест, запазете настройките!"
2515
 
2516
- #: dashboard/settings/notifications.php:20
2517
  msgid "Dashboard Notifications"
2518
  msgstr "Известия на таблото"
2519
 
2520
- #: dashboard/settings/notifications.php:21
2521
  msgid "These show to every administrator who can edit adverts."
2522
  msgstr ""
2523
 
2524
- #: dashboard/settings/notifications.php:24
2525
  msgid "Notification banners"
2526
  msgstr ""
2527
 
2528
- #: dashboard/settings/notifications.php:25
2529
  msgid "Disable dashboard notifications."
2530
  msgstr ""
2531
 
2532
- #: dashboard/settings/notifications.php:29
2533
  msgid "Email Notifications"
2534
  msgstr "Email Известия"
2535
 
2536
- #: dashboard/settings/notifications.php:30
2537
  msgid "Set up who gets notification emails."
2538
  msgstr "Задайте кой да получава известия по email."
2539
 
2540
- #: dashboard/settings/notifications.php:33
2541
- #: dashboard/settings/notifications.php:53
2542
  msgid "Publishers"
2543
  msgstr "Издатели"
2544
 
2545
- #: dashboard/settings/notifications.php:36
2546
  msgid ""
2547
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2548
  "list to a minimum!"
@@ -2550,7 +2541,7 @@ msgstr ""
2550
  "За разделител използвайте запетая. Максимум 5 адреса. Използвайте възможно "
2551
  "най-малко адреси в този списък!"
2552
 
2553
- #: dashboard/settings/notifications.php:37
2554
  msgid ""
2555
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2556
  "email notifications will be send."
@@ -2558,11 +2549,11 @@ msgstr ""
2558
  "Съобщенията се изпращат когато е необходимо, но не по-често от веднъж на 24 "
2559
  "часа. Ако полето е празно няма да се изпращат известия по email."
2560
 
2561
- #: dashboard/settings/notifications.php:41
2562
  msgid "Advertisers"
2563
  msgstr "Рекламодатели"
2564
 
2565
- #: dashboard/settings/notifications.php:44
2566
  msgid ""
2567
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2568
  "This field may not be empty!"
@@ -2570,11 +2561,11 @@ msgstr ""
2570
  "Кой да получава email съобщения от рекламодатели. Максимум 2 адреса, "
2571
  "разделени със запетая. Полето не може да бъде празно!"
2572
 
2573
- #: dashboard/settings/notifications.php:49
2574
  msgid "Push Notifications"
2575
  msgstr "Push известия"
2576
 
2577
- #: dashboard/settings/notifications.php:50
2578
  msgid ""
2579
  "Receive information about what is happening with your AdRotate setup on your "
2580
  "smartphone via Pushover."
@@ -2582,28 +2573,28 @@ msgstr ""
2582
  "Получавайте информация относно случващото се с вашата AdRotate инсталация "
2583
  "директно на смартфона си чрез Pushover."
2584
 
2585
- #: dashboard/settings/notifications.php:55
2586
  msgid "When you are running out of Geo Targeting Lookups."
2587
  msgstr ""
2588
 
2589
- #: dashboard/settings/notifications.php:56
2590
  msgid "Daily digest of any advert status other than normal."
2591
  msgstr ""
2592
  "Изпращане на дневен отчет с обявите, чийто статус е различен от нормален."
2593
 
2594
- #: dashboard/settings/notifications.php:57
2595
  msgid "Any advertiser saving an advert in your moderation queue."
2596
  msgstr "Всеки рекламодател, записващ реклама в опашката за одобрение."
2597
 
2598
- #: dashboard/settings/notifications.php:58
2599
  msgid "A moderator approved an advert from the moderation queue."
2600
  msgstr "Модератора е одобрил реклама от опашката за одобрение."
2601
 
2602
- #: dashboard/settings/notifications.php:59
2603
  msgid "A moderator rejected an advert from the moderation queue."
2604
  msgstr "Модератора е отхвърлил реклама от опашката за одобрение."
2605
 
2606
- #: dashboard/settings/notifications.php:59
2607
  msgid ""
2608
  "If you have a lot of activity with many advertisers adding/changing adverts "
2609
  "you may get a lot of messages!"
@@ -2611,182 +2602,217 @@ msgstr ""
2611
  "Ако имате множество дейности с много рекламодатели, които добавят/променят "
2612
  "реклами, то ще получавате много съобщения!"
2613
 
2614
- #: dashboard/settings/notifications.php:64
2615
  msgid "User Key"
2616
  msgstr "Потребителски ключ"
2617
 
2618
- #: dashboard/settings/notifications.php:66
2619
  msgid "Get your user token"
2620
  msgstr ""
2621
 
2622
- #: dashboard/settings/notifications.php:66
2623
- #: dashboard/settings/notifications.php:72
2624
  msgid "here"
2625
  msgstr ""
2626
 
2627
- #: dashboard/settings/notifications.php:70
2628
  msgid "Api Token"
2629
  msgstr "Api Token"
2630
 
2631
- #: dashboard/settings/notifications.php:72
2632
  msgid "Create your"
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/notifications.php:72
2636
  msgid "App"
2637
  msgstr ""
2638
 
2639
- #: dashboard/settings/notifications.php:72
2640
  msgid "and get your API token"
2641
  msgstr ""
2642
 
2643
- #: dashboard/settings/roles.php:1
2644
  msgid "Roles"
2645
  msgstr ""
2646
 
2647
- #: dashboard/settings/roles.php:2
2648
  msgid "Who has access to what?"
2649
  msgstr "Кой до какво има достъп?"
2650
 
2651
- #: dashboard/settings/roles.php:5
2652
  msgid "Manage/Add/Edit adverts"
2653
  msgstr "Управление/Добавяне/Редакция на обяви"
2654
 
2655
- #: dashboard/settings/roles.php:9
2656
  msgid "Role to see and add/edit ads."
2657
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
2658
 
2659
- #: dashboard/settings/roles.php:13
2660
  msgid "Delete/Reset adverts"
2661
  msgstr "Изтриване/Нулиране на реклами"
2662
 
2663
- #: dashboard/settings/roles.php:17
2664
  msgid "Role to delete ads and reset stats."
2665
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
2666
 
2667
- #: dashboard/settings/roles.php:21
2668
  msgid "Manage/Add/Edit groups"
2669
  msgstr "Управление/Добавяне/Редакция на групи"
2670
 
2671
- #: dashboard/settings/roles.php:25
2672
  msgid "Role to see and add/edit groups."
2673
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
2674
 
2675
- #: dashboard/settings/roles.php:29
2676
  msgid "Delete groups"
2677
  msgstr "Изтриване на групи"
2678
 
2679
- #: dashboard/settings/roles.php:33
2680
  msgid "Role to delete groups."
2681
  msgstr "Роля за изтриване на групи."
2682
 
2683
- #: dashboard/settings/statistics.php:2
2684
  msgid "Track statistics for your adverts."
2685
  msgstr ""
2686
 
2687
- #: dashboard/settings/statistics.php:5
2688
  msgid "How to track stats"
2689
  msgstr ""
2690
 
2691
- #: dashboard/settings/statistics.php:14
2692
- msgid "No impressions and clicks can be recorded for any of your adverts."
2693
- msgstr ""
2694
-
2695
- #: dashboard/settings/statistics.php:15
2696
  msgid "Tracks impressions and clicks internally"
2697
  msgstr ""
2698
 
2699
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2700
- #: dashboard/settings/statistics.php:19
2701
  msgid "manual"
2702
  msgstr ""
2703
 
2704
- #: dashboard/settings/statistics.php:16
2705
  msgid ""
2706
  "Click and Impression recording, Click and impression limits, impression "
2707
- "spread for schedules, local stats display."
 
2708
  msgstr ""
2709
 
2710
- #: dashboard/settings/statistics.php:17
 
 
 
 
2711
  msgid ""
2712
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2713
  "attributes"
2714
  msgstr ""
2715
 
2716
- #: dashboard/settings/statistics.php:18
2717
  msgid ""
2718
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2719
  "Contents."
2720
  msgstr ""
2721
 
2722
- #: dashboard/settings/statistics.php:19
2723
  msgid ""
2724
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2725
  "uses onClick() and onload() in adverts"
2726
  msgstr ""
2727
 
2728
- #: dashboard/settings/statistics.php:20
2729
  msgid ""
2730
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2731
  msgstr ""
2732
 
2733
- #: dashboard/settings/statistics.php:26
2734
  msgid "Internal Tracker"
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/statistics.php:27
2738
  msgid ""
2739
  "The settings below are for the internal tracker and have no effect when "
2740
  "using Piwik/Google Analytics."
2741
  msgstr ""
2742
 
2743
- #: dashboard/settings/statistics.php:30
2744
  msgid "Logged in impressions"
2745
  msgstr "Импресии от вписани потребители"
2746
 
2747
- #: dashboard/settings/statistics.php:32
2748
  msgid "Track impressions from logged in users."
2749
  msgstr ""
2750
 
2751
- #: dashboard/settings/statistics.php:36
2752
  msgid "Logged in clicks"
2753
  msgstr "Кликове от вписани потребители"
2754
 
2755
- #: dashboard/settings/statistics.php:38
2756
  msgid "Track clicks from logged in users."
2757
  msgstr "Проследяване на кликове от вписани потребители."
2758
 
2759
- #: dashboard/settings/statistics.php:42
2760
- msgid "Impressions timer"
2761
- msgstr "Таймер за импресии"
2762
 
2763
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2764
  msgid "Seconds."
2765
  msgstr "Секудни."
2766
 
2767
- #: dashboard/settings/statistics.php:45
2768
  msgid "Default: 60."
2769
  msgstr "По подразбиране: 60."
2770
 
2771
- #: dashboard/settings/statistics.php:45
2772
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2773
  msgstr ""
2774
 
2775
- #: dashboard/settings/statistics.php:49
2776
- msgid "Clicks timer"
2777
- msgstr "Таймер за кликове"
2778
 
2779
- #: dashboard/settings/statistics.php:52
2780
  msgid "Default: 86400."
2781
  msgstr "По подразбиране: 86400."
2782
 
2783
- #: dashboard/settings/statistics.php:52
2784
  msgid ""
2785
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2786
  msgstr ""
2787
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2788
  "(24 часа)."
2789
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2790
  #~ msgid "Learn More"
2791
  #~ msgstr "Научете повече"
2792
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
236
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
237
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
238
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
239
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
240
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
241
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
242
+ #: dashboard/settings/geotargeting.php:26
243
  msgid "Buy now"
244
  msgstr "Купи сега"
245
 
336
  msgid "on WordPress.org to help AdRotate grow in a positive way"
337
  msgstr "на WordPress.org, за да се развива AdRotate"
338
 
339
+ #: adrotate-output.php:887
340
  msgid "Available in AdRotate Pro"
341
  msgstr "Налично в AdRotate Pro"
342
 
352
  msgid "Learn more"
353
  msgstr "Повече информация"
354
 
355
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
356
+ #: dashboard/publisher/adverts-edit.php:240
357
  msgid "January"
358
  msgstr "Януари"
359
 
360
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
361
+ #: dashboard/publisher/adverts-edit.php:241
362
  msgid "February"
363
  msgstr "Февруари"
364
 
365
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
366
+ #: dashboard/publisher/adverts-edit.php:242
367
  msgid "March"
368
  msgstr "Март"
369
 
370
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
371
+ #: dashboard/publisher/adverts-edit.php:243
372
  msgid "April"
373
  msgstr "Април"
374
 
375
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
376
+ #: dashboard/publisher/adverts-edit.php:244
377
  msgid "May"
378
  msgstr "Май"
379
 
380
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
381
+ #: dashboard/publisher/adverts-edit.php:245
382
  msgid "June"
383
  msgstr "Юни"
384
 
385
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
386
+ #: dashboard/publisher/adverts-edit.php:246
387
  msgid "July"
388
  msgstr "Юли"
389
 
390
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
391
+ #: dashboard/publisher/adverts-edit.php:247
392
  msgid "August"
393
  msgstr "Август"
394
 
395
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
396
+ #: dashboard/publisher/adverts-edit.php:248
397
  msgid "September"
398
  msgstr "Септември"
399
 
400
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
401
+ #: dashboard/publisher/adverts-edit.php:249
402
  msgid "October"
403
  msgstr "Октомври"
404
 
405
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
406
+ #: dashboard/publisher/adverts-edit.php:250
407
  msgid "November"
408
  msgstr "Ноември"
409
 
410
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
411
+ #: dashboard/publisher/adverts-edit.php:251
412
  msgid "December"
413
  msgstr "Декември"
414
 
521
  msgstr "Управление на групи"
522
 
523
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
524
+ #: dashboard/publisher/groups-main.php:70
525
  msgid "Report"
526
  msgstr "Доклад"
527
 
537
  "Управлението на графици и множество графици за една реклама са налични в "
538
  "AdRotate Pro."
539
 
540
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
541
  #: dashboard/publisher/adverts-main.php:114
542
  #: dashboard/publisher/groups-edit.php:75
543
+ #: dashboard/publisher/groups-main.php:89
544
  msgid "More information"
545
  msgstr "Повече информация"
546
 
574
  msgid "End"
575
  msgstr "Край"
576
 
577
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
578
  #: dashboard/publisher/groups-main.php:34
579
  msgid "Ads"
580
  msgstr "Реклами"
581
 
582
  #: adrotate.php:428
 
 
 
 
583
  msgid "Max Impressions"
584
  msgstr "Максимум импресии"
585
 
586
+ #: adrotate.php:429
587
+ msgid "Max Clicks"
588
+ msgstr "Максимум кликове"
589
+
590
  #: adrotate.php:459
591
  msgid "No schedules created yet!"
592
  msgstr "Все още няма създадени графици!"
670
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
671
  "е строго препоръчителен."
672
 
673
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
674
  msgid ""
675
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
676
  "filename instead of \".full\" for the various viewports."
679
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
680
  "файловете, вместо \".full\"."
681
 
682
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
683
  #: dashboard/publisher/groups-edit.php:312
684
  #: dashboard/publisher/groups-edit.php:320
685
  msgid "Example:"
686
  msgstr "Пример:"
687
 
688
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
689
  msgid ""
690
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
691
  "for different viewports."
781
  "forum. Get a solution (usually) within a day."
782
  msgstr ""
783
 
784
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
785
  msgid "AdRotate is brought to you by"
786
  msgstr "AdRotate достига до Вас, благодарение на"
787
 
788
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
789
  msgid ""
790
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
791
+ "starters or people looking for a new direction!"
792
  msgstr ""
793
 
 
 
 
 
794
  #: dashboard/adrotatepro.php:58
795
  msgid "Schedule all campaigns with ease"
796
  msgstr "Планиране на всички кампании с лекота"
817
  msgstr ""
818
 
819
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
820
+ #: dashboard/info.php:93 dashboard/info.php:105
821
  msgid "Buy AdRotate Professional"
822
  msgstr "Купете AdRotate Professional"
823
 
824
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
825
  msgid "Single License"
826
  msgstr ""
827
 
828
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
829
  msgid "For one WordPress installation."
830
  msgstr "За една инсталация на WordPress."
831
 
832
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
833
+ #: dashboard/info.php:98 dashboard/info.php:110
834
  msgid "Duo License"
835
  msgstr "Duo лиценз"
836
 
837
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
838
  msgid "For two WordPress installations."
839
  msgstr "За две Wordpress инсталации."
840
 
841
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
842
+ #: dashboard/info.php:99 dashboard/info.php:111
843
  msgid "Multi License"
844
  msgstr "Multi лиценз"
845
 
846
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
847
  msgid " For up to five WordPress installations."
848
  msgstr " За до 5 Wordpress инсталации."
849
 
850
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
851
+ #: dashboard/info.php:100 dashboard/info.php:112
852
  msgid "Developer License"
853
  msgstr "Developer лиценз"
854
 
855
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
856
  msgid "Unlimited WordPress installations and/or networks."
857
  msgstr ""
858
 
859
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
860
+ #: dashboard/info.php:101 dashboard/info.php:114
861
  msgid "Compare licenses"
862
  msgstr "Сравнение на лицензи"
863
 
864
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
865
  msgid "Not sure which license is for you? Compare them..."
866
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
867
 
868
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
869
  msgid "All Licenses"
870
  msgstr "Всички лицензи"
871
 
872
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
873
  msgid "Lifetime License"
874
  msgstr ""
875
 
876
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
877
  msgid "Single installation."
878
  msgstr ""
879
 
880
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
881
  msgid "Up to 2 installations."
882
  msgstr ""
883
 
884
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
885
  msgid "Up to 10 installations."
886
  msgstr ""
887
 
888
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
889
  msgid "Up to 25 installations or multisite networks."
890
  msgstr ""
891
 
892
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
893
  msgid ""
894
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
895
  msgstr ""
896
 
897
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
898
  msgid "Not sure which license is for you?"
899
  msgstr ""
900
 
901
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
902
  msgid "Compare Licenses"
903
  msgstr ""
904
 
905
+ #: dashboard/info.php:24
906
  msgid "Currently"
907
  msgstr "В момента"
908
 
909
+ #: dashboard/info.php:30
910
  msgid "Your setup"
911
  msgstr "Вие имате"
912
 
913
+ #: dashboard/info.php:31
914
  msgid "Adverts that need you"
915
  msgstr "Реклами, които изискват вниманието Ви"
916
 
917
+ #: dashboard/info.php:37
918
  msgid "Adverts"
919
  msgstr "Реклами"
920
 
921
+ #: dashboard/info.php:38
922
  msgid "(Almost) Expired"
923
  msgstr "(Почти) Изтекли"
924
 
925
+ #: dashboard/info.php:41
926
  msgid "Groups"
927
  msgstr "Групи"
928
 
929
+ #: dashboard/info.php:42
930
  msgid "Have errors"
931
  msgstr "Има грешки"
932
 
933
+ #: dashboard/info.php:48
934
  msgid "Support AdRotate"
935
  msgstr "Подкрепете AdRotate"
936
 
937
+ #: dashboard/info.php:55
938
  msgid "Your gift helps ensure the continued development of AdRotate!"
939
  msgstr ""
940
 
941
+ #: dashboard/info.php:55
942
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
943
  msgstr ""
944
 
945
+ #: dashboard/info.php:64
946
  msgid "AdRotate News and Developer Blog"
947
  msgstr "AdRotate блог за новини и разработка"
948
 
949
+ #: dashboard/info.php:86
950
  msgid "Get more features with AdRotate Pro"
951
  msgstr "Получете по-голяма функционалност с AdRotate Pro"
952
 
953
+ #: dashboard/info.php:89
954
  msgid ""
955
  "Benefit from extra features to reinforce your income with advertising "
956
  "campaigns. Make the most of your website with the powerful tools AdRotate "
960
  "подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
961
  "функции, които предлага AdRotate Pro спрямо безплатната версия."
962
 
963
+ #: dashboard/info.php:89
964
  msgid "Want to know more about"
965
  msgstr ""
966
 
967
+ #: dashboard/info.php:89
968
  msgid "Visit the"
969
  msgstr "Посетете"
970
 
971
+ #: dashboard/info.php:89
972
  msgid "website"
973
  msgstr "уебсайт"
974
 
 
 
 
 
975
  #: dashboard/publisher/adverts-disabled.php:15
976
  msgid "Disabled Ads"
977
  msgstr "Деактивиране на реклами"
978
 
979
  #: dashboard/publisher/adverts-disabled.php:21
980
+ #: dashboard/publisher/adverts-edit.php:175
981
  msgid "Activate"
982
  msgstr "Активиране"
983
 
1002
 
1003
  #: dashboard/publisher/adverts-disabled.php:38
1004
  #: dashboard/publisher/adverts-report.php:34
 
 
1005
  #: dashboard/publisher/groups-report.php:40
1006
  msgid "Impressions"
1007
  msgstr "Импресии"
1025
  #: dashboard/publisher/adverts-disabled.php:74
1026
  #: dashboard/publisher/adverts-error.php:64
1027
  #: dashboard/publisher/adverts-main.php:87
1028
+ #: dashboard/publisher/groups-main.php:70
1029
  msgid "Edit"
1030
  msgstr "Редакция"
1031
 
1148
  "click to add it."
1149
  msgstr ""
1150
 
1151
+ #: dashboard/publisher/adverts-edit.php:140
1152
+ msgid "Preview"
1153
+ msgstr "Преглед"
1154
+
1155
+ #: dashboard/publisher/adverts-edit.php:143
1156
+ msgid ""
1157
+ "Note: While this preview is an accurate one, it might look different then it "
1158
+ "does on the website."
1159
+ msgstr ""
1160
+ "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1161
+ "изглежда по-различно, когато се показва на страницата Ви."
1162
+
1163
+ #: dashboard/publisher/adverts-edit.php:144
1164
+ msgid ""
1165
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1166
+ msgstr ""
1167
+ "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1168
+
1169
+ #: dashboard/publisher/adverts-edit.php:149
1170
  msgid "Banner asset"
1171
  msgstr ""
1172
 
1173
+ #: dashboard/publisher/adverts-edit.php:152
1174
  msgid "WordPress media:"
1175
  msgstr ""
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:152
1178
  msgid "Select Banner"
1179
  msgstr "Избор на банер"
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:154
1182
  msgid "- OR -"
1183
  msgstr "- ИЛИ -"
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:156
1186
  msgid "Banner folder:"
1187
  msgstr "Папка на банера:"
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:157
1190
  msgid "No image selected"
1191
  msgstr "Не е избрана картинка"
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:161
1194
  msgid "Use %image% in the adcode instead of the file path."
1195
  msgstr ""
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:161
1198
  msgid ""
1199
  "Use either the text field or the dropdown. If the textfield has content that "
1200
  "field has priority."
1202
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1203
  "попълнено, то ще бъде с преоритет."
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:166
1206
+ #: dashboard/settings/statistics.php:12
1207
  msgid "Statistics"
1208
  msgstr "Статистики"
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:168
1211
  msgid "Enable click and impression tracking for this advert."
1212
  msgstr ""
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:169
1215
  msgid ""
1216
  "Note: Clicktracking does not work for Javascript adverts such as those "
1217
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1218
+ "always supported."
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:179
1222
  msgid "Yes, this ad will be used"
1223
  msgstr "Да, тази реклама ще се използва"
1224
 
1225
+ #: dashboard/publisher/adverts-edit.php:180
1226
  msgid "No, do not show this ad anywhere"
1227
  msgstr "Не, не показвай тази реклама никъде"
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:187
1230
  #: dashboard/publisher/adverts-main.php:114
1231
  #: dashboard/publisher/groups-edit.php:75
1232
+ #: dashboard/publisher/groups-main.php:89
1233
  msgid "Get more features with AdRotate Pro."
1234
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:190
1237
+ #: dashboard/publisher/adverts-edit.php:290
1238
+ #: dashboard/publisher/adverts-edit.php:378
1239
+ #: dashboard/publisher/adverts-edit.php:419
1240
  msgid "Save Advert"
1241
  msgstr "Запиши рекламата"
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:191
1244
+ #: dashboard/publisher/adverts-edit.php:291
1245
+ #: dashboard/publisher/adverts-edit.php:379
1246
+ #: dashboard/publisher/adverts-edit.php:420
1247
  #: dashboard/publisher/groups-edit.php:154
1248
  #: dashboard/publisher/groups-edit.php:301
1249
  #: dashboard/publisher/groups-edit.php:393
1250
  msgid "Cancel"
1251
  msgstr "Отказ"
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:194
1254
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1255
  #: dashboard/publisher/groups-edit.php:136
1256
  #: dashboard/publisher/groups-edit.php:283
1257
  msgid "Usage"
1258
  msgstr "Употреба"
1259
 
1260
+ #: dashboard/publisher/adverts-edit.php:198
1261
+ #: dashboard/publisher/adverts-edit.php:365
1262
  #: dashboard/publisher/groups-edit.php:140
1263
  #: dashboard/publisher/groups-edit.php:287
1264
  msgid "Widget"
1265
  msgstr ""
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:199
1268
+ #: dashboard/publisher/adverts-edit.php:366
1269
  msgid ""
1270
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1271
  "and enter ID"
1272
  msgstr ""
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:202
1275
+ #: dashboard/publisher/adverts-edit.php:369
1276
  #: dashboard/publisher/groups-edit.php:144
1277
  #: dashboard/publisher/groups-edit.php:291
1278
  msgid "In a post or page"
1279
  msgstr ""
1280
 
1281
+ #: dashboard/publisher/adverts-edit.php:204
1282
+ #: dashboard/publisher/adverts-edit.php:371
1283
  #: dashboard/publisher/groups-edit.php:146
1284
  #: dashboard/publisher/groups-edit.php:293
1285
  msgid "Directly in a theme"
1286
  msgstr ""
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:210
1289
  msgid "Schedule your advert"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:214
1293
  msgid "Start date (day/month/year)"
1294
  msgstr ""
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:235
1297
  msgid "End date (day/month/year)"
1298
  msgstr ""
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:258
1301
  msgid "Start time (hh:mm)"
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:265
1305
  msgid "End time (hh:mm)"
1306
  msgstr ""
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:275
1309
  msgid "Maximum Clicks"
1310
  msgstr ""
1311
 
1312
+ #: dashboard/publisher/adverts-edit.php:276
1313
+ #: dashboard/publisher/adverts-edit.php:278
1314
  msgid "Leave empty or 0 to skip this."
1315
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:277
1318
  msgid "Maximum Impressions"
1319
  msgstr ""
1320
 
1321
+ #: dashboard/publisher/adverts-edit.php:282
1322
  msgid "Important"
1323
  msgstr ""
1324
 
1325
+ #: dashboard/publisher/adverts-edit.php:283
1326
  msgid ""
1327
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1328
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1329
  "14:00 hours. 6AM is 6:00 hours."
1330
  msgstr ""
1331
 
1332
+ #: dashboard/publisher/adverts-edit.php:287
1333
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1334
  msgstr "Създайте множество графици за всяка реклама с AdRotate Pro."
1335
 
1336
+ #: dashboard/publisher/adverts-edit.php:287
1337
+ #: dashboard/publisher/adverts-edit.php:315
1338
+ #: dashboard/publisher/adverts-edit.php:359
1339
  #: dashboard/publisher/groups-edit.php:200
1340
  msgid "Upgrade today"
1341
  msgstr "Надградете днес"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:294
1344
  #: dashboard/publisher/groups-edit.php:157
1345
  msgid "Advanced"
1346
  msgstr "Разширени"
1347
 
1348
+ #: dashboard/publisher/adverts-edit.php:295
1349
  msgid "Everything below is optional."
1350
  msgstr "Всичко по-долу е по желание."
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:299
1353
  msgid "Responsive"
1354
  msgstr ""
1355
 
1356
+ #: dashboard/publisher/adverts-edit.php:301
1357
  msgid "Enable responsive support for this advert."
1358
  msgstr "Активиране на responsive дизайн за тази реклама."
1359
 
1360
+ #: dashboard/publisher/adverts-edit.php:302
1361
  msgid ""
1362
  "Upload your images to the banner folder and make sure the filename is in the "
1363
  "following format; \"imagename.full.ext\". A full set of sized images is "
1367
  "правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
1368
  "картинки е строго препоръчителен."
1369
 
1370
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1371
  #: dashboard/publisher/groups-edit.php:194
1372
  msgid "Sortorder"
1373
  msgstr ""
1374
 
1375
+ #: dashboard/publisher/adverts-edit.php:310
1376
  #: dashboard/publisher/groups-edit.php:196
1377
  msgid "For administrative purposes set a sortorder."
1378
  msgstr "За административни цели задайте критерий за сортиране."
1379
 
1380
+ #: dashboard/publisher/adverts-edit.php:310
1381
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1382
  msgstr ""
1383
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1384
  "на рекламата по подразбиране."
1385
 
1386
+ #: dashboard/publisher/adverts-edit.php:315
1387
  msgid ""
1388
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1389
  msgstr ""
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:317
1392
  msgid "Geo Targeting in AdRotate Pro"
1393
  msgstr ""
1394
 
1395
+ #: dashboard/publisher/adverts-edit.php:318
1396
  msgid ""
1397
  "Assign the advert to a group and enable that group to use Geo Targeting."
1398
  msgstr ""
1399
 
1400
+ #: dashboard/publisher/adverts-edit.php:322
1401
  msgid "Cities/States"
1402
  msgstr ""
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:325
1405
  msgid ""
1406
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1407
  "states ISO codes are supported)"
1408
  msgstr ""
1409
 
1410
+ #: dashboard/publisher/adverts-edit.php:325
1411
  msgid ""
1412
  "AdRotate does not check the validity of names so make sure you spell them "
1413
  "correctly!"
1415
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1416
  "правилно!"
1417
 
1418
+ #: dashboard/publisher/adverts-edit.php:329
1419
  msgid "Countries"
1420
  msgstr ""
1421
 
1422
+ #: dashboard/publisher/adverts-edit.php:354
1423
  msgid "Select the countries you want the adverts to show in."
1424
  msgstr "Изберете страните, в които искате да се показват рекламите."
1425
 
1426
+ #: dashboard/publisher/adverts-edit.php:354
1427
  msgid "Cities take priority and will be filtered first."
1428
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1429
 
1430
+ #: dashboard/publisher/adverts-edit.php:359
1431
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1432
  msgstr ""
1433
 
1434
+ #: dashboard/publisher/adverts-edit.php:383
1435
  msgid "Select Groups"
1436
  msgstr "Избор на групи"
1437
 
1438
+ #: dashboard/publisher/adverts-edit.php:388
1439
  msgid "ID - Name"
1440
  msgstr "ID - Име"
1441
 
1442
+ #: dashboard/publisher/adverts-edit.php:398
1443
+ #: dashboard/publisher/groups-main.php:60
1444
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
1445
  msgid "Default"
1446
  msgstr "По подразбиране"
1447
 
1448
+ #: dashboard/publisher/adverts-edit.php:399
1449
+ #: dashboard/publisher/groups-main.php:61
1450
  msgid "Dynamic"
1451
  msgstr "Динамично"
1452
 
1453
+ #: dashboard/publisher/adverts-edit.php:399
1454
+ #: dashboard/publisher/groups-main.php:61
1455
  msgid "second rotation"
1456
  msgstr "второ завъртане"
1457
 
1458
+ #: dashboard/publisher/adverts-edit.php:400
1459
+ #: dashboard/publisher/groups-main.php:62
1460
  msgid "Block"
1461
  msgstr "Блок"
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:400
1464
+ #: dashboard/publisher/groups-main.php:62
1465
  msgid "grid"
1466
  msgstr "решетка"
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:401
1469
  #: dashboard/publisher/groups-edit.php:202
1470
+ #: dashboard/publisher/groups-main.php:63
1471
  msgid "Post Injection"
1472
  msgstr "Вмъкване в публикации"
1473
 
1474
+ #: dashboard/publisher/adverts-edit.php:402
1475
  msgid "Geolocation"
1476
  msgstr "Геолокация"
1477
 
1478
+ #: dashboard/publisher/adverts-edit.php:408
1479
  #: dashboard/publisher/groups-edit.php:61
1480
+ #: dashboard/publisher/groups-main.php:70
1481
  msgid "Mode"
1482
  msgstr "Режим"
1483
 
1528
  msgid "Export to XML"
1529
  msgstr "Експорт в XML"
1530
 
1531
+ #: dashboard/publisher/adverts-main.php:42
1532
+ #: dashboard/publisher/groups-edit.php:336
1533
+ msgid "Weight"
1534
+ msgstr "Тежест"
1535
+
1536
  #: dashboard/publisher/adverts-main.php:44
1537
+ #: dashboard/publisher/groups-edit.php:333
1538
+ #: dashboard/publisher/groups-main.php:36
1539
  msgid "Shown"
1540
  msgstr "Показана"
1541
 
1738
  msgstr ""
1739
 
1740
  #: dashboard/publisher/groups-edit.php:184
1741
+ #: dashboard/settings/advertisers.php:28
1742
  msgid "Geo Targeting"
1743
  msgstr "Таргетиране спрямо местоположението"
1744
 
1778
 
1779
  #: dashboard/publisher/groups-edit.php:209
1780
  #: dashboard/publisher/groups-edit.php:247
1781
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1782
  msgid "Disabled"
1783
  msgstr "Изключено"
1784
 
1891
  msgid "Select adverts"
1892
  msgstr ""
1893
 
1894
+ #: dashboard/publisher/groups-edit.php:331
1895
+ msgid "Choose adverts"
1896
+ msgstr ""
1897
+
1898
  #: dashboard/publisher/groups-edit.php:337
1899
  msgid "Visible until"
1900
  msgstr "Да се вижда до"
1919
  msgid "This action can not be undone!"
1920
  msgstr "Това действие е необратимо!"
1921
 
1922
+ #: dashboard/publisher/groups-main.php:24
1923
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1924
+ #: dashboard/settings/maintenance.php:34
1925
  msgid "OK to continue, CANCEL to stop."
1926
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1927
 
1928
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1929
  msgid "No groups created!"
1930
  msgstr "Няма създадени групи!"
1931
 
1933
  msgid "Statistics for group"
1934
  msgstr "Статистика за групи"
1935
 
1936
+ #: dashboard/settings/advertisers.php:12
1937
  msgid "Advertisers - Available in AdRotate Pro"
1938
  msgstr ""
1939
 
1940
+ #: dashboard/settings/advertisers.php:13
1941
  msgid "Enable advertisers so they can review and manage their own ads."
1942
  msgstr ""
1943
  "Активирайте страницата за рекламодатели, за да могат сами да следят и "
1944
  "управляват рекламите си."
1945
 
1946
+ #: dashboard/settings/advertisers.php:16
1947
  msgid "Enable Advertisers"
1948
  msgstr "Активиране на страницата за рекламодатели"
1949
 
1950
+ #: dashboard/settings/advertisers.php:18
1951
  msgid "Allow adverts to be coupled to users (Advertisers)."
1952
  msgstr "Позволи рекламите да бъдат свързвани с потребители (Рекламодатели)."
1953
 
1954
+ #: dashboard/settings/advertisers.php:22
1955
  msgid "Edit/update adverts"
1956
  msgstr "Редакция/Обновяване на реклами"
1957
 
1958
+ #: dashboard/settings/advertisers.php:24
1959
  msgid "Allow advertisers to add new or edit their adverts."
1960
  msgstr "Позволяване на рекламодателите да редактират или добавят реклами."
1961
 
1962
+ #: dashboard/settings/advertisers.php:30
1963
  msgid ""
1964
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1965
  "be enabled, too."
1966
  msgstr ""
1967
 
1968
+ #: dashboard/settings/advertisers.php:34
1969
  msgid "Advertiser role"
1970
  msgstr "Роля на рекламодатели"
1971
 
1972
+ #: dashboard/settings/advertisers.php:36
1973
  msgid "Create a seperate user role for your advertisers."
1974
  msgstr ""
1975
 
1976
+ #: dashboard/settings/advertisers.php:37
1977
  msgid ""
1978
  "Don't forget to give these users access to their advertiser dashboard via "
1979
  "the Roles tab."
1980
  msgstr ""
1981
 
1982
+ #: dashboard/settings/general.php:12
1983
  msgid "General Settings"
1984
  msgstr ""
1985
 
1986
+ #: dashboard/settings/general.php:13
1987
  msgid "General settings for AdRotate."
1988
  msgstr ""
1989
 
1990
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
1991
+ msgid "Some options are only available in AdRotate Pro!"
1992
+ msgstr ""
1993
+
1994
+ #: dashboard/settings/general.php:16
1995
+ msgid "Text widgets"
1996
+ msgstr ""
1997
+
1998
+ #: dashboard/settings/general.php:17
1999
+ msgid ""
2000
+ "Enable if your theme does not support shortcodes in the WordPress text "
2001
+ "widget."
2002
+ msgstr ""
2003
+
2004
+ #: dashboard/settings/general.php:20
2005
  msgid "Load jQuery"
2006
  msgstr "Зареди jQuery"
2007
 
2008
+ #: dashboard/settings/general.php:21
2009
  msgid ""
2010
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2011
+ "groups, statistics and some other features."
2012
  msgstr ""
2013
 
2014
+ #: dashboard/settings/general.php:24
2015
  msgid "Load scripts in footer?"
2016
  msgstr ""
2017
 
2018
+ #: dashboard/settings/general.php:25
2019
  msgid ""
2020
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2021
  "site."
2022
  msgstr ""
2023
 
2024
+ #: dashboard/settings/general.php:28
2025
+ msgid "Adblock disguise"
2026
+ msgstr ""
2027
+
2028
+ #: dashboard/settings/general.php:30
2029
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2030
+ msgstr ""
2031
+
2032
+ #: dashboard/settings/general.php:31
2033
+ msgid ""
2034
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2035
+ msgstr ""
2036
+
2037
+ #: dashboard/settings/general.php:31
2038
+ msgid ""
2039
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2040
+ "instead of the AdRotate widget."
2041
+ msgstr ""
2042
+
2043
+ #: dashboard/settings/general.php:31
2044
+ msgid ""
2045
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2046
+ "feature will have little effect!"
2047
+ msgstr ""
2048
+
2049
+ #: dashboard/settings/general.php:36
2050
  msgid "Banner Folder"
2051
  msgstr "Папка с банери"
2052
 
2053
+ #: dashboard/settings/general.php:37
2054
  msgid "Set a location where your banner images will be stored."
2055
  msgstr ""
2056
  "Задайте местоположение, където да се записват вашите картинки за банери."
2057
 
2058
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2059
  msgid "Location"
2060
  msgstr "Местоположение"
2061
 
2062
+ #: dashboard/settings/general.php:42
2063
  msgid "(Default: wp-content/banners/)."
2064
  msgstr "(По подразбиране: wp-content/banners/)."
2065
 
2066
+ #: dashboard/settings/general.php:43
2067
  msgid ""
2068
  "To try and trick ad blockers you could set the folder to something crazy "
2069
  "like:"
2071
  "Опитайте да заблудите AdBlocker-ите, като използвате шантаво име за папката, "
2072
  "като например:"
2073
 
2074
+ #: dashboard/settings/general.php:44
2075
  msgid ""
2076
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2077
  "will show errors when the folder is missing."
2079
  "Папката няма да бъде създадена автоматично, ако не съществува. AdRotate ще "
2080
  "показва грешки, ако папката не съществува."
2081
 
2082
+ #: dashboard/settings/general.php:49
2083
  msgid "Bot filter"
2084
  msgstr "Филтър на ботове"
2085
 
2086
+ #: dashboard/settings/general.php:50
2087
  msgid "The bot filter is used for the AdRotate stats tracker."
2088
  msgstr ""
2089
 
2090
+ #: dashboard/settings/general.php:53
2091
  msgid "User-Agent Filter"
2092
  msgstr "Филтър за агенти"
2093
 
2094
+ #: dashboard/settings/general.php:56
2095
  msgid ""
2096
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2097
  msgstr ""
2098
 
2099
+ #: dashboard/settings/general.php:57
2100
  msgid ""
2101
  "Keep in mind that this might give false positives. The word 'fire' also "
2102
  "matches 'firefox', but not vice-versa. So be careful!"
2103
  msgstr ""
2104
 
2105
+ #: dashboard/settings/general.php:58
2106
  msgid ""
2107
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2108
  "characters are stripped out."
2109
  msgstr ""
2110
 
2111
+ #: dashboard/settings/general.php:59
2112
  msgid ""
2113
  "Additionally to the list specified here, empty User-Agents are blocked as "
2114
  "well."
2115
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
2116
 
2117
+ #: dashboard/settings/general.php:59
2118
  msgid "Learn more about"
2119
  msgstr "Научете повече за"
2120
 
2121
+ #: dashboard/settings/general.php:59
2122
  msgid "user-agents"
2123
  msgstr "агенти"
2124
 
2125
+ #: dashboard/settings/geotargeting.php:12
2126
  msgid "Geo Targeting - Available in AdRotate Pro"
2127
  msgstr ""
2128
 
2129
+ #: dashboard/settings/geotargeting.php:13
2130
  msgid "Target certain areas in the world for better advertising oppurtunities."
2131
  msgstr ""
2132
 
2133
+ #: dashboard/settings/geotargeting.php:16
2134
  msgid "Which Geo Service"
2135
  msgstr ""
2136
 
2137
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2138
  msgid ""
2139
  "The most complete and accurate geo targeting you can get for only $20 USD "
2140
  "per 50000 lookups."
2141
  msgstr ""
2142
 
2143
+ #: dashboard/settings/geotargeting.php:28
2144
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2145
  msgstr ""
2146
 
2147
+ #: dashboard/settings/geotargeting.php:30
2148
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2149
  msgstr ""
2150
 
2151
+ #: dashboard/settings/geotargeting.php:36
2152
  msgid "Geo Cookie Lifespan"
2153
  msgstr ""
2154
 
2155
+ #: dashboard/settings/geotargeting.php:45
2156
  msgid "Hours."
2157
  msgstr ""
2158
 
2159
+ #: dashboard/settings/geotargeting.php:46
2160
  msgid ""
2161
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2162
  "cookie last? A longer period is less accurate for mobile users but may "
2163
  "reduce the usage of your lookups drastically."
2164
  msgstr ""
2165
 
2166
+ #: dashboard/settings/geotargeting.php:52
2167
  msgid "MaxMind City/Country"
2168
  msgstr ""
2169
 
2170
+ #: dashboard/settings/geotargeting.php:55
2171
  msgid "Username/Email"
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/geotargeting.php:59
2175
  msgid "Password/License Key"
2176
  msgstr ""
2177
 
2178
+ #: dashboard/settings/maintenance.php:12
2179
  msgid "Maintenance"
2180
  msgstr "Поддръжка"
2181
 
2182
+ #: dashboard/settings/maintenance.php:13
2183
  msgid ""
2184
  "Use these functions when you notice your database is slow, unresponsive and "
2185
  "sluggish."
2186
  msgstr ""
2187
 
2188
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2189
  msgid "Optimize Database"
2190
  msgstr "Оптимизиране на базата данни"
2191
 
2192
+ #: dashboard/settings/maintenance.php:18
2193
  msgid "You are about to optimize the AdRotate database."
2194
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
2195
 
2196
+ #: dashboard/settings/maintenance.php:18
2197
  msgid "Did you make a backup of your database?"
2198
  msgstr "Направихте ли резервно копие на своята база данни?"
2199
 
2200
+ #: dashboard/settings/maintenance.php:18
2201
  msgid ""
2202
  "This may take a moment and may cause your website to respond slow "
2203
  "temporarily!"
2205
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
2206
  "момент!"
2207
 
2208
+ #: dashboard/settings/maintenance.php:19
2209
  msgid "Cleans up overhead data in the AdRotate tables."
2210
  msgstr "Почиста overhead данните в таблиците на AdRotate."
2211
 
2212
+ #: dashboard/settings/maintenance.php:20
2213
  msgid ""
2214
  "Overhead data is accumulated garbage resulting from many changes you've "
2215
  "made. This can vary from nothing to hundreds of KiB of data."
2217
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
2218
  "които правите. Те могар да варират от 0 до хиляди KB."
2219
 
2220
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2221
  msgid "Clean-up Database"
2222
  msgstr "Почистване на базата данни"
2223
 
2224
+ #: dashboard/settings/maintenance.php:26
2225
  msgid ""
2226
  "You are about to clean up your database. This may delete expired schedules "
2227
  "and older statistics."
2229
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
2230
  "и стари статистики."
2231
 
2232
+ #: dashboard/settings/maintenance.php:26
2233
  msgid "Are you sure you want to continue?"
2234
  msgstr "Сигурни ли сте, че искате да продължите?"
2235
 
2236
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2237
  msgid "This might take a while and may slow down your site during this action!"
2238
  msgstr ""
2239
  "Това действие ще отнеме време и може да забави сайта ви по време на "
2240
  "изпълнението му!"
2241
 
2242
+ #: dashboard/settings/maintenance.php:27
2243
  msgid "Delete stats older than 356 days (Optional)."
2244
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2245
 
2246
+ #: dashboard/settings/maintenance.php:28
2247
  msgid ""
2248
  "AdRotate creates empty records when you start making ads, groups or "
2249
  "schedules. In rare occasions these records are faulty."
2250
  msgstr ""
2251
 
2252
+ #: dashboard/settings/maintenance.php:28
2253
  msgid ""
2254
  "If you made an ad, group or schedule that does not save when you make it use "
2255
  "this button to delete those empty records."
2256
  msgstr ""
2257
 
2258
+ #: dashboard/settings/maintenance.php:28
2259
  msgid ""
2260
  "Additionally you can clean up old schedules and/or statistics. This will "
2261
  "improve the speed of your site."
2262
  msgstr ""
2263
 
2264
+ #: dashboard/settings/maintenance.php:32
2265
  msgid "Re-evaluate Ads"
2266
  msgstr "Преоценка на реклами"
2267
 
2268
+ #: dashboard/settings/maintenance.php:34
2269
  msgid "Re-evaluate all ads"
2270
  msgstr "Преоценка на всички реклами"
2271
 
2272
+ #: dashboard/settings/maintenance.php:34
2273
  msgid "You are about to check all ads for errors."
2274
  msgstr "На път сте да проверите всички реклами за грешки."
2275
 
2276
+ #: dashboard/settings/maintenance.php:35
2277
  msgid ""
2278
  "This will apply all evaluation rules to all ads to see if any error slipped "
2279
  "in. Normally you should not need this feature."
2281
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
2282
  "нужда от тази функция."
2283
 
2284
+ #: dashboard/settings/maintenance.php:39
2285
  msgid ""
2286
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2287
  "database. They only apply to your ads/groups and stats. Not to other "
2294
  "is not a valid point in any case."
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/maintenance.php:41
2298
  msgid "Troubleshooting"
2299
  msgstr "Отстраняване на проблеми"
2300
 
2301
+ #: dashboard/settings/maintenance.php:42
2302
  msgid ""
2303
  "The below options are not meant for normal use and are only there for "
2304
  "developers to review saved settings or how ads are selected. These can be "
2306
  "SHOULD BE LEFT UNCHECKED!!"
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:45
2310
  msgid "Developer Debug"
2311
  msgstr "Developer Debug"
2312
 
2313
+ #: dashboard/settings/maintenance.php:47
2314
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2315
  msgstr ""
2316
 
2317
+ #: dashboard/settings/maintenance.php:48
2318
  msgid "View advert specs and (some) stats in the dashboard."
2319
  msgstr ""
2320
 
2321
+ #: dashboard/settings/maintenance.php:49
2322
  msgid ""
2323
  "Disable timers for clicks and impressions and enable a alert window for "
2324
  "clicktracking."
2326
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2327
  "за проследяване на кликове."
2328
 
2329
+ #: dashboard/settings/maintenance.php:50
2330
  msgid "Temporarily disable encryption on the redirect url."
2331
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
2332
 
2333
+ #: dashboard/settings/maintenance.php:55
2334
  msgid "Status and Versions"
2335
  msgstr ""
2336
 
2337
+ #: dashboard/settings/maintenance.php:58
2338
  msgid "Current version:"
2339
  msgstr "Текуща версия:"
2340
 
2341
+ #: dashboard/settings/maintenance.php:59
2342
  msgid "Previous version:"
2343
  msgstr "Предишна версия:"
2344
 
2345
+ #: dashboard/settings/maintenance.php:62
2346
  msgid "Current database version:"
2347
  msgstr "Текуща верския на базата данни:"
2348
 
2349
+ #: dashboard/settings/maintenance.php:63
2350
  msgid "Previous database version:"
2351
  msgstr "Предишна версия на базата данни:"
2352
 
2353
+ #: dashboard/settings/maintenance.php:66
2354
  msgid "Current status of adverts"
2355
  msgstr "Настоящ статус на рекламите"
2356
 
2357
+ #: dashboard/settings/maintenance.php:67
2358
  msgid "Normal"
2359
  msgstr "Нормално"
2360
 
2361
+ #: dashboard/settings/maintenance.php:67
2362
  msgid "Error"
2363
  msgstr "Грешка"
2364
 
2365
+ #: dashboard/settings/maintenance.php:67
2366
  msgid "Expired"
2367
  msgstr "Изтекло"
2368
 
2369
+ #: dashboard/settings/maintenance.php:67
2370
  msgid "Expires Soon"
2371
  msgstr "Изтича скоро"
2372
 
2373
+ #: dashboard/settings/maintenance.php:67
2374
  msgid "Unknown"
2375
  msgstr ""
2376
 
2377
+ #: dashboard/settings/maintenance.php:70
2378
  #, fuzzy
2379
  msgid "Ad evaluation next run:"
2380
  msgstr "Оценка на рекламата:"
2381
 
2382
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2383
  msgid "Not scheduled!"
2384
  msgstr "Не е планирано!"
2385
 
2386
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2387
  #, fuzzy
2388
  msgid "Clean Trackerdata next run:"
2389
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
2390
 
2391
+ #: dashboard/settings/misc.php:12
2392
  msgid "Miscellaneous"
2393
  msgstr "Разни"
2394
 
2395
+ #: dashboard/settings/misc.php:15
2396
  msgid "Widget alignment"
2397
  msgstr "Подравняване на джаджата"
2398
 
2399
+ #: dashboard/settings/misc.php:16
2400
  msgid ""
2401
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2402
  "not always help!)"
2404
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
2405
  "темата Ви. (Не винаги помага)"
2406
 
2407
+ #: dashboard/settings/misc.php:19
2408
  msgid "Widget padding"
2409
  msgstr "Padding за джаджата"
2410
 
2411
+ #: dashboard/settings/misc.php:20
2412
  msgid ""
2413
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2414
  "not always work!)"
2416
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
2417
  "джаджата. (Не винаги работи!)"
2418
 
2419
+ #: dashboard/settings/misc.php:24
2420
  msgid "NOTICE:"
2421
  msgstr "ЗАБЕЛЕЖКА:"
2422
 
2423
+ #: dashboard/settings/misc.php:25
2424
  msgid ""
2425
  "You have enabled W3 Total Caching support but not defined the security hash. "
2426
  "You need to add the following line to your wp-config.php near the bottom or "
2432
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
2433
  "включена в W3 Total Cache."
2434
 
2435
+ #: dashboard/settings/misc.php:29
2436
  msgid "W3 Total Caching"
2437
  msgstr "W3 Total Caching"
2438
 
2439
+ #: dashboard/settings/misc.php:30
2440
  msgid "Check this box if you use W3 Total Caching on your site."
2441
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
2442
 
2443
+ #: dashboard/settings/misc.php:34
2444
  msgid ""
2445
  "It may take a while for the ad to start rotating. The caching plugin needs "
2446
  "to refresh the cache. This can take up to a week if not done manually."
2449
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
2450
  "седмица, ако не го направите ръчно."
2451
 
2452
+ #: dashboard/settings/misc.php:34
2453
  msgid ""
2454
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2455
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2458
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
2459
  "сами."
2460
 
2461
+ #: dashboard/settings/notifications.php:12
2462
  msgid "Notifications - Available in AdRotate Pro"
2463
  msgstr ""
2464
 
2465
+ #: dashboard/settings/notifications.php:13
2466
  msgid "Set up who gets notifications if ads need your attention."
2467
  msgstr "Изберете кой да получава известие, ако реклама се нуждае от внимание."
2468
 
2469
+ #: dashboard/settings/notifications.php:16
2470
  msgid "Delivery method"
2471
  msgstr "Метод на доставка"
2472
 
2473
+ #: dashboard/settings/notifications.php:18
2474
  msgid "Email message."
2475
  msgstr "Email съобщение."
2476
 
2477
+ #: dashboard/settings/notifications.php:19
2478
  msgid "Push notifications to your smartphone."
2479
  msgstr "Push известия към вашия смартфон."
2480
 
2481
+ #: dashboard/settings/notifications.php:20
2482
  msgid ""
2483
  "Push notifications are delivered through Pushover, a notification service "
2484
  "for Android and iOS"
2486
  "Push известията се доставят чрез Pushover, услуга за известия за Android и "
2487
  "iOS"
2488
 
2489
+ #: dashboard/settings/notifications.php:20
2490
  msgid ""
2491
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2492
  "information can be found on the pushover website;"
2494
  "Приложението Pushover изисква еднократна поръчка за Android и/или iOS. "
2495
  "Повече информация можете да намерите на сайта на разработчика;"
2496
 
2497
+ #: dashboard/settings/notifications.php:24
2498
  msgid "Test notification"
2499
  msgstr ""
2500
 
2501
+ #: dashboard/settings/notifications.php:26
2502
  msgid ""
2503
  "This sends a test notification. Before you test, save the options first!"
2504
  msgstr ""
2505
  "Изпращане на тестово известие. Преди да кликнете тест, запазете настройките!"
2506
 
2507
+ #: dashboard/settings/notifications.php:31
2508
  msgid "Dashboard Notifications"
2509
  msgstr "Известия на таблото"
2510
 
2511
+ #: dashboard/settings/notifications.php:32
2512
  msgid "These show to every administrator who can edit adverts."
2513
  msgstr ""
2514
 
2515
+ #: dashboard/settings/notifications.php:35
2516
  msgid "Notification banners"
2517
  msgstr ""
2518
 
2519
+ #: dashboard/settings/notifications.php:36
2520
  msgid "Disable dashboard notifications."
2521
  msgstr ""
2522
 
2523
+ #: dashboard/settings/notifications.php:40
2524
  msgid "Email Notifications"
2525
  msgstr "Email Известия"
2526
 
2527
+ #: dashboard/settings/notifications.php:41
2528
  msgid "Set up who gets notification emails."
2529
  msgstr "Задайте кой да получава известия по email."
2530
 
2531
+ #: dashboard/settings/notifications.php:44
2532
+ #: dashboard/settings/notifications.php:64
2533
  msgid "Publishers"
2534
  msgstr "Издатели"
2535
 
2536
+ #: dashboard/settings/notifications.php:47
2537
  msgid ""
2538
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2539
  "list to a minimum!"
2541
  "За разделител използвайте запетая. Максимум 5 адреса. Използвайте възможно "
2542
  "най-малко адреси в този списък!"
2543
 
2544
+ #: dashboard/settings/notifications.php:48
2545
  msgid ""
2546
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2547
  "email notifications will be send."
2549
  "Съобщенията се изпращат когато е необходимо, но не по-често от веднъж на 24 "
2550
  "часа. Ако полето е празно няма да се изпращат известия по email."
2551
 
2552
+ #: dashboard/settings/notifications.php:52
2553
  msgid "Advertisers"
2554
  msgstr "Рекламодатели"
2555
 
2556
+ #: dashboard/settings/notifications.php:55
2557
  msgid ""
2558
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2559
  "This field may not be empty!"
2561
  "Кой да получава email съобщения от рекламодатели. Максимум 2 адреса, "
2562
  "разделени със запетая. Полето не може да бъде празно!"
2563
 
2564
+ #: dashboard/settings/notifications.php:60
2565
  msgid "Push Notifications"
2566
  msgstr "Push известия"
2567
 
2568
+ #: dashboard/settings/notifications.php:61
2569
  msgid ""
2570
  "Receive information about what is happening with your AdRotate setup on your "
2571
  "smartphone via Pushover."
2573
  "Получавайте информация относно случващото се с вашата AdRotate инсталация "
2574
  "директно на смартфона си чрез Pushover."
2575
 
2576
+ #: dashboard/settings/notifications.php:66
2577
  msgid "When you are running out of Geo Targeting Lookups."
2578
  msgstr ""
2579
 
2580
+ #: dashboard/settings/notifications.php:67
2581
  msgid "Daily digest of any advert status other than normal."
2582
  msgstr ""
2583
  "Изпращане на дневен отчет с обявите, чийто статус е различен от нормален."
2584
 
2585
+ #: dashboard/settings/notifications.php:68
2586
  msgid "Any advertiser saving an advert in your moderation queue."
2587
  msgstr "Всеки рекламодател, записващ реклама в опашката за одобрение."
2588
 
2589
+ #: dashboard/settings/notifications.php:69
2590
  msgid "A moderator approved an advert from the moderation queue."
2591
  msgstr "Модератора е одобрил реклама от опашката за одобрение."
2592
 
2593
+ #: dashboard/settings/notifications.php:70
2594
  msgid "A moderator rejected an advert from the moderation queue."
2595
  msgstr "Модератора е отхвърлил реклама от опашката за одобрение."
2596
 
2597
+ #: dashboard/settings/notifications.php:70
2598
  msgid ""
2599
  "If you have a lot of activity with many advertisers adding/changing adverts "
2600
  "you may get a lot of messages!"
2602
  "Ако имате множество дейности с много рекламодатели, които добавят/променят "
2603
  "реклами, то ще получавате много съобщения!"
2604
 
2605
+ #: dashboard/settings/notifications.php:75
2606
  msgid "User Key"
2607
  msgstr "Потребителски ключ"
2608
 
2609
+ #: dashboard/settings/notifications.php:77
2610
  msgid "Get your user token"
2611
  msgstr ""
2612
 
2613
+ #: dashboard/settings/notifications.php:77
2614
+ #: dashboard/settings/notifications.php:83
2615
  msgid "here"
2616
  msgstr ""
2617
 
2618
+ #: dashboard/settings/notifications.php:81
2619
  msgid "Api Token"
2620
  msgstr "Api Token"
2621
 
2622
+ #: dashboard/settings/notifications.php:83
2623
  msgid "Create your"
2624
  msgstr ""
2625
 
2626
+ #: dashboard/settings/notifications.php:83
2627
  msgid "App"
2628
  msgstr ""
2629
 
2630
+ #: dashboard/settings/notifications.php:83
2631
  msgid "and get your API token"
2632
  msgstr ""
2633
 
2634
+ #: dashboard/settings/roles.php:12
2635
  msgid "Roles"
2636
  msgstr ""
2637
 
2638
+ #: dashboard/settings/roles.php:13
2639
  msgid "Who has access to what?"
2640
  msgstr "Кой до какво има достъп?"
2641
 
2642
+ #: dashboard/settings/roles.php:16
2643
  msgid "Manage/Add/Edit adverts"
2644
  msgstr "Управление/Добавяне/Редакция на обяви"
2645
 
2646
+ #: dashboard/settings/roles.php:20
2647
  msgid "Role to see and add/edit ads."
2648
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
2649
 
2650
+ #: dashboard/settings/roles.php:24
2651
  msgid "Delete/Reset adverts"
2652
  msgstr "Изтриване/Нулиране на реклами"
2653
 
2654
+ #: dashboard/settings/roles.php:28
2655
  msgid "Role to delete ads and reset stats."
2656
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
2657
 
2658
+ #: dashboard/settings/roles.php:32
2659
  msgid "Manage/Add/Edit groups"
2660
  msgstr "Управление/Добавяне/Редакция на групи"
2661
 
2662
+ #: dashboard/settings/roles.php:36
2663
  msgid "Role to see and add/edit groups."
2664
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
2665
 
2666
+ #: dashboard/settings/roles.php:40
2667
  msgid "Delete groups"
2668
  msgstr "Изтриване на групи"
2669
 
2670
+ #: dashboard/settings/roles.php:44
2671
  msgid "Role to delete groups."
2672
  msgstr "Роля за изтриване на групи."
2673
 
2674
+ #: dashboard/settings/statistics.php:13
2675
  msgid "Track statistics for your adverts."
2676
  msgstr ""
2677
 
2678
+ #: dashboard/settings/statistics.php:16
2679
  msgid "How to track stats"
2680
  msgstr ""
2681
 
2682
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2683
  msgid "Tracks impressions and clicks internally"
2684
  msgstr ""
2685
 
2686
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2687
+ #: dashboard/settings/statistics.php:29
2688
  msgid "manual"
2689
  msgstr ""
2690
 
2691
+ #: dashboard/settings/statistics.php:26
2692
  msgid ""
2693
  "Click and Impression recording, Click and impression limits, impression "
2694
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2695
+ "will only track impressions."
2696
  msgstr ""
2697
 
2698
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2699
+ msgid "In AdRotate Pro!"
2700
+ msgstr ""
2701
+
2702
+ #: dashboard/settings/statistics.php:27
2703
  msgid ""
2704
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2705
  "attributes"
2706
  msgstr ""
2707
 
2708
+ #: dashboard/settings/statistics.php:28
2709
  msgid ""
2710
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2711
  "Contents."
2712
  msgstr ""
2713
 
2714
+ #: dashboard/settings/statistics.php:29
2715
  msgid ""
2716
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2717
  "uses onClick() and onload() in adverts"
2718
  msgstr ""
2719
 
2720
+ #: dashboard/settings/statistics.php:30
2721
  msgid ""
2722
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2723
+ "Banner."
2724
  msgstr ""
2725
 
2726
+ #: dashboard/settings/statistics.php:36
2727
  msgid "Internal Tracker"
2728
  msgstr ""
2729
 
2730
+ #: dashboard/settings/statistics.php:37
2731
  msgid ""
2732
  "The settings below are for the internal tracker and have no effect when "
2733
  "using Piwik/Google Analytics."
2734
  msgstr ""
2735
 
2736
+ #: dashboard/settings/statistics.php:40
2737
  msgid "Logged in impressions"
2738
  msgstr "Импресии от вписани потребители"
2739
 
2740
+ #: dashboard/settings/statistics.php:42
2741
  msgid "Track impressions from logged in users."
2742
  msgstr ""
2743
 
2744
+ #: dashboard/settings/statistics.php:46
2745
  msgid "Logged in clicks"
2746
  msgstr "Кликове от вписани потребители"
2747
 
2748
+ #: dashboard/settings/statistics.php:48
2749
  msgid "Track clicks from logged in users."
2750
  msgstr "Проследяване на кликове от вписани потребители."
2751
 
2752
+ #: dashboard/settings/statistics.php:52
2753
+ msgid "Impression timer"
2754
+ msgstr ""
2755
 
2756
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2757
  msgid "Seconds."
2758
  msgstr "Секудни."
2759
 
2760
+ #: dashboard/settings/statistics.php:55
2761
  msgid "Default: 60."
2762
  msgstr "По подразбиране: 60."
2763
 
2764
+ #: dashboard/settings/statistics.php:55
2765
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2766
  msgstr ""
2767
 
2768
+ #: dashboard/settings/statistics.php:59
2769
+ msgid "Click timer"
2770
+ msgstr ""
2771
 
2772
+ #: dashboard/settings/statistics.php:62
2773
  msgid "Default: 86400."
2774
  msgstr "По подразбиране: 86400."
2775
 
2776
+ #: dashboard/settings/statistics.php:62
2777
  msgid ""
2778
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2779
  msgstr ""
2780
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2781
  "(24 часа)."
2782
 
2783
+ #~ msgid "Find out more"
2784
+ #~ msgstr "Научете повече"
2785
+
2786
+ #~ msgid "Follow"
2787
+ #~ msgstr "Последвай"
2788
+
2789
+ #~ msgid "Barely visible"
2790
+ #~ msgstr "Почти видимо"
2791
+
2792
+ #~ msgid "Less than average"
2793
+ #~ msgstr "По-малко от нормалното"
2794
+
2795
+ #~ msgid "Normal coverage"
2796
+ #~ msgstr "Нормално покритие"
2797
+
2798
+ #~ msgid "More than average"
2799
+ #~ msgstr "Повече от нормалното"
2800
+
2801
+ #~ msgid "Best visibility"
2802
+ #~ msgstr "Най-добра видимост"
2803
+
2804
+ #~ msgid "Ads in group"
2805
+ #~ msgstr "Реклами в група"
2806
+
2807
+ #~ msgid "Code"
2808
+ #~ msgstr "Код"
2809
+
2810
+ #~ msgid "Impressions timer"
2811
+ #~ msgstr "Таймер за импресии"
2812
+
2813
+ #~ msgid "Clicks timer"
2814
+ #~ msgstr "Таймер за кликове"
2815
+
2816
  #~ msgid "Learn More"
2817
  #~ msgstr "Научете повече"
2818
 
language/adrotate-el.mo CHANGED
Binary file
language/adrotate-el.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: 2015-08-23 20:10+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:10+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
@@ -248,10 +248,10 @@ msgstr "Διορθώστε το το συντομότερο δυνατόν"
248
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
249
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
250
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
251
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
252
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
253
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
254
- #: dashboard/settings/geotargeting.php:16
255
  #, fuzzy
256
  msgid "Buy now"
257
  msgstr "Λάβετε μέτρα τώρα"
@@ -351,7 +351,7 @@ msgstr "Αξιολογήστε και σχολιάστε"
351
  msgid "on WordPress.org to help AdRotate grow in a positive way"
352
  msgstr ""
353
 
354
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
355
  msgid "Available in AdRotate Pro"
356
  msgstr "Διαθέσιμο στο AdRotate Pro"
357
 
@@ -369,63 +369,63 @@ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο
369
  msgid "Learn more"
370
  msgstr "Μάθετε περισσότερα σχετικά"
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
373
- #: dashboard/publisher/adverts-edit.php:245
374
  msgid "January"
375
  msgstr "Ιανουάριος"
376
 
377
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
378
- #: dashboard/publisher/adverts-edit.php:246
379
  msgid "February"
380
  msgstr "Φεβρουάριος"
381
 
382
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
383
- #: dashboard/publisher/adverts-edit.php:247
384
  msgid "March"
385
  msgstr "Μάρτιος"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
388
- #: dashboard/publisher/adverts-edit.php:248
389
  msgid "April"
390
  msgstr "Απρίλιος"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
393
- #: dashboard/publisher/adverts-edit.php:249
394
  msgid "May"
395
  msgstr "Μάιος"
396
 
397
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
398
- #: dashboard/publisher/adverts-edit.php:250
399
  msgid "June"
400
  msgstr "Ιούνιος"
401
 
402
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
403
- #: dashboard/publisher/adverts-edit.php:251
404
  msgid "July"
405
  msgstr "Ιούλιος"
406
 
407
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
408
- #: dashboard/publisher/adverts-edit.php:252
409
  msgid "August"
410
  msgstr "Αύγουστος"
411
 
412
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
413
- #: dashboard/publisher/adverts-edit.php:253
414
  msgid "September"
415
  msgstr "Σεπτέμβριος"
416
 
417
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
418
- #: dashboard/publisher/adverts-edit.php:254
419
  msgid "October"
420
  msgstr "Οκτώβριος"
421
 
422
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
423
- #: dashboard/publisher/adverts-edit.php:255
424
  msgid "November"
425
  msgstr "Νοέμβριος"
426
 
427
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
428
- #: dashboard/publisher/adverts-edit.php:256
429
  msgid "December"
430
  msgstr "Δεκέμβριος"
431
 
@@ -543,7 +543,7 @@ msgid "Group Management"
543
  msgstr "Διαχείριση Ομάδας"
544
 
545
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
546
- #: dashboard/publisher/groups-main.php:71
547
  msgid "Report"
548
  msgstr "Αναφορά"
549
 
@@ -559,10 +559,10 @@ msgid ""
559
  "AdRotate Pro."
560
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
561
 
562
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
563
  #: dashboard/publisher/adverts-main.php:114
564
  #: dashboard/publisher/groups-edit.php:75
565
- #: dashboard/publisher/groups-main.php:91
566
  #, fuzzy
567
  msgid "More information"
568
  msgstr "Περισσότερες πληροφορίες"
@@ -599,19 +599,19 @@ msgstr "Ώρα έναρξης (ωω: λλ):"
599
  msgid "End"
600
  msgstr "Ώρα λήξης (ωω: λλ):"
601
 
602
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
603
  #: dashboard/publisher/groups-main.php:34
604
  msgid "Ads"
605
  msgstr "Διαφημίσεις"
606
 
607
  #: adrotate.php:428
608
- msgid "Max Clicks"
609
- msgstr "Max Clicks"
610
-
611
- #: adrotate.php:429
612
  msgid "Max Impressions"
613
  msgstr "Max Impressions"
614
 
 
 
 
 
615
  #: adrotate.php:459
616
  #, fuzzy
617
  msgid "No schedules created yet!"
@@ -695,19 +695,19 @@ msgid ""
695
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
696
  msgstr ""
697
 
698
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
699
  msgid ""
700
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
701
  "filename instead of \".full\" for the various viewports."
702
  msgstr ""
703
 
704
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
705
  #: dashboard/publisher/groups-edit.php:312
706
  #: dashboard/publisher/groups-edit.php:320
707
  msgid "Example:"
708
  msgstr "Παράδειγμα:"
709
 
710
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
711
  msgid ""
712
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
713
  "for different viewports."
@@ -798,20 +798,16 @@ msgid ""
798
  "forum. Get a solution (usually) within a day."
799
  msgstr ""
800
 
801
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
802
  msgid "AdRotate is brought to you by"
803
  msgstr "Το AdRotate έρχεται από την "
804
 
805
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
806
  msgid ""
807
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
808
- "details!"
809
  msgstr ""
810
 
811
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
812
- msgid "Find out more"
813
- msgstr "Μάθετε περισσότερα"
814
-
815
  #: dashboard/adrotatepro.php:58
816
  msgid "Schedule all campaigns with ease"
817
  msgstr ""
@@ -838,171 +834,167 @@ msgid ""
838
  msgstr ""
839
 
840
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
841
- #: dashboard/info.php:134 dashboard/info.php:146
842
  #, fuzzy
843
  msgid "Buy AdRotate Professional"
844
  msgstr "AdRotate Pro"
845
 
846
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
847
  msgid "Single License"
848
  msgstr ""
849
 
850
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
851
  msgid "For one WordPress installation."
852
  msgstr ""
853
 
854
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
855
- #: dashboard/info.php:139 dashboard/info.php:151
856
  msgid "Duo License"
857
  msgstr ""
858
 
859
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
860
  msgid "For two WordPress installations."
861
  msgstr ""
862
 
863
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
864
- #: dashboard/info.php:140 dashboard/info.php:152
865
  msgid "Multi License"
866
  msgstr ""
867
 
868
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
869
  msgid " For up to five WordPress installations."
870
  msgstr ""
871
 
872
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
873
- #: dashboard/info.php:141 dashboard/info.php:153
874
  #, fuzzy
875
  msgid "Developer License"
876
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
877
 
878
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
879
  msgid "Unlimited WordPress installations and/or networks."
880
  msgstr ""
881
 
882
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
883
- #: dashboard/info.php:142 dashboard/info.php:155
884
  msgid "Compare licenses"
885
  msgstr ""
886
 
887
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
888
  msgid "Not sure which license is for you? Compare them..."
889
  msgstr ""
890
 
891
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
892
  msgid "All Licenses"
893
  msgstr ""
894
 
895
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
896
  msgid "Lifetime License"
897
  msgstr ""
898
 
899
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
900
  msgid "Single installation."
901
  msgstr ""
902
 
903
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
904
  msgid "Up to 2 installations."
905
  msgstr ""
906
 
907
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
908
  msgid "Up to 10 installations."
909
  msgstr ""
910
 
911
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
912
  msgid "Up to 25 installations or multisite networks."
913
  msgstr ""
914
 
915
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
916
  msgid ""
917
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
918
  msgstr ""
919
 
920
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
921
  msgid "Not sure which license is for you?"
922
  msgstr ""
923
 
924
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
925
  msgid "Compare Licenses"
926
  msgstr ""
927
 
928
- #: dashboard/info.php:65
929
  msgid "Currently"
930
  msgstr "Τρέχουσα Κατάσταση"
931
 
932
- #: dashboard/info.php:71
933
  msgid "Your setup"
934
  msgstr "Η εγκατάστασή σας"
935
 
936
- #: dashboard/info.php:72
937
  msgid "Adverts that need you"
938
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
939
 
940
- #: dashboard/info.php:78
941
  msgid "Adverts"
942
  msgstr "Διαφημίσεις"
943
 
944
- #: dashboard/info.php:79
945
  msgid "(Almost) Expired"
946
  msgstr "(Σχεδόν) Έληξαν"
947
 
948
- #: dashboard/info.php:82
949
  msgid "Groups"
950
  msgstr "Ομάδες"
951
 
952
- #: dashboard/info.php:83
953
  msgid "Have errors"
954
  msgstr "Έχουν σφάλματα"
955
 
956
- #: dashboard/info.php:89
957
  msgid "Support AdRotate"
958
  msgstr "Υποστηρίξτε το AdRotate"
959
 
960
- #: dashboard/info.php:96
961
  msgid "Your gift helps ensure the continued development of AdRotate!"
962
  msgstr ""
963
 
964
- #: dashboard/info.php:96
965
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
966
  msgstr ""
967
 
968
- #: dashboard/info.php:105
969
  msgid "AdRotate News and Developer Blog"
970
  msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
971
 
972
- #: dashboard/info.php:127
973
  #, fuzzy
974
  msgid "Get more features with AdRotate Pro"
975
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
976
 
977
- #: dashboard/info.php:130
978
  msgid ""
979
  "Benefit from extra features to reinforce your income with advertising "
980
  "campaigns. Make the most of your website with the powerful tools AdRotate "
981
  "Pro offers on top of the trusted features included in the free version."
982
  msgstr ""
983
 
984
- #: dashboard/info.php:130
985
  msgid "Want to know more about"
986
  msgstr ""
987
 
988
- #: dashboard/info.php:130
989
  msgid "Visit the"
990
  msgstr "Επισκεφθείτε το"
991
 
992
- #: dashboard/info.php:130
993
  msgid "website"
994
  msgstr "ιστοσελίδα"
995
 
996
- #: dashboard/info.php:166
997
- msgid "Follow"
998
- msgstr ""
999
-
1000
  #: dashboard/publisher/adverts-disabled.php:15
1001
  msgid "Disabled Ads"
1002
  msgstr "Απενεργοποιημένες διαφημίσεις"
1003
 
1004
  #: dashboard/publisher/adverts-disabled.php:21
1005
- #: dashboard/publisher/adverts-edit.php:165
1006
  msgid "Activate"
1007
  msgstr "Ενεργοποίηση"
1008
 
@@ -1032,8 +1024,6 @@ msgstr "Τίτλος"
1032
 
1033
  #: dashboard/publisher/adverts-disabled.php:38
1034
  #: dashboard/publisher/adverts-report.php:34
1035
- #: dashboard/publisher/groups-edit.php:333
1036
- #: dashboard/publisher/groups-main.php:36
1037
  #: dashboard/publisher/groups-report.php:40
1038
  msgid "Impressions"
1039
  msgstr "Εμφανίσεις"
@@ -1057,7 +1047,7 @@ msgstr "CTR"
1057
  #: dashboard/publisher/adverts-disabled.php:74
1058
  #: dashboard/publisher/adverts-error.php:64
1059
  #: dashboard/publisher/adverts-main.php:87
1060
- #: dashboard/publisher/groups-main.php:71
1061
  msgid "Edit"
1062
  msgstr "Επεξεργασία"
1063
 
@@ -1182,35 +1172,53 @@ msgid ""
1182
  "click to add it."
1183
  msgstr ""
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1186
  msgid "Banner asset"
1187
  msgstr ""
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:142
1190
  msgid "WordPress media:"
1191
  msgstr ""
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:142
1194
  msgid "Select Banner"
1195
  msgstr "Επιλέξτε Banner"
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:144
1198
  msgid "- OR -"
1199
  msgstr "- Ή -"
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:146
1202
  msgid "Banner folder:"
1203
  msgstr "Φάκελος Banner:"
1204
 
1205
- #: dashboard/publisher/adverts-edit.php:147
1206
  msgid "No image selected"
1207
  msgstr "Καμία επιλεγμένη εικόνα"
1208
 
1209
- #: dashboard/publisher/adverts-edit.php:151
1210
  msgid "Use %image% in the adcode instead of the file path."
1211
  msgstr ""
1212
 
1213
- #: dashboard/publisher/adverts-edit.php:151
1214
  msgid ""
1215
  "Use either the text field or the dropdown. If the textfield has content that "
1216
  "field has priority."
@@ -1218,336 +1226,287 @@ msgstr ""
1218
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1219
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:156
1222
- #: dashboard/settings/statistics.php:1
1223
  msgid "Statistics"
1224
  msgstr "Στατιστικά"
1225
 
1226
- #: dashboard/publisher/adverts-edit.php:158
1227
  msgid "Enable click and impression tracking for this advert."
1228
  msgstr ""
1229
 
1230
- #: dashboard/publisher/adverts-edit.php:159
1231
  msgid ""
1232
  "Note: Clicktracking does not work for Javascript adverts such as those "
1233
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1234
- "supported."
1235
  msgstr ""
1236
 
1237
- #: dashboard/publisher/adverts-edit.php:169
1238
  msgid "Yes, this ad will be used"
1239
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:170
1242
  msgid "No, do not show this ad anywhere"
1243
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1244
 
1245
- #: dashboard/publisher/adverts-edit.php:177
1246
  #: dashboard/publisher/adverts-main.php:114
1247
  #: dashboard/publisher/groups-edit.php:75
1248
- #: dashboard/publisher/groups-main.php:91
1249
  #, fuzzy
1250
  msgid "Get more features with AdRotate Pro."
1251
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1252
 
1253
- #: dashboard/publisher/adverts-edit.php:180
1254
- #: dashboard/publisher/adverts-edit.php:295
1255
- #: dashboard/publisher/adverts-edit.php:395
1256
- #: dashboard/publisher/adverts-edit.php:436
1257
  msgid "Save Advert"
1258
  msgstr "Αποθήκευση Διαφήμισης"
1259
 
1260
- #: dashboard/publisher/adverts-edit.php:181
1261
- #: dashboard/publisher/adverts-edit.php:296
1262
- #: dashboard/publisher/adverts-edit.php:396
1263
- #: dashboard/publisher/adverts-edit.php:437
1264
  #: dashboard/publisher/groups-edit.php:154
1265
  #: dashboard/publisher/groups-edit.php:301
1266
  #: dashboard/publisher/groups-edit.php:393
1267
  msgid "Cancel"
1268
  msgstr "Ακύρωση"
1269
 
1270
- #: dashboard/publisher/adverts-edit.php:185
1271
- msgid "Preview"
1272
- msgstr "Προεπισκόπηση"
1273
-
1274
- #: dashboard/publisher/adverts-edit.php:191
1275
- msgid ""
1276
- "Note: While this preview is an accurate one, it might look different then it "
1277
- "does on the website."
1278
- msgstr ""
1279
- "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1280
- "διαφορετική από ό, τι στην ιστοσελίδα."
1281
-
1282
- #: dashboard/publisher/adverts-edit.php:192
1283
- msgid ""
1284
- "This is because of CSS differences. Your themes CSS file is not active here!"
1285
- msgstr ""
1286
- "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1287
-
1288
- #: dashboard/publisher/adverts-edit.php:199
1289
- #: dashboard/publisher/adverts-edit.php:378
1290
  #: dashboard/publisher/groups-edit.php:136
1291
  #: dashboard/publisher/groups-edit.php:283
1292
  msgid "Usage"
1293
  msgstr "Χρήση"
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:203
1296
- #: dashboard/publisher/adverts-edit.php:382
1297
  #: dashboard/publisher/groups-edit.php:140
1298
  #: dashboard/publisher/groups-edit.php:287
1299
  msgid "Widget"
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:204
1303
- #: dashboard/publisher/adverts-edit.php:383
1304
  msgid ""
1305
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1306
  "and enter ID"
1307
  msgstr ""
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:207
1310
- #: dashboard/publisher/adverts-edit.php:386
1311
  #: dashboard/publisher/groups-edit.php:144
1312
  #: dashboard/publisher/groups-edit.php:291
1313
  msgid "In a post or page"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:209
1317
- #: dashboard/publisher/adverts-edit.php:388
1318
  #: dashboard/publisher/groups-edit.php:146
1319
  #: dashboard/publisher/groups-edit.php:293
1320
  msgid "Directly in a theme"
1321
  msgstr ""
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:215
1324
  msgid "Schedule your advert"
1325
  msgstr ""
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:219
1328
  msgid "Start date (day/month/year)"
1329
  msgstr ""
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:240
1332
  msgid "End date (day/month/year)"
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:263
1336
  msgid "Start time (hh:mm)"
1337
  msgstr ""
1338
 
1339
- #: dashboard/publisher/adverts-edit.php:270
1340
  msgid "End time (hh:mm)"
1341
  msgstr ""
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:280
1344
  msgid "Maximum Clicks"
1345
  msgstr ""
1346
 
1347
- #: dashboard/publisher/adverts-edit.php:281
1348
- #: dashboard/publisher/adverts-edit.php:283
1349
  msgid "Leave empty or 0 to skip this."
1350
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:282
1353
  msgid "Maximum Impressions"
1354
  msgstr ""
1355
 
1356
- #: dashboard/publisher/adverts-edit.php:287
1357
  msgid "Important"
1358
  msgstr ""
1359
 
1360
- #: dashboard/publisher/adverts-edit.php:288
1361
  msgid ""
1362
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1363
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1364
  "14:00 hours. 6AM is 6:00 hours."
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:292
1368
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1369
  msgstr ""
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:292
1372
- #: dashboard/publisher/adverts-edit.php:332
1373
- #: dashboard/publisher/adverts-edit.php:376
1374
  #: dashboard/publisher/groups-edit.php:200
1375
  #, fuzzy
1376
  msgid "Upgrade today"
1377
  msgstr "Σήμερα"
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:299
1380
  #: dashboard/publisher/groups-edit.php:157
1381
  msgid "Advanced"
1382
  msgstr "Προχωρημένος"
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:300
1385
  msgid "Everything below is optional."
1386
  msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:304
1389
  msgid "Responsive"
1390
  msgstr ""
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:306
1393
  #, fuzzy
1394
  msgid "Enable responsive support for this advert."
1395
  msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
1396
 
1397
- #: dashboard/publisher/adverts-edit.php:307
1398
  msgid ""
1399
  "Upload your images to the banner folder and make sure the filename is in the "
1400
  "following format; \"imagename.full.ext\". A full set of sized images is "
1401
  "strongly recommended."
1402
  msgstr ""
1403
 
1404
- #: dashboard/publisher/adverts-edit.php:313
1405
- #: dashboard/publisher/adverts-main.php:42
1406
- #: dashboard/publisher/groups-edit.php:336
1407
- msgid "Weight"
1408
- msgstr "Βαρύτητα"
1409
-
1410
- #: dashboard/publisher/adverts-edit.php:316
1411
- msgid "Barely visible"
1412
- msgstr "μόλις ορατό"
1413
-
1414
- #: dashboard/publisher/adverts-edit.php:317
1415
- msgid "Less than average"
1416
- msgstr "Λιγότερο από το μέσο όρο"
1417
-
1418
- #: dashboard/publisher/adverts-edit.php:318
1419
- msgid "Normal coverage"
1420
- msgstr "Κανονική κάλυψη"
1421
-
1422
- #: dashboard/publisher/adverts-edit.php:319
1423
- msgid "More than average"
1424
- msgstr "Περισσότερο από μέσο"
1425
-
1426
- #: dashboard/publisher/adverts-edit.php:320
1427
- msgid "Best visibility"
1428
- msgstr "Καλύτερη ορατότητα"
1429
-
1430
- #: dashboard/publisher/adverts-edit.php:325
1431
  #: dashboard/publisher/groups-edit.php:194
1432
  msgid "Sortorder"
1433
  msgstr ""
1434
 
1435
- #: dashboard/publisher/adverts-edit.php:327
1436
  #: dashboard/publisher/groups-edit.php:196
1437
  msgid "For administrative purposes set a sortorder."
1438
  msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1439
 
1440
- #: dashboard/publisher/adverts-edit.php:327
1441
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1442
  msgstr ""
1443
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1444
  "διαφήμισης."
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:332
1447
  msgid ""
1448
- "With AdRotate Pro you can set the weight to give adverts more or less "
1449
- "exposure."
1450
  msgstr ""
1451
 
1452
- #: dashboard/publisher/adverts-edit.php:334
1453
  msgid "Geo Targeting in AdRotate Pro"
1454
  msgstr ""
1455
 
1456
- #: dashboard/publisher/adverts-edit.php:335
1457
  msgid ""
1458
  "Assign the advert to a group and enable that group to use Geo Targeting."
1459
  msgstr ""
1460
 
1461
- #: dashboard/publisher/adverts-edit.php:339
1462
  msgid "Cities/States"
1463
  msgstr ""
1464
 
1465
- #: dashboard/publisher/adverts-edit.php:342
1466
  msgid ""
1467
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1468
  "states ISO codes are supported)"
1469
  msgstr ""
1470
 
1471
- #: dashboard/publisher/adverts-edit.php:342
1472
  msgid ""
1473
  "AdRotate does not check the validity of names so make sure you spell them "
1474
  "correctly!"
1475
  msgstr ""
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:346
1478
  msgid "Countries"
1479
  msgstr ""
1480
 
1481
- #: dashboard/publisher/adverts-edit.php:371
1482
  #, fuzzy
1483
  msgid "Select the countries you want the adverts to show in."
1484
  msgstr ""
1485
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1486
  "εμφανίζονται"
1487
 
1488
- #: dashboard/publisher/adverts-edit.php:371
1489
  msgid "Cities take priority and will be filtered first."
1490
  msgstr ""
1491
 
1492
- #: dashboard/publisher/adverts-edit.php:376
1493
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1494
  msgstr ""
1495
 
1496
- #: dashboard/publisher/adverts-edit.php:400
1497
  msgid "Select Groups"
1498
  msgstr "Επιλέξτε Ομάδες"
1499
 
1500
- #: dashboard/publisher/adverts-edit.php:405
1501
  msgid "ID - Name"
1502
  msgstr "ID - Όνομα"
1503
 
1504
- #: dashboard/publisher/adverts-edit.php:406
1505
- msgid "Ads in group"
1506
- msgstr "Διαφημίσεις στην ομάδα"
1507
-
1508
- #: dashboard/publisher/adverts-edit.php:415
1509
- #: dashboard/publisher/groups-main.php:61
1510
- #: dashboard/settings/geotargeting.php:29
1511
  msgid "Default"
1512
  msgstr "Προεπιλογή"
1513
 
1514
- #: dashboard/publisher/adverts-edit.php:416
1515
- #: dashboard/publisher/groups-main.php:62
1516
  msgid "Dynamic"
1517
  msgstr "Δυναμική"
1518
 
1519
- #: dashboard/publisher/adverts-edit.php:416
1520
- #: dashboard/publisher/groups-main.php:62
1521
  #, fuzzy
1522
  msgid "second rotation"
1523
  msgstr "Γεωγραφική Τοποθεσία"
1524
 
1525
- #: dashboard/publisher/adverts-edit.php:417
1526
- #: dashboard/publisher/groups-main.php:63
1527
  msgid "Block"
1528
  msgstr "Απαγόρευση"
1529
 
1530
- #: dashboard/publisher/adverts-edit.php:417
1531
- #: dashboard/publisher/groups-main.php:63
1532
  #, fuzzy
1533
  msgid "grid"
1534
  msgstr ""
1535
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1536
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1537
 
1538
- #: dashboard/publisher/adverts-edit.php:418
1539
  #: dashboard/publisher/groups-edit.php:202
1540
- #: dashboard/publisher/groups-main.php:64
1541
  msgid "Post Injection"
1542
  msgstr "Εμβολιασμός Δημοσίευσης"
1543
 
1544
- #: dashboard/publisher/adverts-edit.php:419
1545
  msgid "Geolocation"
1546
  msgstr "Γεωγραφική τοποθεσία"
1547
 
1548
- #: dashboard/publisher/adverts-edit.php:425
1549
  #: dashboard/publisher/groups-edit.php:61
1550
- #: dashboard/publisher/groups-main.php:71
1551
  msgid "Mode"
1552
  msgstr "Λειτουργία"
1553
 
@@ -1599,7 +1558,14 @@ msgstr "Ενεργές Διαφημίσεις"
1599
  msgid "Export to XML"
1600
  msgstr "Επιλογές εξαγωγής"
1601
 
 
 
 
 
 
1602
  #: dashboard/publisher/adverts-main.php:44
 
 
1603
  msgid "Shown"
1604
  msgstr "Εμφανίζονται"
1605
 
@@ -1813,7 +1779,7 @@ msgid ""
1813
  msgstr ""
1814
 
1815
  #: dashboard/publisher/groups-edit.php:184
1816
- #: dashboard/settings/advertisers.php:17
1817
  msgid "Geo Targeting"
1818
  msgstr "Γεωγραφική Στόχευση"
1819
 
@@ -1855,7 +1821,7 @@ msgstr ""
1855
 
1856
  #: dashboard/publisher/groups-edit.php:209
1857
  #: dashboard/publisher/groups-edit.php:247
1858
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1859
  #, fuzzy
1860
  msgid "Disabled"
1861
  msgstr "Απενεργοποιημένες διαφημίσεις"
@@ -1974,6 +1940,10 @@ msgstr ""
1974
  msgid "Select adverts"
1975
  msgstr ""
1976
 
 
 
 
 
1977
  #: dashboard/publisher/groups-edit.php:337
1978
  msgid "Visible until"
1979
  msgstr "Ορατό μέχρι"
@@ -1998,16 +1968,13 @@ msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1998
  msgid "This action can not be undone!"
1999
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
2000
 
2001
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
2002
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
2003
  msgid "OK to continue, CANCEL to stop."
2004
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
2005
 
2006
- #: dashboard/publisher/groups-main.php:41
2007
- msgid "Code"
2008
- msgstr "Κώδικας"
2009
-
2010
- #: dashboard/publisher/groups-main.php:86
2011
  msgid "No groups created!"
2012
  msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2013
 
@@ -2015,110 +1982,143 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2015
  msgid "Statistics for group"
2016
  msgstr "Στατιστικά για την ομάδα"
2017
 
2018
- #: dashboard/settings/advertisers.php:1
2019
  msgid "Advertisers - Available in AdRotate Pro"
2020
  msgstr ""
2021
 
2022
- #: dashboard/settings/advertisers.php:2
2023
  msgid "Enable advertisers so they can review and manage their own ads."
2024
  msgstr ""
2025
 
2026
- #: dashboard/settings/advertisers.php:5
2027
  msgid "Enable Advertisers"
2028
  msgstr "Ενεργοποίηση Διαφημιζόμενων"
2029
 
2030
- #: dashboard/settings/advertisers.php:7
2031
  msgid "Allow adverts to be coupled to users (Advertisers)."
2032
  msgstr "Επιτρέψτε σε διαφημίσεις να συνδυαστούν με χρήστες (Διαφημιζόμενους)."
2033
 
2034
- #: dashboard/settings/advertisers.php:11
2035
  msgid "Edit/update adverts"
2036
  msgstr "Επεξεργασία/ανανέωση διαφημίσεων"
2037
 
2038
- #: dashboard/settings/advertisers.php:13
2039
  msgid "Allow advertisers to add new or edit their adverts."
2040
  msgstr ""
2041
  "Επιτρέψτε σε διαφημιζόμενους να προσθέσουν ή να επεξεργαστούν διαφημίσεις."
2042
 
2043
- #: dashboard/settings/advertisers.php:19
2044
  msgid ""
2045
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2046
  "be enabled, too."
2047
  msgstr ""
2048
 
2049
- #: dashboard/settings/advertisers.php:23
2050
  msgid "Advertiser role"
2051
  msgstr "Ρόλος Διαφημιζόμενου"
2052
 
2053
- #: dashboard/settings/advertisers.php:25
2054
  msgid "Create a seperate user role for your advertisers."
2055
  msgstr ""
2056
 
2057
- #: dashboard/settings/advertisers.php:26
2058
  msgid ""
2059
  "Don't forget to give these users access to their advertiser dashboard via "
2060
  "the Roles tab."
2061
  msgstr ""
2062
 
2063
- #: dashboard/settings/general.php:1
2064
  msgid "General Settings"
2065
  msgstr ""
2066
 
2067
- #: dashboard/settings/general.php:2
2068
  msgid "General settings for AdRotate."
2069
  msgstr ""
2070
 
2071
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2072
  #, fuzzy
2073
  msgid "Load jQuery"
2074
  msgstr "Να περιληφθεί η jQuery"
2075
 
2076
- #: dashboard/settings/general.php:6
2077
  msgid ""
2078
- "jQuery is required for dynamic groups, ad block detection and some other "
2079
- "features. Enable this if your theme does not load jQuery."
2080
  msgstr ""
2081
 
2082
- #: dashboard/settings/general.php:9
2083
  msgid "Load scripts in footer?"
2084
  msgstr ""
2085
 
2086
- #: dashboard/settings/general.php:10
2087
  msgid ""
2088
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2089
  "site."
2090
  msgstr ""
2091
 
2092
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2093
  msgid "Banner Folder"
2094
  msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ)"
2095
 
2096
- #: dashboard/settings/general.php:15
2097
  #, fuzzy
2098
  msgid "Set a location where your banner images will be stored."
2099
  msgstr ""
2100
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2101
  "(Προεπιλογή: /wp-content/banners/)."
2102
 
2103
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2104
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2105
- #: dashboard/settings/statistics.php:38
2106
- msgid "Available in AdRotate Pro!"
2107
- msgstr ""
2108
-
2109
- #: dashboard/settings/general.php:18
2110
  #, fuzzy
2111
  msgid "Location"
2112
  msgstr "Γεωγραφική Τοποθεσία"
2113
 
2114
- #: dashboard/settings/general.php:20
2115
  #, fuzzy
2116
  msgid "(Default: wp-content/banners/)."
2117
  msgstr ""
2118
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2119
  "(Προεπιλογή: /wp-content/banners/)."
2120
 
2121
- #: dashboard/settings/general.php:21
2122
  msgid ""
2123
  "To try and trick ad blockers you could set the folder to something crazy "
2124
  "like:"
@@ -2126,7 +2126,7 @@ msgstr ""
2126
  "Για να ξεγελάσετε το μπλοκάρισμα των διαφημίσεων, ορίστε σαν όνομα φακέλου "
2127
  "κάτι περίεργο όπως:"
2128
 
2129
- #: dashboard/settings/general.php:22
2130
  msgid ""
2131
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2132
  "will show errors when the folder is missing."
@@ -2134,37 +2134,37 @@ msgstr ""
2134
  "Αυτός ο φάκελος δεν θα δημιουργηθεί αυτόματα αν δεν υπάρχει. Το AdRotate θα "
2135
  "εμφανίσει λάθη όταν λείπει ο φάκελος."
2136
 
2137
- #: dashboard/settings/general.php:27
2138
  #, fuzzy
2139
  msgid "Bot filter"
2140
  msgstr "Φίλτρο προγράμματος περιήγησης"
2141
 
2142
- #: dashboard/settings/general.php:28
2143
  msgid "The bot filter is used for the AdRotate stats tracker."
2144
  msgstr ""
2145
 
2146
- #: dashboard/settings/general.php:31
2147
  msgid "User-Agent Filter"
2148
  msgstr "Φίλτρο προγράμματος περιήγησης"
2149
 
2150
- #: dashboard/settings/general.php:34
2151
  msgid ""
2152
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2153
  msgstr ""
2154
 
2155
- #: dashboard/settings/general.php:35
2156
  msgid ""
2157
  "Keep in mind that this might give false positives. The word 'fire' also "
2158
  "matches 'firefox', but not vice-versa. So be careful!"
2159
  msgstr ""
2160
 
2161
- #: dashboard/settings/general.php:36
2162
  msgid ""
2163
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2164
  "characters are stripped out."
2165
  msgstr ""
2166
 
2167
- #: dashboard/settings/general.php:37
2168
  msgid ""
2169
  "Additionally to the list specified here, empty User-Agents are blocked as "
2170
  "well."
@@ -2172,94 +2172,90 @@ msgstr ""
2172
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
2173
  "απορίπτονται επίσης."
2174
 
2175
- #: dashboard/settings/general.php:37
2176
  msgid "Learn more about"
2177
  msgstr "Μάθετε περισσότερα σχετικά"
2178
 
2179
- #: dashboard/settings/general.php:37
2180
  msgid "user-agents"
2181
  msgstr "πρόγραμμα περιήγησης"
2182
 
2183
- #: dashboard/settings/geotargeting.php:1
2184
  msgid "Geo Targeting - Available in AdRotate Pro"
2185
  msgstr ""
2186
 
2187
- #: dashboard/settings/geotargeting.php:2
2188
  msgid "Target certain areas in the world for better advertising oppurtunities."
2189
  msgstr ""
2190
 
2191
- #: dashboard/settings/geotargeting.php:5
2192
  msgid "Which Geo Service"
2193
  msgstr ""
2194
 
2195
- #: dashboard/settings/geotargeting.php:15
2196
- msgid "No Geo Targeting is available for your adverts."
2197
- msgstr ""
2198
-
2199
- #: dashboard/settings/geotargeting.php:16
2200
  msgid ""
2201
  "The most complete and accurate geo targeting you can get for only $20 USD "
2202
  "per 50000 lookups."
2203
  msgstr ""
2204
 
2205
- #: dashboard/settings/geotargeting.php:18
2206
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2207
  msgstr ""
2208
 
2209
- #: dashboard/settings/geotargeting.php:20
2210
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2211
  msgstr ""
2212
 
2213
- #: dashboard/settings/geotargeting.php:26
2214
  msgid "Geo Cookie Lifespan"
2215
  msgstr ""
2216
 
2217
- #: dashboard/settings/geotargeting.php:35
2218
  msgid "Hours."
2219
  msgstr ""
2220
 
2221
- #: dashboard/settings/geotargeting.php:36
2222
  msgid ""
2223
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2224
  "cookie last? A longer period is less accurate for mobile users but may "
2225
  "reduce the usage of your lookups drastically."
2226
  msgstr ""
2227
 
2228
- #: dashboard/settings/geotargeting.php:42
2229
  msgid "MaxMind City/Country"
2230
  msgstr ""
2231
 
2232
- #: dashboard/settings/geotargeting.php:45
2233
  msgid "Username/Email"
2234
  msgstr ""
2235
 
2236
- #: dashboard/settings/geotargeting.php:49
2237
  msgid "Password/License Key"
2238
  msgstr ""
2239
 
2240
- #: dashboard/settings/maintenance.php:1
2241
  msgid "Maintenance"
2242
  msgstr "Συντήρηση"
2243
 
2244
- #: dashboard/settings/maintenance.php:2
2245
  msgid ""
2246
  "Use these functions when you notice your database is slow, unresponsive and "
2247
  "sluggish."
2248
  msgstr ""
2249
 
2250
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2251
  msgid "Optimize Database"
2252
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
2253
 
2254
- #: dashboard/settings/maintenance.php:7
2255
  msgid "You are about to optimize the AdRotate database."
2256
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
2257
 
2258
- #: dashboard/settings/maintenance.php:7
2259
  msgid "Did you make a backup of your database?"
2260
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
2261
 
2262
- #: dashboard/settings/maintenance.php:7
2263
  msgid ""
2264
  "This may take a moment and may cause your website to respond slow "
2265
  "temporarily!"
@@ -2267,11 +2263,11 @@ msgstr ""
2267
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
2268
  "σας να είναι προσωρινά αργή!"
2269
 
2270
- #: dashboard/settings/maintenance.php:8
2271
  msgid "Cleans up overhead data in the AdRotate tables."
2272
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
2273
 
2274
- #: dashboard/settings/maintenance.php:9
2275
  msgid ""
2276
  "Overhead data is accumulated garbage resulting from many changes you've "
2277
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2280,11 +2276,11 @@ msgstr ""
2280
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
2281
  "μέχρι εκατοντάδες kilobytes δεδομένων."
2282
 
2283
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2284
  msgid "Clean-up Database"
2285
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
2286
 
2287
- #: dashboard/settings/maintenance.php:15
2288
  msgid ""
2289
  "You are about to clean up your database. This may delete expired schedules "
2290
  "and older statistics."
@@ -2292,57 +2288,57 @@ msgstr ""
2292
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
2293
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
2294
 
2295
- #: dashboard/settings/maintenance.php:15
2296
  msgid "Are you sure you want to continue?"
2297
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2298
 
2299
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2300
  msgid "This might take a while and may slow down your site during this action!"
2301
  msgstr ""
2302
 
2303
- #: dashboard/settings/maintenance.php:16
2304
  msgid "Delete stats older than 356 days (Optional)."
2305
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2306
 
2307
- #: dashboard/settings/maintenance.php:17
2308
  msgid ""
2309
  "AdRotate creates empty records when you start making ads, groups or "
2310
  "schedules. In rare occasions these records are faulty."
2311
  msgstr ""
2312
 
2313
- #: dashboard/settings/maintenance.php:17
2314
  msgid ""
2315
  "If you made an ad, group or schedule that does not save when you make it use "
2316
  "this button to delete those empty records."
2317
  msgstr ""
2318
 
2319
- #: dashboard/settings/maintenance.php:17
2320
  msgid ""
2321
  "Additionally you can clean up old schedules and/or statistics. This will "
2322
  "improve the speed of your site."
2323
  msgstr ""
2324
 
2325
- #: dashboard/settings/maintenance.php:21
2326
  #, fuzzy
2327
  msgid "Re-evaluate Ads"
2328
  msgstr "Διαφημίσεις"
2329
 
2330
- #: dashboard/settings/maintenance.php:23
2331
  msgid "Re-evaluate all ads"
2332
  msgstr ""
2333
 
2334
- #: dashboard/settings/maintenance.php:23
2335
  #, fuzzy
2336
  msgid "You are about to check all ads for errors."
2337
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2338
 
2339
- #: dashboard/settings/maintenance.php:24
2340
  msgid ""
2341
  "This will apply all evaluation rules to all ads to see if any error slipped "
2342
  "in. Normally you should not need this feature."
2343
  msgstr ""
2344
 
2345
- #: dashboard/settings/maintenance.php:28
2346
  msgid ""
2347
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2348
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2355,11 +2351,11 @@ msgid ""
2355
  "is not a valid point in any case."
2356
  msgstr ""
2357
 
2358
- #: dashboard/settings/maintenance.php:30
2359
  msgid "Troubleshooting"
2360
  msgstr "Αντιμετώπιση προβλημάτων"
2361
 
2362
- #: dashboard/settings/maintenance.php:31
2363
  msgid ""
2364
  "The below options are not meant for normal use and are only there for "
2365
  "developers to review saved settings or how ads are selected. These can be "
@@ -2367,101 +2363,96 @@ msgid ""
2367
  "SHOULD BE LEFT UNCHECKED!!"
2368
  msgstr ""
2369
 
2370
- #: dashboard/settings/maintenance.php:34
2371
  msgid "Developer Debug"
2372
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
2373
 
2374
- #: dashboard/settings/maintenance.php:36
2375
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2376
  msgstr ""
2377
 
2378
- #: dashboard/settings/maintenance.php:37
2379
  msgid "View advert specs and (some) stats in the dashboard."
2380
  msgstr ""
2381
 
2382
- #: dashboard/settings/maintenance.php:38
2383
  #, fuzzy
2384
  msgid ""
2385
  "Disable timers for clicks and impressions and enable a alert window for "
2386
  "clicktracking."
2387
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2388
 
2389
- #: dashboard/settings/maintenance.php:39
2390
  msgid "Temporarily disable encryption on the redirect url."
2391
  msgstr ""
2392
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
2393
 
2394
- #: dashboard/settings/maintenance.php:44
2395
  msgid "Status and Versions"
2396
  msgstr ""
2397
 
2398
- #: dashboard/settings/maintenance.php:47
2399
  msgid "Current version:"
2400
  msgstr "Τρέχουσα έκδοση:"
2401
 
2402
- #: dashboard/settings/maintenance.php:48
2403
  msgid "Previous version:"
2404
  msgstr "Προηγούμενη έκδοση:"
2405
 
2406
- #: dashboard/settings/maintenance.php:51
2407
  msgid "Current database version:"
2408
  msgstr "Τρέχουσα έκδοση βάσης:"
2409
 
2410
- #: dashboard/settings/maintenance.php:52
2411
  msgid "Previous database version:"
2412
  msgstr "Προηγούμενη έκδοση βάσης:"
2413
 
2414
- #: dashboard/settings/maintenance.php:55
2415
  msgid "Current status of adverts"
2416
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
2417
 
2418
- #: dashboard/settings/maintenance.php:56
2419
  msgid "Normal"
2420
  msgstr "Φυσιολογική"
2421
 
2422
- #: dashboard/settings/maintenance.php:56
2423
  msgid "Error"
2424
  msgstr "Σφάλμα"
2425
 
2426
- #: dashboard/settings/maintenance.php:56
2427
  msgid "Expired"
2428
  msgstr "Έληξε"
2429
 
2430
- #: dashboard/settings/maintenance.php:56
2431
  msgid "Expires Soon"
2432
  msgstr "Λήγει Σύντομα"
2433
 
2434
- #: dashboard/settings/maintenance.php:56
2435
  msgid "Unknown"
2436
  msgstr ""
2437
 
2438
- #: dashboard/settings/maintenance.php:59
2439
  #, fuzzy
2440
  msgid "Ad evaluation next run:"
2441
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2442
 
2443
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2444
- #: dashboard/settings/maintenance.php:68
2445
  msgid "Not scheduled!"
2446
  msgstr "Δεν έχει προγραμματιστεί!"
2447
 
2448
- #: dashboard/settings/maintenance.php:63
2449
- msgid "Ad Notifications next run:"
2450
- msgstr ""
2451
-
2452
- #: dashboard/settings/maintenance.php:67
2453
  msgid "Clean Trackerdata next run:"
2454
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2455
 
2456
- #: dashboard/settings/misc.php:1
2457
  msgid "Miscellaneous"
2458
  msgstr "Διάφορα"
2459
 
2460
- #: dashboard/settings/misc.php:4
2461
  msgid "Widget alignment"
2462
  msgstr "Ευθυγράμμιση μονάδας"
2463
 
2464
- #: dashboard/settings/misc.php:5
2465
  msgid ""
2466
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2467
  "not always help!)"
@@ -2469,11 +2460,11 @@ msgstr ""
2469
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
2470
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
2471
 
2472
- #: dashboard/settings/misc.php:8
2473
  msgid "Widget padding"
2474
  msgstr "Κενά περιθώρια μονάδων"
2475
 
2476
- #: dashboard/settings/misc.php:9
2477
  msgid ""
2478
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2479
  "not always work!)"
@@ -2481,11 +2472,11 @@ msgstr ""
2481
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
2482
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
2483
 
2484
- #: dashboard/settings/misc.php:13
2485
  msgid "NOTICE:"
2486
  msgstr ""
2487
 
2488
- #: dashboard/settings/misc.php:14
2489
  msgid ""
2490
  "You have enabled W3 Total Caching support but not defined the security hash. "
2491
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2493,17 +2484,17 @@ msgid ""
2493
  "needs to be enabled in W3 Total Cache as well too."
2494
  msgstr ""
2495
 
2496
- #: dashboard/settings/misc.php:18
2497
  msgid "W3 Total Caching"
2498
  msgstr "W3 Total Caching"
2499
 
2500
- #: dashboard/settings/misc.php:19
2501
  msgid "Check this box if you use W3 Total Caching on your site."
2502
  msgstr ""
2503
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
2504
  "σας."
2505
 
2506
- #: dashboard/settings/misc.php:23
2507
  msgid ""
2508
  "It may take a while for the ad to start rotating. The caching plugin needs "
2509
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2512,7 +2503,7 @@ msgstr ""
2512
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
2513
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
2514
 
2515
- #: dashboard/settings/misc.php:23
2516
  msgid ""
2517
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2518
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2521,44 +2512,44 @@ msgstr ""
2521
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
2522
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
2523
 
2524
- #: dashboard/settings/notifications.php:1
2525
  msgid "Notifications - Available in AdRotate Pro"
2526
  msgstr ""
2527
 
2528
- #: dashboard/settings/notifications.php:2
2529
  msgid "Set up who gets notifications if ads need your attention."
2530
  msgstr ""
2531
 
2532
- #: dashboard/settings/notifications.php:5
2533
  msgid "Delivery method"
2534
  msgstr ""
2535
 
2536
- #: dashboard/settings/notifications.php:7
2537
  #, fuzzy
2538
  msgid "Email message."
2539
  msgstr "Ειδοποιήσεις Email"
2540
 
2541
- #: dashboard/settings/notifications.php:8
2542
  msgid "Push notifications to your smartphone."
2543
  msgstr ""
2544
 
2545
- #: dashboard/settings/notifications.php:9
2546
  msgid ""
2547
  "Push notifications are delivered through Pushover, a notification service "
2548
  "for Android and iOS"
2549
  msgstr ""
2550
 
2551
- #: dashboard/settings/notifications.php:9
2552
  msgid ""
2553
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2554
  "information can be found on the pushover website;"
2555
  msgstr ""
2556
 
2557
- #: dashboard/settings/notifications.php:13
2558
  msgid "Test notification"
2559
  msgstr ""
2560
 
2561
- #: dashboard/settings/notifications.php:15
2562
  #, fuzzy
2563
  msgid ""
2564
  "This sends a test notification. Before you test, save the options first!"
@@ -2566,37 +2557,37 @@ msgstr ""
2566
  "Η επιλογή στέλνει μια δοκιμαστική ειδοποίηση. Πριν δοκιμάσετε, για "
2567
  "παράδειγμα, με μια νέα διεύθυνση email. Αποθηκεύστε πρώτα τις επιλογές!"
2568
 
2569
- #: dashboard/settings/notifications.php:20
2570
  #, fuzzy
2571
  msgid "Dashboard Notifications"
2572
  msgstr "Ειδοποιήσεις"
2573
 
2574
- #: dashboard/settings/notifications.php:21
2575
  msgid "These show to every administrator who can edit adverts."
2576
  msgstr ""
2577
 
2578
- #: dashboard/settings/notifications.php:24
2579
  msgid "Notification banners"
2580
  msgstr ""
2581
 
2582
- #: dashboard/settings/notifications.php:25
2583
  msgid "Disable dashboard notifications."
2584
  msgstr ""
2585
 
2586
- #: dashboard/settings/notifications.php:29
2587
  msgid "Email Notifications"
2588
  msgstr "Ειδοποιήσεις Email"
2589
 
2590
- #: dashboard/settings/notifications.php:30
2591
  msgid "Set up who gets notification emails."
2592
  msgstr ""
2593
 
2594
- #: dashboard/settings/notifications.php:33
2595
- #: dashboard/settings/notifications.php:53
2596
  msgid "Publishers"
2597
  msgstr ""
2598
 
2599
- #: dashboard/settings/notifications.php:36
2600
  msgid ""
2601
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2602
  "list to a minimum!"
@@ -2604,7 +2595,7 @@ msgstr ""
2604
  "Ένας κατάλογος email διαχωρισμένων με κόματα. Μέγιστο όριο 5 διευθύνσεων. "
2605
  "Διατηρήστε τον στο ελάχιστο!"
2606
 
2607
- #: dashboard/settings/notifications.php:37
2608
  #, fuzzy
2609
  msgid ""
2610
  "Messages are sent once every 24 hours when needed. If this field is empty no "
@@ -2613,11 +2604,11 @@ msgstr ""
2613
  "Μηνύματα στέλνονται κάθε 24 ώρες όταν είναι ανάγκη. Αν αυτό το πεδίο είναι "
2614
  "κενό η λειτουργία θα απενεργοποιηθεί."
2615
 
2616
- #: dashboard/settings/notifications.php:41
2617
  msgid "Advertisers"
2618
  msgstr "Διαφημιζόμενοι"
2619
 
2620
- #: dashboard/settings/notifications.php:44
2621
  #, fuzzy
2622
  msgid ""
2623
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
@@ -2626,223 +2617,224 @@ msgstr ""
2626
  "Μέγιστο 2 διευθύνσεων. Διαχωρισμός με κόματα. Αυτό το πεδίο δεν μπορεί να "
2627
  "είναι κενό!"
2628
 
2629
- #: dashboard/settings/notifications.php:49
2630
  #, fuzzy
2631
  msgid "Push Notifications"
2632
  msgstr "Ειδοποιήσεις"
2633
 
2634
- #: dashboard/settings/notifications.php:50
2635
  msgid ""
2636
  "Receive information about what is happening with your AdRotate setup on your "
2637
  "smartphone via Pushover."
2638
  msgstr ""
2639
 
2640
- #: dashboard/settings/notifications.php:55
2641
  msgid "When you are running out of Geo Targeting Lookups."
2642
  msgstr ""
2643
 
2644
- #: dashboard/settings/notifications.php:56
2645
  msgid "Daily digest of any advert status other than normal."
2646
  msgstr ""
2647
 
2648
- #: dashboard/settings/notifications.php:57
2649
  msgid "Any advertiser saving an advert in your moderation queue."
2650
  msgstr ""
2651
 
2652
- #: dashboard/settings/notifications.php:58
2653
  #, fuzzy
2654
  msgid "A moderator approved an advert from the moderation queue."
2655
  msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
2656
 
2657
- #: dashboard/settings/notifications.php:59
2658
  #, fuzzy
2659
  msgid "A moderator rejected an advert from the moderation queue."
2660
  msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
2661
 
2662
- #: dashboard/settings/notifications.php:59
2663
  msgid ""
2664
  "If you have a lot of activity with many advertisers adding/changing adverts "
2665
  "you may get a lot of messages!"
2666
  msgstr ""
2667
 
2668
- #: dashboard/settings/notifications.php:64
2669
  #, fuzzy
2670
  msgid "User Key"
2671
  msgstr "πρόγραμμα περιήγησης"
2672
 
2673
- #: dashboard/settings/notifications.php:66
2674
  msgid "Get your user token"
2675
  msgstr ""
2676
 
2677
- #: dashboard/settings/notifications.php:66
2678
- #: dashboard/settings/notifications.php:72
2679
  msgid "here"
2680
  msgstr ""
2681
 
2682
- #: dashboard/settings/notifications.php:70
2683
  msgid "Api Token"
2684
  msgstr ""
2685
 
2686
- #: dashboard/settings/notifications.php:72
2687
  msgid "Create your"
2688
  msgstr ""
2689
 
2690
- #: dashboard/settings/notifications.php:72
2691
  msgid "App"
2692
  msgstr ""
2693
 
2694
- #: dashboard/settings/notifications.php:72
2695
  msgid "and get your API token"
2696
  msgstr ""
2697
 
2698
- #: dashboard/settings/roles.php:1
2699
  msgid "Roles"
2700
  msgstr ""
2701
 
2702
- #: dashboard/settings/roles.php:2
2703
  msgid "Who has access to what?"
2704
  msgstr ""
2705
 
2706
- #: dashboard/settings/roles.php:5
2707
  msgid "Manage/Add/Edit adverts"
2708
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
2709
 
2710
- #: dashboard/settings/roles.php:9
2711
  msgid "Role to see and add/edit ads."
2712
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
2713
 
2714
- #: dashboard/settings/roles.php:13
2715
  msgid "Delete/Reset adverts"
2716
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
2717
 
2718
- #: dashboard/settings/roles.php:17
2719
  msgid "Role to delete ads and reset stats."
2720
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
2721
 
2722
- #: dashboard/settings/roles.php:21
2723
  msgid "Manage/Add/Edit groups"
2724
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
2725
 
2726
- #: dashboard/settings/roles.php:25
2727
  msgid "Role to see and add/edit groups."
2728
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
2729
 
2730
- #: dashboard/settings/roles.php:29
2731
  msgid "Delete groups"
2732
  msgstr "Διαγραφή ομάδων"
2733
 
2734
- #: dashboard/settings/roles.php:33
2735
  msgid "Role to delete groups."
2736
  msgstr "Ρόλος για τη διαγραφή ομάδων."
2737
 
2738
- #: dashboard/settings/statistics.php:2
2739
  msgid "Track statistics for your adverts."
2740
  msgstr ""
2741
 
2742
- #: dashboard/settings/statistics.php:5
2743
  msgid "How to track stats"
2744
  msgstr ""
2745
 
2746
- #: dashboard/settings/statistics.php:14
2747
- msgid "No impressions and clicks can be recorded for any of your adverts."
2748
- msgstr ""
2749
-
2750
- #: dashboard/settings/statistics.php:15
2751
  msgid "Tracks impressions and clicks internally"
2752
  msgstr ""
2753
 
2754
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2755
- #: dashboard/settings/statistics.php:19
2756
  msgid "manual"
2757
  msgstr ""
2758
 
2759
- #: dashboard/settings/statistics.php:16
2760
  msgid ""
2761
  "Click and Impression recording, Click and impression limits, impression "
2762
- "spread for schedules, local stats display."
 
2763
  msgstr ""
2764
 
2765
- #: dashboard/settings/statistics.php:17
 
 
 
 
2766
  msgid ""
2767
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2768
  "attributes"
2769
  msgstr ""
2770
 
2771
- #: dashboard/settings/statistics.php:18
2772
  msgid ""
2773
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2774
  "Contents."
2775
  msgstr ""
2776
 
2777
- #: dashboard/settings/statistics.php:19
2778
  msgid ""
2779
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2780
  "uses onClick() and onload() in adverts"
2781
  msgstr ""
2782
 
2783
- #: dashboard/settings/statistics.php:20
2784
  msgid ""
2785
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2786
  msgstr ""
2787
 
2788
- #: dashboard/settings/statistics.php:26
2789
  msgid "Internal Tracker"
2790
  msgstr ""
2791
 
2792
- #: dashboard/settings/statistics.php:27
2793
  msgid ""
2794
  "The settings below are for the internal tracker and have no effect when "
2795
  "using Piwik/Google Analytics."
2796
  msgstr ""
2797
 
2798
- #: dashboard/settings/statistics.php:30
2799
  #, fuzzy
2800
  msgid "Logged in impressions"
2801
  msgstr "Εμφανίσεις"
2802
 
2803
- #: dashboard/settings/statistics.php:32
2804
  msgid "Track impressions from logged in users."
2805
  msgstr ""
2806
 
2807
- #: dashboard/settings/statistics.php:36
2808
  msgid "Logged in clicks"
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/statistics.php:38
2812
  msgid "Track clicks from logged in users."
2813
  msgstr "Παρακολουθήστε κλικ από συνδεδεμένους χρήστες."
2814
 
2815
- #: dashboard/settings/statistics.php:42
2816
- msgid "Impressions timer"
2817
- msgstr "Χρονομετρητής εμφανίσεων"
2818
 
2819
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2820
  msgid "Seconds."
2821
  msgstr "Δευτερόλεπτα."
2822
 
2823
- #: dashboard/settings/statistics.php:45
2824
  #, fuzzy
2825
  msgid "Default: 60."
2826
  msgstr "Προεπιλογή"
2827
 
2828
- #: dashboard/settings/statistics.php:45
2829
  #, fuzzy
2830
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2831
  msgstr ""
2832
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2833
  "ώρα)."
2834
 
2835
- #: dashboard/settings/statistics.php:49
2836
- #, fuzzy
2837
- msgid "Clicks timer"
2838
- msgstr "Χρονομετρητής εμφανίσεων"
2839
 
2840
- #: dashboard/settings/statistics.php:52
2841
  #, fuzzy
2842
  msgid "Default: 86400."
2843
  msgstr "Προεπιλογή"
2844
 
2845
- #: dashboard/settings/statistics.php:52
2846
  #, fuzzy
2847
  msgid ""
2848
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
@@ -2850,6 +2842,37 @@ msgstr ""
2850
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2851
  "ώρα)."
2852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2853
  #, fuzzy
2854
  #~ msgid "Learn More"
2855
  #~ msgstr "Μάθετε περισσότερα σχετικά"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
248
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
249
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
250
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
251
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
252
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
253
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
254
+ #: dashboard/settings/geotargeting.php:26
255
  #, fuzzy
256
  msgid "Buy now"
257
  msgstr "Λάβετε μέτρα τώρα"
351
  msgid "on WordPress.org to help AdRotate grow in a positive way"
352
  msgstr ""
353
 
354
+ #: adrotate-output.php:887
355
  msgid "Available in AdRotate Pro"
356
  msgstr "Διαθέσιμο στο AdRotate Pro"
357
 
369
  msgid "Learn more"
370
  msgstr "Μάθετε περισσότερα σχετικά"
371
 
372
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
373
+ #: dashboard/publisher/adverts-edit.php:240
374
  msgid "January"
375
  msgstr "Ιανουάριος"
376
 
377
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
378
+ #: dashboard/publisher/adverts-edit.php:241
379
  msgid "February"
380
  msgstr "Φεβρουάριος"
381
 
382
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
383
+ #: dashboard/publisher/adverts-edit.php:242
384
  msgid "March"
385
  msgstr "Μάρτιος"
386
 
387
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
388
+ #: dashboard/publisher/adverts-edit.php:243
389
  msgid "April"
390
  msgstr "Απρίλιος"
391
 
392
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
393
+ #: dashboard/publisher/adverts-edit.php:244
394
  msgid "May"
395
  msgstr "Μάιος"
396
 
397
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
398
+ #: dashboard/publisher/adverts-edit.php:245
399
  msgid "June"
400
  msgstr "Ιούνιος"
401
 
402
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
403
+ #: dashboard/publisher/adverts-edit.php:246
404
  msgid "July"
405
  msgstr "Ιούλιος"
406
 
407
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
408
+ #: dashboard/publisher/adverts-edit.php:247
409
  msgid "August"
410
  msgstr "Αύγουστος"
411
 
412
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
413
+ #: dashboard/publisher/adverts-edit.php:248
414
  msgid "September"
415
  msgstr "Σεπτέμβριος"
416
 
417
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
418
+ #: dashboard/publisher/adverts-edit.php:249
419
  msgid "October"
420
  msgstr "Οκτώβριος"
421
 
422
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
423
+ #: dashboard/publisher/adverts-edit.php:250
424
  msgid "November"
425
  msgstr "Νοέμβριος"
426
 
427
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
428
+ #: dashboard/publisher/adverts-edit.php:251
429
  msgid "December"
430
  msgstr "Δεκέμβριος"
431
 
543
  msgstr "Διαχείριση Ομάδας"
544
 
545
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
546
+ #: dashboard/publisher/groups-main.php:70
547
  msgid "Report"
548
  msgstr "Αναφορά"
549
 
559
  "AdRotate Pro."
560
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
561
 
562
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
563
  #: dashboard/publisher/adverts-main.php:114
564
  #: dashboard/publisher/groups-edit.php:75
565
+ #: dashboard/publisher/groups-main.php:89
566
  #, fuzzy
567
  msgid "More information"
568
  msgstr "Περισσότερες πληροφορίες"
599
  msgid "End"
600
  msgstr "Ώρα λήξης (ωω: λλ):"
601
 
602
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
603
  #: dashboard/publisher/groups-main.php:34
604
  msgid "Ads"
605
  msgstr "Διαφημίσεις"
606
 
607
  #: adrotate.php:428
 
 
 
 
608
  msgid "Max Impressions"
609
  msgstr "Max Impressions"
610
 
611
+ #: adrotate.php:429
612
+ msgid "Max Clicks"
613
+ msgstr "Max Clicks"
614
+
615
  #: adrotate.php:459
616
  #, fuzzy
617
  msgid "No schedules created yet!"
695
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
696
  msgstr ""
697
 
698
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
699
  msgid ""
700
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
701
  "filename instead of \".full\" for the various viewports."
702
  msgstr ""
703
 
704
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
705
  #: dashboard/publisher/groups-edit.php:312
706
  #: dashboard/publisher/groups-edit.php:320
707
  msgid "Example:"
708
  msgstr "Παράδειγμα:"
709
 
710
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
711
  msgid ""
712
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
713
  "for different viewports."
798
  "forum. Get a solution (usually) within a day."
799
  msgstr ""
800
 
801
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
802
  msgid "AdRotate is brought to you by"
803
  msgstr "Το AdRotate έρχεται από την "
804
 
805
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
806
  msgid ""
807
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
808
+ "starters or people looking for a new direction!"
809
  msgstr ""
810
 
 
 
 
 
811
  #: dashboard/adrotatepro.php:58
812
  msgid "Schedule all campaigns with ease"
813
  msgstr ""
834
  msgstr ""
835
 
836
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
837
+ #: dashboard/info.php:93 dashboard/info.php:105
838
  #, fuzzy
839
  msgid "Buy AdRotate Professional"
840
  msgstr "AdRotate Pro"
841
 
842
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
843
  msgid "Single License"
844
  msgstr ""
845
 
846
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
847
  msgid "For one WordPress installation."
848
  msgstr ""
849
 
850
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
851
+ #: dashboard/info.php:98 dashboard/info.php:110
852
  msgid "Duo License"
853
  msgstr ""
854
 
855
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
856
  msgid "For two WordPress installations."
857
  msgstr ""
858
 
859
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
860
+ #: dashboard/info.php:99 dashboard/info.php:111
861
  msgid "Multi License"
862
  msgstr ""
863
 
864
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
865
  msgid " For up to five WordPress installations."
866
  msgstr ""
867
 
868
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
869
+ #: dashboard/info.php:100 dashboard/info.php:112
870
  #, fuzzy
871
  msgid "Developer License"
872
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
873
 
874
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
875
  msgid "Unlimited WordPress installations and/or networks."
876
  msgstr ""
877
 
878
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
879
+ #: dashboard/info.php:101 dashboard/info.php:114
880
  msgid "Compare licenses"
881
  msgstr ""
882
 
883
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
884
  msgid "Not sure which license is for you? Compare them..."
885
  msgstr ""
886
 
887
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
888
  msgid "All Licenses"
889
  msgstr ""
890
 
891
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
892
  msgid "Lifetime License"
893
  msgstr ""
894
 
895
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
896
  msgid "Single installation."
897
  msgstr ""
898
 
899
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
900
  msgid "Up to 2 installations."
901
  msgstr ""
902
 
903
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
904
  msgid "Up to 10 installations."
905
  msgstr ""
906
 
907
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
908
  msgid "Up to 25 installations or multisite networks."
909
  msgstr ""
910
 
911
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
912
  msgid ""
913
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
914
  msgstr ""
915
 
916
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
917
  msgid "Not sure which license is for you?"
918
  msgstr ""
919
 
920
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
921
  msgid "Compare Licenses"
922
  msgstr ""
923
 
924
+ #: dashboard/info.php:24
925
  msgid "Currently"
926
  msgstr "Τρέχουσα Κατάσταση"
927
 
928
+ #: dashboard/info.php:30
929
  msgid "Your setup"
930
  msgstr "Η εγκατάστασή σας"
931
 
932
+ #: dashboard/info.php:31
933
  msgid "Adverts that need you"
934
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
935
 
936
+ #: dashboard/info.php:37
937
  msgid "Adverts"
938
  msgstr "Διαφημίσεις"
939
 
940
+ #: dashboard/info.php:38
941
  msgid "(Almost) Expired"
942
  msgstr "(Σχεδόν) Έληξαν"
943
 
944
+ #: dashboard/info.php:41
945
  msgid "Groups"
946
  msgstr "Ομάδες"
947
 
948
+ #: dashboard/info.php:42
949
  msgid "Have errors"
950
  msgstr "Έχουν σφάλματα"
951
 
952
+ #: dashboard/info.php:48
953
  msgid "Support AdRotate"
954
  msgstr "Υποστηρίξτε το AdRotate"
955
 
956
+ #: dashboard/info.php:55
957
  msgid "Your gift helps ensure the continued development of AdRotate!"
958
  msgstr ""
959
 
960
+ #: dashboard/info.php:55
961
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
962
  msgstr ""
963
 
964
+ #: dashboard/info.php:64
965
  msgid "AdRotate News and Developer Blog"
966
  msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
967
 
968
+ #: dashboard/info.php:86
969
  #, fuzzy
970
  msgid "Get more features with AdRotate Pro"
971
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
972
 
973
+ #: dashboard/info.php:89
974
  msgid ""
975
  "Benefit from extra features to reinforce your income with advertising "
976
  "campaigns. Make the most of your website with the powerful tools AdRotate "
977
  "Pro offers on top of the trusted features included in the free version."
978
  msgstr ""
979
 
980
+ #: dashboard/info.php:89
981
  msgid "Want to know more about"
982
  msgstr ""
983
 
984
+ #: dashboard/info.php:89
985
  msgid "Visit the"
986
  msgstr "Επισκεφθείτε το"
987
 
988
+ #: dashboard/info.php:89
989
  msgid "website"
990
  msgstr "ιστοσελίδα"
991
 
 
 
 
 
992
  #: dashboard/publisher/adverts-disabled.php:15
993
  msgid "Disabled Ads"
994
  msgstr "Απενεργοποιημένες διαφημίσεις"
995
 
996
  #: dashboard/publisher/adverts-disabled.php:21
997
+ #: dashboard/publisher/adverts-edit.php:175
998
  msgid "Activate"
999
  msgstr "Ενεργοποίηση"
1000
 
1024
 
1025
  #: dashboard/publisher/adverts-disabled.php:38
1026
  #: dashboard/publisher/adverts-report.php:34
 
 
1027
  #: dashboard/publisher/groups-report.php:40
1028
  msgid "Impressions"
1029
  msgstr "Εμφανίσεις"
1047
  #: dashboard/publisher/adverts-disabled.php:74
1048
  #: dashboard/publisher/adverts-error.php:64
1049
  #: dashboard/publisher/adverts-main.php:87
1050
+ #: dashboard/publisher/groups-main.php:70
1051
  msgid "Edit"
1052
  msgstr "Επεξεργασία"
1053
 
1172
  "click to add it."
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:140
1176
+ msgid "Preview"
1177
+ msgstr "Προεπισκόπηση"
1178
+
1179
+ #: dashboard/publisher/adverts-edit.php:143
1180
+ msgid ""
1181
+ "Note: While this preview is an accurate one, it might look different then it "
1182
+ "does on the website."
1183
+ msgstr ""
1184
+ "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1185
+ "διαφορετική από ό, τι στην ιστοσελίδα."
1186
+
1187
+ #: dashboard/publisher/adverts-edit.php:144
1188
+ msgid ""
1189
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1190
+ msgstr ""
1191
+ "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1192
+
1193
+ #: dashboard/publisher/adverts-edit.php:149
1194
  msgid "Banner asset"
1195
  msgstr ""
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:152
1198
  msgid "WordPress media:"
1199
  msgstr ""
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:152
1202
  msgid "Select Banner"
1203
  msgstr "Επιλέξτε Banner"
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:154
1206
  msgid "- OR -"
1207
  msgstr "- Ή -"
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:156
1210
  msgid "Banner folder:"
1211
  msgstr "Φάκελος Banner:"
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:157
1214
  msgid "No image selected"
1215
  msgstr "Καμία επιλεγμένη εικόνα"
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:161
1218
  msgid "Use %image% in the adcode instead of the file path."
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:161
1222
  msgid ""
1223
  "Use either the text field or the dropdown. If the textfield has content that "
1224
  "field has priority."
1226
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1227
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:166
1230
+ #: dashboard/settings/statistics.php:12
1231
  msgid "Statistics"
1232
  msgstr "Στατιστικά"
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:168
1235
  msgid "Enable click and impression tracking for this advert."
1236
  msgstr ""
1237
 
1238
+ #: dashboard/publisher/adverts-edit.php:169
1239
  msgid ""
1240
  "Note: Clicktracking does not work for Javascript adverts such as those "
1241
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1242
+ "always supported."
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:179
1246
  msgid "Yes, this ad will be used"
1247
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:180
1250
  msgid "No, do not show this ad anywhere"
1251
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:187
1254
  #: dashboard/publisher/adverts-main.php:114
1255
  #: dashboard/publisher/groups-edit.php:75
1256
+ #: dashboard/publisher/groups-main.php:89
1257
  #, fuzzy
1258
  msgid "Get more features with AdRotate Pro."
1259
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:190
1262
+ #: dashboard/publisher/adverts-edit.php:290
1263
+ #: dashboard/publisher/adverts-edit.php:378
1264
+ #: dashboard/publisher/adverts-edit.php:419
1265
  msgid "Save Advert"
1266
  msgstr "Αποθήκευση Διαφήμισης"
1267
 
1268
+ #: dashboard/publisher/adverts-edit.php:191
1269
+ #: dashboard/publisher/adverts-edit.php:291
1270
+ #: dashboard/publisher/adverts-edit.php:379
1271
+ #: dashboard/publisher/adverts-edit.php:420
1272
  #: dashboard/publisher/groups-edit.php:154
1273
  #: dashboard/publisher/groups-edit.php:301
1274
  #: dashboard/publisher/groups-edit.php:393
1275
  msgid "Cancel"
1276
  msgstr "Ακύρωση"
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:194
1279
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1280
  #: dashboard/publisher/groups-edit.php:136
1281
  #: dashboard/publisher/groups-edit.php:283
1282
  msgid "Usage"
1283
  msgstr "Χρήση"
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:198
1286
+ #: dashboard/publisher/adverts-edit.php:365
1287
  #: dashboard/publisher/groups-edit.php:140
1288
  #: dashboard/publisher/groups-edit.php:287
1289
  msgid "Widget"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:199
1293
+ #: dashboard/publisher/adverts-edit.php:366
1294
  msgid ""
1295
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1296
  "and enter ID"
1297
  msgstr ""
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:202
1300
+ #: dashboard/publisher/adverts-edit.php:369
1301
  #: dashboard/publisher/groups-edit.php:144
1302
  #: dashboard/publisher/groups-edit.php:291
1303
  msgid "In a post or page"
1304
  msgstr ""
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:204
1307
+ #: dashboard/publisher/adverts-edit.php:371
1308
  #: dashboard/publisher/groups-edit.php:146
1309
  #: dashboard/publisher/groups-edit.php:293
1310
  msgid "Directly in a theme"
1311
  msgstr ""
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:210
1314
  msgid "Schedule your advert"
1315
  msgstr ""
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:214
1318
  msgid "Start date (day/month/year)"
1319
  msgstr ""
1320
 
1321
+ #: dashboard/publisher/adverts-edit.php:235
1322
  msgid "End date (day/month/year)"
1323
  msgstr ""
1324
 
1325
+ #: dashboard/publisher/adverts-edit.php:258
1326
  msgid "Start time (hh:mm)"
1327
  msgstr ""
1328
 
1329
+ #: dashboard/publisher/adverts-edit.php:265
1330
  msgid "End time (hh:mm)"
1331
  msgstr ""
1332
 
1333
+ #: dashboard/publisher/adverts-edit.php:275
1334
  msgid "Maximum Clicks"
1335
  msgstr ""
1336
 
1337
+ #: dashboard/publisher/adverts-edit.php:276
1338
+ #: dashboard/publisher/adverts-edit.php:278
1339
  msgid "Leave empty or 0 to skip this."
1340
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1341
 
1342
+ #: dashboard/publisher/adverts-edit.php:277
1343
  msgid "Maximum Impressions"
1344
  msgstr ""
1345
 
1346
+ #: dashboard/publisher/adverts-edit.php:282
1347
  msgid "Important"
1348
  msgstr ""
1349
 
1350
+ #: dashboard/publisher/adverts-edit.php:283
1351
  msgid ""
1352
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1353
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1354
  "14:00 hours. 6AM is 6:00 hours."
1355
  msgstr ""
1356
 
1357
+ #: dashboard/publisher/adverts-edit.php:287
1358
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1359
  msgstr ""
1360
 
1361
+ #: dashboard/publisher/adverts-edit.php:287
1362
+ #: dashboard/publisher/adverts-edit.php:315
1363
+ #: dashboard/publisher/adverts-edit.php:359
1364
  #: dashboard/publisher/groups-edit.php:200
1365
  #, fuzzy
1366
  msgid "Upgrade today"
1367
  msgstr "Σήμερα"
1368
 
1369
+ #: dashboard/publisher/adverts-edit.php:294
1370
  #: dashboard/publisher/groups-edit.php:157
1371
  msgid "Advanced"
1372
  msgstr "Προχωρημένος"
1373
 
1374
+ #: dashboard/publisher/adverts-edit.php:295
1375
  msgid "Everything below is optional."
1376
  msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1377
 
1378
+ #: dashboard/publisher/adverts-edit.php:299
1379
  msgid "Responsive"
1380
  msgstr ""
1381
 
1382
+ #: dashboard/publisher/adverts-edit.php:301
1383
  #, fuzzy
1384
  msgid "Enable responsive support for this advert."
1385
  msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:302
1388
  msgid ""
1389
  "Upload your images to the banner folder and make sure the filename is in the "
1390
  "following format; \"imagename.full.ext\". A full set of sized images is "
1391
  "strongly recommended."
1392
  msgstr ""
1393
 
1394
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1395
  #: dashboard/publisher/groups-edit.php:194
1396
  msgid "Sortorder"
1397
  msgstr ""
1398
 
1399
+ #: dashboard/publisher/adverts-edit.php:310
1400
  #: dashboard/publisher/groups-edit.php:196
1401
  msgid "For administrative purposes set a sortorder."
1402
  msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:310
1405
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1406
  msgstr ""
1407
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1408
  "διαφήμισης."
1409
 
1410
+ #: dashboard/publisher/adverts-edit.php:315
1411
  msgid ""
1412
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1413
  msgstr ""
1414
 
1415
+ #: dashboard/publisher/adverts-edit.php:317
1416
  msgid "Geo Targeting in AdRotate Pro"
1417
  msgstr ""
1418
 
1419
+ #: dashboard/publisher/adverts-edit.php:318
1420
  msgid ""
1421
  "Assign the advert to a group and enable that group to use Geo Targeting."
1422
  msgstr ""
1423
 
1424
+ #: dashboard/publisher/adverts-edit.php:322
1425
  msgid "Cities/States"
1426
  msgstr ""
1427
 
1428
+ #: dashboard/publisher/adverts-edit.php:325
1429
  msgid ""
1430
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1431
  "states ISO codes are supported)"
1432
  msgstr ""
1433
 
1434
+ #: dashboard/publisher/adverts-edit.php:325
1435
  msgid ""
1436
  "AdRotate does not check the validity of names so make sure you spell them "
1437
  "correctly!"
1438
  msgstr ""
1439
 
1440
+ #: dashboard/publisher/adverts-edit.php:329
1441
  msgid "Countries"
1442
  msgstr ""
1443
 
1444
+ #: dashboard/publisher/adverts-edit.php:354
1445
  #, fuzzy
1446
  msgid "Select the countries you want the adverts to show in."
1447
  msgstr ""
1448
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1449
  "εμφανίζονται"
1450
 
1451
+ #: dashboard/publisher/adverts-edit.php:354
1452
  msgid "Cities take priority and will be filtered first."
1453
  msgstr ""
1454
 
1455
+ #: dashboard/publisher/adverts-edit.php:359
1456
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1457
  msgstr ""
1458
 
1459
+ #: dashboard/publisher/adverts-edit.php:383
1460
  msgid "Select Groups"
1461
  msgstr "Επιλέξτε Ομάδες"
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:388
1464
  msgid "ID - Name"
1465
  msgstr "ID - Όνομα"
1466
 
1467
+ #: dashboard/publisher/adverts-edit.php:398
1468
+ #: dashboard/publisher/groups-main.php:60
1469
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
1470
  msgid "Default"
1471
  msgstr "Προεπιλογή"
1472
 
1473
+ #: dashboard/publisher/adverts-edit.php:399
1474
+ #: dashboard/publisher/groups-main.php:61
1475
  msgid "Dynamic"
1476
  msgstr "Δυναμική"
1477
 
1478
+ #: dashboard/publisher/adverts-edit.php:399
1479
+ #: dashboard/publisher/groups-main.php:61
1480
  #, fuzzy
1481
  msgid "second rotation"
1482
  msgstr "Γεωγραφική Τοποθεσία"
1483
 
1484
+ #: dashboard/publisher/adverts-edit.php:400
1485
+ #: dashboard/publisher/groups-main.php:62
1486
  msgid "Block"
1487
  msgstr "Απαγόρευση"
1488
 
1489
+ #: dashboard/publisher/adverts-edit.php:400
1490
+ #: dashboard/publisher/groups-main.php:62
1491
  #, fuzzy
1492
  msgid "grid"
1493
  msgstr ""
1494
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1495
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:401
1498
  #: dashboard/publisher/groups-edit.php:202
1499
+ #: dashboard/publisher/groups-main.php:63
1500
  msgid "Post Injection"
1501
  msgstr "Εμβολιασμός Δημοσίευσης"
1502
 
1503
+ #: dashboard/publisher/adverts-edit.php:402
1504
  msgid "Geolocation"
1505
  msgstr "Γεωγραφική τοποθεσία"
1506
 
1507
+ #: dashboard/publisher/adverts-edit.php:408
1508
  #: dashboard/publisher/groups-edit.php:61
1509
+ #: dashboard/publisher/groups-main.php:70
1510
  msgid "Mode"
1511
  msgstr "Λειτουργία"
1512
 
1558
  msgid "Export to XML"
1559
  msgstr "Επιλογές εξαγωγής"
1560
 
1561
+ #: dashboard/publisher/adverts-main.php:42
1562
+ #: dashboard/publisher/groups-edit.php:336
1563
+ msgid "Weight"
1564
+ msgstr "Βαρύτητα"
1565
+
1566
  #: dashboard/publisher/adverts-main.php:44
1567
+ #: dashboard/publisher/groups-edit.php:333
1568
+ #: dashboard/publisher/groups-main.php:36
1569
  msgid "Shown"
1570
  msgstr "Εμφανίζονται"
1571
 
1779
  msgstr ""
1780
 
1781
  #: dashboard/publisher/groups-edit.php:184
1782
+ #: dashboard/settings/advertisers.php:28
1783
  msgid "Geo Targeting"
1784
  msgstr "Γεωγραφική Στόχευση"
1785
 
1821
 
1822
  #: dashboard/publisher/groups-edit.php:209
1823
  #: dashboard/publisher/groups-edit.php:247
1824
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1825
  #, fuzzy
1826
  msgid "Disabled"
1827
  msgstr "Απενεργοποιημένες διαφημίσεις"
1940
  msgid "Select adverts"
1941
  msgstr ""
1942
 
1943
+ #: dashboard/publisher/groups-edit.php:331
1944
+ msgid "Choose adverts"
1945
+ msgstr ""
1946
+
1947
  #: dashboard/publisher/groups-edit.php:337
1948
  msgid "Visible until"
1949
  msgstr "Ορατό μέχρι"
1968
  msgid "This action can not be undone!"
1969
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
1970
 
1971
+ #: dashboard/publisher/groups-main.php:24
1972
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1973
+ #: dashboard/settings/maintenance.php:34
1974
  msgid "OK to continue, CANCEL to stop."
1975
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1976
 
1977
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1978
  msgid "No groups created!"
1979
  msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
1980
 
1982
  msgid "Statistics for group"
1983
  msgstr "Στατιστικά για την ομάδα"
1984
 
1985
+ #: dashboard/settings/advertisers.php:12
1986
  msgid "Advertisers - Available in AdRotate Pro"
1987
  msgstr ""
1988
 
1989
+ #: dashboard/settings/advertisers.php:13
1990
  msgid "Enable advertisers so they can review and manage their own ads."
1991
  msgstr ""
1992
 
1993
+ #: dashboard/settings/advertisers.php:16
1994
  msgid "Enable Advertisers"
1995
  msgstr "Ενεργοποίηση Διαφημιζόμενων"
1996
 
1997
+ #: dashboard/settings/advertisers.php:18
1998
  msgid "Allow adverts to be coupled to users (Advertisers)."
1999
  msgstr "Επιτρέψτε σε διαφημίσεις να συνδυαστούν με χρήστες (Διαφημιζόμενους)."
2000
 
2001
+ #: dashboard/settings/advertisers.php:22
2002
  msgid "Edit/update adverts"
2003
  msgstr "Επεξεργασία/ανανέωση διαφημίσεων"
2004
 
2005
+ #: dashboard/settings/advertisers.php:24
2006
  msgid "Allow advertisers to add new or edit their adverts."
2007
  msgstr ""
2008
  "Επιτρέψτε σε διαφημιζόμενους να προσθέσουν ή να επεξεργαστούν διαφημίσεις."
2009
 
2010
+ #: dashboard/settings/advertisers.php:30
2011
  msgid ""
2012
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2013
  "be enabled, too."
2014
  msgstr ""
2015
 
2016
+ #: dashboard/settings/advertisers.php:34
2017
  msgid "Advertiser role"
2018
  msgstr "Ρόλος Διαφημιζόμενου"
2019
 
2020
+ #: dashboard/settings/advertisers.php:36
2021
  msgid "Create a seperate user role for your advertisers."
2022
  msgstr ""
2023
 
2024
+ #: dashboard/settings/advertisers.php:37
2025
  msgid ""
2026
  "Don't forget to give these users access to their advertiser dashboard via "
2027
  "the Roles tab."
2028
  msgstr ""
2029
 
2030
+ #: dashboard/settings/general.php:12
2031
  msgid "General Settings"
2032
  msgstr ""
2033
 
2034
+ #: dashboard/settings/general.php:13
2035
  msgid "General settings for AdRotate."
2036
  msgstr ""
2037
 
2038
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2039
+ msgid "Some options are only available in AdRotate Pro!"
2040
+ msgstr ""
2041
+
2042
+ #: dashboard/settings/general.php:16
2043
+ msgid "Text widgets"
2044
+ msgstr ""
2045
+
2046
+ #: dashboard/settings/general.php:17
2047
+ msgid ""
2048
+ "Enable if your theme does not support shortcodes in the WordPress text "
2049
+ "widget."
2050
+ msgstr ""
2051
+
2052
+ #: dashboard/settings/general.php:20
2053
  #, fuzzy
2054
  msgid "Load jQuery"
2055
  msgstr "Να περιληφθεί η jQuery"
2056
 
2057
+ #: dashboard/settings/general.php:21
2058
  msgid ""
2059
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2060
+ "groups, statistics and some other features."
2061
  msgstr ""
2062
 
2063
+ #: dashboard/settings/general.php:24
2064
  msgid "Load scripts in footer?"
2065
  msgstr ""
2066
 
2067
+ #: dashboard/settings/general.php:25
2068
  msgid ""
2069
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2070
  "site."
2071
  msgstr ""
2072
 
2073
+ #: dashboard/settings/general.php:28
2074
+ msgid "Adblock disguise"
2075
+ msgstr ""
2076
+
2077
+ #: dashboard/settings/general.php:30
2078
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2079
+ msgstr ""
2080
+
2081
+ #: dashboard/settings/general.php:31
2082
+ msgid ""
2083
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2084
+ msgstr ""
2085
+
2086
+ #: dashboard/settings/general.php:31
2087
+ msgid ""
2088
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2089
+ "instead of the AdRotate widget."
2090
+ msgstr ""
2091
+
2092
+ #: dashboard/settings/general.php:31
2093
+ msgid ""
2094
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2095
+ "feature will have little effect!"
2096
+ msgstr ""
2097
+
2098
+ #: dashboard/settings/general.php:36
2099
  msgid "Banner Folder"
2100
  msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ)"
2101
 
2102
+ #: dashboard/settings/general.php:37
2103
  #, fuzzy
2104
  msgid "Set a location where your banner images will be stored."
2105
  msgstr ""
2106
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2107
  "(Προεπιλογή: /wp-content/banners/)."
2108
 
2109
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2110
  #, fuzzy
2111
  msgid "Location"
2112
  msgstr "Γεωγραφική Τοποθεσία"
2113
 
2114
+ #: dashboard/settings/general.php:42
2115
  #, fuzzy
2116
  msgid "(Default: wp-content/banners/)."
2117
  msgstr ""
2118
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2119
  "(Προεπιλογή: /wp-content/banners/)."
2120
 
2121
+ #: dashboard/settings/general.php:43
2122
  msgid ""
2123
  "To try and trick ad blockers you could set the folder to something crazy "
2124
  "like:"
2126
  "Για να ξεγελάσετε το μπλοκάρισμα των διαφημίσεων, ορίστε σαν όνομα φακέλου "
2127
  "κάτι περίεργο όπως:"
2128
 
2129
+ #: dashboard/settings/general.php:44
2130
  msgid ""
2131
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2132
  "will show errors when the folder is missing."
2134
  "Αυτός ο φάκελος δεν θα δημιουργηθεί αυτόματα αν δεν υπάρχει. Το AdRotate θα "
2135
  "εμφανίσει λάθη όταν λείπει ο φάκελος."
2136
 
2137
+ #: dashboard/settings/general.php:49
2138
  #, fuzzy
2139
  msgid "Bot filter"
2140
  msgstr "Φίλτρο προγράμματος περιήγησης"
2141
 
2142
+ #: dashboard/settings/general.php:50
2143
  msgid "The bot filter is used for the AdRotate stats tracker."
2144
  msgstr ""
2145
 
2146
+ #: dashboard/settings/general.php:53
2147
  msgid "User-Agent Filter"
2148
  msgstr "Φίλτρο προγράμματος περιήγησης"
2149
 
2150
+ #: dashboard/settings/general.php:56
2151
  msgid ""
2152
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2153
  msgstr ""
2154
 
2155
+ #: dashboard/settings/general.php:57
2156
  msgid ""
2157
  "Keep in mind that this might give false positives. The word 'fire' also "
2158
  "matches 'firefox', but not vice-versa. So be careful!"
2159
  msgstr ""
2160
 
2161
+ #: dashboard/settings/general.php:58
2162
  msgid ""
2163
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2164
  "characters are stripped out."
2165
  msgstr ""
2166
 
2167
+ #: dashboard/settings/general.php:59
2168
  msgid ""
2169
  "Additionally to the list specified here, empty User-Agents are blocked as "
2170
  "well."
2172
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
2173
  "απορίπτονται επίσης."
2174
 
2175
+ #: dashboard/settings/general.php:59
2176
  msgid "Learn more about"
2177
  msgstr "Μάθετε περισσότερα σχετικά"
2178
 
2179
+ #: dashboard/settings/general.php:59
2180
  msgid "user-agents"
2181
  msgstr "πρόγραμμα περιήγησης"
2182
 
2183
+ #: dashboard/settings/geotargeting.php:12
2184
  msgid "Geo Targeting - Available in AdRotate Pro"
2185
  msgstr ""
2186
 
2187
+ #: dashboard/settings/geotargeting.php:13
2188
  msgid "Target certain areas in the world for better advertising oppurtunities."
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/geotargeting.php:16
2192
  msgid "Which Geo Service"
2193
  msgstr ""
2194
 
2195
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2196
  msgid ""
2197
  "The most complete and accurate geo targeting you can get for only $20 USD "
2198
  "per 50000 lookups."
2199
  msgstr ""
2200
 
2201
+ #: dashboard/settings/geotargeting.php:28
2202
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2203
  msgstr ""
2204
 
2205
+ #: dashboard/settings/geotargeting.php:30
2206
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2207
  msgstr ""
2208
 
2209
+ #: dashboard/settings/geotargeting.php:36
2210
  msgid "Geo Cookie Lifespan"
2211
  msgstr ""
2212
 
2213
+ #: dashboard/settings/geotargeting.php:45
2214
  msgid "Hours."
2215
  msgstr ""
2216
 
2217
+ #: dashboard/settings/geotargeting.php:46
2218
  msgid ""
2219
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2220
  "cookie last? A longer period is less accurate for mobile users but may "
2221
  "reduce the usage of your lookups drastically."
2222
  msgstr ""
2223
 
2224
+ #: dashboard/settings/geotargeting.php:52
2225
  msgid "MaxMind City/Country"
2226
  msgstr ""
2227
 
2228
+ #: dashboard/settings/geotargeting.php:55
2229
  msgid "Username/Email"
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/geotargeting.php:59
2233
  msgid "Password/License Key"
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/maintenance.php:12
2237
  msgid "Maintenance"
2238
  msgstr "Συντήρηση"
2239
 
2240
+ #: dashboard/settings/maintenance.php:13
2241
  msgid ""
2242
  "Use these functions when you notice your database is slow, unresponsive and "
2243
  "sluggish."
2244
  msgstr ""
2245
 
2246
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2247
  msgid "Optimize Database"
2248
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
2249
 
2250
+ #: dashboard/settings/maintenance.php:18
2251
  msgid "You are about to optimize the AdRotate database."
2252
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
2253
 
2254
+ #: dashboard/settings/maintenance.php:18
2255
  msgid "Did you make a backup of your database?"
2256
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
2257
 
2258
+ #: dashboard/settings/maintenance.php:18
2259
  msgid ""
2260
  "This may take a moment and may cause your website to respond slow "
2261
  "temporarily!"
2263
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
2264
  "σας να είναι προσωρινά αργή!"
2265
 
2266
+ #: dashboard/settings/maintenance.php:19
2267
  msgid "Cleans up overhead data in the AdRotate tables."
2268
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
2269
 
2270
+ #: dashboard/settings/maintenance.php:20
2271
  msgid ""
2272
  "Overhead data is accumulated garbage resulting from many changes you've "
2273
  "made. This can vary from nothing to hundreds of KiB of data."
2276
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
2277
  "μέχρι εκατοντάδες kilobytes δεδομένων."
2278
 
2279
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2280
  msgid "Clean-up Database"
2281
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
2282
 
2283
+ #: dashboard/settings/maintenance.php:26
2284
  msgid ""
2285
  "You are about to clean up your database. This may delete expired schedules "
2286
  "and older statistics."
2288
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
2289
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
2290
 
2291
+ #: dashboard/settings/maintenance.php:26
2292
  msgid "Are you sure you want to continue?"
2293
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2294
 
2295
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2296
  msgid "This might take a while and may slow down your site during this action!"
2297
  msgstr ""
2298
 
2299
+ #: dashboard/settings/maintenance.php:27
2300
  msgid "Delete stats older than 356 days (Optional)."
2301
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2302
 
2303
+ #: dashboard/settings/maintenance.php:28
2304
  msgid ""
2305
  "AdRotate creates empty records when you start making ads, groups or "
2306
  "schedules. In rare occasions these records are faulty."
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:28
2310
  msgid ""
2311
  "If you made an ad, group or schedule that does not save when you make it use "
2312
  "this button to delete those empty records."
2313
  msgstr ""
2314
 
2315
+ #: dashboard/settings/maintenance.php:28
2316
  msgid ""
2317
  "Additionally you can clean up old schedules and/or statistics. This will "
2318
  "improve the speed of your site."
2319
  msgstr ""
2320
 
2321
+ #: dashboard/settings/maintenance.php:32
2322
  #, fuzzy
2323
  msgid "Re-evaluate Ads"
2324
  msgstr "Διαφημίσεις"
2325
 
2326
+ #: dashboard/settings/maintenance.php:34
2327
  msgid "Re-evaluate all ads"
2328
  msgstr ""
2329
 
2330
+ #: dashboard/settings/maintenance.php:34
2331
  #, fuzzy
2332
  msgid "You are about to check all ads for errors."
2333
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2334
 
2335
+ #: dashboard/settings/maintenance.php:35
2336
  msgid ""
2337
  "This will apply all evaluation rules to all ads to see if any error slipped "
2338
  "in. Normally you should not need this feature."
2339
  msgstr ""
2340
 
2341
+ #: dashboard/settings/maintenance.php:39
2342
  msgid ""
2343
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2344
  "database. They only apply to your ads/groups and stats. Not to other "
2351
  "is not a valid point in any case."
2352
  msgstr ""
2353
 
2354
+ #: dashboard/settings/maintenance.php:41
2355
  msgid "Troubleshooting"
2356
  msgstr "Αντιμετώπιση προβλημάτων"
2357
 
2358
+ #: dashboard/settings/maintenance.php:42
2359
  msgid ""
2360
  "The below options are not meant for normal use and are only there for "
2361
  "developers to review saved settings or how ads are selected. These can be "
2363
  "SHOULD BE LEFT UNCHECKED!!"
2364
  msgstr ""
2365
 
2366
+ #: dashboard/settings/maintenance.php:45
2367
  msgid "Developer Debug"
2368
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
2369
 
2370
+ #: dashboard/settings/maintenance.php:47
2371
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2372
  msgstr ""
2373
 
2374
+ #: dashboard/settings/maintenance.php:48
2375
  msgid "View advert specs and (some) stats in the dashboard."
2376
  msgstr ""
2377
 
2378
+ #: dashboard/settings/maintenance.php:49
2379
  #, fuzzy
2380
  msgid ""
2381
  "Disable timers for clicks and impressions and enable a alert window for "
2382
  "clicktracking."
2383
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2384
 
2385
+ #: dashboard/settings/maintenance.php:50
2386
  msgid "Temporarily disable encryption on the redirect url."
2387
  msgstr ""
2388
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
2389
 
2390
+ #: dashboard/settings/maintenance.php:55
2391
  msgid "Status and Versions"
2392
  msgstr ""
2393
 
2394
+ #: dashboard/settings/maintenance.php:58
2395
  msgid "Current version:"
2396
  msgstr "Τρέχουσα έκδοση:"
2397
 
2398
+ #: dashboard/settings/maintenance.php:59
2399
  msgid "Previous version:"
2400
  msgstr "Προηγούμενη έκδοση:"
2401
 
2402
+ #: dashboard/settings/maintenance.php:62
2403
  msgid "Current database version:"
2404
  msgstr "Τρέχουσα έκδοση βάσης:"
2405
 
2406
+ #: dashboard/settings/maintenance.php:63
2407
  msgid "Previous database version:"
2408
  msgstr "Προηγούμενη έκδοση βάσης:"
2409
 
2410
+ #: dashboard/settings/maintenance.php:66
2411
  msgid "Current status of adverts"
2412
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
2413
 
2414
+ #: dashboard/settings/maintenance.php:67
2415
  msgid "Normal"
2416
  msgstr "Φυσιολογική"
2417
 
2418
+ #: dashboard/settings/maintenance.php:67
2419
  msgid "Error"
2420
  msgstr "Σφάλμα"
2421
 
2422
+ #: dashboard/settings/maintenance.php:67
2423
  msgid "Expired"
2424
  msgstr "Έληξε"
2425
 
2426
+ #: dashboard/settings/maintenance.php:67
2427
  msgid "Expires Soon"
2428
  msgstr "Λήγει Σύντομα"
2429
 
2430
+ #: dashboard/settings/maintenance.php:67
2431
  msgid "Unknown"
2432
  msgstr ""
2433
 
2434
+ #: dashboard/settings/maintenance.php:70
2435
  #, fuzzy
2436
  msgid "Ad evaluation next run:"
2437
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2438
 
2439
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2440
  msgid "Not scheduled!"
2441
  msgstr "Δεν έχει προγραμματιστεί!"
2442
 
2443
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2444
  msgid "Clean Trackerdata next run:"
2445
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2446
 
2447
+ #: dashboard/settings/misc.php:12
2448
  msgid "Miscellaneous"
2449
  msgstr "Διάφορα"
2450
 
2451
+ #: dashboard/settings/misc.php:15
2452
  msgid "Widget alignment"
2453
  msgstr "Ευθυγράμμιση μονάδας"
2454
 
2455
+ #: dashboard/settings/misc.php:16
2456
  msgid ""
2457
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2458
  "not always help!)"
2460
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
2461
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
2462
 
2463
+ #: dashboard/settings/misc.php:19
2464
  msgid "Widget padding"
2465
  msgstr "Κενά περιθώρια μονάδων"
2466
 
2467
+ #: dashboard/settings/misc.php:20
2468
  msgid ""
2469
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2470
  "not always work!)"
2472
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
2473
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
2474
 
2475
+ #: dashboard/settings/misc.php:24
2476
  msgid "NOTICE:"
2477
  msgstr ""
2478
 
2479
+ #: dashboard/settings/misc.php:25
2480
  msgid ""
2481
  "You have enabled W3 Total Caching support but not defined the security hash. "
2482
  "You need to add the following line to your wp-config.php near the bottom or "
2484
  "needs to be enabled in W3 Total Cache as well too."
2485
  msgstr ""
2486
 
2487
+ #: dashboard/settings/misc.php:29
2488
  msgid "W3 Total Caching"
2489
  msgstr "W3 Total Caching"
2490
 
2491
+ #: dashboard/settings/misc.php:30
2492
  msgid "Check this box if you use W3 Total Caching on your site."
2493
  msgstr ""
2494
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
2495
  "σας."
2496
 
2497
+ #: dashboard/settings/misc.php:34
2498
  msgid ""
2499
  "It may take a while for the ad to start rotating. The caching plugin needs "
2500
  "to refresh the cache. This can take up to a week if not done manually."
2503
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
2504
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
2505
 
2506
+ #: dashboard/settings/misc.php:34
2507
  msgid ""
2508
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2509
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2512
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
2513
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
2514
 
2515
+ #: dashboard/settings/notifications.php:12
2516
  msgid "Notifications - Available in AdRotate Pro"
2517
  msgstr ""
2518
 
2519
+ #: dashboard/settings/notifications.php:13
2520
  msgid "Set up who gets notifications if ads need your attention."
2521
  msgstr ""
2522
 
2523
+ #: dashboard/settings/notifications.php:16
2524
  msgid "Delivery method"
2525
  msgstr ""
2526
 
2527
+ #: dashboard/settings/notifications.php:18
2528
  #, fuzzy
2529
  msgid "Email message."
2530
  msgstr "Ειδοποιήσεις Email"
2531
 
2532
+ #: dashboard/settings/notifications.php:19
2533
  msgid "Push notifications to your smartphone."
2534
  msgstr ""
2535
 
2536
+ #: dashboard/settings/notifications.php:20
2537
  msgid ""
2538
  "Push notifications are delivered through Pushover, a notification service "
2539
  "for Android and iOS"
2540
  msgstr ""
2541
 
2542
+ #: dashboard/settings/notifications.php:20
2543
  msgid ""
2544
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2545
  "information can be found on the pushover website;"
2546
  msgstr ""
2547
 
2548
+ #: dashboard/settings/notifications.php:24
2549
  msgid "Test notification"
2550
  msgstr ""
2551
 
2552
+ #: dashboard/settings/notifications.php:26
2553
  #, fuzzy
2554
  msgid ""
2555
  "This sends a test notification. Before you test, save the options first!"
2557
  "Η επιλογή στέλνει μια δοκιμαστική ειδοποίηση. Πριν δοκιμάσετε, για "
2558
  "παράδειγμα, με μια νέα διεύθυνση email. Αποθηκεύστε πρώτα τις επιλογές!"
2559
 
2560
+ #: dashboard/settings/notifications.php:31
2561
  #, fuzzy
2562
  msgid "Dashboard Notifications"
2563
  msgstr "Ειδοποιήσεις"
2564
 
2565
+ #: dashboard/settings/notifications.php:32
2566
  msgid "These show to every administrator who can edit adverts."
2567
  msgstr ""
2568
 
2569
+ #: dashboard/settings/notifications.php:35
2570
  msgid "Notification banners"
2571
  msgstr ""
2572
 
2573
+ #: dashboard/settings/notifications.php:36
2574
  msgid "Disable dashboard notifications."
2575
  msgstr ""
2576
 
2577
+ #: dashboard/settings/notifications.php:40
2578
  msgid "Email Notifications"
2579
  msgstr "Ειδοποιήσεις Email"
2580
 
2581
+ #: dashboard/settings/notifications.php:41
2582
  msgid "Set up who gets notification emails."
2583
  msgstr ""
2584
 
2585
+ #: dashboard/settings/notifications.php:44
2586
+ #: dashboard/settings/notifications.php:64
2587
  msgid "Publishers"
2588
  msgstr ""
2589
 
2590
+ #: dashboard/settings/notifications.php:47
2591
  msgid ""
2592
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2593
  "list to a minimum!"
2595
  "Ένας κατάλογος email διαχωρισμένων με κόματα. Μέγιστο όριο 5 διευθύνσεων. "
2596
  "Διατηρήστε τον στο ελάχιστο!"
2597
 
2598
+ #: dashboard/settings/notifications.php:48
2599
  #, fuzzy
2600
  msgid ""
2601
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2604
  "Μηνύματα στέλνονται κάθε 24 ώρες όταν είναι ανάγκη. Αν αυτό το πεδίο είναι "
2605
  "κενό η λειτουργία θα απενεργοποιηθεί."
2606
 
2607
+ #: dashboard/settings/notifications.php:52
2608
  msgid "Advertisers"
2609
  msgstr "Διαφημιζόμενοι"
2610
 
2611
+ #: dashboard/settings/notifications.php:55
2612
  #, fuzzy
2613
  msgid ""
2614
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2617
  "Μέγιστο 2 διευθύνσεων. Διαχωρισμός με κόματα. Αυτό το πεδίο δεν μπορεί να "
2618
  "είναι κενό!"
2619
 
2620
+ #: dashboard/settings/notifications.php:60
2621
  #, fuzzy
2622
  msgid "Push Notifications"
2623
  msgstr "Ειδοποιήσεις"
2624
 
2625
+ #: dashboard/settings/notifications.php:61
2626
  msgid ""
2627
  "Receive information about what is happening with your AdRotate setup on your "
2628
  "smartphone via Pushover."
2629
  msgstr ""
2630
 
2631
+ #: dashboard/settings/notifications.php:66
2632
  msgid "When you are running out of Geo Targeting Lookups."
2633
  msgstr ""
2634
 
2635
+ #: dashboard/settings/notifications.php:67
2636
  msgid "Daily digest of any advert status other than normal."
2637
  msgstr ""
2638
 
2639
+ #: dashboard/settings/notifications.php:68
2640
  msgid "Any advertiser saving an advert in your moderation queue."
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/notifications.php:69
2644
  #, fuzzy
2645
  msgid "A moderator approved an advert from the moderation queue."
2646
  msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
2647
 
2648
+ #: dashboard/settings/notifications.php:70
2649
  #, fuzzy
2650
  msgid "A moderator rejected an advert from the moderation queue."
2651
  msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
2652
 
2653
+ #: dashboard/settings/notifications.php:70
2654
  msgid ""
2655
  "If you have a lot of activity with many advertisers adding/changing adverts "
2656
  "you may get a lot of messages!"
2657
  msgstr ""
2658
 
2659
+ #: dashboard/settings/notifications.php:75
2660
  #, fuzzy
2661
  msgid "User Key"
2662
  msgstr "πρόγραμμα περιήγησης"
2663
 
2664
+ #: dashboard/settings/notifications.php:77
2665
  msgid "Get your user token"
2666
  msgstr ""
2667
 
2668
+ #: dashboard/settings/notifications.php:77
2669
+ #: dashboard/settings/notifications.php:83
2670
  msgid "here"
2671
  msgstr ""
2672
 
2673
+ #: dashboard/settings/notifications.php:81
2674
  msgid "Api Token"
2675
  msgstr ""
2676
 
2677
+ #: dashboard/settings/notifications.php:83
2678
  msgid "Create your"
2679
  msgstr ""
2680
 
2681
+ #: dashboard/settings/notifications.php:83
2682
  msgid "App"
2683
  msgstr ""
2684
 
2685
+ #: dashboard/settings/notifications.php:83
2686
  msgid "and get your API token"
2687
  msgstr ""
2688
 
2689
+ #: dashboard/settings/roles.php:12
2690
  msgid "Roles"
2691
  msgstr ""
2692
 
2693
+ #: dashboard/settings/roles.php:13
2694
  msgid "Who has access to what?"
2695
  msgstr ""
2696
 
2697
+ #: dashboard/settings/roles.php:16
2698
  msgid "Manage/Add/Edit adverts"
2699
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
2700
 
2701
+ #: dashboard/settings/roles.php:20
2702
  msgid "Role to see and add/edit ads."
2703
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
2704
 
2705
+ #: dashboard/settings/roles.php:24
2706
  msgid "Delete/Reset adverts"
2707
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
2708
 
2709
+ #: dashboard/settings/roles.php:28
2710
  msgid "Role to delete ads and reset stats."
2711
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
2712
 
2713
+ #: dashboard/settings/roles.php:32
2714
  msgid "Manage/Add/Edit groups"
2715
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
2716
 
2717
+ #: dashboard/settings/roles.php:36
2718
  msgid "Role to see and add/edit groups."
2719
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
2720
 
2721
+ #: dashboard/settings/roles.php:40
2722
  msgid "Delete groups"
2723
  msgstr "Διαγραφή ομάδων"
2724
 
2725
+ #: dashboard/settings/roles.php:44
2726
  msgid "Role to delete groups."
2727
  msgstr "Ρόλος για τη διαγραφή ομάδων."
2728
 
2729
+ #: dashboard/settings/statistics.php:13
2730
  msgid "Track statistics for your adverts."
2731
  msgstr ""
2732
 
2733
+ #: dashboard/settings/statistics.php:16
2734
  msgid "How to track stats"
2735
  msgstr ""
2736
 
2737
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2738
  msgid "Tracks impressions and clicks internally"
2739
  msgstr ""
2740
 
2741
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2742
+ #: dashboard/settings/statistics.php:29
2743
  msgid "manual"
2744
  msgstr ""
2745
 
2746
+ #: dashboard/settings/statistics.php:26
2747
  msgid ""
2748
  "Click and Impression recording, Click and impression limits, impression "
2749
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2750
+ "will only track impressions."
2751
  msgstr ""
2752
 
2753
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2754
+ msgid "In AdRotate Pro!"
2755
+ msgstr ""
2756
+
2757
+ #: dashboard/settings/statistics.php:27
2758
  msgid ""
2759
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2760
  "attributes"
2761
  msgstr ""
2762
 
2763
+ #: dashboard/settings/statistics.php:28
2764
  msgid ""
2765
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2766
  "Contents."
2767
  msgstr ""
2768
 
2769
+ #: dashboard/settings/statistics.php:29
2770
  msgid ""
2771
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2772
  "uses onClick() and onload() in adverts"
2773
  msgstr ""
2774
 
2775
+ #: dashboard/settings/statistics.php:30
2776
  msgid ""
2777
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2778
+ "Banner."
2779
  msgstr ""
2780
 
2781
+ #: dashboard/settings/statistics.php:36
2782
  msgid "Internal Tracker"
2783
  msgstr ""
2784
 
2785
+ #: dashboard/settings/statistics.php:37
2786
  msgid ""
2787
  "The settings below are for the internal tracker and have no effect when "
2788
  "using Piwik/Google Analytics."
2789
  msgstr ""
2790
 
2791
+ #: dashboard/settings/statistics.php:40
2792
  #, fuzzy
2793
  msgid "Logged in impressions"
2794
  msgstr "Εμφανίσεις"
2795
 
2796
+ #: dashboard/settings/statistics.php:42
2797
  msgid "Track impressions from logged in users."
2798
  msgstr ""
2799
 
2800
+ #: dashboard/settings/statistics.php:46
2801
  msgid "Logged in clicks"
2802
  msgstr ""
2803
 
2804
+ #: dashboard/settings/statistics.php:48
2805
  msgid "Track clicks from logged in users."
2806
  msgstr "Παρακολουθήστε κλικ από συνδεδεμένους χρήστες."
2807
 
2808
+ #: dashboard/settings/statistics.php:52
2809
+ msgid "Impression timer"
2810
+ msgstr ""
2811
 
2812
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2813
  msgid "Seconds."
2814
  msgstr "Δευτερόλεπτα."
2815
 
2816
+ #: dashboard/settings/statistics.php:55
2817
  #, fuzzy
2818
  msgid "Default: 60."
2819
  msgstr "Προεπιλογή"
2820
 
2821
+ #: dashboard/settings/statistics.php:55
2822
  #, fuzzy
2823
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2824
  msgstr ""
2825
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2826
  "ώρα)."
2827
 
2828
+ #: dashboard/settings/statistics.php:59
2829
+ msgid "Click timer"
2830
+ msgstr ""
 
2831
 
2832
+ #: dashboard/settings/statistics.php:62
2833
  #, fuzzy
2834
  msgid "Default: 86400."
2835
  msgstr "Προεπιλογή"
2836
 
2837
+ #: dashboard/settings/statistics.php:62
2838
  #, fuzzy
2839
  msgid ""
2840
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2842
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2843
  "ώρα)."
2844
 
2845
+ #~ msgid "Find out more"
2846
+ #~ msgstr "Μάθετε περισσότερα"
2847
+
2848
+ #~ msgid "Barely visible"
2849
+ #~ msgstr "μόλις ορατό"
2850
+
2851
+ #~ msgid "Less than average"
2852
+ #~ msgstr "Λιγότερο από το μέσο όρο"
2853
+
2854
+ #~ msgid "Normal coverage"
2855
+ #~ msgstr "Κανονική κάλυψη"
2856
+
2857
+ #~ msgid "More than average"
2858
+ #~ msgstr "Περισσότερο από μέσο"
2859
+
2860
+ #~ msgid "Best visibility"
2861
+ #~ msgstr "Καλύτερη ορατότητα"
2862
+
2863
+ #~ msgid "Ads in group"
2864
+ #~ msgstr "Διαφημίσεις στην ομάδα"
2865
+
2866
+ #~ msgid "Code"
2867
+ #~ msgstr "Κώδικας"
2868
+
2869
+ #~ msgid "Impressions timer"
2870
+ #~ msgstr "Χρονομετρητής εμφανίσεων"
2871
+
2872
+ #, fuzzy
2873
+ #~ msgid "Clicks timer"
2874
+ #~ msgstr "Χρονομετρητής εμφανίσεων"
2875
+
2876
  #, fuzzy
2877
  #~ msgid "Learn More"
2878
  #~ msgstr "Μάθετε περισσότερα σχετικά"
language/adrotate-en_US.mo CHANGED
Binary file
language/adrotate-en_US.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: 2015-08-23 20:10+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:10+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
@@ -283,10 +283,10 @@ msgstr "Résoudre ce soucis dans les meilleurs délais"
283
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
284
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
285
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
286
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
287
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
288
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
289
- #: dashboard/settings/geotargeting.php:16
290
  #, fuzzy
291
  msgid "Buy now"
292
  msgstr "Achetez AdRotate Professionel"
@@ -386,7 +386,7 @@ msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
386
  msgid "on WordPress.org to help AdRotate grow in a positive way"
387
  msgstr ""
388
 
389
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
390
  #, fuzzy
391
  msgid "Available in AdRotate Pro"
392
  msgstr "Disponible dans Adrotate Pro"
@@ -406,74 +406,74 @@ msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
406
  msgid "Learn more"
407
  msgstr "En savoir plus"
408
 
409
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
410
- #: dashboard/publisher/adverts-edit.php:245
411
  #, fuzzy
412
  msgid "January"
413
  msgstr "Janvier"
414
 
415
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
416
- #: dashboard/publisher/adverts-edit.php:246
417
  #, fuzzy
418
  msgid "February"
419
  msgstr "Février"
420
 
421
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
422
- #: dashboard/publisher/adverts-edit.php:247
423
  #, fuzzy
424
  msgid "March"
425
  msgstr "Mars"
426
 
427
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
428
- #: dashboard/publisher/adverts-edit.php:248
429
  #, fuzzy
430
  msgid "April"
431
  msgstr "Avril"
432
 
433
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
434
- #: dashboard/publisher/adverts-edit.php:249
435
  #, fuzzy
436
  msgid "May"
437
  msgstr "Mai"
438
 
439
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
440
- #: dashboard/publisher/adverts-edit.php:250
441
  #, fuzzy
442
  msgid "June"
443
  msgstr "Juin"
444
 
445
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
446
- #: dashboard/publisher/adverts-edit.php:251
447
  #, fuzzy
448
  msgid "July"
449
  msgstr "Juillet"
450
 
451
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
452
- #: dashboard/publisher/adverts-edit.php:252
453
  #, fuzzy
454
  msgid "August"
455
  msgstr "Août"
456
 
457
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
458
- #: dashboard/publisher/adverts-edit.php:253
459
  #, fuzzy
460
  msgid "September"
461
  msgstr "Septembre"
462
 
463
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
464
- #: dashboard/publisher/adverts-edit.php:254
465
  #, fuzzy
466
  msgid "October"
467
  msgstr "Octobre"
468
 
469
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
470
- #: dashboard/publisher/adverts-edit.php:255
471
  #, fuzzy
472
  msgid "November"
473
  msgstr "Novembre"
474
 
475
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
476
- #: dashboard/publisher/adverts-edit.php:256
477
  #, fuzzy
478
  msgid "December"
479
  msgstr "Décembre"
@@ -616,7 +616,7 @@ msgid "Group Management"
616
  msgstr "Gérer les groupes"
617
 
618
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
619
- #: dashboard/publisher/groups-main.php:71
620
  #, fuzzy
621
  msgid "Report"
622
  msgstr "Rapport"
@@ -632,10 +632,10 @@ msgid ""
632
  "AdRotate Pro."
633
  msgstr ""
634
 
635
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
636
  #: dashboard/publisher/adverts-main.php:114
637
  #: dashboard/publisher/groups-edit.php:75
638
- #: dashboard/publisher/groups-main.php:91
639
  #, fuzzy
640
  msgid "More information"
641
  msgstr "Plus d'informations..."
@@ -675,7 +675,7 @@ msgstr "Début / Fin"
675
  msgid "End"
676
  msgstr "Début / Fin"
677
 
678
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
679
  #: dashboard/publisher/groups-main.php:34
680
  #, fuzzy
681
  msgid "Ads"
@@ -683,13 +683,13 @@ msgstr "Pubs"
683
 
684
  #: adrotate.php:428
685
  #, fuzzy
686
- msgid "Max Clicks"
687
- msgstr "Clicks"
688
 
689
  #: adrotate.php:429
690
  #, fuzzy
691
- msgid "Max Impressions"
692
- msgstr "Vues"
693
 
694
  #: adrotate.php:459
695
  #, fuzzy
@@ -774,7 +774,7 @@ msgid ""
774
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
775
  msgstr ""
776
 
777
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
778
  #, fuzzy
779
  msgid ""
780
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
@@ -784,14 +784,14 @@ msgstr ""
784
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
785
  "tailles d'écran."
786
 
787
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
788
  #: dashboard/publisher/groups-edit.php:312
789
  #: dashboard/publisher/groups-edit.php:320
790
  #, fuzzy
791
  msgid "Example:"
792
  msgstr "Exemple :"
793
 
794
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
795
  #, fuzzy
796
  msgid ""
797
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -896,22 +896,17 @@ msgid ""
896
  "forum. Get a solution (usually) within a day."
897
  msgstr ""
898
 
899
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
900
  #, fuzzy
901
  msgid "AdRotate is brought to you by"
902
  msgstr "AdRotate est offert par"
903
 
904
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
905
  msgid ""
906
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
907
- "details!"
908
  msgstr ""
909
 
910
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
911
- #, fuzzy
912
- msgid "Find out more"
913
- msgstr "En savoir plus"
914
-
915
  #: dashboard/adrotatepro.php:58
916
  #, fuzzy
917
  msgid "Schedule all campaigns with ease"
@@ -939,161 +934,161 @@ msgid ""
939
  msgstr ""
940
 
941
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
942
- #: dashboard/info.php:134 dashboard/info.php:146
943
  #, fuzzy
944
  msgid "Buy AdRotate Professional"
945
  msgstr "Achetez AdRotate Professionel"
946
 
947
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
948
  msgid "Single License"
949
  msgstr ""
950
 
951
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
952
  #, fuzzy
953
  msgid "For one WordPress installation."
954
  msgstr "Pour une installation Wordpress."
955
 
956
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
957
- #: dashboard/info.php:139 dashboard/info.php:151
958
  #, fuzzy
959
  msgid "Duo License"
960
  msgstr "Licence Duo"
961
 
962
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
963
  #, fuzzy
964
  msgid "For two WordPress installations."
965
  msgstr "Pour deux installations Wordpress."
966
 
967
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
968
- #: dashboard/info.php:140 dashboard/info.php:152
969
  #, fuzzy
970
  msgid "Multi License"
971
  msgstr "Licence Multiple"
972
 
973
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
974
  #, fuzzy
975
  msgid " For up to five WordPress installations."
976
  msgstr "Pour un max de cinq installation Wordpress."
977
 
978
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
979
- #: dashboard/info.php:141 dashboard/info.php:153
980
  #, fuzzy
981
  msgid "Developer License"
982
  msgstr "Licence de Developpeur"
983
 
984
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
985
  msgid "Unlimited WordPress installations and/or networks."
986
  msgstr ""
987
 
988
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
989
- #: dashboard/info.php:142 dashboard/info.php:155
990
  #, fuzzy
991
  msgid "Compare licenses"
992
  msgstr "Comparer les licences"
993
 
994
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
995
  #, fuzzy
996
  msgid "Not sure which license is for you? Compare them..."
997
  msgstr ""
998
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
999
 
1000
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
1001
  #, fuzzy
1002
  msgid "All Licenses"
1003
  msgstr "Toutes les licences"
1004
 
1005
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
1006
  msgid "Lifetime License"
1007
  msgstr ""
1008
 
1009
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
1010
  msgid "Single installation."
1011
  msgstr ""
1012
 
1013
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
1014
  msgid "Up to 2 installations."
1015
  msgstr ""
1016
 
1017
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
1018
  msgid "Up to 10 installations."
1019
  msgstr ""
1020
 
1021
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
1022
  msgid "Up to 25 installations or multisite networks."
1023
  msgstr ""
1024
 
1025
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
1026
  msgid ""
1027
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
1028
  msgstr ""
1029
 
1030
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
1031
  msgid "Not sure which license is for you?"
1032
  msgstr ""
1033
 
1034
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
1035
  msgid "Compare Licenses"
1036
  msgstr ""
1037
 
1038
- #: dashboard/info.php:65
1039
  #, fuzzy
1040
  msgid "Currently"
1041
  msgstr "Actuellement"
1042
 
1043
- #: dashboard/info.php:71
1044
  #, fuzzy
1045
  msgid "Your setup"
1046
  msgstr "Votre configuration"
1047
 
1048
- #: dashboard/info.php:72
1049
  #, fuzzy
1050
  msgid "Adverts that need you"
1051
  msgstr "Publicités qui ont besoin de votre attention"
1052
 
1053
- #: dashboard/info.php:78
1054
  #, fuzzy
1055
  msgid "Adverts"
1056
  msgstr "Publicités"
1057
 
1058
- #: dashboard/info.php:79
1059
  #, fuzzy
1060
  msgid "(Almost) Expired"
1061
  msgstr "(presque) expiré"
1062
 
1063
- #: dashboard/info.php:82
1064
  #, fuzzy
1065
  msgid "Groups"
1066
  msgstr "Groupes"
1067
 
1068
- #: dashboard/info.php:83
1069
  #, fuzzy
1070
  msgid "Have errors"
1071
  msgstr "Il y a des erreurs"
1072
 
1073
- #: dashboard/info.php:89
1074
  #, fuzzy
1075
  msgid "Support AdRotate"
1076
  msgstr "Soutenez AdRotate"
1077
 
1078
- #: dashboard/info.php:96
1079
  msgid "Your gift helps ensure the continued development of AdRotate!"
1080
  msgstr ""
1081
 
1082
- #: dashboard/info.php:96
1083
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1084
  msgstr ""
1085
 
1086
- #: dashboard/info.php:105
1087
  #, fuzzy
1088
  msgid "AdRotate News and Developer Blog"
1089
  msgstr "Actus AdRotate et blog du développeur"
1090
 
1091
- #: dashboard/info.php:127
1092
  #, fuzzy
1093
  msgid "Get more features with AdRotate Pro"
1094
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1095
 
1096
- #: dashboard/info.php:130
1097
  #, fuzzy
1098
  msgid ""
1099
  "Benefit from extra features to reinforce your income with advertising "
@@ -1105,32 +1100,27 @@ msgstr ""
1105
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1106
  "la version gratuite."
1107
 
1108
- #: dashboard/info.php:130
1109
  msgid "Want to know more about"
1110
  msgstr ""
1111
 
1112
- #: dashboard/info.php:130
1113
  #, fuzzy
1114
  msgid "Visit the"
1115
  msgstr "Visitez le"
1116
 
1117
- #: dashboard/info.php:130
1118
  #, fuzzy
1119
  msgid "website"
1120
  msgstr "site"
1121
 
1122
- #: dashboard/info.php:166
1123
- #, fuzzy
1124
- msgid "Follow"
1125
- msgstr "Suivre"
1126
-
1127
  #: dashboard/publisher/adverts-disabled.php:15
1128
  #, fuzzy
1129
  msgid "Disabled Ads"
1130
  msgstr "Pubs inactives"
1131
 
1132
  #: dashboard/publisher/adverts-disabled.php:21
1133
- #: dashboard/publisher/adverts-edit.php:165
1134
  #, fuzzy
1135
  msgid "Activate"
1136
  msgstr "Activer"
@@ -1159,8 +1149,6 @@ msgstr "Titre :"
1159
 
1160
  #: dashboard/publisher/adverts-disabled.php:38
1161
  #: dashboard/publisher/adverts-report.php:34
1162
- #: dashboard/publisher/groups-edit.php:333
1163
- #: dashboard/publisher/groups-main.php:36
1164
  #: dashboard/publisher/groups-report.php:40
1165
  #, fuzzy
1166
  msgid "Impressions"
@@ -1187,7 +1175,7 @@ msgstr "CTR"
1187
  #: dashboard/publisher/adverts-disabled.php:74
1188
  #: dashboard/publisher/adverts-error.php:64
1189
  #: dashboard/publisher/adverts-main.php:87
1190
- #: dashboard/publisher/groups-main.php:71
1191
  #, fuzzy
1192
  msgid "Edit"
1193
  msgstr "Modifier"
@@ -1324,38 +1312,60 @@ msgid ""
1324
  "click to add it."
1325
  msgstr ""
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1328
  msgid "Banner asset"
1329
  msgstr ""
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:142
1332
  msgid "WordPress media:"
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:142
1336
  #, fuzzy
1337
  msgid "Select Banner"
1338
  msgstr "Choisir l'image"
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:144
1341
  msgid "- OR -"
1342
  msgstr ""
1343
 
1344
- #: dashboard/publisher/adverts-edit.php:146
1345
  #, fuzzy
1346
  msgid "Banner folder:"
1347
  msgstr "Dossier de bannières :"
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:147
1350
  #, fuzzy
1351
  msgid "No image selected"
1352
  msgstr "Aucune image sélectionnée"
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:151
1355
  msgid "Use %image% in the adcode instead of the file path."
1356
  msgstr ""
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:151
1359
  #, fuzzy
1360
  msgid ""
1361
  "Use either the text field or the dropdown. If the textfield has content that "
@@ -1364,53 +1374,53 @@ msgstr ""
1364
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1365
  "valeur, ce champ a la priorité."
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:156
1368
- #: dashboard/settings/statistics.php:1
1369
  #, fuzzy
1370
  msgid "Statistics"
1371
  msgstr "Statistiques"
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:158
1374
  msgid "Enable click and impression tracking for this advert."
1375
  msgstr ""
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:159
1378
  msgid ""
1379
  "Note: Clicktracking does not work for Javascript adverts such as those "
1380
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1381
- "supported."
1382
  msgstr ""
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:169
1385
  #, fuzzy
1386
  msgid "Yes, this ad will be used"
1387
  msgstr "Oui, cette publicité sera utilisée"
1388
 
1389
- #: dashboard/publisher/adverts-edit.php:170
1390
  #, fuzzy
1391
  msgid "No, do not show this ad anywhere"
1392
  msgstr "Non, cette publicité ne sera pas utilisée"
1393
 
1394
- #: dashboard/publisher/adverts-edit.php:177
1395
  #: dashboard/publisher/adverts-main.php:114
1396
  #: dashboard/publisher/groups-edit.php:75
1397
- #: dashboard/publisher/groups-main.php:91
1398
  #, fuzzy
1399
  msgid "Get more features with AdRotate Pro."
1400
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1401
 
1402
- #: dashboard/publisher/adverts-edit.php:180
1403
- #: dashboard/publisher/adverts-edit.php:295
1404
- #: dashboard/publisher/adverts-edit.php:395
1405
- #: dashboard/publisher/adverts-edit.php:436
1406
  #, fuzzy
1407
  msgid "Save Advert"
1408
  msgstr "Sauvegarder la pub"
1409
 
1410
- #: dashboard/publisher/adverts-edit.php:181
1411
- #: dashboard/publisher/adverts-edit.php:296
1412
- #: dashboard/publisher/adverts-edit.php:396
1413
- #: dashboard/publisher/adverts-edit.php:437
1414
  #: dashboard/publisher/groups-edit.php:154
1415
  #: dashboard/publisher/groups-edit.php:301
1416
  #: dashboard/publisher/groups-edit.php:393
@@ -1418,143 +1428,121 @@ msgstr "Sauvegarder la pub"
1418
  msgid "Cancel"
1419
  msgstr "Annuller"
1420
 
1421
- #: dashboard/publisher/adverts-edit.php:185
1422
- #, fuzzy
1423
- msgid "Preview"
1424
- msgstr "En avant-première"
1425
-
1426
- #: dashboard/publisher/adverts-edit.php:191
1427
- #, fuzzy
1428
- msgid ""
1429
- "Note: While this preview is an accurate one, it might look different then it "
1430
- "does on the website."
1431
- msgstr ""
1432
- "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1433
- "différente sur le site."
1434
-
1435
- #: dashboard/publisher/adverts-edit.php:192
1436
- #, fuzzy
1437
- msgid ""
1438
- "This is because of CSS differences. Your themes CSS file is not active here!"
1439
- msgstr ""
1440
- "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1441
- "pas actif ici!"
1442
-
1443
- #: dashboard/publisher/adverts-edit.php:199
1444
- #: dashboard/publisher/adverts-edit.php:378
1445
  #: dashboard/publisher/groups-edit.php:136
1446
  #: dashboard/publisher/groups-edit.php:283
1447
  #, fuzzy
1448
  msgid "Usage"
1449
  msgstr "Usage"
1450
 
1451
- #: dashboard/publisher/adverts-edit.php:203
1452
- #: dashboard/publisher/adverts-edit.php:382
1453
  #: dashboard/publisher/groups-edit.php:140
1454
  #: dashboard/publisher/groups-edit.php:287
1455
  msgid "Widget"
1456
  msgstr ""
1457
 
1458
- #: dashboard/publisher/adverts-edit.php:204
1459
- #: dashboard/publisher/adverts-edit.php:383
1460
  msgid ""
1461
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1462
  "and enter ID"
1463
  msgstr ""
1464
 
1465
- #: dashboard/publisher/adverts-edit.php:207
1466
- #: dashboard/publisher/adverts-edit.php:386
1467
  #: dashboard/publisher/groups-edit.php:144
1468
  #: dashboard/publisher/groups-edit.php:291
1469
  msgid "In a post or page"
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:209
1473
- #: dashboard/publisher/adverts-edit.php:388
1474
  #: dashboard/publisher/groups-edit.php:146
1475
  #: dashboard/publisher/groups-edit.php:293
1476
  msgid "Directly in a theme"
1477
  msgstr ""
1478
 
1479
- #: dashboard/publisher/adverts-edit.php:215
1480
  msgid "Schedule your advert"
1481
  msgstr ""
1482
 
1483
- #: dashboard/publisher/adverts-edit.php:219
1484
  msgid "Start date (day/month/year)"
1485
  msgstr ""
1486
 
1487
- #: dashboard/publisher/adverts-edit.php:240
1488
  msgid "End date (day/month/year)"
1489
  msgstr ""
1490
 
1491
- #: dashboard/publisher/adverts-edit.php:263
1492
  msgid "Start time (hh:mm)"
1493
  msgstr ""
1494
 
1495
- #: dashboard/publisher/adverts-edit.php:270
1496
  msgid "End time (hh:mm)"
1497
  msgstr ""
1498
 
1499
- #: dashboard/publisher/adverts-edit.php:280
1500
  msgid "Maximum Clicks"
1501
  msgstr ""
1502
 
1503
- #: dashboard/publisher/adverts-edit.php:281
1504
- #: dashboard/publisher/adverts-edit.php:283
1505
  #, fuzzy
1506
  msgid "Leave empty or 0 to skip this."
1507
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1508
 
1509
- #: dashboard/publisher/adverts-edit.php:282
1510
  msgid "Maximum Impressions"
1511
  msgstr ""
1512
 
1513
- #: dashboard/publisher/adverts-edit.php:287
1514
  msgid "Important"
1515
  msgstr ""
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:288
1518
  msgid ""
1519
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1520
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1521
  "14:00 hours. 6AM is 6:00 hours."
1522
  msgstr ""
1523
 
1524
- #: dashboard/publisher/adverts-edit.php:292
1525
  #, fuzzy
1526
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1527
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1528
 
1529
- #: dashboard/publisher/adverts-edit.php:292
1530
- #: dashboard/publisher/adverts-edit.php:332
1531
- #: dashboard/publisher/adverts-edit.php:376
1532
  #: dashboard/publisher/groups-edit.php:200
1533
  #, fuzzy
1534
  msgid "Upgrade today"
1535
  msgstr "Mettre à jour aujourd'hui"
1536
 
1537
- #: dashboard/publisher/adverts-edit.php:299
1538
  #: dashboard/publisher/groups-edit.php:157
1539
  #, fuzzy
1540
  msgid "Advanced"
1541
  msgstr "Avancé"
1542
 
1543
- #: dashboard/publisher/adverts-edit.php:300
1544
  #, fuzzy
1545
  msgid "Everything below is optional."
1546
  msgstr "Tous les paramètres ci-dessous sont optionels."
1547
 
1548
- #: dashboard/publisher/adverts-edit.php:304
1549
  msgid "Responsive"
1550
  msgstr ""
1551
 
1552
- #: dashboard/publisher/adverts-edit.php:306
1553
  #, fuzzy
1554
  msgid "Enable responsive support for this advert."
1555
  msgstr "Activer le support réactif pour cette publicité."
1556
 
1557
- #: dashboard/publisher/adverts-edit.php:307
1558
  #, fuzzy
1559
  msgid ""
1560
  "Upload your images to the banner folder and make sure the filename is in the "
@@ -1566,165 +1554,129 @@ msgstr ""
1566
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1567
  "fluide."
1568
 
1569
- #: dashboard/publisher/adverts-edit.php:313
1570
- #: dashboard/publisher/adverts-main.php:42
1571
- #: dashboard/publisher/groups-edit.php:336
1572
- #, fuzzy
1573
- msgid "Weight"
1574
- msgstr "Importance"
1575
-
1576
- #: dashboard/publisher/adverts-edit.php:316
1577
- #, fuzzy
1578
- msgid "Barely visible"
1579
- msgstr "Visible jusqu'à"
1580
-
1581
- #: dashboard/publisher/adverts-edit.php:317
1582
- msgid "Less than average"
1583
- msgstr ""
1584
-
1585
- #: dashboard/publisher/adverts-edit.php:318
1586
- #, fuzzy
1587
- msgid "Normal coverage"
1588
- msgstr "Normal"
1589
-
1590
- #: dashboard/publisher/adverts-edit.php:319
1591
- #, fuzzy
1592
- msgid "More than average"
1593
- msgstr "Plus d'informations..."
1594
-
1595
- #: dashboard/publisher/adverts-edit.php:320
1596
- msgid "Best visibility"
1597
- msgstr ""
1598
-
1599
- #: dashboard/publisher/adverts-edit.php:325
1600
  #: dashboard/publisher/groups-edit.php:194
1601
  msgid "Sortorder"
1602
  msgstr ""
1603
 
1604
- #: dashboard/publisher/adverts-edit.php:327
1605
  #: dashboard/publisher/groups-edit.php:196
1606
  #, fuzzy
1607
  msgid "For administrative purposes set a sortorder."
1608
  msgstr "Pour des raisons administratives définir un ordre de tri."
1609
 
1610
- #: dashboard/publisher/adverts-edit.php:327
1611
  #, fuzzy
1612
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1613
  msgstr ""
1614
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1615
  "de l'ID de la publicité."
1616
 
1617
- #: dashboard/publisher/adverts-edit.php:332
1618
  msgid ""
1619
- "With AdRotate Pro you can set the weight to give adverts more or less "
1620
- "exposure."
1621
  msgstr ""
1622
 
1623
- #: dashboard/publisher/adverts-edit.php:334
1624
  msgid "Geo Targeting in AdRotate Pro"
1625
  msgstr ""
1626
 
1627
- #: dashboard/publisher/adverts-edit.php:335
1628
  msgid ""
1629
  "Assign the advert to a group and enable that group to use Geo Targeting."
1630
  msgstr ""
1631
 
1632
- #: dashboard/publisher/adverts-edit.php:339
1633
  msgid "Cities/States"
1634
  msgstr ""
1635
 
1636
- #: dashboard/publisher/adverts-edit.php:342
1637
  msgid ""
1638
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1639
  "states ISO codes are supported)"
1640
  msgstr ""
1641
 
1642
- #: dashboard/publisher/adverts-edit.php:342
1643
  msgid ""
1644
  "AdRotate does not check the validity of names so make sure you spell them "
1645
  "correctly!"
1646
  msgstr ""
1647
 
1648
- #: dashboard/publisher/adverts-edit.php:346
1649
  msgid "Countries"
1650
  msgstr ""
1651
 
1652
- #: dashboard/publisher/adverts-edit.php:371
1653
  #, fuzzy
1654
  msgid "Select the countries you want the adverts to show in."
1655
  msgstr ""
1656
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
1657
  "pulicités."
1658
 
1659
- #: dashboard/publisher/adverts-edit.php:371
1660
  msgid "Cities take priority and will be filtered first."
1661
  msgstr ""
1662
 
1663
- #: dashboard/publisher/adverts-edit.php:376
1664
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1665
  msgstr ""
1666
 
1667
- #: dashboard/publisher/adverts-edit.php:400
1668
  #, fuzzy
1669
  msgid "Select Groups"
1670
  msgstr "Choisir groupes"
1671
 
1672
- #: dashboard/publisher/adverts-edit.php:405
1673
  #, fuzzy
1674
  msgid "ID - Name"
1675
  msgstr "ID - Nom"
1676
 
1677
- #: dashboard/publisher/adverts-edit.php:406
1678
- #, fuzzy
1679
- msgid "Ads in group"
1680
- msgstr "Pubs dans le groupe"
1681
-
1682
- #: dashboard/publisher/adverts-edit.php:415
1683
- #: dashboard/publisher/groups-main.php:61
1684
- #: dashboard/settings/geotargeting.php:29
1685
  #, fuzzy
1686
  msgid "Default"
1687
  msgstr "Par défaut"
1688
 
1689
- #: dashboard/publisher/adverts-edit.php:416
1690
- #: dashboard/publisher/groups-main.php:62
1691
  #, fuzzy
1692
  msgid "Dynamic"
1693
  msgstr "Dynamique"
1694
 
1695
- #: dashboard/publisher/adverts-edit.php:416
1696
- #: dashboard/publisher/groups-main.php:62
1697
  #, fuzzy
1698
  msgid "second rotation"
1699
  msgstr "deuxième rotation"
1700
 
1701
- #: dashboard/publisher/adverts-edit.php:417
1702
- #: dashboard/publisher/groups-main.php:63
1703
  #, fuzzy
1704
  msgid "Block"
1705
  msgstr "Bloc"
1706
 
1707
- #: dashboard/publisher/adverts-edit.php:417
1708
- #: dashboard/publisher/groups-main.php:63
1709
  #, fuzzy
1710
  msgid "grid"
1711
  msgstr "grille"
1712
 
1713
- #: dashboard/publisher/adverts-edit.php:418
1714
  #: dashboard/publisher/groups-edit.php:202
1715
- #: dashboard/publisher/groups-main.php:64
1716
  #, fuzzy
1717
  msgid "Post Injection"
1718
  msgstr "Injection dans l'article"
1719
 
1720
- #: dashboard/publisher/adverts-edit.php:419
1721
  #, fuzzy
1722
  msgid "Geolocation"
1723
  msgstr "Géolocalisation"
1724
 
1725
- #: dashboard/publisher/adverts-edit.php:425
1726
  #: dashboard/publisher/groups-edit.php:61
1727
- #: dashboard/publisher/groups-main.php:71
1728
  #, fuzzy
1729
  msgid "Mode"
1730
  msgstr "Mode"
@@ -1785,7 +1737,15 @@ msgstr "Pubs Activées"
1785
  msgid "Export to XML"
1786
  msgstr ""
1787
 
 
 
 
 
 
 
1788
  #: dashboard/publisher/adverts-main.php:44
 
 
1789
  #, fuzzy
1790
  msgid "Shown"
1791
  msgstr "Montré"
@@ -2022,7 +1982,7 @@ msgid ""
2022
  msgstr ""
2023
 
2024
  #: dashboard/publisher/groups-edit.php:184
2025
- #: dashboard/settings/advertisers.php:17
2026
  msgid "Geo Targeting"
2027
  msgstr ""
2028
 
@@ -2063,7 +2023,7 @@ msgstr ""
2063
 
2064
  #: dashboard/publisher/groups-edit.php:209
2065
  #: dashboard/publisher/groups-edit.php:247
2066
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
2067
  #, fuzzy
2068
  msgid "Disabled"
2069
  msgstr "Désactivé"
@@ -2188,6 +2148,10 @@ msgstr ""
2188
  msgid "Select adverts"
2189
  msgstr ""
2190
 
 
 
 
 
2191
  #: dashboard/publisher/groups-edit.php:337
2192
  #, fuzzy
2193
  msgid "Visible until"
@@ -2218,18 +2182,14 @@ msgstr "Vous allez supprimer un groupe"
2218
  msgid "This action can not be undone!"
2219
  msgstr "Ceci ne peux pas être défait!"
2220
 
2221
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
2222
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
2223
  #, fuzzy
2224
  msgid "OK to continue, CANCEL to stop."
2225
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
2226
 
2227
- #: dashboard/publisher/groups-main.php:41
2228
- #, fuzzy
2229
- msgid "Code"
2230
- msgstr "Code"
2231
-
2232
- #: dashboard/publisher/groups-main.php:86
2233
  #, fuzzy
2234
  msgid "No groups created!"
2235
  msgstr "Aucun groupe n'a été créé!"
@@ -2239,145 +2199,178 @@ msgstr "Aucun groupe n'a été créé!"
2239
  msgid "Statistics for group"
2240
  msgstr "Statistiques pour le groupe"
2241
 
2242
- #: dashboard/settings/advertisers.php:1
2243
  msgid "Advertisers - Available in AdRotate Pro"
2244
  msgstr ""
2245
 
2246
- #: dashboard/settings/advertisers.php:2
2247
  msgid "Enable advertisers so they can review and manage their own ads."
2248
  msgstr ""
2249
 
2250
- #: dashboard/settings/advertisers.php:5
2251
  msgid "Enable Advertisers"
2252
  msgstr ""
2253
 
2254
- #: dashboard/settings/advertisers.php:7
2255
  msgid "Allow adverts to be coupled to users (Advertisers)."
2256
  msgstr ""
2257
 
2258
- #: dashboard/settings/advertisers.php:11
2259
  msgid "Edit/update adverts"
2260
  msgstr ""
2261
 
2262
- #: dashboard/settings/advertisers.php:13
2263
  msgid "Allow advertisers to add new or edit their adverts."
2264
  msgstr ""
2265
 
2266
- #: dashboard/settings/advertisers.php:19
2267
  msgid ""
2268
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2269
  "be enabled, too."
2270
  msgstr ""
2271
 
2272
- #: dashboard/settings/advertisers.php:23
2273
  msgid "Advertiser role"
2274
  msgstr ""
2275
 
2276
- #: dashboard/settings/advertisers.php:25
2277
  msgid "Create a seperate user role for your advertisers."
2278
  msgstr ""
2279
 
2280
- #: dashboard/settings/advertisers.php:26
2281
  msgid ""
2282
  "Don't forget to give these users access to their advertiser dashboard via "
2283
  "the Roles tab."
2284
  msgstr ""
2285
 
2286
- #: dashboard/settings/general.php:1
2287
  msgid "General Settings"
2288
  msgstr ""
2289
 
2290
- #: dashboard/settings/general.php:2
2291
  msgid "General settings for AdRotate."
2292
  msgstr ""
2293
 
2294
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2295
  #, fuzzy
2296
  msgid "Load jQuery"
2297
  msgstr "Utilisez jQuery"
2298
 
2299
- #: dashboard/settings/general.php:6
2300
  msgid ""
2301
- "jQuery is required for dynamic groups, ad block detection and some other "
2302
- "features. Enable this if your theme does not load jQuery."
2303
  msgstr ""
2304
 
2305
- #: dashboard/settings/general.php:9
2306
  msgid "Load scripts in footer?"
2307
  msgstr ""
2308
 
2309
- #: dashboard/settings/general.php:10
2310
  msgid ""
2311
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2312
  "site."
2313
  msgstr ""
2314
 
2315
- #: dashboard/settings/general.php:14
2316
- msgid "Banner Folder"
2317
  msgstr ""
2318
 
2319
- #: dashboard/settings/general.php:15
2320
- msgid "Set a location where your banner images will be stored."
2321
  msgstr ""
2322
 
2323
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2324
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2325
- #: dashboard/settings/statistics.php:38
2326
- msgid "Available in AdRotate Pro!"
 
 
 
 
 
 
 
 
 
 
 
2327
  msgstr ""
2328
 
2329
- #: dashboard/settings/general.php:18
 
 
 
 
 
 
 
 
2330
  msgid "Location"
2331
  msgstr ""
2332
 
2333
- #: dashboard/settings/general.php:20
2334
  msgid "(Default: wp-content/banners/)."
2335
  msgstr ""
2336
 
2337
- #: dashboard/settings/general.php:21
2338
  msgid ""
2339
  "To try and trick ad blockers you could set the folder to something crazy "
2340
  "like:"
2341
  msgstr ""
2342
 
2343
- #: dashboard/settings/general.php:22
2344
  msgid ""
2345
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2346
  "will show errors when the folder is missing."
2347
  msgstr ""
2348
 
2349
- #: dashboard/settings/general.php:27
2350
  #, fuzzy
2351
  msgid "Bot filter"
2352
  msgstr "Filtre de robots"
2353
 
2354
- #: dashboard/settings/general.php:28
2355
  msgid "The bot filter is used for the AdRotate stats tracker."
2356
  msgstr ""
2357
 
2358
- #: dashboard/settings/general.php:31
2359
  #, fuzzy
2360
  msgid "User-Agent Filter"
2361
  msgstr "Filtrage par User-Agent"
2362
 
2363
- #: dashboard/settings/general.php:34
2364
  msgid ""
2365
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2366
  msgstr ""
2367
 
2368
- #: dashboard/settings/general.php:35
2369
  msgid ""
2370
  "Keep in mind that this might give false positives. The word 'fire' also "
2371
  "matches 'firefox', but not vice-versa. So be careful!"
2372
  msgstr ""
2373
 
2374
- #: dashboard/settings/general.php:36
2375
  msgid ""
2376
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2377
  "characters are stripped out."
2378
  msgstr ""
2379
 
2380
- #: dashboard/settings/general.php:37
2381
  #, fuzzy
2382
  msgid ""
2383
  "Additionally to the list specified here, empty User-Agents are blocked as "
@@ -2386,100 +2379,96 @@ msgstr ""
2386
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2387
  "bloqués."
2388
 
2389
- #: dashboard/settings/general.php:37
2390
  #, fuzzy
2391
  msgid "Learn more about"
2392
  msgstr "En savoir plus sur"
2393
 
2394
- #: dashboard/settings/general.php:37
2395
  #, fuzzy
2396
  msgid "user-agents"
2397
  msgstr "user-agents"
2398
 
2399
- #: dashboard/settings/geotargeting.php:1
2400
  msgid "Geo Targeting - Available in AdRotate Pro"
2401
  msgstr ""
2402
 
2403
- #: dashboard/settings/geotargeting.php:2
2404
  msgid "Target certain areas in the world for better advertising oppurtunities."
2405
  msgstr ""
2406
 
2407
- #: dashboard/settings/geotargeting.php:5
2408
  msgid "Which Geo Service"
2409
  msgstr ""
2410
 
2411
- #: dashboard/settings/geotargeting.php:15
2412
- msgid "No Geo Targeting is available for your adverts."
2413
- msgstr ""
2414
-
2415
- #: dashboard/settings/geotargeting.php:16
2416
  msgid ""
2417
  "The most complete and accurate geo targeting you can get for only $20 USD "
2418
  "per 50000 lookups."
2419
  msgstr ""
2420
 
2421
- #: dashboard/settings/geotargeting.php:18
2422
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2423
  msgstr ""
2424
 
2425
- #: dashboard/settings/geotargeting.php:20
2426
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2427
  msgstr ""
2428
 
2429
- #: dashboard/settings/geotargeting.php:26
2430
  msgid "Geo Cookie Lifespan"
2431
  msgstr ""
2432
 
2433
- #: dashboard/settings/geotargeting.php:35
2434
  msgid "Hours."
2435
  msgstr ""
2436
 
2437
- #: dashboard/settings/geotargeting.php:36
2438
  msgid ""
2439
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2440
  "cookie last? A longer period is less accurate for mobile users but may "
2441
  "reduce the usage of your lookups drastically."
2442
  msgstr ""
2443
 
2444
- #: dashboard/settings/geotargeting.php:42
2445
  msgid "MaxMind City/Country"
2446
  msgstr ""
2447
 
2448
- #: dashboard/settings/geotargeting.php:45
2449
  msgid "Username/Email"
2450
  msgstr ""
2451
 
2452
- #: dashboard/settings/geotargeting.php:49
2453
  msgid "Password/License Key"
2454
  msgstr ""
2455
 
2456
- #: dashboard/settings/maintenance.php:1
2457
  #, fuzzy
2458
  msgid "Maintenance"
2459
  msgstr "Maintenance"
2460
 
2461
- #: dashboard/settings/maintenance.php:2
2462
  msgid ""
2463
  "Use these functions when you notice your database is slow, unresponsive and "
2464
  "sluggish."
2465
  msgstr ""
2466
 
2467
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2468
  #, fuzzy
2469
  msgid "Optimize Database"
2470
  msgstr "Optimiser la base de données"
2471
 
2472
- #: dashboard/settings/maintenance.php:7
2473
  #, fuzzy
2474
  msgid "You are about to optimize the AdRotate database."
2475
  msgstr "Vous allez optimiser la base de données de Adrotate."
2476
 
2477
- #: dashboard/settings/maintenance.php:7
2478
  #, fuzzy
2479
  msgid "Did you make a backup of your database?"
2480
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
2481
 
2482
- #: dashboard/settings/maintenance.php:7
2483
  #, fuzzy
2484
  msgid ""
2485
  "This may take a moment and may cause your website to respond slow "
@@ -2488,12 +2477,12 @@ msgstr ""
2488
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
2489
  "temporaire!"
2490
 
2491
- #: dashboard/settings/maintenance.php:8
2492
  #, fuzzy
2493
  msgid "Cleans up overhead data in the AdRotate tables."
2494
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
2495
 
2496
- #: dashboard/settings/maintenance.php:9
2497
  #, fuzzy
2498
  msgid ""
2499
  "Overhead data is accumulated garbage resulting from many changes you've "
@@ -2503,12 +2492,12 @@ msgstr ""
2503
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2504
  "KB de données."
2505
 
2506
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2507
  #, fuzzy
2508
  msgid "Clean-up Database"
2509
  msgstr "Nettoyer la base de données"
2510
 
2511
- #: dashboard/settings/maintenance.php:15
2512
  #, fuzzy
2513
  msgid ""
2514
  "You are about to clean up your database. This may delete expired schedules "
@@ -2517,57 +2506,57 @@ msgstr ""
2517
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2518
  "supprimer des calendriers périmés et des vieilles statistiques.."
2519
 
2520
- #: dashboard/settings/maintenance.php:15
2521
  #, fuzzy
2522
  msgid "Are you sure you want to continue?"
2523
  msgstr "Etes-vous certains de vouloir continuer?"
2524
 
2525
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2526
  #, fuzzy
2527
  msgid "This might take a while and may slow down your site during this action!"
2528
  msgstr ""
2529
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2530
  "interval!"
2531
 
2532
- #: dashboard/settings/maintenance.php:16
2533
  #, fuzzy
2534
  msgid "Delete stats older than 356 days (Optional)."
2535
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2536
 
2537
- #: dashboard/settings/maintenance.php:17
2538
  msgid ""
2539
  "AdRotate creates empty records when you start making ads, groups or "
2540
  "schedules. In rare occasions these records are faulty."
2541
  msgstr ""
2542
 
2543
- #: dashboard/settings/maintenance.php:17
2544
  msgid ""
2545
  "If you made an ad, group or schedule that does not save when you make it use "
2546
  "this button to delete those empty records."
2547
  msgstr ""
2548
 
2549
- #: dashboard/settings/maintenance.php:17
2550
  msgid ""
2551
  "Additionally you can clean up old schedules and/or statistics. This will "
2552
  "improve the speed of your site."
2553
  msgstr ""
2554
 
2555
- #: dashboard/settings/maintenance.php:21
2556
  #, fuzzy
2557
  msgid "Re-evaluate Ads"
2558
  msgstr "Re-évaluer les publicités"
2559
 
2560
- #: dashboard/settings/maintenance.php:23
2561
  #, fuzzy
2562
  msgid "Re-evaluate all ads"
2563
  msgstr "Re-évaluer toutes les publicités"
2564
 
2565
- #: dashboard/settings/maintenance.php:23
2566
  #, fuzzy
2567
  msgid "You are about to check all ads for errors."
2568
  msgstr "Vous allez véifier l'état de toutes les publicités."
2569
 
2570
- #: dashboard/settings/maintenance.php:24
2571
  #, fuzzy
2572
  msgid ""
2573
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -2577,7 +2566,7 @@ msgstr ""
2577
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2578
  "fonctionalité."
2579
 
2580
- #: dashboard/settings/maintenance.php:28
2581
  msgid ""
2582
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2583
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2590,12 +2579,12 @@ msgid ""
2590
  "is not a valid point in any case."
2591
  msgstr ""
2592
 
2593
- #: dashboard/settings/maintenance.php:30
2594
  #, fuzzy
2595
  msgid "Troubleshooting"
2596
  msgstr "Diagnostic de dépannage"
2597
 
2598
- #: dashboard/settings/maintenance.php:31
2599
  msgid ""
2600
  "The below options are not meant for normal use and are only there for "
2601
  "developers to review saved settings or how ads are selected. These can be "
@@ -2603,20 +2592,20 @@ msgid ""
2603
  "SHOULD BE LEFT UNCHECKED!!"
2604
  msgstr ""
2605
 
2606
- #: dashboard/settings/maintenance.php:34
2607
  #, fuzzy
2608
  msgid "Developer Debug"
2609
  msgstr "Debuggage de développeur"
2610
 
2611
- #: dashboard/settings/maintenance.php:36
2612
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2613
  msgstr ""
2614
 
2615
- #: dashboard/settings/maintenance.php:37
2616
  msgid "View advert specs and (some) stats in the dashboard."
2617
  msgstr ""
2618
 
2619
- #: dashboard/settings/maintenance.php:38
2620
  #, fuzzy
2621
  msgid ""
2622
  "Disable timers for clicks and impressions and enable a alert window for "
@@ -2625,93 +2614,88 @@ msgstr ""
2625
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2626
  "fenêtre d'alerte pour le suivi des clicks."
2627
 
2628
- #: dashboard/settings/maintenance.php:39
2629
  #, fuzzy
2630
  msgid "Temporarily disable encryption on the redirect url."
2631
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2632
 
2633
- #: dashboard/settings/maintenance.php:44
2634
  msgid "Status and Versions"
2635
  msgstr ""
2636
 
2637
- #: dashboard/settings/maintenance.php:47
2638
  #, fuzzy
2639
  msgid "Current version:"
2640
  msgstr "Version actuelle :"
2641
 
2642
- #: dashboard/settings/maintenance.php:48
2643
  #, fuzzy
2644
  msgid "Previous version:"
2645
  msgstr "Version antérieure :"
2646
 
2647
- #: dashboard/settings/maintenance.php:51
2648
  #, fuzzy
2649
  msgid "Current database version:"
2650
  msgstr "Version actuelle de la base de données :"
2651
 
2652
- #: dashboard/settings/maintenance.php:52
2653
  #, fuzzy
2654
  msgid "Previous database version:"
2655
  msgstr "Version antérieure de la base de données :"
2656
 
2657
- #: dashboard/settings/maintenance.php:55
2658
  #, fuzzy
2659
  msgid "Current status of adverts"
2660
  msgstr "Etat actuel des publicités"
2661
 
2662
- #: dashboard/settings/maintenance.php:56
2663
  #, fuzzy
2664
  msgid "Normal"
2665
  msgstr "Normal"
2666
 
2667
- #: dashboard/settings/maintenance.php:56
2668
  #, fuzzy
2669
  msgid "Error"
2670
  msgstr "Erreur"
2671
 
2672
- #: dashboard/settings/maintenance.php:56
2673
  #, fuzzy
2674
  msgid "Expired"
2675
  msgstr "Expiré"
2676
 
2677
- #: dashboard/settings/maintenance.php:56
2678
  #, fuzzy
2679
  msgid "Expires Soon"
2680
  msgstr "Expire bientôt."
2681
 
2682
- #: dashboard/settings/maintenance.php:56
2683
  msgid "Unknown"
2684
  msgstr ""
2685
 
2686
- #: dashboard/settings/maintenance.php:59
2687
  msgid "Ad evaluation next run:"
2688
  msgstr ""
2689
 
2690
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2691
- #: dashboard/settings/maintenance.php:68
2692
  #, fuzzy
2693
  msgid "Not scheduled!"
2694
  msgstr "Pas planifié!"
2695
 
2696
- #: dashboard/settings/maintenance.php:63
2697
- msgid "Ad Notifications next run:"
2698
- msgstr ""
2699
-
2700
- #: dashboard/settings/maintenance.php:67
2701
  msgid "Clean Trackerdata next run:"
2702
  msgstr ""
2703
 
2704
- #: dashboard/settings/misc.php:1
2705
  #, fuzzy
2706
  msgid "Miscellaneous"
2707
  msgstr "Divers"
2708
 
2709
- #: dashboard/settings/misc.php:4
2710
  #, fuzzy
2711
  msgid "Widget alignment"
2712
  msgstr "Alignement du Widget"
2713
 
2714
- #: dashboard/settings/misc.php:5
2715
  #, fuzzy
2716
  msgid ""
2717
  "Check this box if your widgets do not align in your themes sidebar. (Does "
@@ -2720,12 +2704,12 @@ msgstr ""
2720
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
2721
  "votre thème. Cette fonction peux ne pas régler le soucis!"
2722
 
2723
- #: dashboard/settings/misc.php:8
2724
  #, fuzzy
2725
  msgid "Widget padding"
2726
  msgstr "Marge interne du Widget"
2727
 
2728
- #: dashboard/settings/misc.php:9
2729
  #, fuzzy
2730
  msgid ""
2731
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -2734,7 +2718,7 @@ msgstr ""
2734
  "Activez cette option pour supprimer la marge (espace vide) autour des "
2735
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
2736
 
2737
- #: dashboard/settings/misc.php:13
2738
  #, fuzzy
2739
  msgid "NOTICE:"
2740
  msgstr ""
@@ -2744,7 +2728,7 @@ msgstr ""
2744
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
2745
  "de données est lente ou ne réponds pas."
2746
 
2747
- #: dashboard/settings/misc.php:14
2748
  #, fuzzy
2749
  msgid ""
2750
  "You have enabled W3 Total Caching support but not defined the security hash. "
@@ -2757,17 +2741,17 @@ msgstr ""
2757
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
2758
  "fonction \"late init\" doit être activée dans W3 Total Cache."
2759
 
2760
- #: dashboard/settings/misc.php:18
2761
  #, fuzzy
2762
  msgid "W3 Total Caching"
2763
  msgstr "W3 Total Caching"
2764
 
2765
- #: dashboard/settings/misc.php:19
2766
  #, fuzzy
2767
  msgid "Check this box if you use W3 Total Caching on your site."
2768
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
2769
 
2770
- #: dashboard/settings/misc.php:23
2771
  #, fuzzy
2772
  msgid ""
2773
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -2778,7 +2762,7 @@ msgstr ""
2778
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
2779
  "pas fait manuellement."
2780
 
2781
- #: dashboard/settings/misc.php:23
2782
  #, fuzzy
2783
  msgid ""
2784
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
@@ -2788,325 +2772,361 @@ msgstr ""
2788
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2789
  "PHP dans le code d'exclusion vous-même."
2790
 
2791
- #: dashboard/settings/notifications.php:1
2792
  msgid "Notifications - Available in AdRotate Pro"
2793
  msgstr ""
2794
 
2795
- #: dashboard/settings/notifications.php:2
2796
  msgid "Set up who gets notifications if ads need your attention."
2797
  msgstr ""
2798
 
2799
- #: dashboard/settings/notifications.php:5
2800
  msgid "Delivery method"
2801
  msgstr ""
2802
 
2803
- #: dashboard/settings/notifications.php:7
2804
  msgid "Email message."
2805
  msgstr ""
2806
 
2807
- #: dashboard/settings/notifications.php:8
2808
  msgid "Push notifications to your smartphone."
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/notifications.php:9
2812
  msgid ""
2813
  "Push notifications are delivered through Pushover, a notification service "
2814
  "for Android and iOS"
2815
  msgstr ""
2816
 
2817
- #: dashboard/settings/notifications.php:9
2818
  msgid ""
2819
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2820
  "information can be found on the pushover website;"
2821
  msgstr ""
2822
 
2823
- #: dashboard/settings/notifications.php:13
2824
  msgid "Test notification"
2825
  msgstr ""
2826
 
2827
- #: dashboard/settings/notifications.php:15
2828
  msgid ""
2829
  "This sends a test notification. Before you test, save the options first!"
2830
  msgstr ""
2831
 
2832
- #: dashboard/settings/notifications.php:20
2833
  msgid "Dashboard Notifications"
2834
  msgstr ""
2835
 
2836
- #: dashboard/settings/notifications.php:21
2837
  msgid "These show to every administrator who can edit adverts."
2838
  msgstr ""
2839
 
2840
- #: dashboard/settings/notifications.php:24
2841
  msgid "Notification banners"
2842
  msgstr ""
2843
 
2844
- #: dashboard/settings/notifications.php:25
2845
  msgid "Disable dashboard notifications."
2846
  msgstr ""
2847
 
2848
- #: dashboard/settings/notifications.php:29
2849
  msgid "Email Notifications"
2850
  msgstr ""
2851
 
2852
- #: dashboard/settings/notifications.php:30
2853
  msgid "Set up who gets notification emails."
2854
  msgstr ""
2855
 
2856
- #: dashboard/settings/notifications.php:33
2857
- #: dashboard/settings/notifications.php:53
2858
  msgid "Publishers"
2859
  msgstr ""
2860
 
2861
- #: dashboard/settings/notifications.php:36
2862
  msgid ""
2863
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2864
  "list to a minimum!"
2865
  msgstr ""
2866
 
2867
- #: dashboard/settings/notifications.php:37
2868
  msgid ""
2869
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2870
  "email notifications will be send."
2871
  msgstr ""
2872
 
2873
- #: dashboard/settings/notifications.php:41
2874
  msgid "Advertisers"
2875
  msgstr ""
2876
 
2877
- #: dashboard/settings/notifications.php:44
2878
  msgid ""
2879
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2880
  "This field may not be empty!"
2881
  msgstr ""
2882
 
2883
- #: dashboard/settings/notifications.php:49
2884
  msgid "Push Notifications"
2885
  msgstr ""
2886
 
2887
- #: dashboard/settings/notifications.php:50
2888
  msgid ""
2889
  "Receive information about what is happening with your AdRotate setup on your "
2890
  "smartphone via Pushover."
2891
  msgstr ""
2892
 
2893
- #: dashboard/settings/notifications.php:55
2894
  msgid "When you are running out of Geo Targeting Lookups."
2895
  msgstr ""
2896
 
2897
- #: dashboard/settings/notifications.php:56
2898
  msgid "Daily digest of any advert status other than normal."
2899
  msgstr ""
2900
 
2901
- #: dashboard/settings/notifications.php:57
2902
  msgid "Any advertiser saving an advert in your moderation queue."
2903
  msgstr ""
2904
 
2905
- #: dashboard/settings/notifications.php:58
2906
  msgid "A moderator approved an advert from the moderation queue."
2907
  msgstr ""
2908
 
2909
- #: dashboard/settings/notifications.php:59
2910
  msgid "A moderator rejected an advert from the moderation queue."
2911
  msgstr ""
2912
 
2913
- #: dashboard/settings/notifications.php:59
2914
  msgid ""
2915
  "If you have a lot of activity with many advertisers adding/changing adverts "
2916
  "you may get a lot of messages!"
2917
  msgstr ""
2918
 
2919
- #: dashboard/settings/notifications.php:64
2920
  msgid "User Key"
2921
  msgstr ""
2922
 
2923
- #: dashboard/settings/notifications.php:66
2924
  msgid "Get your user token"
2925
  msgstr ""
2926
 
2927
- #: dashboard/settings/notifications.php:66
2928
- #: dashboard/settings/notifications.php:72
2929
  msgid "here"
2930
  msgstr ""
2931
 
2932
- #: dashboard/settings/notifications.php:70
2933
  msgid "Api Token"
2934
  msgstr ""
2935
 
2936
- #: dashboard/settings/notifications.php:72
2937
  msgid "Create your"
2938
  msgstr ""
2939
 
2940
- #: dashboard/settings/notifications.php:72
2941
  msgid "App"
2942
  msgstr ""
2943
 
2944
- #: dashboard/settings/notifications.php:72
2945
  msgid "and get your API token"
2946
  msgstr ""
2947
 
2948
- #: dashboard/settings/roles.php:1
2949
  msgid "Roles"
2950
  msgstr ""
2951
 
2952
- #: dashboard/settings/roles.php:2
2953
  #, fuzzy
2954
  msgid "Who has access to what?"
2955
  msgstr "Qui a accès à quoi?"
2956
 
2957
- #: dashboard/settings/roles.php:5
2958
  #, fuzzy
2959
  msgid "Manage/Add/Edit adverts"
2960
  msgstr "Gérer/Ajouter/Modifier les publicités"
2961
 
2962
- #: dashboard/settings/roles.php:9
2963
  #, fuzzy
2964
  msgid "Role to see and add/edit ads."
2965
  msgstr "Rôle pour voir et gérer/modifier les publicités."
2966
 
2967
- #: dashboard/settings/roles.php:13
2968
  #, fuzzy
2969
  msgid "Delete/Reset adverts"
2970
  msgstr "Supprimer/Mettre à zéro les publicités"
2971
 
2972
- #: dashboard/settings/roles.php:17
2973
  #, fuzzy
2974
  msgid "Role to delete ads and reset stats."
2975
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
2976
 
2977
- #: dashboard/settings/roles.php:21
2978
  #, fuzzy
2979
  msgid "Manage/Add/Edit groups"
2980
  msgstr "Gérer/Ajouter/Modifier les groupes"
2981
 
2982
- #: dashboard/settings/roles.php:25
2983
  #, fuzzy
2984
  msgid "Role to see and add/edit groups."
2985
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
2986
 
2987
- #: dashboard/settings/roles.php:29
2988
  #, fuzzy
2989
  msgid "Delete groups"
2990
  msgstr "Effacer les groups"
2991
 
2992
- #: dashboard/settings/roles.php:33
2993
  #, fuzzy
2994
  msgid "Role to delete groups."
2995
  msgstr "Rôle pour supprimer les groupes."
2996
 
2997
- #: dashboard/settings/statistics.php:2
2998
  msgid "Track statistics for your adverts."
2999
  msgstr ""
3000
 
3001
- #: dashboard/settings/statistics.php:5
3002
  msgid "How to track stats"
3003
  msgstr ""
3004
 
3005
- #: dashboard/settings/statistics.php:14
3006
- msgid "No impressions and clicks can be recorded for any of your adverts."
3007
- msgstr ""
3008
-
3009
- #: dashboard/settings/statistics.php:15
3010
  msgid "Tracks impressions and clicks internally"
3011
  msgstr ""
3012
 
3013
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
3014
- #: dashboard/settings/statistics.php:19
3015
  msgid "manual"
3016
  msgstr ""
3017
 
3018
- #: dashboard/settings/statistics.php:16
3019
  msgid ""
3020
  "Click and Impression recording, Click and impression limits, impression "
3021
- "spread for schedules, local stats display."
 
3022
  msgstr ""
3023
 
3024
- #: dashboard/settings/statistics.php:17
 
 
 
 
3025
  msgid ""
3026
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
3027
  "attributes"
3028
  msgstr ""
3029
 
3030
- #: dashboard/settings/statistics.php:18
3031
  msgid ""
3032
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
3033
  "Contents."
3034
  msgstr ""
3035
 
3036
- #: dashboard/settings/statistics.php:19
3037
  msgid ""
3038
  "Requires Google Universal Analytics tracker installed in your sites footer! "
3039
  "uses onClick() and onload() in adverts"
3040
  msgstr ""
3041
 
3042
- #: dashboard/settings/statistics.php:20
3043
  msgid ""
3044
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
3045
  msgstr ""
3046
 
3047
- #: dashboard/settings/statistics.php:26
3048
  msgid "Internal Tracker"
3049
  msgstr ""
3050
 
3051
- #: dashboard/settings/statistics.php:27
3052
  msgid ""
3053
  "The settings below are for the internal tracker and have no effect when "
3054
  "using Piwik/Google Analytics."
3055
  msgstr ""
3056
 
3057
- #: dashboard/settings/statistics.php:30
3058
  msgid "Logged in impressions"
3059
  msgstr ""
3060
 
3061
- #: dashboard/settings/statistics.php:32
3062
  msgid "Track impressions from logged in users."
3063
  msgstr ""
3064
 
3065
- #: dashboard/settings/statistics.php:36
3066
  msgid "Logged in clicks"
3067
  msgstr ""
3068
 
3069
- #: dashboard/settings/statistics.php:38
3070
  msgid "Track clicks from logged in users."
3071
  msgstr ""
3072
 
3073
- #: dashboard/settings/statistics.php:42
3074
- #, fuzzy
3075
- msgid "Impressions timer"
3076
- msgstr "Minuterie de impressions"
3077
 
3078
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
3079
  #, fuzzy
3080
  msgid "Seconds."
3081
  msgstr "Secondes."
3082
 
3083
- #: dashboard/settings/statistics.php:45
3084
  #, fuzzy
3085
  msgid "Default: 60."
3086
  msgstr "Par défaut"
3087
 
3088
- #: dashboard/settings/statistics.php:45
3089
  #, fuzzy
3090
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3091
  msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
3092
 
3093
- #: dashboard/settings/statistics.php:49
3094
- #, fuzzy
3095
- msgid "Clicks timer"
3096
- msgstr "Interval de clicks"
3097
 
3098
- #: dashboard/settings/statistics.php:52
3099
  #, fuzzy
3100
  msgid "Default: 86400."
3101
  msgstr "Par défaut"
3102
 
3103
- #: dashboard/settings/statistics.php:52
3104
  #, fuzzy
3105
  msgid ""
3106
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3107
  msgstr ""
3108
  "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
3109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3110
  #, fuzzy
3111
  #~ msgid "Learn More"
3112
  #~ msgstr "En savoir plus"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
283
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
284
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
285
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
286
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
287
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
288
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
289
+ #: dashboard/settings/geotargeting.php:26
290
  #, fuzzy
291
  msgid "Buy now"
292
  msgstr "Achetez AdRotate Professionel"
386
  msgid "on WordPress.org to help AdRotate grow in a positive way"
387
  msgstr ""
388
 
389
+ #: adrotate-output.php:887
390
  #, fuzzy
391
  msgid "Available in AdRotate Pro"
392
  msgstr "Disponible dans Adrotate Pro"
406
  msgid "Learn more"
407
  msgstr "En savoir plus"
408
 
409
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
410
+ #: dashboard/publisher/adverts-edit.php:240
411
  #, fuzzy
412
  msgid "January"
413
  msgstr "Janvier"
414
 
415
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
416
+ #: dashboard/publisher/adverts-edit.php:241
417
  #, fuzzy
418
  msgid "February"
419
  msgstr "Février"
420
 
421
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
422
+ #: dashboard/publisher/adverts-edit.php:242
423
  #, fuzzy
424
  msgid "March"
425
  msgstr "Mars"
426
 
427
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
428
+ #: dashboard/publisher/adverts-edit.php:243
429
  #, fuzzy
430
  msgid "April"
431
  msgstr "Avril"
432
 
433
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
434
+ #: dashboard/publisher/adverts-edit.php:244
435
  #, fuzzy
436
  msgid "May"
437
  msgstr "Mai"
438
 
439
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
440
+ #: dashboard/publisher/adverts-edit.php:245
441
  #, fuzzy
442
  msgid "June"
443
  msgstr "Juin"
444
 
445
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
446
+ #: dashboard/publisher/adverts-edit.php:246
447
  #, fuzzy
448
  msgid "July"
449
  msgstr "Juillet"
450
 
451
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
452
+ #: dashboard/publisher/adverts-edit.php:247
453
  #, fuzzy
454
  msgid "August"
455
  msgstr "Août"
456
 
457
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
458
+ #: dashboard/publisher/adverts-edit.php:248
459
  #, fuzzy
460
  msgid "September"
461
  msgstr "Septembre"
462
 
463
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
464
+ #: dashboard/publisher/adverts-edit.php:249
465
  #, fuzzy
466
  msgid "October"
467
  msgstr "Octobre"
468
 
469
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
470
+ #: dashboard/publisher/adverts-edit.php:250
471
  #, fuzzy
472
  msgid "November"
473
  msgstr "Novembre"
474
 
475
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
476
+ #: dashboard/publisher/adverts-edit.php:251
477
  #, fuzzy
478
  msgid "December"
479
  msgstr "Décembre"
616
  msgstr "Gérer les groupes"
617
 
618
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
619
+ #: dashboard/publisher/groups-main.php:70
620
  #, fuzzy
621
  msgid "Report"
622
  msgstr "Rapport"
632
  "AdRotate Pro."
633
  msgstr ""
634
 
635
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
636
  #: dashboard/publisher/adverts-main.php:114
637
  #: dashboard/publisher/groups-edit.php:75
638
+ #: dashboard/publisher/groups-main.php:89
639
  #, fuzzy
640
  msgid "More information"
641
  msgstr "Plus d'informations..."
675
  msgid "End"
676
  msgstr "Début / Fin"
677
 
678
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
679
  #: dashboard/publisher/groups-main.php:34
680
  #, fuzzy
681
  msgid "Ads"
683
 
684
  #: adrotate.php:428
685
  #, fuzzy
686
+ msgid "Max Impressions"
687
+ msgstr "Vues"
688
 
689
  #: adrotate.php:429
690
  #, fuzzy
691
+ msgid "Max Clicks"
692
+ msgstr "Clicks"
693
 
694
  #: adrotate.php:459
695
  #, fuzzy
774
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
775
  msgstr ""
776
 
777
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
778
  #, fuzzy
779
  msgid ""
780
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
784
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
785
  "tailles d'écran."
786
 
787
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
788
  #: dashboard/publisher/groups-edit.php:312
789
  #: dashboard/publisher/groups-edit.php:320
790
  #, fuzzy
791
  msgid "Example:"
792
  msgstr "Exemple :"
793
 
794
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
795
  #, fuzzy
796
  msgid ""
797
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
896
  "forum. Get a solution (usually) within a day."
897
  msgstr ""
898
 
899
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
900
  #, fuzzy
901
  msgid "AdRotate is brought to you by"
902
  msgstr "AdRotate est offert par"
903
 
904
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
905
  msgid ""
906
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
907
+ "starters or people looking for a new direction!"
908
  msgstr ""
909
 
 
 
 
 
 
910
  #: dashboard/adrotatepro.php:58
911
  #, fuzzy
912
  msgid "Schedule all campaigns with ease"
934
  msgstr ""
935
 
936
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
937
+ #: dashboard/info.php:93 dashboard/info.php:105
938
  #, fuzzy
939
  msgid "Buy AdRotate Professional"
940
  msgstr "Achetez AdRotate Professionel"
941
 
942
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
943
  msgid "Single License"
944
  msgstr ""
945
 
946
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
947
  #, fuzzy
948
  msgid "For one WordPress installation."
949
  msgstr "Pour une installation Wordpress."
950
 
951
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
952
+ #: dashboard/info.php:98 dashboard/info.php:110
953
  #, fuzzy
954
  msgid "Duo License"
955
  msgstr "Licence Duo"
956
 
957
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
958
  #, fuzzy
959
  msgid "For two WordPress installations."
960
  msgstr "Pour deux installations Wordpress."
961
 
962
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
963
+ #: dashboard/info.php:99 dashboard/info.php:111
964
  #, fuzzy
965
  msgid "Multi License"
966
  msgstr "Licence Multiple"
967
 
968
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
969
  #, fuzzy
970
  msgid " For up to five WordPress installations."
971
  msgstr "Pour un max de cinq installation Wordpress."
972
 
973
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
974
+ #: dashboard/info.php:100 dashboard/info.php:112
975
  #, fuzzy
976
  msgid "Developer License"
977
  msgstr "Licence de Developpeur"
978
 
979
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
980
  msgid "Unlimited WordPress installations and/or networks."
981
  msgstr ""
982
 
983
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
984
+ #: dashboard/info.php:101 dashboard/info.php:114
985
  #, fuzzy
986
  msgid "Compare licenses"
987
  msgstr "Comparer les licences"
988
 
989
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
990
  #, fuzzy
991
  msgid "Not sure which license is for you? Compare them..."
992
  msgstr ""
993
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
994
 
995
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
996
  #, fuzzy
997
  msgid "All Licenses"
998
  msgstr "Toutes les licences"
999
 
1000
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
1001
  msgid "Lifetime License"
1002
  msgstr ""
1003
 
1004
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
1005
  msgid "Single installation."
1006
  msgstr ""
1007
 
1008
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
1009
  msgid "Up to 2 installations."
1010
  msgstr ""
1011
 
1012
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
1013
  msgid "Up to 10 installations."
1014
  msgstr ""
1015
 
1016
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
1017
  msgid "Up to 25 installations or multisite networks."
1018
  msgstr ""
1019
 
1020
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
1021
  msgid ""
1022
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
1023
  msgstr ""
1024
 
1025
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
1026
  msgid "Not sure which license is for you?"
1027
  msgstr ""
1028
 
1029
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
1030
  msgid "Compare Licenses"
1031
  msgstr ""
1032
 
1033
+ #: dashboard/info.php:24
1034
  #, fuzzy
1035
  msgid "Currently"
1036
  msgstr "Actuellement"
1037
 
1038
+ #: dashboard/info.php:30
1039
  #, fuzzy
1040
  msgid "Your setup"
1041
  msgstr "Votre configuration"
1042
 
1043
+ #: dashboard/info.php:31
1044
  #, fuzzy
1045
  msgid "Adverts that need you"
1046
  msgstr "Publicités qui ont besoin de votre attention"
1047
 
1048
+ #: dashboard/info.php:37
1049
  #, fuzzy
1050
  msgid "Adverts"
1051
  msgstr "Publicités"
1052
 
1053
+ #: dashboard/info.php:38
1054
  #, fuzzy
1055
  msgid "(Almost) Expired"
1056
  msgstr "(presque) expiré"
1057
 
1058
+ #: dashboard/info.php:41
1059
  #, fuzzy
1060
  msgid "Groups"
1061
  msgstr "Groupes"
1062
 
1063
+ #: dashboard/info.php:42
1064
  #, fuzzy
1065
  msgid "Have errors"
1066
  msgstr "Il y a des erreurs"
1067
 
1068
+ #: dashboard/info.php:48
1069
  #, fuzzy
1070
  msgid "Support AdRotate"
1071
  msgstr "Soutenez AdRotate"
1072
 
1073
+ #: dashboard/info.php:55
1074
  msgid "Your gift helps ensure the continued development of AdRotate!"
1075
  msgstr ""
1076
 
1077
+ #: dashboard/info.php:55
1078
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1079
  msgstr ""
1080
 
1081
+ #: dashboard/info.php:64
1082
  #, fuzzy
1083
  msgid "AdRotate News and Developer Blog"
1084
  msgstr "Actus AdRotate et blog du développeur"
1085
 
1086
+ #: dashboard/info.php:86
1087
  #, fuzzy
1088
  msgid "Get more features with AdRotate Pro"
1089
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1090
 
1091
+ #: dashboard/info.php:89
1092
  #, fuzzy
1093
  msgid ""
1094
  "Benefit from extra features to reinforce your income with advertising "
1100
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1101
  "la version gratuite."
1102
 
1103
+ #: dashboard/info.php:89
1104
  msgid "Want to know more about"
1105
  msgstr ""
1106
 
1107
+ #: dashboard/info.php:89
1108
  #, fuzzy
1109
  msgid "Visit the"
1110
  msgstr "Visitez le"
1111
 
1112
+ #: dashboard/info.php:89
1113
  #, fuzzy
1114
  msgid "website"
1115
  msgstr "site"
1116
 
 
 
 
 
 
1117
  #: dashboard/publisher/adverts-disabled.php:15
1118
  #, fuzzy
1119
  msgid "Disabled Ads"
1120
  msgstr "Pubs inactives"
1121
 
1122
  #: dashboard/publisher/adverts-disabled.php:21
1123
+ #: dashboard/publisher/adverts-edit.php:175
1124
  #, fuzzy
1125
  msgid "Activate"
1126
  msgstr "Activer"
1149
 
1150
  #: dashboard/publisher/adverts-disabled.php:38
1151
  #: dashboard/publisher/adverts-report.php:34
 
 
1152
  #: dashboard/publisher/groups-report.php:40
1153
  #, fuzzy
1154
  msgid "Impressions"
1175
  #: dashboard/publisher/adverts-disabled.php:74
1176
  #: dashboard/publisher/adverts-error.php:64
1177
  #: dashboard/publisher/adverts-main.php:87
1178
+ #: dashboard/publisher/groups-main.php:70
1179
  #, fuzzy
1180
  msgid "Edit"
1181
  msgstr "Modifier"
1312
  "click to add it."
1313
  msgstr ""
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:140
1316
+ #, fuzzy
1317
+ msgid "Preview"
1318
+ msgstr "En avant-première"
1319
+
1320
+ #: dashboard/publisher/adverts-edit.php:143
1321
+ #, fuzzy
1322
+ msgid ""
1323
+ "Note: While this preview is an accurate one, it might look different then it "
1324
+ "does on the website."
1325
+ msgstr ""
1326
+ "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1327
+ "différente sur le site."
1328
+
1329
+ #: dashboard/publisher/adverts-edit.php:144
1330
+ #, fuzzy
1331
+ msgid ""
1332
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1333
+ msgstr ""
1334
+ "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1335
+ "pas actif ici!"
1336
+
1337
+ #: dashboard/publisher/adverts-edit.php:149
1338
  msgid "Banner asset"
1339
  msgstr ""
1340
 
1341
+ #: dashboard/publisher/adverts-edit.php:152
1342
  msgid "WordPress media:"
1343
  msgstr ""
1344
 
1345
+ #: dashboard/publisher/adverts-edit.php:152
1346
  #, fuzzy
1347
  msgid "Select Banner"
1348
  msgstr "Choisir l'image"
1349
 
1350
+ #: dashboard/publisher/adverts-edit.php:154
1351
  msgid "- OR -"
1352
  msgstr ""
1353
 
1354
+ #: dashboard/publisher/adverts-edit.php:156
1355
  #, fuzzy
1356
  msgid "Banner folder:"
1357
  msgstr "Dossier de bannières :"
1358
 
1359
+ #: dashboard/publisher/adverts-edit.php:157
1360
  #, fuzzy
1361
  msgid "No image selected"
1362
  msgstr "Aucune image sélectionnée"
1363
 
1364
+ #: dashboard/publisher/adverts-edit.php:161
1365
  msgid "Use %image% in the adcode instead of the file path."
1366
  msgstr ""
1367
 
1368
+ #: dashboard/publisher/adverts-edit.php:161
1369
  #, fuzzy
1370
  msgid ""
1371
  "Use either the text field or the dropdown. If the textfield has content that "
1374
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1375
  "valeur, ce champ a la priorité."
1376
 
1377
+ #: dashboard/publisher/adverts-edit.php:166
1378
+ #: dashboard/settings/statistics.php:12
1379
  #, fuzzy
1380
  msgid "Statistics"
1381
  msgstr "Statistiques"
1382
 
1383
+ #: dashboard/publisher/adverts-edit.php:168
1384
  msgid "Enable click and impression tracking for this advert."
1385
  msgstr ""
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:169
1388
  msgid ""
1389
  "Note: Clicktracking does not work for Javascript adverts such as those "
1390
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1391
+ "always supported."
1392
  msgstr ""
1393
 
1394
+ #: dashboard/publisher/adverts-edit.php:179
1395
  #, fuzzy
1396
  msgid "Yes, this ad will be used"
1397
  msgstr "Oui, cette publicité sera utilisée"
1398
 
1399
+ #: dashboard/publisher/adverts-edit.php:180
1400
  #, fuzzy
1401
  msgid "No, do not show this ad anywhere"
1402
  msgstr "Non, cette publicité ne sera pas utilisée"
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:187
1405
  #: dashboard/publisher/adverts-main.php:114
1406
  #: dashboard/publisher/groups-edit.php:75
1407
+ #: dashboard/publisher/groups-main.php:89
1408
  #, fuzzy
1409
  msgid "Get more features with AdRotate Pro."
1410
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1411
 
1412
+ #: dashboard/publisher/adverts-edit.php:190
1413
+ #: dashboard/publisher/adverts-edit.php:290
1414
+ #: dashboard/publisher/adverts-edit.php:378
1415
+ #: dashboard/publisher/adverts-edit.php:419
1416
  #, fuzzy
1417
  msgid "Save Advert"
1418
  msgstr "Sauvegarder la pub"
1419
 
1420
+ #: dashboard/publisher/adverts-edit.php:191
1421
+ #: dashboard/publisher/adverts-edit.php:291
1422
+ #: dashboard/publisher/adverts-edit.php:379
1423
+ #: dashboard/publisher/adverts-edit.php:420
1424
  #: dashboard/publisher/groups-edit.php:154
1425
  #: dashboard/publisher/groups-edit.php:301
1426
  #: dashboard/publisher/groups-edit.php:393
1428
  msgid "Cancel"
1429
  msgstr "Annuller"
1430
 
1431
+ #: dashboard/publisher/adverts-edit.php:194
1432
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1433
  #: dashboard/publisher/groups-edit.php:136
1434
  #: dashboard/publisher/groups-edit.php:283
1435
  #, fuzzy
1436
  msgid "Usage"
1437
  msgstr "Usage"
1438
 
1439
+ #: dashboard/publisher/adverts-edit.php:198
1440
+ #: dashboard/publisher/adverts-edit.php:365
1441
  #: dashboard/publisher/groups-edit.php:140
1442
  #: dashboard/publisher/groups-edit.php:287
1443
  msgid "Widget"
1444
  msgstr ""
1445
 
1446
+ #: dashboard/publisher/adverts-edit.php:199
1447
+ #: dashboard/publisher/adverts-edit.php:366
1448
  msgid ""
1449
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1450
  "and enter ID"
1451
  msgstr ""
1452
 
1453
+ #: dashboard/publisher/adverts-edit.php:202
1454
+ #: dashboard/publisher/adverts-edit.php:369
1455
  #: dashboard/publisher/groups-edit.php:144
1456
  #: dashboard/publisher/groups-edit.php:291
1457
  msgid "In a post or page"
1458
  msgstr ""
1459
 
1460
+ #: dashboard/publisher/adverts-edit.php:204
1461
+ #: dashboard/publisher/adverts-edit.php:371
1462
  #: dashboard/publisher/groups-edit.php:146
1463
  #: dashboard/publisher/groups-edit.php:293
1464
  msgid "Directly in a theme"
1465
  msgstr ""
1466
 
1467
+ #: dashboard/publisher/adverts-edit.php:210
1468
  msgid "Schedule your advert"
1469
  msgstr ""
1470
 
1471
+ #: dashboard/publisher/adverts-edit.php:214
1472
  msgid "Start date (day/month/year)"
1473
  msgstr ""
1474
 
1475
+ #: dashboard/publisher/adverts-edit.php:235
1476
  msgid "End date (day/month/year)"
1477
  msgstr ""
1478
 
1479
+ #: dashboard/publisher/adverts-edit.php:258
1480
  msgid "Start time (hh:mm)"
1481
  msgstr ""
1482
 
1483
+ #: dashboard/publisher/adverts-edit.php:265
1484
  msgid "End time (hh:mm)"
1485
  msgstr ""
1486
 
1487
+ #: dashboard/publisher/adverts-edit.php:275
1488
  msgid "Maximum Clicks"
1489
  msgstr ""
1490
 
1491
+ #: dashboard/publisher/adverts-edit.php:276
1492
+ #: dashboard/publisher/adverts-edit.php:278
1493
  #, fuzzy
1494
  msgid "Leave empty or 0 to skip this."
1495
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:277
1498
  msgid "Maximum Impressions"
1499
  msgstr ""
1500
 
1501
+ #: dashboard/publisher/adverts-edit.php:282
1502
  msgid "Important"
1503
  msgstr ""
1504
 
1505
+ #: dashboard/publisher/adverts-edit.php:283
1506
  msgid ""
1507
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1508
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1509
  "14:00 hours. 6AM is 6:00 hours."
1510
  msgstr ""
1511
 
1512
+ #: dashboard/publisher/adverts-edit.php:287
1513
  #, fuzzy
1514
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1515
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1516
 
1517
+ #: dashboard/publisher/adverts-edit.php:287
1518
+ #: dashboard/publisher/adverts-edit.php:315
1519
+ #: dashboard/publisher/adverts-edit.php:359
1520
  #: dashboard/publisher/groups-edit.php:200
1521
  #, fuzzy
1522
  msgid "Upgrade today"
1523
  msgstr "Mettre à jour aujourd'hui"
1524
 
1525
+ #: dashboard/publisher/adverts-edit.php:294
1526
  #: dashboard/publisher/groups-edit.php:157
1527
  #, fuzzy
1528
  msgid "Advanced"
1529
  msgstr "Avancé"
1530
 
1531
+ #: dashboard/publisher/adverts-edit.php:295
1532
  #, fuzzy
1533
  msgid "Everything below is optional."
1534
  msgstr "Tous les paramètres ci-dessous sont optionels."
1535
 
1536
+ #: dashboard/publisher/adverts-edit.php:299
1537
  msgid "Responsive"
1538
  msgstr ""
1539
 
1540
+ #: dashboard/publisher/adverts-edit.php:301
1541
  #, fuzzy
1542
  msgid "Enable responsive support for this advert."
1543
  msgstr "Activer le support réactif pour cette publicité."
1544
 
1545
+ #: dashboard/publisher/adverts-edit.php:302
1546
  #, fuzzy
1547
  msgid ""
1548
  "Upload your images to the banner folder and make sure the filename is in the "
1554
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1555
  "fluide."
1556
 
1557
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1558
  #: dashboard/publisher/groups-edit.php:194
1559
  msgid "Sortorder"
1560
  msgstr ""
1561
 
1562
+ #: dashboard/publisher/adverts-edit.php:310
1563
  #: dashboard/publisher/groups-edit.php:196
1564
  #, fuzzy
1565
  msgid "For administrative purposes set a sortorder."
1566
  msgstr "Pour des raisons administratives définir un ordre de tri."
1567
 
1568
+ #: dashboard/publisher/adverts-edit.php:310
1569
  #, fuzzy
1570
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1571
  msgstr ""
1572
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1573
  "de l'ID de la publicité."
1574
 
1575
+ #: dashboard/publisher/adverts-edit.php:315
1576
  msgid ""
1577
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1578
  msgstr ""
1579
 
1580
+ #: dashboard/publisher/adverts-edit.php:317
1581
  msgid "Geo Targeting in AdRotate Pro"
1582
  msgstr ""
1583
 
1584
+ #: dashboard/publisher/adverts-edit.php:318
1585
  msgid ""
1586
  "Assign the advert to a group and enable that group to use Geo Targeting."
1587
  msgstr ""
1588
 
1589
+ #: dashboard/publisher/adverts-edit.php:322
1590
  msgid "Cities/States"
1591
  msgstr ""
1592
 
1593
+ #: dashboard/publisher/adverts-edit.php:325
1594
  msgid ""
1595
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1596
  "states ISO codes are supported)"
1597
  msgstr ""
1598
 
1599
+ #: dashboard/publisher/adverts-edit.php:325
1600
  msgid ""
1601
  "AdRotate does not check the validity of names so make sure you spell them "
1602
  "correctly!"
1603
  msgstr ""
1604
 
1605
+ #: dashboard/publisher/adverts-edit.php:329
1606
  msgid "Countries"
1607
  msgstr ""
1608
 
1609
+ #: dashboard/publisher/adverts-edit.php:354
1610
  #, fuzzy
1611
  msgid "Select the countries you want the adverts to show in."
1612
  msgstr ""
1613
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
1614
  "pulicités."
1615
 
1616
+ #: dashboard/publisher/adverts-edit.php:354
1617
  msgid "Cities take priority and will be filtered first."
1618
  msgstr ""
1619
 
1620
+ #: dashboard/publisher/adverts-edit.php:359
1621
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1622
  msgstr ""
1623
 
1624
+ #: dashboard/publisher/adverts-edit.php:383
1625
  #, fuzzy
1626
  msgid "Select Groups"
1627
  msgstr "Choisir groupes"
1628
 
1629
+ #: dashboard/publisher/adverts-edit.php:388
1630
  #, fuzzy
1631
  msgid "ID - Name"
1632
  msgstr "ID - Nom"
1633
 
1634
+ #: dashboard/publisher/adverts-edit.php:398
1635
+ #: dashboard/publisher/groups-main.php:60
1636
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
 
1637
  #, fuzzy
1638
  msgid "Default"
1639
  msgstr "Par défaut"
1640
 
1641
+ #: dashboard/publisher/adverts-edit.php:399
1642
+ #: dashboard/publisher/groups-main.php:61
1643
  #, fuzzy
1644
  msgid "Dynamic"
1645
  msgstr "Dynamique"
1646
 
1647
+ #: dashboard/publisher/adverts-edit.php:399
1648
+ #: dashboard/publisher/groups-main.php:61
1649
  #, fuzzy
1650
  msgid "second rotation"
1651
  msgstr "deuxième rotation"
1652
 
1653
+ #: dashboard/publisher/adverts-edit.php:400
1654
+ #: dashboard/publisher/groups-main.php:62
1655
  #, fuzzy
1656
  msgid "Block"
1657
  msgstr "Bloc"
1658
 
1659
+ #: dashboard/publisher/adverts-edit.php:400
1660
+ #: dashboard/publisher/groups-main.php:62
1661
  #, fuzzy
1662
  msgid "grid"
1663
  msgstr "grille"
1664
 
1665
+ #: dashboard/publisher/adverts-edit.php:401
1666
  #: dashboard/publisher/groups-edit.php:202
1667
+ #: dashboard/publisher/groups-main.php:63
1668
  #, fuzzy
1669
  msgid "Post Injection"
1670
  msgstr "Injection dans l'article"
1671
 
1672
+ #: dashboard/publisher/adverts-edit.php:402
1673
  #, fuzzy
1674
  msgid "Geolocation"
1675
  msgstr "Géolocalisation"
1676
 
1677
+ #: dashboard/publisher/adverts-edit.php:408
1678
  #: dashboard/publisher/groups-edit.php:61
1679
+ #: dashboard/publisher/groups-main.php:70
1680
  #, fuzzy
1681
  msgid "Mode"
1682
  msgstr "Mode"
1737
  msgid "Export to XML"
1738
  msgstr ""
1739
 
1740
+ #: dashboard/publisher/adverts-main.php:42
1741
+ #: dashboard/publisher/groups-edit.php:336
1742
+ #, fuzzy
1743
+ msgid "Weight"
1744
+ msgstr "Importance"
1745
+
1746
  #: dashboard/publisher/adverts-main.php:44
1747
+ #: dashboard/publisher/groups-edit.php:333
1748
+ #: dashboard/publisher/groups-main.php:36
1749
  #, fuzzy
1750
  msgid "Shown"
1751
  msgstr "Montré"
1982
  msgstr ""
1983
 
1984
  #: dashboard/publisher/groups-edit.php:184
1985
+ #: dashboard/settings/advertisers.php:28
1986
  msgid "Geo Targeting"
1987
  msgstr ""
1988
 
2023
 
2024
  #: dashboard/publisher/groups-edit.php:209
2025
  #: dashboard/publisher/groups-edit.php:247
2026
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
2027
  #, fuzzy
2028
  msgid "Disabled"
2029
  msgstr "Désactivé"
2148
  msgid "Select adverts"
2149
  msgstr ""
2150
 
2151
+ #: dashboard/publisher/groups-edit.php:331
2152
+ msgid "Choose adverts"
2153
+ msgstr ""
2154
+
2155
  #: dashboard/publisher/groups-edit.php:337
2156
  #, fuzzy
2157
  msgid "Visible until"
2182
  msgid "This action can not be undone!"
2183
  msgstr "Ceci ne peux pas être défait!"
2184
 
2185
+ #: dashboard/publisher/groups-main.php:24
2186
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
2187
+ #: dashboard/settings/maintenance.php:34
2188
  #, fuzzy
2189
  msgid "OK to continue, CANCEL to stop."
2190
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
2191
 
2192
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
 
2193
  #, fuzzy
2194
  msgid "No groups created!"
2195
  msgstr "Aucun groupe n'a été créé!"
2199
  msgid "Statistics for group"
2200
  msgstr "Statistiques pour le groupe"
2201
 
2202
+ #: dashboard/settings/advertisers.php:12
2203
  msgid "Advertisers - Available in AdRotate Pro"
2204
  msgstr ""
2205
 
2206
+ #: dashboard/settings/advertisers.php:13
2207
  msgid "Enable advertisers so they can review and manage their own ads."
2208
  msgstr ""
2209
 
2210
+ #: dashboard/settings/advertisers.php:16
2211
  msgid "Enable Advertisers"
2212
  msgstr ""
2213
 
2214
+ #: dashboard/settings/advertisers.php:18
2215
  msgid "Allow adverts to be coupled to users (Advertisers)."
2216
  msgstr ""
2217
 
2218
+ #: dashboard/settings/advertisers.php:22
2219
  msgid "Edit/update adverts"
2220
  msgstr ""
2221
 
2222
+ #: dashboard/settings/advertisers.php:24
2223
  msgid "Allow advertisers to add new or edit their adverts."
2224
  msgstr ""
2225
 
2226
+ #: dashboard/settings/advertisers.php:30
2227
  msgid ""
2228
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2229
  "be enabled, too."
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/advertisers.php:34
2233
  msgid "Advertiser role"
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/advertisers.php:36
2237
  msgid "Create a seperate user role for your advertisers."
2238
  msgstr ""
2239
 
2240
+ #: dashboard/settings/advertisers.php:37
2241
  msgid ""
2242
  "Don't forget to give these users access to their advertiser dashboard via "
2243
  "the Roles tab."
2244
  msgstr ""
2245
 
2246
+ #: dashboard/settings/general.php:12
2247
  msgid "General Settings"
2248
  msgstr ""
2249
 
2250
+ #: dashboard/settings/general.php:13
2251
  msgid "General settings for AdRotate."
2252
  msgstr ""
2253
 
2254
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2255
+ msgid "Some options are only available in AdRotate Pro!"
2256
+ msgstr ""
2257
+
2258
+ #: dashboard/settings/general.php:16
2259
+ msgid "Text widgets"
2260
+ msgstr ""
2261
+
2262
+ #: dashboard/settings/general.php:17
2263
+ msgid ""
2264
+ "Enable if your theme does not support shortcodes in the WordPress text "
2265
+ "widget."
2266
+ msgstr ""
2267
+
2268
+ #: dashboard/settings/general.php:20
2269
  #, fuzzy
2270
  msgid "Load jQuery"
2271
  msgstr "Utilisez jQuery"
2272
 
2273
+ #: dashboard/settings/general.php:21
2274
  msgid ""
2275
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2276
+ "groups, statistics and some other features."
2277
  msgstr ""
2278
 
2279
+ #: dashboard/settings/general.php:24
2280
  msgid "Load scripts in footer?"
2281
  msgstr ""
2282
 
2283
+ #: dashboard/settings/general.php:25
2284
  msgid ""
2285
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2286
  "site."
2287
  msgstr ""
2288
 
2289
+ #: dashboard/settings/general.php:28
2290
+ msgid "Adblock disguise"
2291
  msgstr ""
2292
 
2293
+ #: dashboard/settings/general.php:30
2294
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/general.php:31
2298
+ msgid ""
2299
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2300
+ msgstr ""
2301
+
2302
+ #: dashboard/settings/general.php:31
2303
+ msgid ""
2304
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2305
+ "instead of the AdRotate widget."
2306
+ msgstr ""
2307
+
2308
+ #: dashboard/settings/general.php:31
2309
+ msgid ""
2310
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2311
+ "feature will have little effect!"
2312
  msgstr ""
2313
 
2314
+ #: dashboard/settings/general.php:36
2315
+ msgid "Banner Folder"
2316
+ msgstr ""
2317
+
2318
+ #: dashboard/settings/general.php:37
2319
+ msgid "Set a location where your banner images will be stored."
2320
+ msgstr ""
2321
+
2322
+ #: dashboard/settings/general.php:40
2323
  msgid "Location"
2324
  msgstr ""
2325
 
2326
+ #: dashboard/settings/general.php:42
2327
  msgid "(Default: wp-content/banners/)."
2328
  msgstr ""
2329
 
2330
+ #: dashboard/settings/general.php:43
2331
  msgid ""
2332
  "To try and trick ad blockers you could set the folder to something crazy "
2333
  "like:"
2334
  msgstr ""
2335
 
2336
+ #: dashboard/settings/general.php:44
2337
  msgid ""
2338
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2339
  "will show errors when the folder is missing."
2340
  msgstr ""
2341
 
2342
+ #: dashboard/settings/general.php:49
2343
  #, fuzzy
2344
  msgid "Bot filter"
2345
  msgstr "Filtre de robots"
2346
 
2347
+ #: dashboard/settings/general.php:50
2348
  msgid "The bot filter is used for the AdRotate stats tracker."
2349
  msgstr ""
2350
 
2351
+ #: dashboard/settings/general.php:53
2352
  #, fuzzy
2353
  msgid "User-Agent Filter"
2354
  msgstr "Filtrage par User-Agent"
2355
 
2356
+ #: dashboard/settings/general.php:56
2357
  msgid ""
2358
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2359
  msgstr ""
2360
 
2361
+ #: dashboard/settings/general.php:57
2362
  msgid ""
2363
  "Keep in mind that this might give false positives. The word 'fire' also "
2364
  "matches 'firefox', but not vice-versa. So be careful!"
2365
  msgstr ""
2366
 
2367
+ #: dashboard/settings/general.php:58
2368
  msgid ""
2369
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2370
  "characters are stripped out."
2371
  msgstr ""
2372
 
2373
+ #: dashboard/settings/general.php:59
2374
  #, fuzzy
2375
  msgid ""
2376
  "Additionally to the list specified here, empty User-Agents are blocked as "
2379
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2380
  "bloqués."
2381
 
2382
+ #: dashboard/settings/general.php:59
2383
  #, fuzzy
2384
  msgid "Learn more about"
2385
  msgstr "En savoir plus sur"
2386
 
2387
+ #: dashboard/settings/general.php:59
2388
  #, fuzzy
2389
  msgid "user-agents"
2390
  msgstr "user-agents"
2391
 
2392
+ #: dashboard/settings/geotargeting.php:12
2393
  msgid "Geo Targeting - Available in AdRotate Pro"
2394
  msgstr ""
2395
 
2396
+ #: dashboard/settings/geotargeting.php:13
2397
  msgid "Target certain areas in the world for better advertising oppurtunities."
2398
  msgstr ""
2399
 
2400
+ #: dashboard/settings/geotargeting.php:16
2401
  msgid "Which Geo Service"
2402
  msgstr ""
2403
 
2404
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2405
  msgid ""
2406
  "The most complete and accurate geo targeting you can get for only $20 USD "
2407
  "per 50000 lookups."
2408
  msgstr ""
2409
 
2410
+ #: dashboard/settings/geotargeting.php:28
2411
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2412
  msgstr ""
2413
 
2414
+ #: dashboard/settings/geotargeting.php:30
2415
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2416
  msgstr ""
2417
 
2418
+ #: dashboard/settings/geotargeting.php:36
2419
  msgid "Geo Cookie Lifespan"
2420
  msgstr ""
2421
 
2422
+ #: dashboard/settings/geotargeting.php:45
2423
  msgid "Hours."
2424
  msgstr ""
2425
 
2426
+ #: dashboard/settings/geotargeting.php:46
2427
  msgid ""
2428
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2429
  "cookie last? A longer period is less accurate for mobile users but may "
2430
  "reduce the usage of your lookups drastically."
2431
  msgstr ""
2432
 
2433
+ #: dashboard/settings/geotargeting.php:52
2434
  msgid "MaxMind City/Country"
2435
  msgstr ""
2436
 
2437
+ #: dashboard/settings/geotargeting.php:55
2438
  msgid "Username/Email"
2439
  msgstr ""
2440
 
2441
+ #: dashboard/settings/geotargeting.php:59
2442
  msgid "Password/License Key"
2443
  msgstr ""
2444
 
2445
+ #: dashboard/settings/maintenance.php:12
2446
  #, fuzzy
2447
  msgid "Maintenance"
2448
  msgstr "Maintenance"
2449
 
2450
+ #: dashboard/settings/maintenance.php:13
2451
  msgid ""
2452
  "Use these functions when you notice your database is slow, unresponsive and "
2453
  "sluggish."
2454
  msgstr ""
2455
 
2456
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2457
  #, fuzzy
2458
  msgid "Optimize Database"
2459
  msgstr "Optimiser la base de données"
2460
 
2461
+ #: dashboard/settings/maintenance.php:18
2462
  #, fuzzy
2463
  msgid "You are about to optimize the AdRotate database."
2464
  msgstr "Vous allez optimiser la base de données de Adrotate."
2465
 
2466
+ #: dashboard/settings/maintenance.php:18
2467
  #, fuzzy
2468
  msgid "Did you make a backup of your database?"
2469
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
2470
 
2471
+ #: dashboard/settings/maintenance.php:18
2472
  #, fuzzy
2473
  msgid ""
2474
  "This may take a moment and may cause your website to respond slow "
2477
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
2478
  "temporaire!"
2479
 
2480
+ #: dashboard/settings/maintenance.php:19
2481
  #, fuzzy
2482
  msgid "Cleans up overhead data in the AdRotate tables."
2483
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
2484
 
2485
+ #: dashboard/settings/maintenance.php:20
2486
  #, fuzzy
2487
  msgid ""
2488
  "Overhead data is accumulated garbage resulting from many changes you've "
2492
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2493
  "KB de données."
2494
 
2495
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2496
  #, fuzzy
2497
  msgid "Clean-up Database"
2498
  msgstr "Nettoyer la base de données"
2499
 
2500
+ #: dashboard/settings/maintenance.php:26
2501
  #, fuzzy
2502
  msgid ""
2503
  "You are about to clean up your database. This may delete expired schedules "
2506
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2507
  "supprimer des calendriers périmés et des vieilles statistiques.."
2508
 
2509
+ #: dashboard/settings/maintenance.php:26
2510
  #, fuzzy
2511
  msgid "Are you sure you want to continue?"
2512
  msgstr "Etes-vous certains de vouloir continuer?"
2513
 
2514
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2515
  #, fuzzy
2516
  msgid "This might take a while and may slow down your site during this action!"
2517
  msgstr ""
2518
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2519
  "interval!"
2520
 
2521
+ #: dashboard/settings/maintenance.php:27
2522
  #, fuzzy
2523
  msgid "Delete stats older than 356 days (Optional)."
2524
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2525
 
2526
+ #: dashboard/settings/maintenance.php:28
2527
  msgid ""
2528
  "AdRotate creates empty records when you start making ads, groups or "
2529
  "schedules. In rare occasions these records are faulty."
2530
  msgstr ""
2531
 
2532
+ #: dashboard/settings/maintenance.php:28
2533
  msgid ""
2534
  "If you made an ad, group or schedule that does not save when you make it use "
2535
  "this button to delete those empty records."
2536
  msgstr ""
2537
 
2538
+ #: dashboard/settings/maintenance.php:28
2539
  msgid ""
2540
  "Additionally you can clean up old schedules and/or statistics. This will "
2541
  "improve the speed of your site."
2542
  msgstr ""
2543
 
2544
+ #: dashboard/settings/maintenance.php:32
2545
  #, fuzzy
2546
  msgid "Re-evaluate Ads"
2547
  msgstr "Re-évaluer les publicités"
2548
 
2549
+ #: dashboard/settings/maintenance.php:34
2550
  #, fuzzy
2551
  msgid "Re-evaluate all ads"
2552
  msgstr "Re-évaluer toutes les publicités"
2553
 
2554
+ #: dashboard/settings/maintenance.php:34
2555
  #, fuzzy
2556
  msgid "You are about to check all ads for errors."
2557
  msgstr "Vous allez véifier l'état de toutes les publicités."
2558
 
2559
+ #: dashboard/settings/maintenance.php:35
2560
  #, fuzzy
2561
  msgid ""
2562
  "This will apply all evaluation rules to all ads to see if any error slipped "
2566
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2567
  "fonctionalité."
2568
 
2569
+ #: dashboard/settings/maintenance.php:39
2570
  msgid ""
2571
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2572
  "database. They only apply to your ads/groups and stats. Not to other "
2579
  "is not a valid point in any case."
2580
  msgstr ""
2581
 
2582
+ #: dashboard/settings/maintenance.php:41
2583
  #, fuzzy
2584
  msgid "Troubleshooting"
2585
  msgstr "Diagnostic de dépannage"
2586
 
2587
+ #: dashboard/settings/maintenance.php:42
2588
  msgid ""
2589
  "The below options are not meant for normal use and are only there for "
2590
  "developers to review saved settings or how ads are selected. These can be "
2592
  "SHOULD BE LEFT UNCHECKED!!"
2593
  msgstr ""
2594
 
2595
+ #: dashboard/settings/maintenance.php:45
2596
  #, fuzzy
2597
  msgid "Developer Debug"
2598
  msgstr "Debuggage de développeur"
2599
 
2600
+ #: dashboard/settings/maintenance.php:47
2601
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2602
  msgstr ""
2603
 
2604
+ #: dashboard/settings/maintenance.php:48
2605
  msgid "View advert specs and (some) stats in the dashboard."
2606
  msgstr ""
2607
 
2608
+ #: dashboard/settings/maintenance.php:49
2609
  #, fuzzy
2610
  msgid ""
2611
  "Disable timers for clicks and impressions and enable a alert window for "
2614
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2615
  "fenêtre d'alerte pour le suivi des clicks."
2616
 
2617
+ #: dashboard/settings/maintenance.php:50
2618
  #, fuzzy
2619
  msgid "Temporarily disable encryption on the redirect url."
2620
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2621
 
2622
+ #: dashboard/settings/maintenance.php:55
2623
  msgid "Status and Versions"
2624
  msgstr ""
2625
 
2626
+ #: dashboard/settings/maintenance.php:58
2627
  #, fuzzy
2628
  msgid "Current version:"
2629
  msgstr "Version actuelle :"
2630
 
2631
+ #: dashboard/settings/maintenance.php:59
2632
  #, fuzzy
2633
  msgid "Previous version:"
2634
  msgstr "Version antérieure :"
2635
 
2636
+ #: dashboard/settings/maintenance.php:62
2637
  #, fuzzy
2638
  msgid "Current database version:"
2639
  msgstr "Version actuelle de la base de données :"
2640
 
2641
+ #: dashboard/settings/maintenance.php:63
2642
  #, fuzzy
2643
  msgid "Previous database version:"
2644
  msgstr "Version antérieure de la base de données :"
2645
 
2646
+ #: dashboard/settings/maintenance.php:66
2647
  #, fuzzy
2648
  msgid "Current status of adverts"
2649
  msgstr "Etat actuel des publicités"
2650
 
2651
+ #: dashboard/settings/maintenance.php:67
2652
  #, fuzzy
2653
  msgid "Normal"
2654
  msgstr "Normal"
2655
 
2656
+ #: dashboard/settings/maintenance.php:67
2657
  #, fuzzy
2658
  msgid "Error"
2659
  msgstr "Erreur"
2660
 
2661
+ #: dashboard/settings/maintenance.php:67
2662
  #, fuzzy
2663
  msgid "Expired"
2664
  msgstr "Expiré"
2665
 
2666
+ #: dashboard/settings/maintenance.php:67
2667
  #, fuzzy
2668
  msgid "Expires Soon"
2669
  msgstr "Expire bientôt."
2670
 
2671
+ #: dashboard/settings/maintenance.php:67
2672
  msgid "Unknown"
2673
  msgstr ""
2674
 
2675
+ #: dashboard/settings/maintenance.php:70
2676
  msgid "Ad evaluation next run:"
2677
  msgstr ""
2678
 
2679
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2680
  #, fuzzy
2681
  msgid "Not scheduled!"
2682
  msgstr "Pas planifié!"
2683
 
2684
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2685
  msgid "Clean Trackerdata next run:"
2686
  msgstr ""
2687
 
2688
+ #: dashboard/settings/misc.php:12
2689
  #, fuzzy
2690
  msgid "Miscellaneous"
2691
  msgstr "Divers"
2692
 
2693
+ #: dashboard/settings/misc.php:15
2694
  #, fuzzy
2695
  msgid "Widget alignment"
2696
  msgstr "Alignement du Widget"
2697
 
2698
+ #: dashboard/settings/misc.php:16
2699
  #, fuzzy
2700
  msgid ""
2701
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2704
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
2705
  "votre thème. Cette fonction peux ne pas régler le soucis!"
2706
 
2707
+ #: dashboard/settings/misc.php:19
2708
  #, fuzzy
2709
  msgid "Widget padding"
2710
  msgstr "Marge interne du Widget"
2711
 
2712
+ #: dashboard/settings/misc.php:20
2713
  #, fuzzy
2714
  msgid ""
2715
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2718
  "Activez cette option pour supprimer la marge (espace vide) autour des "
2719
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
2720
 
2721
+ #: dashboard/settings/misc.php:24
2722
  #, fuzzy
2723
  msgid "NOTICE:"
2724
  msgstr ""
2728
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
2729
  "de données est lente ou ne réponds pas."
2730
 
2731
+ #: dashboard/settings/misc.php:25
2732
  #, fuzzy
2733
  msgid ""
2734
  "You have enabled W3 Total Caching support but not defined the security hash. "
2741
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
2742
  "fonction \"late init\" doit être activée dans W3 Total Cache."
2743
 
2744
+ #: dashboard/settings/misc.php:29
2745
  #, fuzzy
2746
  msgid "W3 Total Caching"
2747
  msgstr "W3 Total Caching"
2748
 
2749
+ #: dashboard/settings/misc.php:30
2750
  #, fuzzy
2751
  msgid "Check this box if you use W3 Total Caching on your site."
2752
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
2753
 
2754
+ #: dashboard/settings/misc.php:34
2755
  #, fuzzy
2756
  msgid ""
2757
  "It may take a while for the ad to start rotating. The caching plugin needs "
2762
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
2763
  "pas fait manuellement."
2764
 
2765
+ #: dashboard/settings/misc.php:34
2766
  #, fuzzy
2767
  msgid ""
2768
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2772
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2773
  "PHP dans le code d'exclusion vous-même."
2774
 
2775
+ #: dashboard/settings/notifications.php:12
2776
  msgid "Notifications - Available in AdRotate Pro"
2777
  msgstr ""
2778
 
2779
+ #: dashboard/settings/notifications.php:13
2780
  msgid "Set up who gets notifications if ads need your attention."
2781
  msgstr ""
2782
 
2783
+ #: dashboard/settings/notifications.php:16
2784
  msgid "Delivery method"
2785
  msgstr ""
2786
 
2787
+ #: dashboard/settings/notifications.php:18
2788
  msgid "Email message."
2789
  msgstr ""
2790
 
2791
+ #: dashboard/settings/notifications.php:19
2792
  msgid "Push notifications to your smartphone."
2793
  msgstr ""
2794
 
2795
+ #: dashboard/settings/notifications.php:20
2796
  msgid ""
2797
  "Push notifications are delivered through Pushover, a notification service "
2798
  "for Android and iOS"
2799
  msgstr ""
2800
 
2801
+ #: dashboard/settings/notifications.php:20
2802
  msgid ""
2803
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2804
  "information can be found on the pushover website;"
2805
  msgstr ""
2806
 
2807
+ #: dashboard/settings/notifications.php:24
2808
  msgid "Test notification"
2809
  msgstr ""
2810
 
2811
+ #: dashboard/settings/notifications.php:26
2812
  msgid ""
2813
  "This sends a test notification. Before you test, save the options first!"
2814
  msgstr ""
2815
 
2816
+ #: dashboard/settings/notifications.php:31
2817
  msgid "Dashboard Notifications"
2818
  msgstr ""
2819
 
2820
+ #: dashboard/settings/notifications.php:32
2821
  msgid "These show to every administrator who can edit adverts."
2822
  msgstr ""
2823
 
2824
+ #: dashboard/settings/notifications.php:35
2825
  msgid "Notification banners"
2826
  msgstr ""
2827
 
2828
+ #: dashboard/settings/notifications.php:36
2829
  msgid "Disable dashboard notifications."
2830
  msgstr ""
2831
 
2832
+ #: dashboard/settings/notifications.php:40
2833
  msgid "Email Notifications"
2834
  msgstr ""
2835
 
2836
+ #: dashboard/settings/notifications.php:41
2837
  msgid "Set up who gets notification emails."
2838
  msgstr ""
2839
 
2840
+ #: dashboard/settings/notifications.php:44
2841
+ #: dashboard/settings/notifications.php:64
2842
  msgid "Publishers"
2843
  msgstr ""
2844
 
2845
+ #: dashboard/settings/notifications.php:47
2846
  msgid ""
2847
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2848
  "list to a minimum!"
2849
  msgstr ""
2850
 
2851
+ #: dashboard/settings/notifications.php:48
2852
  msgid ""
2853
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2854
  "email notifications will be send."
2855
  msgstr ""
2856
 
2857
+ #: dashboard/settings/notifications.php:52
2858
  msgid "Advertisers"
2859
  msgstr ""
2860
 
2861
+ #: dashboard/settings/notifications.php:55
2862
  msgid ""
2863
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2864
  "This field may not be empty!"
2865
  msgstr ""
2866
 
2867
+ #: dashboard/settings/notifications.php:60
2868
  msgid "Push Notifications"
2869
  msgstr ""
2870
 
2871
+ #: dashboard/settings/notifications.php:61
2872
  msgid ""
2873
  "Receive information about what is happening with your AdRotate setup on your "
2874
  "smartphone via Pushover."
2875
  msgstr ""
2876
 
2877
+ #: dashboard/settings/notifications.php:66
2878
  msgid "When you are running out of Geo Targeting Lookups."
2879
  msgstr ""
2880
 
2881
+ #: dashboard/settings/notifications.php:67
2882
  msgid "Daily digest of any advert status other than normal."
2883
  msgstr ""
2884
 
2885
+ #: dashboard/settings/notifications.php:68
2886
  msgid "Any advertiser saving an advert in your moderation queue."
2887
  msgstr ""
2888
 
2889
+ #: dashboard/settings/notifications.php:69
2890
  msgid "A moderator approved an advert from the moderation queue."
2891
  msgstr ""
2892
 
2893
+ #: dashboard/settings/notifications.php:70
2894
  msgid "A moderator rejected an advert from the moderation queue."
2895
  msgstr ""
2896
 
2897
+ #: dashboard/settings/notifications.php:70
2898
  msgid ""
2899
  "If you have a lot of activity with many advertisers adding/changing adverts "
2900
  "you may get a lot of messages!"
2901
  msgstr ""
2902
 
2903
+ #: dashboard/settings/notifications.php:75
2904
  msgid "User Key"
2905
  msgstr ""
2906
 
2907
+ #: dashboard/settings/notifications.php:77
2908
  msgid "Get your user token"
2909
  msgstr ""
2910
 
2911
+ #: dashboard/settings/notifications.php:77
2912
+ #: dashboard/settings/notifications.php:83
2913
  msgid "here"
2914
  msgstr ""
2915
 
2916
+ #: dashboard/settings/notifications.php:81
2917
  msgid "Api Token"
2918
  msgstr ""
2919
 
2920
+ #: dashboard/settings/notifications.php:83
2921
  msgid "Create your"
2922
  msgstr ""
2923
 
2924
+ #: dashboard/settings/notifications.php:83
2925
  msgid "App"
2926
  msgstr ""
2927
 
2928
+ #: dashboard/settings/notifications.php:83
2929
  msgid "and get your API token"
2930
  msgstr ""
2931
 
2932
+ #: dashboard/settings/roles.php:12
2933
  msgid "Roles"
2934
  msgstr ""
2935
 
2936
+ #: dashboard/settings/roles.php:13
2937
  #, fuzzy
2938
  msgid "Who has access to what?"
2939
  msgstr "Qui a accès à quoi?"
2940
 
2941
+ #: dashboard/settings/roles.php:16
2942
  #, fuzzy
2943
  msgid "Manage/Add/Edit adverts"
2944
  msgstr "Gérer/Ajouter/Modifier les publicités"
2945
 
2946
+ #: dashboard/settings/roles.php:20
2947
  #, fuzzy
2948
  msgid "Role to see and add/edit ads."
2949
  msgstr "Rôle pour voir et gérer/modifier les publicités."
2950
 
2951
+ #: dashboard/settings/roles.php:24
2952
  #, fuzzy
2953
  msgid "Delete/Reset adverts"
2954
  msgstr "Supprimer/Mettre à zéro les publicités"
2955
 
2956
+ #: dashboard/settings/roles.php:28
2957
  #, fuzzy
2958
  msgid "Role to delete ads and reset stats."
2959
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
2960
 
2961
+ #: dashboard/settings/roles.php:32
2962
  #, fuzzy
2963
  msgid "Manage/Add/Edit groups"
2964
  msgstr "Gérer/Ajouter/Modifier les groupes"
2965
 
2966
+ #: dashboard/settings/roles.php:36
2967
  #, fuzzy
2968
  msgid "Role to see and add/edit groups."
2969
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
2970
 
2971
+ #: dashboard/settings/roles.php:40
2972
  #, fuzzy
2973
  msgid "Delete groups"
2974
  msgstr "Effacer les groups"
2975
 
2976
+ #: dashboard/settings/roles.php:44
2977
  #, fuzzy
2978
  msgid "Role to delete groups."
2979
  msgstr "Rôle pour supprimer les groupes."
2980
 
2981
+ #: dashboard/settings/statistics.php:13
2982
  msgid "Track statistics for your adverts."
2983
  msgstr ""
2984
 
2985
+ #: dashboard/settings/statistics.php:16
2986
  msgid "How to track stats"
2987
  msgstr ""
2988
 
2989
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2990
  msgid "Tracks impressions and clicks internally"
2991
  msgstr ""
2992
 
2993
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2994
+ #: dashboard/settings/statistics.php:29
2995
  msgid "manual"
2996
  msgstr ""
2997
 
2998
+ #: dashboard/settings/statistics.php:26
2999
  msgid ""
3000
  "Click and Impression recording, Click and impression limits, impression "
3001
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
3002
+ "will only track impressions."
3003
  msgstr ""
3004
 
3005
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
3006
+ msgid "In AdRotate Pro!"
3007
+ msgstr ""
3008
+
3009
+ #: dashboard/settings/statistics.php:27
3010
  msgid ""
3011
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
3012
  "attributes"
3013
  msgstr ""
3014
 
3015
+ #: dashboard/settings/statistics.php:28
3016
  msgid ""
3017
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
3018
  "Contents."
3019
  msgstr ""
3020
 
3021
+ #: dashboard/settings/statistics.php:29
3022
  msgid ""
3023
  "Requires Google Universal Analytics tracker installed in your sites footer! "
3024
  "uses onClick() and onload() in adverts"
3025
  msgstr ""
3026
 
3027
+ #: dashboard/settings/statistics.php:30
3028
  msgid ""
3029
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
3030
+ "Banner."
3031
  msgstr ""
3032
 
3033
+ #: dashboard/settings/statistics.php:36
3034
  msgid "Internal Tracker"
3035
  msgstr ""
3036
 
3037
+ #: dashboard/settings/statistics.php:37
3038
  msgid ""
3039
  "The settings below are for the internal tracker and have no effect when "
3040
  "using Piwik/Google Analytics."
3041
  msgstr ""
3042
 
3043
+ #: dashboard/settings/statistics.php:40
3044
  msgid "Logged in impressions"
3045
  msgstr ""
3046
 
3047
+ #: dashboard/settings/statistics.php:42
3048
  msgid "Track impressions from logged in users."
3049
  msgstr ""
3050
 
3051
+ #: dashboard/settings/statistics.php:46
3052
  msgid "Logged in clicks"
3053
  msgstr ""
3054
 
3055
+ #: dashboard/settings/statistics.php:48
3056
  msgid "Track clicks from logged in users."
3057
  msgstr ""
3058
 
3059
+ #: dashboard/settings/statistics.php:52
3060
+ msgid "Impression timer"
3061
+ msgstr ""
 
3062
 
3063
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
3064
  #, fuzzy
3065
  msgid "Seconds."
3066
  msgstr "Secondes."
3067
 
3068
+ #: dashboard/settings/statistics.php:55
3069
  #, fuzzy
3070
  msgid "Default: 60."
3071
  msgstr "Par défaut"
3072
 
3073
+ #: dashboard/settings/statistics.php:55
3074
  #, fuzzy
3075
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3076
  msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
3077
 
3078
+ #: dashboard/settings/statistics.php:59
3079
+ msgid "Click timer"
3080
+ msgstr ""
 
3081
 
3082
+ #: dashboard/settings/statistics.php:62
3083
  #, fuzzy
3084
  msgid "Default: 86400."
3085
  msgstr "Par défaut"
3086
 
3087
+ #: dashboard/settings/statistics.php:62
3088
  #, fuzzy
3089
  msgid ""
3090
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3091
  msgstr ""
3092
  "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
3093
 
3094
+ #, fuzzy
3095
+ #~ msgid "Find out more"
3096
+ #~ msgstr "En savoir plus"
3097
+
3098
+ #, fuzzy
3099
+ #~ msgid "Follow"
3100
+ #~ msgstr "Suivre"
3101
+
3102
+ #, fuzzy
3103
+ #~ msgid "Barely visible"
3104
+ #~ msgstr "Visible jusqu'à"
3105
+
3106
+ #, fuzzy
3107
+ #~ msgid "Normal coverage"
3108
+ #~ msgstr "Normal"
3109
+
3110
+ #, fuzzy
3111
+ #~ msgid "More than average"
3112
+ #~ msgstr "Plus d'informations..."
3113
+
3114
+ #, fuzzy
3115
+ #~ msgid "Ads in group"
3116
+ #~ msgstr "Pubs dans le groupe"
3117
+
3118
+ #, fuzzy
3119
+ #~ msgid "Code"
3120
+ #~ msgstr "Code"
3121
+
3122
+ #, fuzzy
3123
+ #~ msgid "Impressions timer"
3124
+ #~ msgstr "Minuterie de impressions"
3125
+
3126
+ #, fuzzy
3127
+ #~ msgid "Clicks timer"
3128
+ #~ msgstr "Interval de clicks"
3129
+
3130
  #, fuzzy
3131
  #~ msgid "Learn More"
3132
  #~ msgstr "En savoir plus"
language/adrotate-es_ES.mo CHANGED
Binary file
language/adrotate-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-08-23 20:10+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:10+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
9
  "Language: es_ES\n"
@@ -240,10 +240,10 @@ msgstr "Solucionar esto en cuanto sea posible"
240
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
241
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
242
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
243
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
244
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
245
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
246
- #: dashboard/settings/geotargeting.php:16
247
  #, fuzzy
248
  msgid "Buy now"
249
  msgstr "Comprar"
@@ -343,7 +343,7 @@ msgstr "Revise el anuncio aquí:"
343
  msgid "on WordPress.org to help AdRotate grow in a positive way"
344
  msgstr ""
345
 
346
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
347
  msgid "Available in AdRotate Pro"
348
  msgstr "Disponible en AdRotate Pro"
349
 
@@ -359,63 +359,63 @@ msgstr "Esta función está disponible en AdRotate Pro"
359
  msgid "Learn more"
360
  msgstr "Aprender más"
361
 
362
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
363
- #: dashboard/publisher/adverts-edit.php:245
364
  msgid "January"
365
  msgstr "Enero"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
368
- #: dashboard/publisher/adverts-edit.php:246
369
  msgid "February"
370
  msgstr "Febrero"
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
373
- #: dashboard/publisher/adverts-edit.php:247
374
  msgid "March"
375
  msgstr "Marzo"
376
 
377
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
378
- #: dashboard/publisher/adverts-edit.php:248
379
  msgid "April"
380
  msgstr "Abril"
381
 
382
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
383
- #: dashboard/publisher/adverts-edit.php:249
384
  msgid "May"
385
  msgstr "Mayo"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
388
- #: dashboard/publisher/adverts-edit.php:250
389
  msgid "June"
390
  msgstr "Junio"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
393
- #: dashboard/publisher/adverts-edit.php:251
394
  msgid "July"
395
  msgstr "Julio"
396
 
397
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
398
- #: dashboard/publisher/adverts-edit.php:252
399
  msgid "August"
400
  msgstr "Agosto"
401
 
402
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
403
- #: dashboard/publisher/adverts-edit.php:253
404
  msgid "September"
405
  msgstr "Septiembre"
406
 
407
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
408
- #: dashboard/publisher/adverts-edit.php:254
409
  msgid "October"
410
  msgstr "Octubre"
411
 
412
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
413
- #: dashboard/publisher/adverts-edit.php:255
414
  msgid "November"
415
  msgstr "Noviembre"
416
 
417
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
418
- #: dashboard/publisher/adverts-edit.php:256
419
  msgid "December"
420
  msgstr "Diciembre"
421
 
@@ -531,7 +531,7 @@ msgid "Group Management"
531
  msgstr "Administración de Grupos"
532
 
533
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
534
- #: dashboard/publisher/groups-main.php:71
535
  msgid "Report"
536
  msgstr "Informe"
537
 
@@ -546,10 +546,10 @@ msgid ""
546
  "AdRotate Pro."
547
  msgstr ""
548
 
549
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
550
  #: dashboard/publisher/adverts-main.php:114
551
  #: dashboard/publisher/groups-edit.php:75
552
- #: dashboard/publisher/groups-main.php:91
553
  #, fuzzy
554
  msgid "More information"
555
  msgstr "Más información..."
@@ -586,19 +586,19 @@ msgstr "Iniciar"
586
  msgid "End"
587
  msgstr "Finalizar"
588
 
589
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
590
  #: dashboard/publisher/groups-main.php:34
591
  msgid "Ads"
592
  msgstr "Anuncios"
593
 
594
  #: adrotate.php:428
595
- msgid "Max Clicks"
596
- msgstr "Número máximo de Clics"
597
-
598
- #: adrotate.php:429
599
  msgid "Max Impressions"
600
  msgstr "Número máximo de Impresiones"
601
 
 
 
 
 
602
  #: adrotate.php:459
603
  #, fuzzy
604
  msgid "No schedules created yet!"
@@ -691,7 +691,7 @@ msgstr ""
691
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
692
  "de imágenes del mismo tamaño."
693
 
694
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
695
  msgid ""
696
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
697
  "filename instead of \".full\" for the various viewports."
@@ -700,13 +700,13 @@ msgstr ""
700
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
701
  "diferentes visores."
702
 
703
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
704
  #: dashboard/publisher/groups-edit.php:312
705
  #: dashboard/publisher/groups-edit.php:320
706
  msgid "Example:"
707
  msgstr "Ejemplo:"
708
 
709
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
710
  #, fuzzy
711
  msgid ""
712
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -806,20 +806,16 @@ msgid ""
806
  "forum. Get a solution (usually) within a day."
807
  msgstr ""
808
 
809
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
810
  msgid "AdRotate is brought to you by"
811
  msgstr "AdRotate es ofrecido por"
812
 
813
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
814
  msgid ""
815
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
816
- "details!"
817
  msgstr ""
818
 
819
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
820
- msgid "Find out more"
821
- msgstr "Para saber más"
822
-
823
  #: dashboard/adrotatepro.php:58
824
  msgid "Schedule all campaigns with ease"
825
  msgstr "Programe todas las campañas con facilidad"
@@ -846,140 +842,140 @@ msgid ""
846
  msgstr ""
847
 
848
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
849
- #: dashboard/info.php:134 dashboard/info.php:146
850
  msgid "Buy AdRotate Professional"
851
  msgstr "Comprar AdRotate Profesional"
852
 
853
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
854
  msgid "Single License"
855
  msgstr ""
856
 
857
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
858
  msgid "For one WordPress installation."
859
  msgstr "Para una instalación de WordPress."
860
 
861
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
862
- #: dashboard/info.php:139 dashboard/info.php:151
863
  msgid "Duo License"
864
  msgstr "Duo Licencia"
865
 
866
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
867
  msgid "For two WordPress installations."
868
  msgstr "Para dos instalaciónes de WordPress."
869
 
870
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
871
- #: dashboard/info.php:140 dashboard/info.php:152
872
  msgid "Multi License"
873
  msgstr "Multi Licencia"
874
 
875
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
876
  msgid " For up to five WordPress installations."
877
  msgstr "Para un máximo de cinco instalaciones de WordPress."
878
 
879
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
880
- #: dashboard/info.php:141 dashboard/info.php:153
881
  msgid "Developer License"
882
  msgstr "Developer Licencia"
883
 
884
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
885
  msgid "Unlimited WordPress installations and/or networks."
886
  msgstr ""
887
 
888
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
889
- #: dashboard/info.php:142 dashboard/info.php:155
890
  msgid "Compare licenses"
891
  msgstr "Comparar licencias"
892
 
893
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
894
  msgid "Not sure which license is for you? Compare them..."
895
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
896
 
897
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
898
  msgid "All Licenses"
899
  msgstr "Todas las licencias"
900
 
901
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
902
  msgid "Lifetime License"
903
  msgstr ""
904
 
905
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
906
  msgid "Single installation."
907
  msgstr ""
908
 
909
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
910
  msgid "Up to 2 installations."
911
  msgstr ""
912
 
913
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
914
  msgid "Up to 10 installations."
915
  msgstr ""
916
 
917
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
918
  msgid "Up to 25 installations or multisite networks."
919
  msgstr ""
920
 
921
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
922
  msgid ""
923
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
924
  msgstr ""
925
 
926
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
927
  msgid "Not sure which license is for you?"
928
  msgstr ""
929
 
930
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
931
  msgid "Compare Licenses"
932
  msgstr ""
933
 
934
- #: dashboard/info.php:65
935
  msgid "Currently"
936
  msgstr "En la actualidad"
937
 
938
- #: dashboard/info.php:71
939
  msgid "Your setup"
940
  msgstr "Su configuración"
941
 
942
- #: dashboard/info.php:72
943
  msgid "Adverts that need you"
944
  msgstr "Estos Anuncios"
945
 
946
- #: dashboard/info.php:78
947
  msgid "Adverts"
948
  msgstr "Anuncios"
949
 
950
- #: dashboard/info.php:79
951
  msgid "(Almost) Expired"
952
  msgstr "Expirados (o casi)"
953
 
954
- #: dashboard/info.php:82
955
  msgid "Groups"
956
  msgstr "Grupos"
957
 
958
- #: dashboard/info.php:83
959
  msgid "Have errors"
960
  msgstr "Tienen errores"
961
 
962
- #: dashboard/info.php:89
963
  msgid "Support AdRotate"
964
  msgstr "Apoye a AdRotate"
965
 
966
- #: dashboard/info.php:96
967
  msgid "Your gift helps ensure the continued development of AdRotate!"
968
  msgstr ""
969
 
970
- #: dashboard/info.php:96
971
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
972
  msgstr ""
973
 
974
- #: dashboard/info.php:105
975
  msgid "AdRotate News and Developer Blog"
976
  msgstr "Noticias y Blog del Desarrollador de AdRotate "
977
 
978
- #: dashboard/info.php:127
979
  msgid "Get more features with AdRotate Pro"
980
  msgstr "Obtenga más funciones con AdRotate Pro"
981
 
982
- #: dashboard/info.php:130
983
  msgid ""
984
  "Benefit from extra features to reinforce your income with advertising "
985
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -990,28 +986,24 @@ msgstr ""
990
  "las potentes herramientas que AdRotate Pro le ofrece, además de las "
991
  "funcionalidades más que fiables incluidas en la versión gratuita."
992
 
993
- #: dashboard/info.php:130
994
  msgid "Want to know more about"
995
  msgstr ""
996
 
997
- #: dashboard/info.php:130
998
  msgid "Visit the"
999
  msgstr "Visite la"
1000
 
1001
- #: dashboard/info.php:130
1002
  msgid "website"
1003
  msgstr "página web"
1004
 
1005
- #: dashboard/info.php:166
1006
- msgid "Follow"
1007
- msgstr "Continuar"
1008
-
1009
  #: dashboard/publisher/adverts-disabled.php:15
1010
  msgid "Disabled Ads"
1011
  msgstr "Desactivar Anuncios"
1012
 
1013
  #: dashboard/publisher/adverts-disabled.php:21
1014
- #: dashboard/publisher/adverts-edit.php:165
1015
  msgid "Activate"
1016
  msgstr "Activar"
1017
 
@@ -1036,8 +1028,6 @@ msgstr "Título"
1036
 
1037
  #: dashboard/publisher/adverts-disabled.php:38
1038
  #: dashboard/publisher/adverts-report.php:34
1039
- #: dashboard/publisher/groups-edit.php:333
1040
- #: dashboard/publisher/groups-main.php:36
1041
  #: dashboard/publisher/groups-report.php:40
1042
  msgid "Impressions"
1043
  msgstr "Impresiones"
@@ -1061,7 +1051,7 @@ msgstr "CTR"
1061
  #: dashboard/publisher/adverts-disabled.php:74
1062
  #: dashboard/publisher/adverts-error.php:64
1063
  #: dashboard/publisher/adverts-main.php:87
1064
- #: dashboard/publisher/groups-main.php:71
1065
  msgid "Edit"
1066
  msgstr "Editar"
1067
 
@@ -1186,35 +1176,54 @@ msgid ""
1186
  "click to add it."
1187
  msgstr ""
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1190
  msgid "Banner asset"
1191
  msgstr ""
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:142
1194
  msgid "WordPress media:"
1195
  msgstr ""
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:142
1198
  msgid "Select Banner"
1199
  msgstr "Seleccionar Banner"
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:144
1202
  msgid "- OR -"
1203
  msgstr "- O -"
1204
 
1205
- #: dashboard/publisher/adverts-edit.php:146
1206
  msgid "Banner folder:"
1207
  msgstr "Carpeta Banner:"
1208
 
1209
- #: dashboard/publisher/adverts-edit.php:147
1210
  msgid "No image selected"
1211
  msgstr "Ninguna imagen seleccionada"
1212
 
1213
- #: dashboard/publisher/adverts-edit.php:151
1214
  msgid "Use %image% in the adcode instead of the file path."
1215
  msgstr ""
1216
 
1217
- #: dashboard/publisher/adverts-edit.php:151
1218
  msgid ""
1219
  "Use either the text field or the dropdown. If the textfield has content that "
1220
  "field has priority."
@@ -1222,183 +1231,164 @@ msgstr ""
1222
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1223
  "un contenido, ese campo tiene prioridad."
1224
 
1225
- #: dashboard/publisher/adverts-edit.php:156
1226
- #: dashboard/settings/statistics.php:1
1227
  msgid "Statistics"
1228
  msgstr "Estadísticas"
1229
 
1230
- #: dashboard/publisher/adverts-edit.php:158
1231
  msgid "Enable click and impression tracking for this advert."
1232
  msgstr ""
1233
 
1234
- #: dashboard/publisher/adverts-edit.php:159
1235
  msgid ""
1236
  "Note: Clicktracking does not work for Javascript adverts such as those "
1237
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1238
- "supported."
1239
  msgstr ""
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:169
1242
  msgid "Yes, this ad will be used"
1243
  msgstr "Sí, se utilizará este anuncio"
1244
 
1245
- #: dashboard/publisher/adverts-edit.php:170
1246
  msgid "No, do not show this ad anywhere"
1247
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1248
 
1249
- #: dashboard/publisher/adverts-edit.php:177
1250
  #: dashboard/publisher/adverts-main.php:114
1251
  #: dashboard/publisher/groups-edit.php:75
1252
- #: dashboard/publisher/groups-main.php:91
1253
  #, fuzzy
1254
  msgid "Get more features with AdRotate Pro."
1255
  msgstr "Obtenga más funciones con AdRotate Pro"
1256
 
1257
- #: dashboard/publisher/adverts-edit.php:180
1258
- #: dashboard/publisher/adverts-edit.php:295
1259
- #: dashboard/publisher/adverts-edit.php:395
1260
- #: dashboard/publisher/adverts-edit.php:436
1261
  msgid "Save Advert"
1262
  msgstr "Guardar Anuncio"
1263
 
1264
- #: dashboard/publisher/adverts-edit.php:181
1265
- #: dashboard/publisher/adverts-edit.php:296
1266
- #: dashboard/publisher/adverts-edit.php:396
1267
- #: dashboard/publisher/adverts-edit.php:437
1268
  #: dashboard/publisher/groups-edit.php:154
1269
  #: dashboard/publisher/groups-edit.php:301
1270
  #: dashboard/publisher/groups-edit.php:393
1271
  msgid "Cancel"
1272
  msgstr "Cancelar"
1273
 
1274
- #: dashboard/publisher/adverts-edit.php:185
1275
- msgid "Preview"
1276
- msgstr "Vista previa"
1277
-
1278
- #: dashboard/publisher/adverts-edit.php:191
1279
- msgid ""
1280
- "Note: While this preview is an accurate one, it might look different then it "
1281
- "does on the website."
1282
- msgstr ""
1283
- "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1284
- "precisa, en su pagina web puede tener un aspecto diferente."
1285
-
1286
- #: dashboard/publisher/adverts-edit.php:192
1287
- msgid ""
1288
- "This is because of CSS differences. Your themes CSS file is not active here!"
1289
- msgstr ""
1290
- "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1291
- "activo el archivo CSS de las plantillas (themes)!"
1292
-
1293
- #: dashboard/publisher/adverts-edit.php:199
1294
- #: dashboard/publisher/adverts-edit.php:378
1295
  #: dashboard/publisher/groups-edit.php:136
1296
  #: dashboard/publisher/groups-edit.php:283
1297
  msgid "Usage"
1298
  msgstr "Utilización"
1299
 
1300
- #: dashboard/publisher/adverts-edit.php:203
1301
- #: dashboard/publisher/adverts-edit.php:382
1302
  #: dashboard/publisher/groups-edit.php:140
1303
  #: dashboard/publisher/groups-edit.php:287
1304
  msgid "Widget"
1305
  msgstr ""
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:204
1308
- #: dashboard/publisher/adverts-edit.php:383
1309
  msgid ""
1310
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1311
  "and enter ID"
1312
  msgstr ""
1313
 
1314
- #: dashboard/publisher/adverts-edit.php:207
1315
- #: dashboard/publisher/adverts-edit.php:386
1316
  #: dashboard/publisher/groups-edit.php:144
1317
  #: dashboard/publisher/groups-edit.php:291
1318
  msgid "In a post or page"
1319
  msgstr ""
1320
 
1321
- #: dashboard/publisher/adverts-edit.php:209
1322
- #: dashboard/publisher/adverts-edit.php:388
1323
  #: dashboard/publisher/groups-edit.php:146
1324
  #: dashboard/publisher/groups-edit.php:293
1325
  msgid "Directly in a theme"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:215
1329
  msgid "Schedule your advert"
1330
  msgstr ""
1331
 
1332
- #: dashboard/publisher/adverts-edit.php:219
1333
  msgid "Start date (day/month/year)"
1334
  msgstr ""
1335
 
1336
- #: dashboard/publisher/adverts-edit.php:240
1337
  msgid "End date (day/month/year)"
1338
  msgstr ""
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:263
1341
  msgid "Start time (hh:mm)"
1342
  msgstr ""
1343
 
1344
- #: dashboard/publisher/adverts-edit.php:270
1345
  msgid "End time (hh:mm)"
1346
  msgstr ""
1347
 
1348
- #: dashboard/publisher/adverts-edit.php:280
1349
  msgid "Maximum Clicks"
1350
  msgstr ""
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:281
1353
- #: dashboard/publisher/adverts-edit.php:283
1354
  msgid "Leave empty or 0 to skip this."
1355
  msgstr "Dejar en blanco o 0 para omitir."
1356
 
1357
- #: dashboard/publisher/adverts-edit.php:282
1358
  msgid "Maximum Impressions"
1359
  msgstr ""
1360
 
1361
- #: dashboard/publisher/adverts-edit.php:287
1362
  msgid "Important"
1363
  msgstr ""
1364
 
1365
- #: dashboard/publisher/adverts-edit.php:288
1366
  msgid ""
1367
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1368
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1369
  "14:00 hours. 6AM is 6:00 hours."
1370
  msgstr ""
1371
 
1372
- #: dashboard/publisher/adverts-edit.php:292
1373
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1374
  msgstr ""
1375
 
1376
- #: dashboard/publisher/adverts-edit.php:292
1377
- #: dashboard/publisher/adverts-edit.php:332
1378
- #: dashboard/publisher/adverts-edit.php:376
1379
  #: dashboard/publisher/groups-edit.php:200
1380
  #, fuzzy
1381
  msgid "Upgrade today"
1382
  msgstr "Hoy"
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:299
1385
  #: dashboard/publisher/groups-edit.php:157
1386
  msgid "Advanced"
1387
  msgstr "Avanzado"
1388
 
1389
- #: dashboard/publisher/adverts-edit.php:300
1390
  msgid "Everything below is optional."
1391
  msgstr "Todo lo siguiente es opcional."
1392
 
1393
- #: dashboard/publisher/adverts-edit.php:304
1394
  msgid "Responsive"
1395
  msgstr ""
1396
 
1397
- #: dashboard/publisher/adverts-edit.php:306
1398
  msgid "Enable responsive support for this advert."
1399
  msgstr "Habilitar soporte sensible para este anuncio."
1400
 
1401
- #: dashboard/publisher/adverts-edit.php:307
1402
  msgid ""
1403
  "Upload your images to the banner folder and make sure the filename is in the "
1404
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1408,72 +1398,45 @@ msgstr ""
1408
  "archivo es el siguiente formato; \"nombreimagen.full.ext\". Se recomienda un "
1409
  "conjunto de imágenes del mismo tamaño."
1410
 
1411
- #: dashboard/publisher/adverts-edit.php:313
1412
- #: dashboard/publisher/adverts-main.php:42
1413
- #: dashboard/publisher/groups-edit.php:336
1414
- msgid "Weight"
1415
- msgstr "Prioridad"
1416
-
1417
- #: dashboard/publisher/adverts-edit.php:316
1418
- msgid "Barely visible"
1419
- msgstr "Apenas visible"
1420
-
1421
- #: dashboard/publisher/adverts-edit.php:317
1422
- msgid "Less than average"
1423
- msgstr "Menos de la media"
1424
-
1425
- #: dashboard/publisher/adverts-edit.php:318
1426
- msgid "Normal coverage"
1427
- msgstr "Cobertura normal"
1428
-
1429
- #: dashboard/publisher/adverts-edit.php:319
1430
- msgid "More than average"
1431
- msgstr "Más de la media"
1432
-
1433
- #: dashboard/publisher/adverts-edit.php:320
1434
- msgid "Best visibility"
1435
- msgstr "La mejor visibilidad"
1436
-
1437
- #: dashboard/publisher/adverts-edit.php:325
1438
  #: dashboard/publisher/groups-edit.php:194
1439
  msgid "Sortorder"
1440
  msgstr ""
1441
 
1442
- #: dashboard/publisher/adverts-edit.php:327
1443
  #: dashboard/publisher/groups-edit.php:196
1444
  msgid "For administrative purposes set a sortorder."
1445
  msgstr "A efectos administrativos, establecer una Clasificación normal."
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:327
1448
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1449
  msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1450
 
1451
- #: dashboard/publisher/adverts-edit.php:332
1452
  msgid ""
1453
- "With AdRotate Pro you can set the weight to give adverts more or less "
1454
- "exposure."
1455
  msgstr ""
1456
 
1457
- #: dashboard/publisher/adverts-edit.php:334
1458
  msgid "Geo Targeting in AdRotate Pro"
1459
  msgstr ""
1460
 
1461
- #: dashboard/publisher/adverts-edit.php:335
1462
  msgid ""
1463
  "Assign the advert to a group and enable that group to use Geo Targeting."
1464
  msgstr ""
1465
 
1466
- #: dashboard/publisher/adverts-edit.php:339
1467
  msgid "Cities/States"
1468
  msgstr ""
1469
 
1470
- #: dashboard/publisher/adverts-edit.php:342
1471
  msgid ""
1472
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1473
  "states ISO codes are supported)"
1474
  msgstr ""
1475
 
1476
- #: dashboard/publisher/adverts-edit.php:342
1477
  #, fuzzy
1478
  msgid ""
1479
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1482,73 +1445,69 @@ msgstr ""
1482
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1483
  "escribirlos correctamente!"
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:346
1486
  msgid "Countries"
1487
  msgstr ""
1488
 
1489
- #: dashboard/publisher/adverts-edit.php:371
1490
  msgid "Select the countries you want the adverts to show in."
1491
  msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1492
 
1493
- #: dashboard/publisher/adverts-edit.php:371
1494
  msgid "Cities take priority and will be filtered first."
1495
  msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1496
 
1497
- #: dashboard/publisher/adverts-edit.php:376
1498
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1499
  msgstr ""
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:400
1502
  msgid "Select Groups"
1503
  msgstr "Seleccione Grupos"
1504
 
1505
- #: dashboard/publisher/adverts-edit.php:405
1506
  msgid "ID - Name"
1507
  msgstr "ID - Nombre"
1508
 
1509
- #: dashboard/publisher/adverts-edit.php:406
1510
- msgid "Ads in group"
1511
- msgstr "Anuncios en grupo"
1512
-
1513
- #: dashboard/publisher/adverts-edit.php:415
1514
- #: dashboard/publisher/groups-main.php:61
1515
- #: dashboard/settings/geotargeting.php:29
1516
  msgid "Default"
1517
  msgstr "Predeterminado"
1518
 
1519
- #: dashboard/publisher/adverts-edit.php:416
1520
- #: dashboard/publisher/groups-main.php:62
1521
  msgid "Dynamic"
1522
  msgstr "Dinámico"
1523
 
1524
- #: dashboard/publisher/adverts-edit.php:416
1525
- #: dashboard/publisher/groups-main.php:62
1526
  msgid "second rotation"
1527
  msgstr "segundos rotación"
1528
 
1529
- #: dashboard/publisher/adverts-edit.php:417
1530
- #: dashboard/publisher/groups-main.php:63
1531
  msgid "Block"
1532
  msgstr "Block"
1533
 
1534
- #: dashboard/publisher/adverts-edit.php:417
1535
- #: dashboard/publisher/groups-main.php:63
1536
  msgid "grid"
1537
  msgstr "cuadrícula"
1538
 
1539
- #: dashboard/publisher/adverts-edit.php:418
1540
  #: dashboard/publisher/groups-edit.php:202
1541
- #: dashboard/publisher/groups-main.php:64
1542
  msgid "Post Injection"
1543
  msgstr "Integrarlo después"
1544
 
1545
- #: dashboard/publisher/adverts-edit.php:419
1546
  msgid "Geolocation"
1547
  msgstr "Geolocalización"
1548
 
1549
- #: dashboard/publisher/adverts-edit.php:425
1550
  #: dashboard/publisher/groups-edit.php:61
1551
- #: dashboard/publisher/groups-main.php:71
1552
  msgid "Mode"
1553
  msgstr "Modalidad"
1554
 
@@ -1600,7 +1559,14 @@ msgstr "Anuncios Activos"
1600
  msgid "Export to XML"
1601
  msgstr "Exportar"
1602
 
 
 
 
 
 
1603
  #: dashboard/publisher/adverts-main.php:44
 
 
1604
  msgid "Shown"
1605
  msgstr "Mostrado"
1606
 
@@ -1809,7 +1775,7 @@ msgid ""
1809
  msgstr ""
1810
 
1811
  #: dashboard/publisher/groups-edit.php:184
1812
- #: dashboard/settings/advertisers.php:17
1813
  msgid "Geo Targeting"
1814
  msgstr "Geo Targeting"
1815
 
@@ -1848,7 +1814,7 @@ msgstr ""
1848
 
1849
  #: dashboard/publisher/groups-edit.php:209
1850
  #: dashboard/publisher/groups-edit.php:247
1851
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1852
  msgid "Disabled"
1853
  msgstr "Desactivado"
1854
 
@@ -1962,6 +1928,10 @@ msgstr ""
1962
  msgid "Select adverts"
1963
  msgstr ""
1964
 
 
 
 
 
1965
  #: dashboard/publisher/groups-edit.php:337
1966
  msgid "Visible until"
1967
  msgstr "Visible hasta"
@@ -1986,16 +1956,13 @@ msgstr "Está a punto de eliminar un grupo"
1986
  msgid "This action can not be undone!"
1987
  msgstr "Esta acción no se puede deshacerse!"
1988
 
1989
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
1990
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
1991
  msgid "OK to continue, CANCEL to stop."
1992
  msgstr "OK para continuar, CANCELAR para detenerlo."
1993
 
1994
- #: dashboard/publisher/groups-main.php:41
1995
- msgid "Code"
1996
- msgstr "Código"
1997
-
1998
- #: dashboard/publisher/groups-main.php:86
1999
  msgid "No groups created!"
2000
  msgstr "No hay grupos creados!"
2001
 
@@ -2003,103 +1970,136 @@ msgstr "No hay grupos creados!"
2003
  msgid "Statistics for group"
2004
  msgstr "Estadisticas por Grupo"
2005
 
2006
- #: dashboard/settings/advertisers.php:1
2007
  msgid "Advertisers - Available in AdRotate Pro"
2008
  msgstr ""
2009
 
2010
- #: dashboard/settings/advertisers.php:2
2011
  msgid "Enable advertisers so they can review and manage their own ads."
2012
  msgstr ""
2013
  "Habilitar a los anunciantes para que puedan revisar y gestionar sus propios "
2014
  "anuncios."
2015
 
2016
- #: dashboard/settings/advertisers.php:5
2017
  msgid "Enable Advertisers"
2018
  msgstr "Los Anunciantes pueden"
2019
 
2020
- #: dashboard/settings/advertisers.php:7
2021
  msgid "Allow adverts to be coupled to users (Advertisers)."
2022
  msgstr "Permitir colocar publicidad a los usuarios (Los Anunciantes)."
2023
 
2024
- #: dashboard/settings/advertisers.php:11
2025
  msgid "Edit/update adverts"
2026
  msgstr "Editar/Actualizar Anuncios"
2027
 
2028
- #: dashboard/settings/advertisers.php:13
2029
  msgid "Allow advertisers to add new or edit their adverts."
2030
  msgstr "Permitir a los anunciantes editar sus anuncios o añadir nuevos."
2031
 
2032
- #: dashboard/settings/advertisers.php:19
2033
  msgid ""
2034
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2035
  "be enabled, too."
2036
  msgstr ""
2037
 
2038
- #: dashboard/settings/advertisers.php:23
2039
  msgid "Advertiser role"
2040
  msgstr "Perfil del Anunciante"
2041
 
2042
- #: dashboard/settings/advertisers.php:25
2043
  msgid "Create a seperate user role for your advertisers."
2044
  msgstr ""
2045
 
2046
- #: dashboard/settings/advertisers.php:26
2047
  msgid ""
2048
  "Don't forget to give these users access to their advertiser dashboard via "
2049
  "the Roles tab."
2050
  msgstr ""
2051
 
2052
- #: dashboard/settings/general.php:1
2053
  msgid "General Settings"
2054
  msgstr ""
2055
 
2056
- #: dashboard/settings/general.php:2
2057
  msgid "General settings for AdRotate."
2058
  msgstr ""
2059
 
2060
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2061
  msgid "Load jQuery"
2062
  msgstr "Cargar jQuery"
2063
 
2064
- #: dashboard/settings/general.php:6
2065
  msgid ""
2066
- "jQuery is required for dynamic groups, ad block detection and some other "
2067
- "features. Enable this if your theme does not load jQuery."
2068
  msgstr ""
2069
 
2070
- #: dashboard/settings/general.php:9
2071
  msgid "Load scripts in footer?"
2072
  msgstr ""
2073
 
2074
- #: dashboard/settings/general.php:10
2075
  msgid ""
2076
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2077
  "site."
2078
  msgstr ""
2079
 
2080
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2081
  msgid "Banner Folder"
2082
  msgstr "Carpeta de los Banners"
2083
 
2084
- #: dashboard/settings/general.php:15
2085
  msgid "Set a location where your banner images will be stored."
2086
  msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
2087
 
2088
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2089
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2090
- #: dashboard/settings/statistics.php:38
2091
- msgid "Available in AdRotate Pro!"
2092
- msgstr ""
2093
-
2094
- #: dashboard/settings/general.php:18
2095
  msgid "Location"
2096
  msgstr "Localización"
2097
 
2098
- #: dashboard/settings/general.php:20
2099
  msgid "(Default: wp-content/banners/)."
2100
  msgstr "(Predeterminado: wp-content/banners/)."
2101
 
2102
- #: dashboard/settings/general.php:21
2103
  msgid ""
2104
  "To try and trick ad blockers you could set the folder to something crazy "
2105
  "like:"
@@ -2107,7 +2107,7 @@ msgstr ""
2107
  "Un truco para tratar de bloquear el acceso a los anuncios es asignar a la "
2108
  "carpeta un nombre impensable como:"
2109
 
2110
- #: dashboard/settings/general.php:22
2111
  msgid ""
2112
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2113
  "will show errors when the folder is missing."
@@ -2115,36 +2115,36 @@ msgstr ""
2115
  "Si esta carpeta no existe, el sistema NO LA CREARA de forma automática. "
2116
  "Cuando no se encuentre la carpeta, AdRotate mostrará errores."
2117
 
2118
- #: dashboard/settings/general.php:27
2119
  msgid "Bot filter"
2120
  msgstr "Filtro de Motor de búsqueda"
2121
 
2122
- #: dashboard/settings/general.php:28
2123
  msgid "The bot filter is used for the AdRotate stats tracker."
2124
  msgstr ""
2125
 
2126
- #: dashboard/settings/general.php:31
2127
  msgid "User-Agent Filter"
2128
  msgstr "Filtro de User-Agent"
2129
 
2130
- #: dashboard/settings/general.php:34
2131
  msgid ""
2132
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2133
  msgstr ""
2134
 
2135
- #: dashboard/settings/general.php:35
2136
  msgid ""
2137
  "Keep in mind that this might give false positives. The word 'fire' also "
2138
  "matches 'firefox', but not vice-versa. So be careful!"
2139
  msgstr ""
2140
 
2141
- #: dashboard/settings/general.php:36
2142
  msgid ""
2143
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2144
  "characters are stripped out."
2145
  msgstr ""
2146
 
2147
- #: dashboard/settings/general.php:37
2148
  msgid ""
2149
  "Additionally to the list specified here, empty User-Agents are blocked as "
2150
  "well."
@@ -2152,94 +2152,90 @@ msgstr ""
2152
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
2153
  "bloqueados."
2154
 
2155
- #: dashboard/settings/general.php:37
2156
  msgid "Learn more about"
2157
  msgstr "Más información sobre"
2158
 
2159
- #: dashboard/settings/general.php:37
2160
  msgid "user-agents"
2161
  msgstr "user-agents"
2162
 
2163
- #: dashboard/settings/geotargeting.php:1
2164
  msgid "Geo Targeting - Available in AdRotate Pro"
2165
  msgstr ""
2166
 
2167
- #: dashboard/settings/geotargeting.php:2
2168
  msgid "Target certain areas in the world for better advertising oppurtunities."
2169
  msgstr ""
2170
 
2171
- #: dashboard/settings/geotargeting.php:5
2172
  msgid "Which Geo Service"
2173
  msgstr ""
2174
 
2175
- #: dashboard/settings/geotargeting.php:15
2176
- msgid "No Geo Targeting is available for your adverts."
2177
- msgstr ""
2178
-
2179
- #: dashboard/settings/geotargeting.php:16
2180
  msgid ""
2181
  "The most complete and accurate geo targeting you can get for only $20 USD "
2182
  "per 50000 lookups."
2183
  msgstr ""
2184
 
2185
- #: dashboard/settings/geotargeting.php:18
2186
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2187
  msgstr ""
2188
 
2189
- #: dashboard/settings/geotargeting.php:20
2190
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2191
  msgstr ""
2192
 
2193
- #: dashboard/settings/geotargeting.php:26
2194
  msgid "Geo Cookie Lifespan"
2195
  msgstr ""
2196
 
2197
- #: dashboard/settings/geotargeting.php:35
2198
  msgid "Hours."
2199
  msgstr ""
2200
 
2201
- #: dashboard/settings/geotargeting.php:36
2202
  msgid ""
2203
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2204
  "cookie last? A longer period is less accurate for mobile users but may "
2205
  "reduce the usage of your lookups drastically."
2206
  msgstr ""
2207
 
2208
- #: dashboard/settings/geotargeting.php:42
2209
  msgid "MaxMind City/Country"
2210
  msgstr ""
2211
 
2212
- #: dashboard/settings/geotargeting.php:45
2213
  msgid "Username/Email"
2214
  msgstr ""
2215
 
2216
- #: dashboard/settings/geotargeting.php:49
2217
  msgid "Password/License Key"
2218
  msgstr ""
2219
 
2220
- #: dashboard/settings/maintenance.php:1
2221
  msgid "Maintenance"
2222
  msgstr "Mantenimiento"
2223
 
2224
- #: dashboard/settings/maintenance.php:2
2225
  msgid ""
2226
  "Use these functions when you notice your database is slow, unresponsive and "
2227
  "sluggish."
2228
  msgstr ""
2229
 
2230
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2231
  msgid "Optimize Database"
2232
  msgstr "Optimizar la Base de Datos"
2233
 
2234
- #: dashboard/settings/maintenance.php:7
2235
  msgid "You are about to optimize the AdRotate database."
2236
  msgstr "Vas a optimizar la base de datos AdRotate."
2237
 
2238
- #: dashboard/settings/maintenance.php:7
2239
  msgid "Did you make a backup of your database?"
2240
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
2241
 
2242
- #: dashboard/settings/maintenance.php:7
2243
  msgid ""
2244
  "This may take a moment and may cause your website to respond slow "
2245
  "temporarily!"
@@ -2247,11 +2243,11 @@ msgstr ""
2247
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
2248
  "lentamente temporalmente!"
2249
 
2250
- #: dashboard/settings/maintenance.php:8
2251
  msgid "Cleans up overhead data in the AdRotate tables."
2252
  msgstr "Limpiar los datos generales de las tablas AdRotate."
2253
 
2254
- #: dashboard/settings/maintenance.php:9
2255
  msgid ""
2256
  "Overhead data is accumulated garbage resulting from many changes you've "
2257
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2260,11 +2256,11 @@ msgstr ""
2260
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
2261
  "datos."
2262
 
2263
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2264
  msgid "Clean-up Database"
2265
  msgstr "Limpieza de la Base de Datos"
2266
 
2267
- #: dashboard/settings/maintenance.php:15
2268
  msgid ""
2269
  "You are about to clean up your database. This may delete expired schedules "
2270
  "and older statistics."
@@ -2272,50 +2268,50 @@ msgstr ""
2272
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
2273
  "estadísticas más antigüas."
2274
 
2275
- #: dashboard/settings/maintenance.php:15
2276
  msgid "Are you sure you want to continue?"
2277
  msgstr "¿Está seguro que desea continuar?"
2278
 
2279
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2280
  msgid "This might take a while and may slow down your site during this action!"
2281
  msgstr ""
2282
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
2283
 
2284
- #: dashboard/settings/maintenance.php:16
2285
  msgid "Delete stats older than 356 days (Optional)."
2286
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2287
 
2288
- #: dashboard/settings/maintenance.php:17
2289
  msgid ""
2290
  "AdRotate creates empty records when you start making ads, groups or "
2291
  "schedules. In rare occasions these records are faulty."
2292
  msgstr ""
2293
 
2294
- #: dashboard/settings/maintenance.php:17
2295
  msgid ""
2296
  "If you made an ad, group or schedule that does not save when you make it use "
2297
  "this button to delete those empty records."
2298
  msgstr ""
2299
 
2300
- #: dashboard/settings/maintenance.php:17
2301
  msgid ""
2302
  "Additionally you can clean up old schedules and/or statistics. This will "
2303
  "improve the speed of your site."
2304
  msgstr ""
2305
 
2306
- #: dashboard/settings/maintenance.php:21
2307
  msgid "Re-evaluate Ads"
2308
  msgstr "Reevaluar Anuncios"
2309
 
2310
- #: dashboard/settings/maintenance.php:23
2311
  msgid "Re-evaluate all ads"
2312
  msgstr "Reevaluar todos los Anuncios"
2313
 
2314
- #: dashboard/settings/maintenance.php:23
2315
  msgid "You are about to check all ads for errors."
2316
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2317
 
2318
- #: dashboard/settings/maintenance.php:24
2319
  msgid ""
2320
  "This will apply all evaluation rules to all ads to see if any error slipped "
2321
  "in. Normally you should not need this feature."
@@ -2323,7 +2319,7 @@ msgstr ""
2323
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
2324
  "algún error. Normalmente no debería necesitar esta función."
2325
 
2326
- #: dashboard/settings/maintenance.php:28
2327
  msgid ""
2328
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2329
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2336,11 +2332,11 @@ msgid ""
2336
  "is not a valid point in any case."
2337
  msgstr ""
2338
 
2339
- #: dashboard/settings/maintenance.php:30
2340
  msgid "Troubleshooting"
2341
  msgstr "Solución de problemas"
2342
 
2343
- #: dashboard/settings/maintenance.php:31
2344
  msgid ""
2345
  "The below options are not meant for normal use and are only there for "
2346
  "developers to review saved settings or how ads are selected. These can be "
@@ -2348,19 +2344,19 @@ msgid ""
2348
  "SHOULD BE LEFT UNCHECKED!!"
2349
  msgstr ""
2350
 
2351
- #: dashboard/settings/maintenance.php:34
2352
  msgid "Developer Debug"
2353
  msgstr "Depurar (Test) del Desarrollador"
2354
 
2355
- #: dashboard/settings/maintenance.php:36
2356
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2357
  msgstr ""
2358
 
2359
- #: dashboard/settings/maintenance.php:37
2360
  msgid "View advert specs and (some) stats in the dashboard."
2361
  msgstr ""
2362
 
2363
- #: dashboard/settings/maintenance.php:38
2364
  msgid ""
2365
  "Disable timers for clicks and impressions and enable a alert window for "
2366
  "clicktracking."
@@ -2368,81 +2364,76 @@ msgstr ""
2368
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2369
  "ventana de alerta para el seguimiento de clics."
2370
 
2371
- #: dashboard/settings/maintenance.php:39
2372
  msgid "Temporarily disable encryption on the redirect url."
2373
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
2374
 
2375
- #: dashboard/settings/maintenance.php:44
2376
  msgid "Status and Versions"
2377
  msgstr ""
2378
 
2379
- #: dashboard/settings/maintenance.php:47
2380
  msgid "Current version:"
2381
  msgstr "Versión actual:"
2382
 
2383
- #: dashboard/settings/maintenance.php:48
2384
  msgid "Previous version:"
2385
  msgstr "Versión anterior:"
2386
 
2387
- #: dashboard/settings/maintenance.php:51
2388
  msgid "Current database version:"
2389
  msgstr "Versión actual de la base de datos:"
2390
 
2391
- #: dashboard/settings/maintenance.php:52
2392
  msgid "Previous database version:"
2393
  msgstr "Versión anterior de la base de datos:"
2394
 
2395
- #: dashboard/settings/maintenance.php:55
2396
  msgid "Current status of adverts"
2397
  msgstr "Estado actual de los anuncios"
2398
 
2399
- #: dashboard/settings/maintenance.php:56
2400
  msgid "Normal"
2401
  msgstr "Normal"
2402
 
2403
- #: dashboard/settings/maintenance.php:56
2404
  msgid "Error"
2405
  msgstr "Error"
2406
 
2407
- #: dashboard/settings/maintenance.php:56
2408
  msgid "Expired"
2409
  msgstr "Caducado"
2410
 
2411
- #: dashboard/settings/maintenance.php:56
2412
  msgid "Expires Soon"
2413
  msgstr "Caduca Pronto"
2414
 
2415
- #: dashboard/settings/maintenance.php:56
2416
  msgid "Unknown"
2417
  msgstr ""
2418
 
2419
- #: dashboard/settings/maintenance.php:59
2420
  #, fuzzy
2421
  msgid "Ad evaluation next run:"
2422
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
2423
 
2424
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2425
- #: dashboard/settings/maintenance.php:68
2426
  msgid "Not scheduled!"
2427
  msgstr "No Programada!"
2428
 
2429
- #: dashboard/settings/maintenance.php:63
2430
- msgid "Ad Notifications next run:"
2431
- msgstr ""
2432
-
2433
- #: dashboard/settings/maintenance.php:67
2434
  msgid "Clean Trackerdata next run:"
2435
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
2436
 
2437
- #: dashboard/settings/misc.php:1
2438
  msgid "Miscellaneous"
2439
  msgstr "Varios"
2440
 
2441
- #: dashboard/settings/misc.php:4
2442
  msgid "Widget alignment"
2443
  msgstr "Alineación de Widget"
2444
 
2445
- #: dashboard/settings/misc.php:5
2446
  msgid ""
2447
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2448
  "not always help!)"
@@ -2450,11 +2441,11 @@ msgstr ""
2450
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
2451
  "plantillas (theme). (No siempre ayuda!)"
2452
 
2453
- #: dashboard/settings/misc.php:8
2454
  msgid "Widget padding"
2455
  msgstr "Relleno de Widget"
2456
 
2457
- #: dashboard/settings/misc.php:9
2458
  msgid ""
2459
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2460
  "not always work!)"
@@ -2462,12 +2453,12 @@ msgstr ""
2462
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
2463
  "de los anuncios en los widgets. (No siempre funciona!)"
2464
 
2465
- #: dashboard/settings/misc.php:13
2466
  #, fuzzy
2467
  msgid "NOTICE:"
2468
  msgstr "Aviso"
2469
 
2470
- #: dashboard/settings/misc.php:14
2471
  msgid ""
2472
  "You have enabled W3 Total Caching support but not defined the security hash. "
2473
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2479,15 +2470,15 @@ msgstr ""
2479
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
2480
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
2481
 
2482
- #: dashboard/settings/misc.php:18
2483
  msgid "W3 Total Caching"
2484
  msgstr "W3 Total Cache"
2485
 
2486
- #: dashboard/settings/misc.php:19
2487
  msgid "Check this box if you use W3 Total Caching on your site."
2488
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
2489
 
2490
- #: dashboard/settings/misc.php:23
2491
  msgid ""
2492
  "It may take a while for the ad to start rotating. The caching plugin needs "
2493
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2496,7 +2487,7 @@ msgstr ""
2496
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
2497
  "semana si no se realiza de forma manual."
2498
 
2499
- #: dashboard/settings/misc.php:23
2500
  msgid ""
2501
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2502
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2505,28 +2496,28 @@ msgstr ""
2505
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
2506
  "código PHP la exclusión a ti mismo."
2507
 
2508
- #: dashboard/settings/notifications.php:1
2509
  msgid "Notifications - Available in AdRotate Pro"
2510
  msgstr ""
2511
 
2512
- #: dashboard/settings/notifications.php:2
2513
  msgid "Set up who gets notifications if ads need your attention."
2514
  msgstr ""
2515
  "Configurar para recibir notificaciones si los anuncios requieren su atención."
2516
 
2517
- #: dashboard/settings/notifications.php:5
2518
  msgid "Delivery method"
2519
  msgstr "Método de entrega"
2520
 
2521
- #: dashboard/settings/notifications.php:7
2522
  msgid "Email message."
2523
  msgstr "Mensaje de Correo eléctronico"
2524
 
2525
- #: dashboard/settings/notifications.php:8
2526
  msgid "Push notifications to your smartphone."
2527
  msgstr "Enviar Notificaciones a su smartphone."
2528
 
2529
- #: dashboard/settings/notifications.php:9
2530
  msgid ""
2531
  "Push notifications are delivered through Pushover, a notification service "
2532
  "for Android and iOS"
@@ -2534,7 +2525,7 @@ msgstr ""
2534
  "Las Notificaciones Push se entregan a través de Pushover, un servicio de "
2535
  "notificación para Android y iOS"
2536
 
2537
- #: dashboard/settings/notifications.php:9
2538
  msgid ""
2539
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2540
  "information can be found on the pushover website;"
@@ -2542,45 +2533,45 @@ msgstr ""
2542
  "La App Pushover se compra una sola vez, ya sea para Android y/o iOS. Puede "
2543
  "encontrar más información en la página web"
2544
 
2545
- #: dashboard/settings/notifications.php:13
2546
  msgid "Test notification"
2547
  msgstr ""
2548
 
2549
- #: dashboard/settings/notifications.php:15
2550
  msgid ""
2551
  "This sends a test notification. Before you test, save the options first!"
2552
  msgstr ""
2553
 
2554
- #: dashboard/settings/notifications.php:20
2555
  msgid "Dashboard Notifications"
2556
  msgstr "Notificaciones en el Escritorio"
2557
 
2558
- #: dashboard/settings/notifications.php:21
2559
  msgid "These show to every administrator who can edit adverts."
2560
  msgstr ""
2561
 
2562
- #: dashboard/settings/notifications.php:24
2563
  msgid "Notification banners"
2564
  msgstr ""
2565
 
2566
- #: dashboard/settings/notifications.php:25
2567
  msgid "Disable dashboard notifications."
2568
  msgstr ""
2569
 
2570
- #: dashboard/settings/notifications.php:29
2571
  msgid "Email Notifications"
2572
  msgstr "Notificaciones por correo electrónico"
2573
 
2574
- #: dashboard/settings/notifications.php:30
2575
  msgid "Set up who gets notification emails."
2576
  msgstr "Establecer lo que se recibe en los mensajes de notificación."
2577
 
2578
- #: dashboard/settings/notifications.php:33
2579
- #: dashboard/settings/notifications.php:53
2580
  msgid "Publishers"
2581
  msgstr "Editores"
2582
 
2583
- #: dashboard/settings/notifications.php:36
2584
  msgid ""
2585
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2586
  "list to a minimum!"
@@ -2588,7 +2579,7 @@ msgstr ""
2588
  "Una lista de direcciones de correo electrónico separada por comas. Un máximo "
2589
  "de 5 direcciones. Mantenga esta lista al mínimo!"
2590
 
2591
- #: dashboard/settings/notifications.php:37
2592
  msgid ""
2593
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2594
  "email notifications will be send."
@@ -2596,11 +2587,11 @@ msgstr ""
2596
  "Los mensajes se envían cuando sea necesario una vez cada 24 horas. Si este "
2597
  "campo está vacío, no será envíada ninguna notificación de correo electrónico."
2598
 
2599
- #: dashboard/settings/notifications.php:41
2600
  msgid "Advertisers"
2601
  msgstr "Anunciantes"
2602
 
2603
- #: dashboard/settings/notifications.php:44
2604
  msgid ""
2605
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2606
  "This field may not be empty!"
@@ -2608,11 +2599,11 @@ msgstr ""
2608
  "¿Quién recibe correo electrónico de los anunciantes. Un máximo de 2 "
2609
  "direcciones separadas por comas. Este campo no puede estar vacío!"
2610
 
2611
- #: dashboard/settings/notifications.php:49
2612
  msgid "Push Notifications"
2613
  msgstr "Notificaciones Push"
2614
 
2615
- #: dashboard/settings/notifications.php:50
2616
  msgid ""
2617
  "Receive information about what is happening with your AdRotate setup on your "
2618
  "smartphone via Pushover."
@@ -2620,28 +2611,28 @@ msgstr ""
2620
  "Recibir información acerca de lo que está sucediendo con su configuración "
2621
  "AdRotate en su smartphone a través de Pushover."
2622
 
2623
- #: dashboard/settings/notifications.php:55
2624
  msgid "When you are running out of Geo Targeting Lookups."
2625
  msgstr ""
2626
 
2627
- #: dashboard/settings/notifications.php:56
2628
  msgid "Daily digest of any advert status other than normal."
2629
  msgstr "Resumen diario de cualquier estado de anuncio que no sea normal."
2630
 
2631
- #: dashboard/settings/notifications.php:57
2632
  msgid "Any advertiser saving an advert in your moderation queue."
2633
  msgstr ""
2634
  "Cualquier anunciante puede guardar un anuncio en su cola de moderación."
2635
 
2636
- #: dashboard/settings/notifications.php:58
2637
  msgid "A moderator approved an advert from the moderation queue."
2638
  msgstr "Un moderador aprobó un anuncio de la cola de moderación."
2639
 
2640
- #: dashboard/settings/notifications.php:59
2641
  msgid "A moderator rejected an advert from the moderation queue."
2642
  msgstr "Un moderador rechazó un anuncio de la cola de moderación."
2643
 
2644
- #: dashboard/settings/notifications.php:59
2645
  msgid ""
2646
  "If you have a lot of activity with many advertisers adding/changing adverts "
2647
  "you may get a lot of messages!"
@@ -2649,186 +2640,221 @@ msgstr ""
2649
  "Si tiene una gran cantidad de actividad con muchos anunciantes que agregan o "
2650
  "cambian los anuncios usted puede recibir una gran cantidad de mensajes!"
2651
 
2652
- #: dashboard/settings/notifications.php:64
2653
  msgid "User Key"
2654
  msgstr ""
2655
 
2656
- #: dashboard/settings/notifications.php:66
2657
  msgid "Get your user token"
2658
  msgstr ""
2659
 
2660
- #: dashboard/settings/notifications.php:66
2661
- #: dashboard/settings/notifications.php:72
2662
  msgid "here"
2663
  msgstr ""
2664
 
2665
- #: dashboard/settings/notifications.php:70
2666
  msgid "Api Token"
2667
  msgstr ""
2668
 
2669
- #: dashboard/settings/notifications.php:72
2670
  msgid "Create your"
2671
  msgstr ""
2672
 
2673
- #: dashboard/settings/notifications.php:72
2674
  msgid "App"
2675
  msgstr ""
2676
 
2677
- #: dashboard/settings/notifications.php:72
2678
  msgid "and get your API token"
2679
  msgstr ""
2680
 
2681
- #: dashboard/settings/roles.php:1
2682
  msgid "Roles"
2683
  msgstr ""
2684
 
2685
- #: dashboard/settings/roles.php:2
2686
  msgid "Who has access to what?"
2687
  msgstr "¿Quién tiene acceso a qué?"
2688
 
2689
- #: dashboard/settings/roles.php:5
2690
  msgid "Manage/Add/Edit adverts"
2691
  msgstr "Gestionar/Añadir/Editar anuncios"
2692
 
2693
- #: dashboard/settings/roles.php:9
2694
  msgid "Role to see and add/edit ads."
2695
  msgstr "Perfil para ver y añadir/editar los anuncios."
2696
 
2697
- #: dashboard/settings/roles.php:13
2698
  msgid "Delete/Reset adverts"
2699
  msgstr "Borrar/Restablecer anuncios"
2700
 
2701
- #: dashboard/settings/roles.php:17
2702
  msgid "Role to delete ads and reset stats."
2703
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
2704
 
2705
- #: dashboard/settings/roles.php:21
2706
  msgid "Manage/Add/Edit groups"
2707
  msgstr "Gestionar/Añadir/Editar grupos"
2708
 
2709
- #: dashboard/settings/roles.php:25
2710
  msgid "Role to see and add/edit groups."
2711
  msgstr "Perfil para ver y añadir/editar grupos."
2712
 
2713
- #: dashboard/settings/roles.php:29
2714
  msgid "Delete groups"
2715
  msgstr "Eliminar grupos"
2716
 
2717
- #: dashboard/settings/roles.php:33
2718
  msgid "Role to delete groups."
2719
  msgstr "Perfil para eliminar grupos"
2720
 
2721
- #: dashboard/settings/statistics.php:2
2722
  msgid "Track statistics for your adverts."
2723
  msgstr ""
2724
 
2725
- #: dashboard/settings/statistics.php:5
2726
  msgid "How to track stats"
2727
  msgstr ""
2728
 
2729
- #: dashboard/settings/statistics.php:14
2730
- msgid "No impressions and clicks can be recorded for any of your adverts."
2731
- msgstr ""
2732
-
2733
- #: dashboard/settings/statistics.php:15
2734
  msgid "Tracks impressions and clicks internally"
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2738
- #: dashboard/settings/statistics.php:19
2739
  msgid "manual"
2740
  msgstr ""
2741
 
2742
- #: dashboard/settings/statistics.php:16
2743
  msgid ""
2744
  "Click and Impression recording, Click and impression limits, impression "
2745
- "spread for schedules, local stats display."
 
2746
  msgstr ""
2747
 
2748
- #: dashboard/settings/statistics.php:17
 
 
 
 
2749
  msgid ""
2750
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2751
  "attributes"
2752
  msgstr ""
2753
 
2754
- #: dashboard/settings/statistics.php:18
2755
  msgid ""
2756
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2757
  "Contents."
2758
  msgstr ""
2759
 
2760
- #: dashboard/settings/statistics.php:19
2761
  msgid ""
2762
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2763
  "uses onClick() and onload() in adverts"
2764
  msgstr ""
2765
 
2766
- #: dashboard/settings/statistics.php:20
2767
  msgid ""
2768
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2769
  msgstr ""
2770
 
2771
- #: dashboard/settings/statistics.php:26
2772
  msgid "Internal Tracker"
2773
  msgstr ""
2774
 
2775
- #: dashboard/settings/statistics.php:27
2776
  msgid ""
2777
  "The settings below are for the internal tracker and have no effect when "
2778
  "using Piwik/Google Analytics."
2779
  msgstr ""
2780
 
2781
- #: dashboard/settings/statistics.php:30
2782
  msgid "Logged in impressions"
2783
  msgstr "Contar impresiones"
2784
 
2785
- #: dashboard/settings/statistics.php:32
2786
  msgid "Track impressions from logged in users."
2787
  msgstr ""
2788
 
2789
- #: dashboard/settings/statistics.php:36
2790
  msgid "Logged in clicks"
2791
  msgstr "Contar clics"
2792
 
2793
- #: dashboard/settings/statistics.php:38
2794
  msgid "Track clicks from logged in users."
2795
  msgstr "Seguimiento de los clics de los usuarios registrados."
2796
 
2797
- #: dashboard/settings/statistics.php:42
2798
- msgid "Impressions timer"
2799
- msgstr "Temporizador de Impresiones"
2800
 
2801
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2802
  msgid "Seconds."
2803
  msgstr "Segundos."
2804
 
2805
- #: dashboard/settings/statistics.php:45
2806
  #, fuzzy
2807
  msgid "Default: 60."
2808
  msgstr "Predeterminado"
2809
 
2810
- #: dashboard/settings/statistics.php:45
2811
  #, fuzzy
2812
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2813
  msgstr ""
2814
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
2815
 
2816
- #: dashboard/settings/statistics.php:49
2817
- msgid "Clicks timer"
2818
- msgstr "Temporizador de Clics"
2819
 
2820
- #: dashboard/settings/statistics.php:52
2821
  #, fuzzy
2822
  msgid "Default: 86400."
2823
  msgstr "Predeterminado"
2824
 
2825
- #: dashboard/settings/statistics.php:52
2826
  #, fuzzy
2827
  msgid ""
2828
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2829
  msgstr ""
2830
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2831
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2832
  #, fuzzy
2833
  #~ msgid "Learn More"
2834
  #~ msgstr "Aprender más"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
9
  "Language: es_ES\n"
240
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
241
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
242
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
243
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
244
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
245
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
246
+ #: dashboard/settings/geotargeting.php:26
247
  #, fuzzy
248
  msgid "Buy now"
249
  msgstr "Comprar"
343
  msgid "on WordPress.org to help AdRotate grow in a positive way"
344
  msgstr ""
345
 
346
+ #: adrotate-output.php:887
347
  msgid "Available in AdRotate Pro"
348
  msgstr "Disponible en AdRotate Pro"
349
 
359
  msgid "Learn more"
360
  msgstr "Aprender más"
361
 
362
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
363
+ #: dashboard/publisher/adverts-edit.php:240
364
  msgid "January"
365
  msgstr "Enero"
366
 
367
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
368
+ #: dashboard/publisher/adverts-edit.php:241
369
  msgid "February"
370
  msgstr "Febrero"
371
 
372
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
373
+ #: dashboard/publisher/adverts-edit.php:242
374
  msgid "March"
375
  msgstr "Marzo"
376
 
377
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
378
+ #: dashboard/publisher/adverts-edit.php:243
379
  msgid "April"
380
  msgstr "Abril"
381
 
382
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
383
+ #: dashboard/publisher/adverts-edit.php:244
384
  msgid "May"
385
  msgstr "Mayo"
386
 
387
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
388
+ #: dashboard/publisher/adverts-edit.php:245
389
  msgid "June"
390
  msgstr "Junio"
391
 
392
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
393
+ #: dashboard/publisher/adverts-edit.php:246
394
  msgid "July"
395
  msgstr "Julio"
396
 
397
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
398
+ #: dashboard/publisher/adverts-edit.php:247
399
  msgid "August"
400
  msgstr "Agosto"
401
 
402
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
403
+ #: dashboard/publisher/adverts-edit.php:248
404
  msgid "September"
405
  msgstr "Septiembre"
406
 
407
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
408
+ #: dashboard/publisher/adverts-edit.php:249
409
  msgid "October"
410
  msgstr "Octubre"
411
 
412
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
413
+ #: dashboard/publisher/adverts-edit.php:250
414
  msgid "November"
415
  msgstr "Noviembre"
416
 
417
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
418
+ #: dashboard/publisher/adverts-edit.php:251
419
  msgid "December"
420
  msgstr "Diciembre"
421
 
531
  msgstr "Administración de Grupos"
532
 
533
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
534
+ #: dashboard/publisher/groups-main.php:70
535
  msgid "Report"
536
  msgstr "Informe"
537
 
546
  "AdRotate Pro."
547
  msgstr ""
548
 
549
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
550
  #: dashboard/publisher/adverts-main.php:114
551
  #: dashboard/publisher/groups-edit.php:75
552
+ #: dashboard/publisher/groups-main.php:89
553
  #, fuzzy
554
  msgid "More information"
555
  msgstr "Más información..."
586
  msgid "End"
587
  msgstr "Finalizar"
588
 
589
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
590
  #: dashboard/publisher/groups-main.php:34
591
  msgid "Ads"
592
  msgstr "Anuncios"
593
 
594
  #: adrotate.php:428
 
 
 
 
595
  msgid "Max Impressions"
596
  msgstr "Número máximo de Impresiones"
597
 
598
+ #: adrotate.php:429
599
+ msgid "Max Clicks"
600
+ msgstr "Número máximo de Clics"
601
+
602
  #: adrotate.php:459
603
  #, fuzzy
604
  msgid "No schedules created yet!"
691
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
692
  "de imágenes del mismo tamaño."
693
 
694
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
695
  msgid ""
696
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
697
  "filename instead of \".full\" for the various viewports."
700
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
701
  "diferentes visores."
702
 
703
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
704
  #: dashboard/publisher/groups-edit.php:312
705
  #: dashboard/publisher/groups-edit.php:320
706
  msgid "Example:"
707
  msgstr "Ejemplo:"
708
 
709
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
710
  #, fuzzy
711
  msgid ""
712
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
806
  "forum. Get a solution (usually) within a day."
807
  msgstr ""
808
 
809
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
810
  msgid "AdRotate is brought to you by"
811
  msgstr "AdRotate es ofrecido por"
812
 
813
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
814
  msgid ""
815
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
816
+ "starters or people looking for a new direction!"
817
  msgstr ""
818
 
 
 
 
 
819
  #: dashboard/adrotatepro.php:58
820
  msgid "Schedule all campaigns with ease"
821
  msgstr "Programe todas las campañas con facilidad"
842
  msgstr ""
843
 
844
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
845
+ #: dashboard/info.php:93 dashboard/info.php:105
846
  msgid "Buy AdRotate Professional"
847
  msgstr "Comprar AdRotate Profesional"
848
 
849
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
850
  msgid "Single License"
851
  msgstr ""
852
 
853
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
854
  msgid "For one WordPress installation."
855
  msgstr "Para una instalación de WordPress."
856
 
857
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
858
+ #: dashboard/info.php:98 dashboard/info.php:110
859
  msgid "Duo License"
860
  msgstr "Duo Licencia"
861
 
862
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
863
  msgid "For two WordPress installations."
864
  msgstr "Para dos instalaciónes de WordPress."
865
 
866
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
867
+ #: dashboard/info.php:99 dashboard/info.php:111
868
  msgid "Multi License"
869
  msgstr "Multi Licencia"
870
 
871
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
872
  msgid " For up to five WordPress installations."
873
  msgstr "Para un máximo de cinco instalaciones de WordPress."
874
 
875
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
876
+ #: dashboard/info.php:100 dashboard/info.php:112
877
  msgid "Developer License"
878
  msgstr "Developer Licencia"
879
 
880
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
881
  msgid "Unlimited WordPress installations and/or networks."
882
  msgstr ""
883
 
884
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
885
+ #: dashboard/info.php:101 dashboard/info.php:114
886
  msgid "Compare licenses"
887
  msgstr "Comparar licencias"
888
 
889
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
890
  msgid "Not sure which license is for you? Compare them..."
891
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
892
 
893
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
894
  msgid "All Licenses"
895
  msgstr "Todas las licencias"
896
 
897
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
898
  msgid "Lifetime License"
899
  msgstr ""
900
 
901
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
902
  msgid "Single installation."
903
  msgstr ""
904
 
905
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
906
  msgid "Up to 2 installations."
907
  msgstr ""
908
 
909
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
910
  msgid "Up to 10 installations."
911
  msgstr ""
912
 
913
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
914
  msgid "Up to 25 installations or multisite networks."
915
  msgstr ""
916
 
917
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
918
  msgid ""
919
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
920
  msgstr ""
921
 
922
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
923
  msgid "Not sure which license is for you?"
924
  msgstr ""
925
 
926
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
927
  msgid "Compare Licenses"
928
  msgstr ""
929
 
930
+ #: dashboard/info.php:24
931
  msgid "Currently"
932
  msgstr "En la actualidad"
933
 
934
+ #: dashboard/info.php:30
935
  msgid "Your setup"
936
  msgstr "Su configuración"
937
 
938
+ #: dashboard/info.php:31
939
  msgid "Adverts that need you"
940
  msgstr "Estos Anuncios"
941
 
942
+ #: dashboard/info.php:37
943
  msgid "Adverts"
944
  msgstr "Anuncios"
945
 
946
+ #: dashboard/info.php:38
947
  msgid "(Almost) Expired"
948
  msgstr "Expirados (o casi)"
949
 
950
+ #: dashboard/info.php:41
951
  msgid "Groups"
952
  msgstr "Grupos"
953
 
954
+ #: dashboard/info.php:42
955
  msgid "Have errors"
956
  msgstr "Tienen errores"
957
 
958
+ #: dashboard/info.php:48
959
  msgid "Support AdRotate"
960
  msgstr "Apoye a AdRotate"
961
 
962
+ #: dashboard/info.php:55
963
  msgid "Your gift helps ensure the continued development of AdRotate!"
964
  msgstr ""
965
 
966
+ #: dashboard/info.php:55
967
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
968
  msgstr ""
969
 
970
+ #: dashboard/info.php:64
971
  msgid "AdRotate News and Developer Blog"
972
  msgstr "Noticias y Blog del Desarrollador de AdRotate "
973
 
974
+ #: dashboard/info.php:86
975
  msgid "Get more features with AdRotate Pro"
976
  msgstr "Obtenga más funciones con AdRotate Pro"
977
 
978
+ #: dashboard/info.php:89
979
  msgid ""
980
  "Benefit from extra features to reinforce your income with advertising "
981
  "campaigns. Make the most of your website with the powerful tools AdRotate "
986
  "las potentes herramientas que AdRotate Pro le ofrece, además de las "
987
  "funcionalidades más que fiables incluidas en la versión gratuita."
988
 
989
+ #: dashboard/info.php:89
990
  msgid "Want to know more about"
991
  msgstr ""
992
 
993
+ #: dashboard/info.php:89
994
  msgid "Visit the"
995
  msgstr "Visite la"
996
 
997
+ #: dashboard/info.php:89
998
  msgid "website"
999
  msgstr "página web"
1000
 
 
 
 
 
1001
  #: dashboard/publisher/adverts-disabled.php:15
1002
  msgid "Disabled Ads"
1003
  msgstr "Desactivar Anuncios"
1004
 
1005
  #: dashboard/publisher/adverts-disabled.php:21
1006
+ #: dashboard/publisher/adverts-edit.php:175
1007
  msgid "Activate"
1008
  msgstr "Activar"
1009
 
1028
 
1029
  #: dashboard/publisher/adverts-disabled.php:38
1030
  #: dashboard/publisher/adverts-report.php:34
 
 
1031
  #: dashboard/publisher/groups-report.php:40
1032
  msgid "Impressions"
1033
  msgstr "Impresiones"
1051
  #: dashboard/publisher/adverts-disabled.php:74
1052
  #: dashboard/publisher/adverts-error.php:64
1053
  #: dashboard/publisher/adverts-main.php:87
1054
+ #: dashboard/publisher/groups-main.php:70
1055
  msgid "Edit"
1056
  msgstr "Editar"
1057
 
1176
  "click to add it."
1177
  msgstr ""
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:140
1180
+ msgid "Preview"
1181
+ msgstr "Vista previa"
1182
+
1183
+ #: dashboard/publisher/adverts-edit.php:143
1184
+ msgid ""
1185
+ "Note: While this preview is an accurate one, it might look different then it "
1186
+ "does on the website."
1187
+ msgstr ""
1188
+ "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1189
+ "precisa, en su pagina web puede tener un aspecto diferente."
1190
+
1191
+ #: dashboard/publisher/adverts-edit.php:144
1192
+ msgid ""
1193
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1194
+ msgstr ""
1195
+ "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1196
+ "activo el archivo CSS de las plantillas (themes)!"
1197
+
1198
+ #: dashboard/publisher/adverts-edit.php:149
1199
  msgid "Banner asset"
1200
  msgstr ""
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:152
1203
  msgid "WordPress media:"
1204
  msgstr ""
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:152
1207
  msgid "Select Banner"
1208
  msgstr "Seleccionar Banner"
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:154
1211
  msgid "- OR -"
1212
  msgstr "- O -"
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:156
1215
  msgid "Banner folder:"
1216
  msgstr "Carpeta Banner:"
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:157
1219
  msgid "No image selected"
1220
  msgstr "Ninguna imagen seleccionada"
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:161
1223
  msgid "Use %image% in the adcode instead of the file path."
1224
  msgstr ""
1225
 
1226
+ #: dashboard/publisher/adverts-edit.php:161
1227
  msgid ""
1228
  "Use either the text field or the dropdown. If the textfield has content that "
1229
  "field has priority."
1231
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1232
  "un contenido, ese campo tiene prioridad."
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:166
1235
+ #: dashboard/settings/statistics.php:12
1236
  msgid "Statistics"
1237
  msgstr "Estadísticas"
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:168
1240
  msgid "Enable click and impression tracking for this advert."
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:169
1244
  msgid ""
1245
  "Note: Clicktracking does not work for Javascript adverts such as those "
1246
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1247
+ "always supported."
1248
  msgstr ""
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:179
1251
  msgid "Yes, this ad will be used"
1252
  msgstr "Sí, se utilizará este anuncio"
1253
 
1254
+ #: dashboard/publisher/adverts-edit.php:180
1255
  msgid "No, do not show this ad anywhere"
1256
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:187
1259
  #: dashboard/publisher/adverts-main.php:114
1260
  #: dashboard/publisher/groups-edit.php:75
1261
+ #: dashboard/publisher/groups-main.php:89
1262
  #, fuzzy
1263
  msgid "Get more features with AdRotate Pro."
1264
  msgstr "Obtenga más funciones con AdRotate Pro"
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:190
1267
+ #: dashboard/publisher/adverts-edit.php:290
1268
+ #: dashboard/publisher/adverts-edit.php:378
1269
+ #: dashboard/publisher/adverts-edit.php:419
1270
  msgid "Save Advert"
1271
  msgstr "Guardar Anuncio"
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:191
1274
+ #: dashboard/publisher/adverts-edit.php:291
1275
+ #: dashboard/publisher/adverts-edit.php:379
1276
+ #: dashboard/publisher/adverts-edit.php:420
1277
  #: dashboard/publisher/groups-edit.php:154
1278
  #: dashboard/publisher/groups-edit.php:301
1279
  #: dashboard/publisher/groups-edit.php:393
1280
  msgid "Cancel"
1281
  msgstr "Cancelar"
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:194
1284
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1285
  #: dashboard/publisher/groups-edit.php:136
1286
  #: dashboard/publisher/groups-edit.php:283
1287
  msgid "Usage"
1288
  msgstr "Utilización"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:198
1291
+ #: dashboard/publisher/adverts-edit.php:365
1292
  #: dashboard/publisher/groups-edit.php:140
1293
  #: dashboard/publisher/groups-edit.php:287
1294
  msgid "Widget"
1295
  msgstr ""
1296
 
1297
+ #: dashboard/publisher/adverts-edit.php:199
1298
+ #: dashboard/publisher/adverts-edit.php:366
1299
  msgid ""
1300
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1301
  "and enter ID"
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:202
1305
+ #: dashboard/publisher/adverts-edit.php:369
1306
  #: dashboard/publisher/groups-edit.php:144
1307
  #: dashboard/publisher/groups-edit.php:291
1308
  msgid "In a post or page"
1309
  msgstr ""
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:204
1312
+ #: dashboard/publisher/adverts-edit.php:371
1313
  #: dashboard/publisher/groups-edit.php:146
1314
  #: dashboard/publisher/groups-edit.php:293
1315
  msgid "Directly in a theme"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:210
1319
  msgid "Schedule your advert"
1320
  msgstr ""
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:214
1323
  msgid "Start date (day/month/year)"
1324
  msgstr ""
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:235
1327
  msgid "End date (day/month/year)"
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:258
1331
  msgid "Start time (hh:mm)"
1332
  msgstr ""
1333
 
1334
+ #: dashboard/publisher/adverts-edit.php:265
1335
  msgid "End time (hh:mm)"
1336
  msgstr ""
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:275
1339
  msgid "Maximum Clicks"
1340
  msgstr ""
1341
 
1342
+ #: dashboard/publisher/adverts-edit.php:276
1343
+ #: dashboard/publisher/adverts-edit.php:278
1344
  msgid "Leave empty or 0 to skip this."
1345
  msgstr "Dejar en blanco o 0 para omitir."
1346
 
1347
+ #: dashboard/publisher/adverts-edit.php:277
1348
  msgid "Maximum Impressions"
1349
  msgstr ""
1350
 
1351
+ #: dashboard/publisher/adverts-edit.php:282
1352
  msgid "Important"
1353
  msgstr ""
1354
 
1355
+ #: dashboard/publisher/adverts-edit.php:283
1356
  msgid ""
1357
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1358
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1359
  "14:00 hours. 6AM is 6:00 hours."
1360
  msgstr ""
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:287
1363
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1364
  msgstr ""
1365
 
1366
+ #: dashboard/publisher/adverts-edit.php:287
1367
+ #: dashboard/publisher/adverts-edit.php:315
1368
+ #: dashboard/publisher/adverts-edit.php:359
1369
  #: dashboard/publisher/groups-edit.php:200
1370
  #, fuzzy
1371
  msgid "Upgrade today"
1372
  msgstr "Hoy"
1373
 
1374
+ #: dashboard/publisher/adverts-edit.php:294
1375
  #: dashboard/publisher/groups-edit.php:157
1376
  msgid "Advanced"
1377
  msgstr "Avanzado"
1378
 
1379
+ #: dashboard/publisher/adverts-edit.php:295
1380
  msgid "Everything below is optional."
1381
  msgstr "Todo lo siguiente es opcional."
1382
 
1383
+ #: dashboard/publisher/adverts-edit.php:299
1384
  msgid "Responsive"
1385
  msgstr ""
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:301
1388
  msgid "Enable responsive support for this advert."
1389
  msgstr "Habilitar soporte sensible para este anuncio."
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:302
1392
  msgid ""
1393
  "Upload your images to the banner folder and make sure the filename is in the "
1394
  "following format; \"imagename.full.ext\". A full set of sized images is "
1398
  "archivo es el siguiente formato; \"nombreimagen.full.ext\". Se recomienda un "
1399
  "conjunto de imágenes del mismo tamaño."
1400
 
1401
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1402
  #: dashboard/publisher/groups-edit.php:194
1403
  msgid "Sortorder"
1404
  msgstr ""
1405
 
1406
+ #: dashboard/publisher/adverts-edit.php:310
1407
  #: dashboard/publisher/groups-edit.php:196
1408
  msgid "For administrative purposes set a sortorder."
1409
  msgstr "A efectos administrativos, establecer una Clasificación normal."
1410
 
1411
+ #: dashboard/publisher/adverts-edit.php:310
1412
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1413
  msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1414
 
1415
+ #: dashboard/publisher/adverts-edit.php:315
1416
  msgid ""
1417
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1418
  msgstr ""
1419
 
1420
+ #: dashboard/publisher/adverts-edit.php:317
1421
  msgid "Geo Targeting in AdRotate Pro"
1422
  msgstr ""
1423
 
1424
+ #: dashboard/publisher/adverts-edit.php:318
1425
  msgid ""
1426
  "Assign the advert to a group and enable that group to use Geo Targeting."
1427
  msgstr ""
1428
 
1429
+ #: dashboard/publisher/adverts-edit.php:322
1430
  msgid "Cities/States"
1431
  msgstr ""
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:325
1434
  msgid ""
1435
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1436
  "states ISO codes are supported)"
1437
  msgstr ""
1438
 
1439
+ #: dashboard/publisher/adverts-edit.php:325
1440
  #, fuzzy
1441
  msgid ""
1442
  "AdRotate does not check the validity of names so make sure you spell them "
1445
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1446
  "escribirlos correctamente!"
1447
 
1448
+ #: dashboard/publisher/adverts-edit.php:329
1449
  msgid "Countries"
1450
  msgstr ""
1451
 
1452
+ #: dashboard/publisher/adverts-edit.php:354
1453
  msgid "Select the countries you want the adverts to show in."
1454
  msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1455
 
1456
+ #: dashboard/publisher/adverts-edit.php:354
1457
  msgid "Cities take priority and will be filtered first."
1458
  msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1459
 
1460
+ #: dashboard/publisher/adverts-edit.php:359
1461
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1462
  msgstr ""
1463
 
1464
+ #: dashboard/publisher/adverts-edit.php:383
1465
  msgid "Select Groups"
1466
  msgstr "Seleccione Grupos"
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:388
1469
  msgid "ID - Name"
1470
  msgstr "ID - Nombre"
1471
 
1472
+ #: dashboard/publisher/adverts-edit.php:398
1473
+ #: dashboard/publisher/groups-main.php:60
1474
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
1475
  msgid "Default"
1476
  msgstr "Predeterminado"
1477
 
1478
+ #: dashboard/publisher/adverts-edit.php:399
1479
+ #: dashboard/publisher/groups-main.php:61
1480
  msgid "Dynamic"
1481
  msgstr "Dinámico"
1482
 
1483
+ #: dashboard/publisher/adverts-edit.php:399
1484
+ #: dashboard/publisher/groups-main.php:61
1485
  msgid "second rotation"
1486
  msgstr "segundos rotación"
1487
 
1488
+ #: dashboard/publisher/adverts-edit.php:400
1489
+ #: dashboard/publisher/groups-main.php:62
1490
  msgid "Block"
1491
  msgstr "Block"
1492
 
1493
+ #: dashboard/publisher/adverts-edit.php:400
1494
+ #: dashboard/publisher/groups-main.php:62
1495
  msgid "grid"
1496
  msgstr "cuadrícula"
1497
 
1498
+ #: dashboard/publisher/adverts-edit.php:401
1499
  #: dashboard/publisher/groups-edit.php:202
1500
+ #: dashboard/publisher/groups-main.php:63
1501
  msgid "Post Injection"
1502
  msgstr "Integrarlo después"
1503
 
1504
+ #: dashboard/publisher/adverts-edit.php:402
1505
  msgid "Geolocation"
1506
  msgstr "Geolocalización"
1507
 
1508
+ #: dashboard/publisher/adverts-edit.php:408
1509
  #: dashboard/publisher/groups-edit.php:61
1510
+ #: dashboard/publisher/groups-main.php:70
1511
  msgid "Mode"
1512
  msgstr "Modalidad"
1513
 
1559
  msgid "Export to XML"
1560
  msgstr "Exportar"
1561
 
1562
+ #: dashboard/publisher/adverts-main.php:42
1563
+ #: dashboard/publisher/groups-edit.php:336
1564
+ msgid "Weight"
1565
+ msgstr "Prioridad"
1566
+
1567
  #: dashboard/publisher/adverts-main.php:44
1568
+ #: dashboard/publisher/groups-edit.php:333
1569
+ #: dashboard/publisher/groups-main.php:36
1570
  msgid "Shown"
1571
  msgstr "Mostrado"
1572
 
1775
  msgstr ""
1776
 
1777
  #: dashboard/publisher/groups-edit.php:184
1778
+ #: dashboard/settings/advertisers.php:28
1779
  msgid "Geo Targeting"
1780
  msgstr "Geo Targeting"
1781
 
1814
 
1815
  #: dashboard/publisher/groups-edit.php:209
1816
  #: dashboard/publisher/groups-edit.php:247
1817
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1818
  msgid "Disabled"
1819
  msgstr "Desactivado"
1820
 
1928
  msgid "Select adverts"
1929
  msgstr ""
1930
 
1931
+ #: dashboard/publisher/groups-edit.php:331
1932
+ msgid "Choose adverts"
1933
+ msgstr ""
1934
+
1935
  #: dashboard/publisher/groups-edit.php:337
1936
  msgid "Visible until"
1937
  msgstr "Visible hasta"
1956
  msgid "This action can not be undone!"
1957
  msgstr "Esta acción no se puede deshacerse!"
1958
 
1959
+ #: dashboard/publisher/groups-main.php:24
1960
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1961
+ #: dashboard/settings/maintenance.php:34
1962
  msgid "OK to continue, CANCEL to stop."
1963
  msgstr "OK para continuar, CANCELAR para detenerlo."
1964
 
1965
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1966
  msgid "No groups created!"
1967
  msgstr "No hay grupos creados!"
1968
 
1970
  msgid "Statistics for group"
1971
  msgstr "Estadisticas por Grupo"
1972
 
1973
+ #: dashboard/settings/advertisers.php:12
1974
  msgid "Advertisers - Available in AdRotate Pro"
1975
  msgstr ""
1976
 
1977
+ #: dashboard/settings/advertisers.php:13
1978
  msgid "Enable advertisers so they can review and manage their own ads."
1979
  msgstr ""
1980
  "Habilitar a los anunciantes para que puedan revisar y gestionar sus propios "
1981
  "anuncios."
1982
 
1983
+ #: dashboard/settings/advertisers.php:16
1984
  msgid "Enable Advertisers"
1985
  msgstr "Los Anunciantes pueden"
1986
 
1987
+ #: dashboard/settings/advertisers.php:18
1988
  msgid "Allow adverts to be coupled to users (Advertisers)."
1989
  msgstr "Permitir colocar publicidad a los usuarios (Los Anunciantes)."
1990
 
1991
+ #: dashboard/settings/advertisers.php:22
1992
  msgid "Edit/update adverts"
1993
  msgstr "Editar/Actualizar Anuncios"
1994
 
1995
+ #: dashboard/settings/advertisers.php:24
1996
  msgid "Allow advertisers to add new or edit their adverts."
1997
  msgstr "Permitir a los anunciantes editar sus anuncios o añadir nuevos."
1998
 
1999
+ #: dashboard/settings/advertisers.php:30
2000
  msgid ""
2001
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2002
  "be enabled, too."
2003
  msgstr ""
2004
 
2005
+ #: dashboard/settings/advertisers.php:34
2006
  msgid "Advertiser role"
2007
  msgstr "Perfil del Anunciante"
2008
 
2009
+ #: dashboard/settings/advertisers.php:36
2010
  msgid "Create a seperate user role for your advertisers."
2011
  msgstr ""
2012
 
2013
+ #: dashboard/settings/advertisers.php:37
2014
  msgid ""
2015
  "Don't forget to give these users access to their advertiser dashboard via "
2016
  "the Roles tab."
2017
  msgstr ""
2018
 
2019
+ #: dashboard/settings/general.php:12
2020
  msgid "General Settings"
2021
  msgstr ""
2022
 
2023
+ #: dashboard/settings/general.php:13
2024
  msgid "General settings for AdRotate."
2025
  msgstr ""
2026
 
2027
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2028
+ msgid "Some options are only available in AdRotate Pro!"
2029
+ msgstr ""
2030
+
2031
+ #: dashboard/settings/general.php:16
2032
+ msgid "Text widgets"
2033
+ msgstr ""
2034
+
2035
+ #: dashboard/settings/general.php:17
2036
+ msgid ""
2037
+ "Enable if your theme does not support shortcodes in the WordPress text "
2038
+ "widget."
2039
+ msgstr ""
2040
+
2041
+ #: dashboard/settings/general.php:20
2042
  msgid "Load jQuery"
2043
  msgstr "Cargar jQuery"
2044
 
2045
+ #: dashboard/settings/general.php:21
2046
  msgid ""
2047
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2048
+ "groups, statistics and some other features."
2049
  msgstr ""
2050
 
2051
+ #: dashboard/settings/general.php:24
2052
  msgid "Load scripts in footer?"
2053
  msgstr ""
2054
 
2055
+ #: dashboard/settings/general.php:25
2056
  msgid ""
2057
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2058
  "site."
2059
  msgstr ""
2060
 
2061
+ #: dashboard/settings/general.php:28
2062
+ msgid "Adblock disguise"
2063
+ msgstr ""
2064
+
2065
+ #: dashboard/settings/general.php:30
2066
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2067
+ msgstr ""
2068
+
2069
+ #: dashboard/settings/general.php:31
2070
+ msgid ""
2071
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2072
+ msgstr ""
2073
+
2074
+ #: dashboard/settings/general.php:31
2075
+ msgid ""
2076
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2077
+ "instead of the AdRotate widget."
2078
+ msgstr ""
2079
+
2080
+ #: dashboard/settings/general.php:31
2081
+ msgid ""
2082
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2083
+ "feature will have little effect!"
2084
+ msgstr ""
2085
+
2086
+ #: dashboard/settings/general.php:36
2087
  msgid "Banner Folder"
2088
  msgstr "Carpeta de los Banners"
2089
 
2090
+ #: dashboard/settings/general.php:37
2091
  msgid "Set a location where your banner images will be stored."
2092
  msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
2093
 
2094
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2095
  msgid "Location"
2096
  msgstr "Localización"
2097
 
2098
+ #: dashboard/settings/general.php:42
2099
  msgid "(Default: wp-content/banners/)."
2100
  msgstr "(Predeterminado: wp-content/banners/)."
2101
 
2102
+ #: dashboard/settings/general.php:43
2103
  msgid ""
2104
  "To try and trick ad blockers you could set the folder to something crazy "
2105
  "like:"
2107
  "Un truco para tratar de bloquear el acceso a los anuncios es asignar a la "
2108
  "carpeta un nombre impensable como:"
2109
 
2110
+ #: dashboard/settings/general.php:44
2111
  msgid ""
2112
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2113
  "will show errors when the folder is missing."
2115
  "Si esta carpeta no existe, el sistema NO LA CREARA de forma automática. "
2116
  "Cuando no se encuentre la carpeta, AdRotate mostrará errores."
2117
 
2118
+ #: dashboard/settings/general.php:49
2119
  msgid "Bot filter"
2120
  msgstr "Filtro de Motor de búsqueda"
2121
 
2122
+ #: dashboard/settings/general.php:50
2123
  msgid "The bot filter is used for the AdRotate stats tracker."
2124
  msgstr ""
2125
 
2126
+ #: dashboard/settings/general.php:53
2127
  msgid "User-Agent Filter"
2128
  msgstr "Filtro de User-Agent"
2129
 
2130
+ #: dashboard/settings/general.php:56
2131
  msgid ""
2132
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2133
  msgstr ""
2134
 
2135
+ #: dashboard/settings/general.php:57
2136
  msgid ""
2137
  "Keep in mind that this might give false positives. The word 'fire' also "
2138
  "matches 'firefox', but not vice-versa. So be careful!"
2139
  msgstr ""
2140
 
2141
+ #: dashboard/settings/general.php:58
2142
  msgid ""
2143
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2144
  "characters are stripped out."
2145
  msgstr ""
2146
 
2147
+ #: dashboard/settings/general.php:59
2148
  msgid ""
2149
  "Additionally to the list specified here, empty User-Agents are blocked as "
2150
  "well."
2152
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
2153
  "bloqueados."
2154
 
2155
+ #: dashboard/settings/general.php:59
2156
  msgid "Learn more about"
2157
  msgstr "Más información sobre"
2158
 
2159
+ #: dashboard/settings/general.php:59
2160
  msgid "user-agents"
2161
  msgstr "user-agents"
2162
 
2163
+ #: dashboard/settings/geotargeting.php:12
2164
  msgid "Geo Targeting - Available in AdRotate Pro"
2165
  msgstr ""
2166
 
2167
+ #: dashboard/settings/geotargeting.php:13
2168
  msgid "Target certain areas in the world for better advertising oppurtunities."
2169
  msgstr ""
2170
 
2171
+ #: dashboard/settings/geotargeting.php:16
2172
  msgid "Which Geo Service"
2173
  msgstr ""
2174
 
2175
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2176
  msgid ""
2177
  "The most complete and accurate geo targeting you can get for only $20 USD "
2178
  "per 50000 lookups."
2179
  msgstr ""
2180
 
2181
+ #: dashboard/settings/geotargeting.php:28
2182
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2183
  msgstr ""
2184
 
2185
+ #: dashboard/settings/geotargeting.php:30
2186
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2187
  msgstr ""
2188
 
2189
+ #: dashboard/settings/geotargeting.php:36
2190
  msgid "Geo Cookie Lifespan"
2191
  msgstr ""
2192
 
2193
+ #: dashboard/settings/geotargeting.php:45
2194
  msgid "Hours."
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/geotargeting.php:46
2198
  msgid ""
2199
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2200
  "cookie last? A longer period is less accurate for mobile users but may "
2201
  "reduce the usage of your lookups drastically."
2202
  msgstr ""
2203
 
2204
+ #: dashboard/settings/geotargeting.php:52
2205
  msgid "MaxMind City/Country"
2206
  msgstr ""
2207
 
2208
+ #: dashboard/settings/geotargeting.php:55
2209
  msgid "Username/Email"
2210
  msgstr ""
2211
 
2212
+ #: dashboard/settings/geotargeting.php:59
2213
  msgid "Password/License Key"
2214
  msgstr ""
2215
 
2216
+ #: dashboard/settings/maintenance.php:12
2217
  msgid "Maintenance"
2218
  msgstr "Mantenimiento"
2219
 
2220
+ #: dashboard/settings/maintenance.php:13
2221
  msgid ""
2222
  "Use these functions when you notice your database is slow, unresponsive and "
2223
  "sluggish."
2224
  msgstr ""
2225
 
2226
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2227
  msgid "Optimize Database"
2228
  msgstr "Optimizar la Base de Datos"
2229
 
2230
+ #: dashboard/settings/maintenance.php:18
2231
  msgid "You are about to optimize the AdRotate database."
2232
  msgstr "Vas a optimizar la base de datos AdRotate."
2233
 
2234
+ #: dashboard/settings/maintenance.php:18
2235
  msgid "Did you make a backup of your database?"
2236
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
2237
 
2238
+ #: dashboard/settings/maintenance.php:18
2239
  msgid ""
2240
  "This may take a moment and may cause your website to respond slow "
2241
  "temporarily!"
2243
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
2244
  "lentamente temporalmente!"
2245
 
2246
+ #: dashboard/settings/maintenance.php:19
2247
  msgid "Cleans up overhead data in the AdRotate tables."
2248
  msgstr "Limpiar los datos generales de las tablas AdRotate."
2249
 
2250
+ #: dashboard/settings/maintenance.php:20
2251
  msgid ""
2252
  "Overhead data is accumulated garbage resulting from many changes you've "
2253
  "made. This can vary from nothing to hundreds of KiB of data."
2256
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
2257
  "datos."
2258
 
2259
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2260
  msgid "Clean-up Database"
2261
  msgstr "Limpieza de la Base de Datos"
2262
 
2263
+ #: dashboard/settings/maintenance.php:26
2264
  msgid ""
2265
  "You are about to clean up your database. This may delete expired schedules "
2266
  "and older statistics."
2268
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
2269
  "estadísticas más antigüas."
2270
 
2271
+ #: dashboard/settings/maintenance.php:26
2272
  msgid "Are you sure you want to continue?"
2273
  msgstr "¿Está seguro que desea continuar?"
2274
 
2275
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2276
  msgid "This might take a while and may slow down your site during this action!"
2277
  msgstr ""
2278
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
2279
 
2280
+ #: dashboard/settings/maintenance.php:27
2281
  msgid "Delete stats older than 356 days (Optional)."
2282
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2283
 
2284
+ #: dashboard/settings/maintenance.php:28
2285
  msgid ""
2286
  "AdRotate creates empty records when you start making ads, groups or "
2287
  "schedules. In rare occasions these records are faulty."
2288
  msgstr ""
2289
 
2290
+ #: dashboard/settings/maintenance.php:28
2291
  msgid ""
2292
  "If you made an ad, group or schedule that does not save when you make it use "
2293
  "this button to delete those empty records."
2294
  msgstr ""
2295
 
2296
+ #: dashboard/settings/maintenance.php:28
2297
  msgid ""
2298
  "Additionally you can clean up old schedules and/or statistics. This will "
2299
  "improve the speed of your site."
2300
  msgstr ""
2301
 
2302
+ #: dashboard/settings/maintenance.php:32
2303
  msgid "Re-evaluate Ads"
2304
  msgstr "Reevaluar Anuncios"
2305
 
2306
+ #: dashboard/settings/maintenance.php:34
2307
  msgid "Re-evaluate all ads"
2308
  msgstr "Reevaluar todos los Anuncios"
2309
 
2310
+ #: dashboard/settings/maintenance.php:34
2311
  msgid "You are about to check all ads for errors."
2312
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2313
 
2314
+ #: dashboard/settings/maintenance.php:35
2315
  msgid ""
2316
  "This will apply all evaluation rules to all ads to see if any error slipped "
2317
  "in. Normally you should not need this feature."
2319
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
2320
  "algún error. Normalmente no debería necesitar esta función."
2321
 
2322
+ #: dashboard/settings/maintenance.php:39
2323
  msgid ""
2324
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2325
  "database. They only apply to your ads/groups and stats. Not to other "
2332
  "is not a valid point in any case."
2333
  msgstr ""
2334
 
2335
+ #: dashboard/settings/maintenance.php:41
2336
  msgid "Troubleshooting"
2337
  msgstr "Solución de problemas"
2338
 
2339
+ #: dashboard/settings/maintenance.php:42
2340
  msgid ""
2341
  "The below options are not meant for normal use and are only there for "
2342
  "developers to review saved settings or how ads are selected. These can be "
2344
  "SHOULD BE LEFT UNCHECKED!!"
2345
  msgstr ""
2346
 
2347
+ #: dashboard/settings/maintenance.php:45
2348
  msgid "Developer Debug"
2349
  msgstr "Depurar (Test) del Desarrollador"
2350
 
2351
+ #: dashboard/settings/maintenance.php:47
2352
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2353
  msgstr ""
2354
 
2355
+ #: dashboard/settings/maintenance.php:48
2356
  msgid "View advert specs and (some) stats in the dashboard."
2357
  msgstr ""
2358
 
2359
+ #: dashboard/settings/maintenance.php:49
2360
  msgid ""
2361
  "Disable timers for clicks and impressions and enable a alert window for "
2362
  "clicktracking."
2364
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2365
  "ventana de alerta para el seguimiento de clics."
2366
 
2367
+ #: dashboard/settings/maintenance.php:50
2368
  msgid "Temporarily disable encryption on the redirect url."
2369
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
2370
 
2371
+ #: dashboard/settings/maintenance.php:55
2372
  msgid "Status and Versions"
2373
  msgstr ""
2374
 
2375
+ #: dashboard/settings/maintenance.php:58
2376
  msgid "Current version:"
2377
  msgstr "Versión actual:"
2378
 
2379
+ #: dashboard/settings/maintenance.php:59
2380
  msgid "Previous version:"
2381
  msgstr "Versión anterior:"
2382
 
2383
+ #: dashboard/settings/maintenance.php:62
2384
  msgid "Current database version:"
2385
  msgstr "Versión actual de la base de datos:"
2386
 
2387
+ #: dashboard/settings/maintenance.php:63
2388
  msgid "Previous database version:"
2389
  msgstr "Versión anterior de la base de datos:"
2390
 
2391
+ #: dashboard/settings/maintenance.php:66
2392
  msgid "Current status of adverts"
2393
  msgstr "Estado actual de los anuncios"
2394
 
2395
+ #: dashboard/settings/maintenance.php:67
2396
  msgid "Normal"
2397
  msgstr "Normal"
2398
 
2399
+ #: dashboard/settings/maintenance.php:67
2400
  msgid "Error"
2401
  msgstr "Error"
2402
 
2403
+ #: dashboard/settings/maintenance.php:67
2404
  msgid "Expired"
2405
  msgstr "Caducado"
2406
 
2407
+ #: dashboard/settings/maintenance.php:67
2408
  msgid "Expires Soon"
2409
  msgstr "Caduca Pronto"
2410
 
2411
+ #: dashboard/settings/maintenance.php:67
2412
  msgid "Unknown"
2413
  msgstr ""
2414
 
2415
+ #: dashboard/settings/maintenance.php:70
2416
  #, fuzzy
2417
  msgid "Ad evaluation next run:"
2418
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
2419
 
2420
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2421
  msgid "Not scheduled!"
2422
  msgstr "No Programada!"
2423
 
2424
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2425
  msgid "Clean Trackerdata next run:"
2426
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
2427
 
2428
+ #: dashboard/settings/misc.php:12
2429
  msgid "Miscellaneous"
2430
  msgstr "Varios"
2431
 
2432
+ #: dashboard/settings/misc.php:15
2433
  msgid "Widget alignment"
2434
  msgstr "Alineación de Widget"
2435
 
2436
+ #: dashboard/settings/misc.php:16
2437
  msgid ""
2438
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2439
  "not always help!)"
2441
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
2442
  "plantillas (theme). (No siempre ayuda!)"
2443
 
2444
+ #: dashboard/settings/misc.php:19
2445
  msgid "Widget padding"
2446
  msgstr "Relleno de Widget"
2447
 
2448
+ #: dashboard/settings/misc.php:20
2449
  msgid ""
2450
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2451
  "not always work!)"
2453
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
2454
  "de los anuncios en los widgets. (No siempre funciona!)"
2455
 
2456
+ #: dashboard/settings/misc.php:24
2457
  #, fuzzy
2458
  msgid "NOTICE:"
2459
  msgstr "Aviso"
2460
 
2461
+ #: dashboard/settings/misc.php:25
2462
  msgid ""
2463
  "You have enabled W3 Total Caching support but not defined the security hash. "
2464
  "You need to add the following line to your wp-config.php near the bottom or "
2470
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
2471
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
2472
 
2473
+ #: dashboard/settings/misc.php:29
2474
  msgid "W3 Total Caching"
2475
  msgstr "W3 Total Cache"
2476
 
2477
+ #: dashboard/settings/misc.php:30
2478
  msgid "Check this box if you use W3 Total Caching on your site."
2479
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
2480
 
2481
+ #: dashboard/settings/misc.php:34
2482
  msgid ""
2483
  "It may take a while for the ad to start rotating. The caching plugin needs "
2484
  "to refresh the cache. This can take up to a week if not done manually."
2487
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
2488
  "semana si no se realiza de forma manual."
2489
 
2490
+ #: dashboard/settings/misc.php:34
2491
  msgid ""
2492
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2493
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2496
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
2497
  "código PHP la exclusión a ti mismo."
2498
 
2499
+ #: dashboard/settings/notifications.php:12
2500
  msgid "Notifications - Available in AdRotate Pro"
2501
  msgstr ""
2502
 
2503
+ #: dashboard/settings/notifications.php:13
2504
  msgid "Set up who gets notifications if ads need your attention."
2505
  msgstr ""
2506
  "Configurar para recibir notificaciones si los anuncios requieren su atención."
2507
 
2508
+ #: dashboard/settings/notifications.php:16
2509
  msgid "Delivery method"
2510
  msgstr "Método de entrega"
2511
 
2512
+ #: dashboard/settings/notifications.php:18
2513
  msgid "Email message."
2514
  msgstr "Mensaje de Correo eléctronico"
2515
 
2516
+ #: dashboard/settings/notifications.php:19
2517
  msgid "Push notifications to your smartphone."
2518
  msgstr "Enviar Notificaciones a su smartphone."
2519
 
2520
+ #: dashboard/settings/notifications.php:20
2521
  msgid ""
2522
  "Push notifications are delivered through Pushover, a notification service "
2523
  "for Android and iOS"
2525
  "Las Notificaciones Push se entregan a través de Pushover, un servicio de "
2526
  "notificación para Android y iOS"
2527
 
2528
+ #: dashboard/settings/notifications.php:20
2529
  msgid ""
2530
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2531
  "information can be found on the pushover website;"
2533
  "La App Pushover se compra una sola vez, ya sea para Android y/o iOS. Puede "
2534
  "encontrar más información en la página web"
2535
 
2536
+ #: dashboard/settings/notifications.php:24
2537
  msgid "Test notification"
2538
  msgstr ""
2539
 
2540
+ #: dashboard/settings/notifications.php:26
2541
  msgid ""
2542
  "This sends a test notification. Before you test, save the options first!"
2543
  msgstr ""
2544
 
2545
+ #: dashboard/settings/notifications.php:31
2546
  msgid "Dashboard Notifications"
2547
  msgstr "Notificaciones en el Escritorio"
2548
 
2549
+ #: dashboard/settings/notifications.php:32
2550
  msgid "These show to every administrator who can edit adverts."
2551
  msgstr ""
2552
 
2553
+ #: dashboard/settings/notifications.php:35
2554
  msgid "Notification banners"
2555
  msgstr ""
2556
 
2557
+ #: dashboard/settings/notifications.php:36
2558
  msgid "Disable dashboard notifications."
2559
  msgstr ""
2560
 
2561
+ #: dashboard/settings/notifications.php:40
2562
  msgid "Email Notifications"
2563
  msgstr "Notificaciones por correo electrónico"
2564
 
2565
+ #: dashboard/settings/notifications.php:41
2566
  msgid "Set up who gets notification emails."
2567
  msgstr "Establecer lo que se recibe en los mensajes de notificación."
2568
 
2569
+ #: dashboard/settings/notifications.php:44
2570
+ #: dashboard/settings/notifications.php:64
2571
  msgid "Publishers"
2572
  msgstr "Editores"
2573
 
2574
+ #: dashboard/settings/notifications.php:47
2575
  msgid ""
2576
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2577
  "list to a minimum!"
2579
  "Una lista de direcciones de correo electrónico separada por comas. Un máximo "
2580
  "de 5 direcciones. Mantenga esta lista al mínimo!"
2581
 
2582
+ #: dashboard/settings/notifications.php:48
2583
  msgid ""
2584
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2585
  "email notifications will be send."
2587
  "Los mensajes se envían cuando sea necesario una vez cada 24 horas. Si este "
2588
  "campo está vacío, no será envíada ninguna notificación de correo electrónico."
2589
 
2590
+ #: dashboard/settings/notifications.php:52
2591
  msgid "Advertisers"
2592
  msgstr "Anunciantes"
2593
 
2594
+ #: dashboard/settings/notifications.php:55
2595
  msgid ""
2596
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2597
  "This field may not be empty!"
2599
  "¿Quién recibe correo electrónico de los anunciantes. Un máximo de 2 "
2600
  "direcciones separadas por comas. Este campo no puede estar vacío!"
2601
 
2602
+ #: dashboard/settings/notifications.php:60
2603
  msgid "Push Notifications"
2604
  msgstr "Notificaciones Push"
2605
 
2606
+ #: dashboard/settings/notifications.php:61
2607
  msgid ""
2608
  "Receive information about what is happening with your AdRotate setup on your "
2609
  "smartphone via Pushover."
2611
  "Recibir información acerca de lo que está sucediendo con su configuración "
2612
  "AdRotate en su smartphone a través de Pushover."
2613
 
2614
+ #: dashboard/settings/notifications.php:66
2615
  msgid "When you are running out of Geo Targeting Lookups."
2616
  msgstr ""
2617
 
2618
+ #: dashboard/settings/notifications.php:67
2619
  msgid "Daily digest of any advert status other than normal."
2620
  msgstr "Resumen diario de cualquier estado de anuncio que no sea normal."
2621
 
2622
+ #: dashboard/settings/notifications.php:68
2623
  msgid "Any advertiser saving an advert in your moderation queue."
2624
  msgstr ""
2625
  "Cualquier anunciante puede guardar un anuncio en su cola de moderación."
2626
 
2627
+ #: dashboard/settings/notifications.php:69
2628
  msgid "A moderator approved an advert from the moderation queue."
2629
  msgstr "Un moderador aprobó un anuncio de la cola de moderación."
2630
 
2631
+ #: dashboard/settings/notifications.php:70
2632
  msgid "A moderator rejected an advert from the moderation queue."
2633
  msgstr "Un moderador rechazó un anuncio de la cola de moderación."
2634
 
2635
+ #: dashboard/settings/notifications.php:70
2636
  msgid ""
2637
  "If you have a lot of activity with many advertisers adding/changing adverts "
2638
  "you may get a lot of messages!"
2640
  "Si tiene una gran cantidad de actividad con muchos anunciantes que agregan o "
2641
  "cambian los anuncios usted puede recibir una gran cantidad de mensajes!"
2642
 
2643
+ #: dashboard/settings/notifications.php:75
2644
  msgid "User Key"
2645
  msgstr ""
2646
 
2647
+ #: dashboard/settings/notifications.php:77
2648
  msgid "Get your user token"
2649
  msgstr ""
2650
 
2651
+ #: dashboard/settings/notifications.php:77
2652
+ #: dashboard/settings/notifications.php:83
2653
  msgid "here"
2654
  msgstr ""
2655
 
2656
+ #: dashboard/settings/notifications.php:81
2657
  msgid "Api Token"
2658
  msgstr ""
2659
 
2660
+ #: dashboard/settings/notifications.php:83
2661
  msgid "Create your"
2662
  msgstr ""
2663
 
2664
+ #: dashboard/settings/notifications.php:83
2665
  msgid "App"
2666
  msgstr ""
2667
 
2668
+ #: dashboard/settings/notifications.php:83
2669
  msgid "and get your API token"
2670
  msgstr ""
2671
 
2672
+ #: dashboard/settings/roles.php:12
2673
  msgid "Roles"
2674
  msgstr ""
2675
 
2676
+ #: dashboard/settings/roles.php:13
2677
  msgid "Who has access to what?"
2678
  msgstr "¿Quién tiene acceso a qué?"
2679
 
2680
+ #: dashboard/settings/roles.php:16
2681
  msgid "Manage/Add/Edit adverts"
2682
  msgstr "Gestionar/Añadir/Editar anuncios"
2683
 
2684
+ #: dashboard/settings/roles.php:20
2685
  msgid "Role to see and add/edit ads."
2686
  msgstr "Perfil para ver y añadir/editar los anuncios."
2687
 
2688
+ #: dashboard/settings/roles.php:24
2689
  msgid "Delete/Reset adverts"
2690
  msgstr "Borrar/Restablecer anuncios"
2691
 
2692
+ #: dashboard/settings/roles.php:28
2693
  msgid "Role to delete ads and reset stats."
2694
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
2695
 
2696
+ #: dashboard/settings/roles.php:32
2697
  msgid "Manage/Add/Edit groups"
2698
  msgstr "Gestionar/Añadir/Editar grupos"
2699
 
2700
+ #: dashboard/settings/roles.php:36
2701
  msgid "Role to see and add/edit groups."
2702
  msgstr "Perfil para ver y añadir/editar grupos."
2703
 
2704
+ #: dashboard/settings/roles.php:40
2705
  msgid "Delete groups"
2706
  msgstr "Eliminar grupos"
2707
 
2708
+ #: dashboard/settings/roles.php:44
2709
  msgid "Role to delete groups."
2710
  msgstr "Perfil para eliminar grupos"
2711
 
2712
+ #: dashboard/settings/statistics.php:13
2713
  msgid "Track statistics for your adverts."
2714
  msgstr ""
2715
 
2716
+ #: dashboard/settings/statistics.php:16
2717
  msgid "How to track stats"
2718
  msgstr ""
2719
 
2720
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2721
  msgid "Tracks impressions and clicks internally"
2722
  msgstr ""
2723
 
2724
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2725
+ #: dashboard/settings/statistics.php:29
2726
  msgid "manual"
2727
  msgstr ""
2728
 
2729
+ #: dashboard/settings/statistics.php:26
2730
  msgid ""
2731
  "Click and Impression recording, Click and impression limits, impression "
2732
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2733
+ "will only track impressions."
2734
  msgstr ""
2735
 
2736
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2737
+ msgid "In AdRotate Pro!"
2738
+ msgstr ""
2739
+
2740
+ #: dashboard/settings/statistics.php:27
2741
  msgid ""
2742
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2743
  "attributes"
2744
  msgstr ""
2745
 
2746
+ #: dashboard/settings/statistics.php:28
2747
  msgid ""
2748
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2749
  "Contents."
2750
  msgstr ""
2751
 
2752
+ #: dashboard/settings/statistics.php:29
2753
  msgid ""
2754
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2755
  "uses onClick() and onload() in adverts"
2756
  msgstr ""
2757
 
2758
+ #: dashboard/settings/statistics.php:30
2759
  msgid ""
2760
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2761
+ "Banner."
2762
  msgstr ""
2763
 
2764
+ #: dashboard/settings/statistics.php:36
2765
  msgid "Internal Tracker"
2766
  msgstr ""
2767
 
2768
+ #: dashboard/settings/statistics.php:37
2769
  msgid ""
2770
  "The settings below are for the internal tracker and have no effect when "
2771
  "using Piwik/Google Analytics."
2772
  msgstr ""
2773
 
2774
+ #: dashboard/settings/statistics.php:40
2775
  msgid "Logged in impressions"
2776
  msgstr "Contar impresiones"
2777
 
2778
+ #: dashboard/settings/statistics.php:42
2779
  msgid "Track impressions from logged in users."
2780
  msgstr ""
2781
 
2782
+ #: dashboard/settings/statistics.php:46
2783
  msgid "Logged in clicks"
2784
  msgstr "Contar clics"
2785
 
2786
+ #: dashboard/settings/statistics.php:48
2787
  msgid "Track clicks from logged in users."
2788
  msgstr "Seguimiento de los clics de los usuarios registrados."
2789
 
2790
+ #: dashboard/settings/statistics.php:52
2791
+ msgid "Impression timer"
2792
+ msgstr ""
2793
 
2794
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2795
  msgid "Seconds."
2796
  msgstr "Segundos."
2797
 
2798
+ #: dashboard/settings/statistics.php:55
2799
  #, fuzzy
2800
  msgid "Default: 60."
2801
  msgstr "Predeterminado"
2802
 
2803
+ #: dashboard/settings/statistics.php:55
2804
  #, fuzzy
2805
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2806
  msgstr ""
2807
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
2808
 
2809
+ #: dashboard/settings/statistics.php:59
2810
+ msgid "Click timer"
2811
+ msgstr ""
2812
 
2813
+ #: dashboard/settings/statistics.php:62
2814
  #, fuzzy
2815
  msgid "Default: 86400."
2816
  msgstr "Predeterminado"
2817
 
2818
+ #: dashboard/settings/statistics.php:62
2819
  #, fuzzy
2820
  msgid ""
2821
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2822
  msgstr ""
2823
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2824
 
2825
+ #~ msgid "Find out more"
2826
+ #~ msgstr "Para saber más"
2827
+
2828
+ #~ msgid "Follow"
2829
+ #~ msgstr "Continuar"
2830
+
2831
+ #~ msgid "Barely visible"
2832
+ #~ msgstr "Apenas visible"
2833
+
2834
+ #~ msgid "Less than average"
2835
+ #~ msgstr "Menos de la media"
2836
+
2837
+ #~ msgid "Normal coverage"
2838
+ #~ msgstr "Cobertura normal"
2839
+
2840
+ #~ msgid "More than average"
2841
+ #~ msgstr "Más de la media"
2842
+
2843
+ #~ msgid "Best visibility"
2844
+ #~ msgstr "La mejor visibilidad"
2845
+
2846
+ #~ msgid "Ads in group"
2847
+ #~ msgstr "Anuncios en grupo"
2848
+
2849
+ #~ msgid "Code"
2850
+ #~ msgstr "Código"
2851
+
2852
+ #~ msgid "Impressions timer"
2853
+ #~ msgstr "Temporizador de Impresiones"
2854
+
2855
+ #~ msgid "Clicks timer"
2856
+ #~ msgstr "Temporizador de Clics"
2857
+
2858
  #, fuzzy
2859
  #~ msgid "Learn More"
2860
  #~ msgstr "Aprender más"
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 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-08-23 20:10+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:10+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: en_US\n"
@@ -244,10 +244,10 @@ msgstr "Résoudre ce soucis dans les meilleurs délais"
244
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
245
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
246
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
247
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
248
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
249
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
250
- #: dashboard/settings/geotargeting.php:16
251
  msgid "Buy now"
252
  msgstr ""
253
 
@@ -341,7 +341,7 @@ msgstr "En avant-première"
341
  msgid "on WordPress.org to help AdRotate grow in a positive way"
342
  msgstr ""
343
 
344
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
345
  msgid "Available in AdRotate Pro"
346
  msgstr "Disponible dans Adrotate Pro"
347
 
@@ -357,63 +357,63 @@ msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
357
  msgid "Learn more"
358
  msgstr "En savoir plus"
359
 
360
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
361
- #: dashboard/publisher/adverts-edit.php:245
362
  msgid "January"
363
  msgstr "Janvier"
364
 
365
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
366
- #: dashboard/publisher/adverts-edit.php:246
367
  msgid "February"
368
  msgstr "Février"
369
 
370
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
371
- #: dashboard/publisher/adverts-edit.php:247
372
  msgid "March"
373
  msgstr "Mars"
374
 
375
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
376
- #: dashboard/publisher/adverts-edit.php:248
377
  msgid "April"
378
  msgstr "Avril"
379
 
380
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
381
- #: dashboard/publisher/adverts-edit.php:249
382
  msgid "May"
383
  msgstr "Mai"
384
 
385
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
386
- #: dashboard/publisher/adverts-edit.php:250
387
  msgid "June"
388
  msgstr "Juin"
389
 
390
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
391
- #: dashboard/publisher/adverts-edit.php:251
392
  msgid "July"
393
  msgstr "Juillet"
394
 
395
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
396
- #: dashboard/publisher/adverts-edit.php:252
397
  msgid "August"
398
  msgstr "Août"
399
 
400
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
401
- #: dashboard/publisher/adverts-edit.php:253
402
  msgid "September"
403
  msgstr "Septembre"
404
 
405
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
406
- #: dashboard/publisher/adverts-edit.php:254
407
  msgid "October"
408
  msgstr "Octobre"
409
 
410
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
411
- #: dashboard/publisher/adverts-edit.php:255
412
  msgid "November"
413
  msgstr "Novembre"
414
 
415
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
416
- #: dashboard/publisher/adverts-edit.php:256
417
  msgid "December"
418
  msgstr "Décembre"
419
 
@@ -530,7 +530,7 @@ msgid "Group Management"
530
  msgstr "Gérer les groupes"
531
 
532
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
533
- #: dashboard/publisher/groups-main.php:71
534
  msgid "Report"
535
  msgstr "Rapport"
536
 
@@ -546,10 +546,10 @@ msgid ""
546
  "AdRotate Pro."
547
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
548
 
549
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
550
  #: dashboard/publisher/adverts-main.php:114
551
  #: dashboard/publisher/groups-edit.php:75
552
- #: dashboard/publisher/groups-main.php:91
553
  msgid "More information"
554
  msgstr "Plus d'information"
555
 
@@ -584,20 +584,20 @@ msgstr "Début / Fin"
584
  msgid "End"
585
  msgstr ""
586
 
587
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
588
  #: dashboard/publisher/groups-main.php:34
589
  msgid "Ads"
590
  msgstr "Pubs"
591
 
592
  #: adrotate.php:428
593
  #, fuzzy
594
- msgid "Max Clicks"
595
- msgstr "Nombre de clicks max :"
596
 
597
  #: adrotate.php:429
598
  #, fuzzy
599
- msgid "Max Impressions"
600
- msgstr "Nombre max de vues :"
601
 
602
  #: adrotate.php:459
603
  #, fuzzy
@@ -687,7 +687,7 @@ msgstr ""
687
  "complet d'images de tailles différentes est recommendé si vous avez un site "
688
  "fluide."
689
 
690
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
691
  msgid ""
692
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
693
  "filename instead of \".full\" for the various viewports."
@@ -696,13 +696,13 @@ msgstr ""
696
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
697
  "tailles d'écran."
698
 
699
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
700
  #: dashboard/publisher/groups-edit.php:312
701
  #: dashboard/publisher/groups-edit.php:320
702
  msgid "Example:"
703
  msgstr "Exemple :"
704
 
705
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
706
  #, fuzzy
707
  msgid ""
708
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -800,20 +800,16 @@ msgid ""
800
  "forum. Get a solution (usually) within a day."
801
  msgstr ""
802
 
803
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
804
  msgid "AdRotate is brought to you by"
805
  msgstr "AdRotate est offert par"
806
 
807
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
808
  msgid ""
809
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
810
- "details!"
811
  msgstr ""
812
 
813
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
814
- msgid "Find out more"
815
- msgstr "En savoir plus"
816
-
817
  #: dashboard/adrotatepro.php:58
818
  msgid "Schedule all campaigns with ease"
819
  msgstr "Planifier toutes vos campagnes en toute simplicité"
@@ -840,141 +836,141 @@ msgid ""
840
  msgstr ""
841
 
842
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
843
- #: dashboard/info.php:134 dashboard/info.php:146
844
  msgid "Buy AdRotate Professional"
845
  msgstr "Achetez AdRotate Professionel"
846
 
847
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
848
  msgid "Single License"
849
  msgstr ""
850
 
851
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
852
  msgid "For one WordPress installation."
853
  msgstr "Pour une installation Wordpress."
854
 
855
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
856
- #: dashboard/info.php:139 dashboard/info.php:151
857
  msgid "Duo License"
858
  msgstr "Licence Duo"
859
 
860
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
861
  msgid "For two WordPress installations."
862
  msgstr "Pour deux installations Wordpress."
863
 
864
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
865
- #: dashboard/info.php:140 dashboard/info.php:152
866
  msgid "Multi License"
867
  msgstr "Licence Multiple"
868
 
869
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
870
  msgid " For up to five WordPress installations."
871
  msgstr "Pour un max de cinq installation Wordpress."
872
 
873
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
874
- #: dashboard/info.php:141 dashboard/info.php:153
875
  msgid "Developer License"
876
  msgstr "Licence de Developpeur"
877
 
878
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
879
  msgid "Unlimited WordPress installations and/or networks."
880
  msgstr ""
881
 
882
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
883
- #: dashboard/info.php:142 dashboard/info.php:155
884
  msgid "Compare licenses"
885
  msgstr "Comparer les licences"
886
 
887
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
888
  msgid "Not sure which license is for you? Compare them..."
889
  msgstr ""
890
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
891
 
892
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
893
  msgid "All Licenses"
894
  msgstr "Toutes les licences"
895
 
896
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
897
  msgid "Lifetime License"
898
  msgstr ""
899
 
900
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
901
  msgid "Single installation."
902
  msgstr ""
903
 
904
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
905
  msgid "Up to 2 installations."
906
  msgstr ""
907
 
908
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
909
  msgid "Up to 10 installations."
910
  msgstr ""
911
 
912
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
913
  msgid "Up to 25 installations or multisite networks."
914
  msgstr ""
915
 
916
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
917
  msgid ""
918
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
919
  msgstr ""
920
 
921
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
922
  msgid "Not sure which license is for you?"
923
  msgstr ""
924
 
925
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
926
  msgid "Compare Licenses"
927
  msgstr ""
928
 
929
- #: dashboard/info.php:65
930
  msgid "Currently"
931
  msgstr "Actuellement"
932
 
933
- #: dashboard/info.php:71
934
  msgid "Your setup"
935
  msgstr "Votre configuration"
936
 
937
- #: dashboard/info.php:72
938
  msgid "Adverts that need you"
939
  msgstr "Publicités qui ont besoin de votre attention"
940
 
941
- #: dashboard/info.php:78
942
  msgid "Adverts"
943
  msgstr "Publicités"
944
 
945
- #: dashboard/info.php:79
946
  msgid "(Almost) Expired"
947
  msgstr "(presque) expiré"
948
 
949
- #: dashboard/info.php:82
950
  msgid "Groups"
951
  msgstr "Groupes"
952
 
953
- #: dashboard/info.php:83
954
  msgid "Have errors"
955
  msgstr "Il y a des erreurs"
956
 
957
- #: dashboard/info.php:89
958
  msgid "Support AdRotate"
959
  msgstr "Soutenez AdRotate"
960
 
961
- #: dashboard/info.php:96
962
  msgid "Your gift helps ensure the continued development of AdRotate!"
963
  msgstr ""
964
 
965
- #: dashboard/info.php:96
966
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
967
  msgstr ""
968
 
969
- #: dashboard/info.php:105
970
  msgid "AdRotate News and Developer Blog"
971
  msgstr "Actus AdRotate et blog du développeur"
972
 
973
- #: dashboard/info.php:127
974
  msgid "Get more features with AdRotate Pro"
975
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
976
 
977
- #: dashboard/info.php:130
978
  msgid ""
979
  "Benefit from extra features to reinforce your income with advertising "
980
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -985,28 +981,24 @@ msgstr ""
985
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
986
  "la version gratuite."
987
 
988
- #: dashboard/info.php:130
989
  msgid "Want to know more about"
990
  msgstr ""
991
 
992
- #: dashboard/info.php:130
993
  msgid "Visit the"
994
  msgstr "Visitez le"
995
 
996
- #: dashboard/info.php:130
997
  msgid "website"
998
  msgstr "site"
999
 
1000
- #: dashboard/info.php:166
1001
- msgid "Follow"
1002
- msgstr "Suivre"
1003
-
1004
  #: dashboard/publisher/adverts-disabled.php:15
1005
  msgid "Disabled Ads"
1006
  msgstr "Pubs inactives"
1007
 
1008
  #: dashboard/publisher/adverts-disabled.php:21
1009
- #: dashboard/publisher/adverts-edit.php:165
1010
  msgid "Activate"
1011
  msgstr "Activer"
1012
 
@@ -1031,8 +1023,6 @@ msgstr "Titre"
1031
 
1032
  #: dashboard/publisher/adverts-disabled.php:38
1033
  #: dashboard/publisher/adverts-report.php:34
1034
- #: dashboard/publisher/groups-edit.php:333
1035
- #: dashboard/publisher/groups-main.php:36
1036
  #: dashboard/publisher/groups-report.php:40
1037
  msgid "Impressions"
1038
  msgstr "Vues"
@@ -1056,7 +1046,7 @@ msgstr "CTR"
1056
  #: dashboard/publisher/adverts-disabled.php:74
1057
  #: dashboard/publisher/adverts-error.php:64
1058
  #: dashboard/publisher/adverts-main.php:87
1059
- #: dashboard/publisher/groups-main.php:71
1060
  msgid "Edit"
1061
  msgstr "Modifier"
1062
 
@@ -1179,35 +1169,54 @@ msgid ""
1179
  "click to add it."
1180
  msgstr ""
1181
 
1182
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1183
  msgid "Banner asset"
1184
  msgstr ""
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:142
1187
  msgid "WordPress media:"
1188
  msgstr ""
1189
 
1190
- #: dashboard/publisher/adverts-edit.php:142
1191
  msgid "Select Banner"
1192
  msgstr "Choisir l'image"
1193
 
1194
- #: dashboard/publisher/adverts-edit.php:144
1195
  msgid "- OR -"
1196
  msgstr "- OU -"
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:146
1199
  msgid "Banner folder:"
1200
  msgstr "Dossier de bannières :"
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:147
1203
  msgid "No image selected"
1204
  msgstr "Aucune image sélectionnée"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:151
1207
  msgid "Use %image% in the adcode instead of the file path."
1208
  msgstr ""
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:151
1211
  msgid ""
1212
  "Use either the text field or the dropdown. If the textfield has content that "
1213
  "field has priority."
@@ -1215,181 +1224,162 @@ msgstr ""
1215
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1216
  "valeur, ce champ a la priorité."
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:156
1219
- #: dashboard/settings/statistics.php:1
1220
  msgid "Statistics"
1221
  msgstr "Statistiques"
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:158
1224
  msgid "Enable click and impression tracking for this advert."
1225
  msgstr ""
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:159
1228
  msgid ""
1229
  "Note: Clicktracking does not work for Javascript adverts such as those "
1230
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1231
- "supported."
1232
  msgstr ""
1233
 
1234
- #: dashboard/publisher/adverts-edit.php:169
1235
  msgid "Yes, this ad will be used"
1236
  msgstr "Oui, cette publicité sera utilisée"
1237
 
1238
- #: dashboard/publisher/adverts-edit.php:170
1239
  msgid "No, do not show this ad anywhere"
1240
  msgstr "Non, cette publicité ne sera pas utilisée"
1241
 
1242
- #: dashboard/publisher/adverts-edit.php:177
1243
  #: dashboard/publisher/adverts-main.php:114
1244
  #: dashboard/publisher/groups-edit.php:75
1245
- #: dashboard/publisher/groups-main.php:91
1246
  msgid "Get more features with AdRotate Pro."
1247
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1248
 
1249
- #: dashboard/publisher/adverts-edit.php:180
1250
- #: dashboard/publisher/adverts-edit.php:295
1251
- #: dashboard/publisher/adverts-edit.php:395
1252
- #: dashboard/publisher/adverts-edit.php:436
1253
  msgid "Save Advert"
1254
  msgstr "Sauvegarder la pub"
1255
 
1256
- #: dashboard/publisher/adverts-edit.php:181
1257
- #: dashboard/publisher/adverts-edit.php:296
1258
- #: dashboard/publisher/adverts-edit.php:396
1259
- #: dashboard/publisher/adverts-edit.php:437
1260
  #: dashboard/publisher/groups-edit.php:154
1261
  #: dashboard/publisher/groups-edit.php:301
1262
  #: dashboard/publisher/groups-edit.php:393
1263
  msgid "Cancel"
1264
  msgstr "Annuller"
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:185
1267
- msgid "Preview"
1268
- msgstr "En avant-première"
1269
-
1270
- #: dashboard/publisher/adverts-edit.php:191
1271
- msgid ""
1272
- "Note: While this preview is an accurate one, it might look different then it "
1273
- "does on the website."
1274
- msgstr ""
1275
- "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1276
- "différente sur le site."
1277
-
1278
- #: dashboard/publisher/adverts-edit.php:192
1279
- msgid ""
1280
- "This is because of CSS differences. Your themes CSS file is not active here!"
1281
- msgstr ""
1282
- "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1283
- "pas actif ici!"
1284
-
1285
- #: dashboard/publisher/adverts-edit.php:199
1286
- #: dashboard/publisher/adverts-edit.php:378
1287
  #: dashboard/publisher/groups-edit.php:136
1288
  #: dashboard/publisher/groups-edit.php:283
1289
  msgid "Usage"
1290
  msgstr "Usage"
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:203
1293
- #: dashboard/publisher/adverts-edit.php:382
1294
  #: dashboard/publisher/groups-edit.php:140
1295
  #: dashboard/publisher/groups-edit.php:287
1296
  msgid "Widget"
1297
  msgstr ""
1298
 
1299
- #: dashboard/publisher/adverts-edit.php:204
1300
- #: dashboard/publisher/adverts-edit.php:383
1301
  msgid ""
1302
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1303
  "and enter ID"
1304
  msgstr ""
1305
 
1306
- #: dashboard/publisher/adverts-edit.php:207
1307
- #: dashboard/publisher/adverts-edit.php:386
1308
  #: dashboard/publisher/groups-edit.php:144
1309
  #: dashboard/publisher/groups-edit.php:291
1310
  msgid "In a post or page"
1311
  msgstr ""
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:209
1314
- #: dashboard/publisher/adverts-edit.php:388
1315
  #: dashboard/publisher/groups-edit.php:146
1316
  #: dashboard/publisher/groups-edit.php:293
1317
  msgid "Directly in a theme"
1318
  msgstr ""
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:215
1321
  msgid "Schedule your advert"
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:219
1325
  msgid "Start date (day/month/year)"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:240
1329
  msgid "End date (day/month/year)"
1330
  msgstr ""
1331
 
1332
- #: dashboard/publisher/adverts-edit.php:263
1333
  msgid "Start time (hh:mm)"
1334
  msgstr ""
1335
 
1336
- #: dashboard/publisher/adverts-edit.php:270
1337
  msgid "End time (hh:mm)"
1338
  msgstr ""
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:280
1341
  msgid "Maximum Clicks"
1342
  msgstr ""
1343
 
1344
- #: dashboard/publisher/adverts-edit.php:281
1345
- #: dashboard/publisher/adverts-edit.php:283
1346
  msgid "Leave empty or 0 to skip this."
1347
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:282
1350
  msgid "Maximum Impressions"
1351
  msgstr ""
1352
 
1353
- #: dashboard/publisher/adverts-edit.php:287
1354
  msgid "Important"
1355
  msgstr ""
1356
 
1357
- #: dashboard/publisher/adverts-edit.php:288
1358
  msgid ""
1359
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1360
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1361
  "14:00 hours. 6AM is 6:00 hours."
1362
  msgstr ""
1363
 
1364
- #: dashboard/publisher/adverts-edit.php:292
1365
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1366
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1367
 
1368
- #: dashboard/publisher/adverts-edit.php:292
1369
- #: dashboard/publisher/adverts-edit.php:332
1370
- #: dashboard/publisher/adverts-edit.php:376
1371
  #: dashboard/publisher/groups-edit.php:200
1372
  msgid "Upgrade today"
1373
  msgstr "Mettre à jour aujourd'hui"
1374
 
1375
- #: dashboard/publisher/adverts-edit.php:299
1376
  #: dashboard/publisher/groups-edit.php:157
1377
  msgid "Advanced"
1378
  msgstr "Avancé"
1379
 
1380
- #: dashboard/publisher/adverts-edit.php:300
1381
  msgid "Everything below is optional."
1382
  msgstr "Tous les paramètres ci-dessous sont optionels."
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:304
1385
  msgid "Responsive"
1386
  msgstr ""
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:306
1389
  msgid "Enable responsive support for this advert."
1390
  msgstr "Activer le support réactif pour cette publicité."
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:307
1393
  msgid ""
1394
  "Upload your images to the banner folder and make sure the filename is in the "
1395
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1400,147 +1390,116 @@ msgstr ""
1400
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1401
  "fluide."
1402
 
1403
- #: dashboard/publisher/adverts-edit.php:313
1404
- #: dashboard/publisher/adverts-main.php:42
1405
- #: dashboard/publisher/groups-edit.php:336
1406
- msgid "Weight"
1407
- msgstr "Importance"
1408
-
1409
- #: dashboard/publisher/adverts-edit.php:316
1410
- msgid "Barely visible"
1411
- msgstr ""
1412
-
1413
- #: dashboard/publisher/adverts-edit.php:317
1414
- msgid "Less than average"
1415
- msgstr ""
1416
-
1417
- #: dashboard/publisher/adverts-edit.php:318
1418
- msgid "Normal coverage"
1419
- msgstr ""
1420
-
1421
- #: dashboard/publisher/adverts-edit.php:319
1422
- msgid "More than average"
1423
- msgstr ""
1424
-
1425
- #: dashboard/publisher/adverts-edit.php:320
1426
- msgid "Best visibility"
1427
- msgstr ""
1428
-
1429
- #: dashboard/publisher/adverts-edit.php:325
1430
  #: dashboard/publisher/groups-edit.php:194
1431
  msgid "Sortorder"
1432
  msgstr ""
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:327
1435
  #: dashboard/publisher/groups-edit.php:196
1436
  msgid "For administrative purposes set a sortorder."
1437
  msgstr "Pour des raisons administratives définir un ordre de tri."
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:327
1440
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1441
  msgstr ""
1442
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1443
  "de l'ID de la publicité."
1444
 
1445
- #: dashboard/publisher/adverts-edit.php:332
1446
  msgid ""
1447
- "With AdRotate Pro you can set the weight to give adverts more or less "
1448
- "exposure."
1449
  msgstr ""
1450
 
1451
- #: dashboard/publisher/adverts-edit.php:334
1452
  msgid "Geo Targeting in AdRotate Pro"
1453
  msgstr ""
1454
 
1455
- #: dashboard/publisher/adverts-edit.php:335
1456
  msgid ""
1457
  "Assign the advert to a group and enable that group to use Geo Targeting."
1458
  msgstr ""
1459
 
1460
- #: dashboard/publisher/adverts-edit.php:339
1461
  msgid "Cities/States"
1462
  msgstr ""
1463
 
1464
- #: dashboard/publisher/adverts-edit.php:342
1465
  msgid ""
1466
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1467
  "states ISO codes are supported)"
1468
  msgstr ""
1469
 
1470
- #: dashboard/publisher/adverts-edit.php:342
1471
  msgid ""
1472
  "AdRotate does not check the validity of names so make sure you spell them "
1473
  "correctly!"
1474
  msgstr ""
1475
 
1476
- #: dashboard/publisher/adverts-edit.php:346
1477
  msgid "Countries"
1478
  msgstr ""
1479
 
1480
- #: dashboard/publisher/adverts-edit.php:371
1481
  #, fuzzy
1482
  msgid "Select the countries you want the adverts to show in."
1483
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:371
1486
  msgid "Cities take priority and will be filtered first."
1487
  msgstr ""
1488
 
1489
- #: dashboard/publisher/adverts-edit.php:376
1490
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1491
  msgstr ""
1492
 
1493
- #: dashboard/publisher/adverts-edit.php:400
1494
  msgid "Select Groups"
1495
  msgstr "Choisir groupes"
1496
 
1497
- #: dashboard/publisher/adverts-edit.php:405
1498
  msgid "ID - Name"
1499
  msgstr "ID - Nom"
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:406
1502
- msgid "Ads in group"
1503
- msgstr "Pubs dans le groupe"
1504
-
1505
- #: dashboard/publisher/adverts-edit.php:415
1506
- #: dashboard/publisher/groups-main.php:61
1507
- #: dashboard/settings/geotargeting.php:29
1508
  msgid "Default"
1509
  msgstr "Par défaut"
1510
 
1511
- #: dashboard/publisher/adverts-edit.php:416
1512
- #: dashboard/publisher/groups-main.php:62
1513
  msgid "Dynamic"
1514
  msgstr "Dynamique"
1515
 
1516
- #: dashboard/publisher/adverts-edit.php:416
1517
- #: dashboard/publisher/groups-main.php:62
1518
  msgid "second rotation"
1519
  msgstr "deuxième rotation"
1520
 
1521
- #: dashboard/publisher/adverts-edit.php:417
1522
- #: dashboard/publisher/groups-main.php:63
1523
  msgid "Block"
1524
  msgstr "Bloc"
1525
 
1526
- #: dashboard/publisher/adverts-edit.php:417
1527
- #: dashboard/publisher/groups-main.php:63
1528
  msgid "grid"
1529
  msgstr "grille"
1530
 
1531
- #: dashboard/publisher/adverts-edit.php:418
1532
  #: dashboard/publisher/groups-edit.php:202
1533
- #: dashboard/publisher/groups-main.php:64
1534
  msgid "Post Injection"
1535
  msgstr "Injection dans l'article"
1536
 
1537
- #: dashboard/publisher/adverts-edit.php:419
1538
  msgid "Geolocation"
1539
  msgstr "Géolocalisation"
1540
 
1541
- #: dashboard/publisher/adverts-edit.php:425
1542
  #: dashboard/publisher/groups-edit.php:61
1543
- #: dashboard/publisher/groups-main.php:71
1544
  msgid "Mode"
1545
  msgstr "Mode"
1546
 
@@ -1591,7 +1550,14 @@ msgstr "Pubs Activées"
1591
  msgid "Export to XML"
1592
  msgstr ""
1593
 
 
 
 
 
 
1594
  #: dashboard/publisher/adverts-main.php:44
 
 
1595
  msgid "Shown"
1596
  msgstr "Montré"
1597
 
@@ -1794,7 +1760,7 @@ msgid ""
1794
  msgstr ""
1795
 
1796
  #: dashboard/publisher/groups-edit.php:184
1797
- #: dashboard/settings/advertisers.php:17
1798
  msgid "Geo Targeting"
1799
  msgstr ""
1800
 
@@ -1834,7 +1800,7 @@ msgstr ""
1834
 
1835
  #: dashboard/publisher/groups-edit.php:209
1836
  #: dashboard/publisher/groups-edit.php:247
1837
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1838
  msgid "Disabled"
1839
  msgstr "Désactivé"
1840
 
@@ -1949,6 +1915,10 @@ msgstr ""
1949
  msgid "Select adverts"
1950
  msgstr ""
1951
 
 
 
 
 
1952
  #: dashboard/publisher/groups-edit.php:337
1953
  msgid "Visible until"
1954
  msgstr "Visible jusqu'à"
@@ -1973,16 +1943,13 @@ msgstr "Vous allez supprimer un groupe"
1973
  msgid "This action can not be undone!"
1974
  msgstr "Ceci ne peux pas être défait!"
1975
 
1976
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
1977
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
1978
  msgid "OK to continue, CANCEL to stop."
1979
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1980
 
1981
- #: dashboard/publisher/groups-main.php:41
1982
- msgid "Code"
1983
- msgstr "Code"
1984
-
1985
- #: dashboard/publisher/groups-main.php:86
1986
  msgid "No groups created!"
1987
  msgstr "Aucun groupe n'a été créé!"
1988
 
@@ -1990,142 +1957,175 @@ msgstr "Aucun groupe n'a été créé!"
1990
  msgid "Statistics for group"
1991
  msgstr "Statistiques pour le groupe"
1992
 
1993
- #: dashboard/settings/advertisers.php:1
1994
  msgid "Advertisers - Available in AdRotate Pro"
1995
  msgstr ""
1996
 
1997
- #: dashboard/settings/advertisers.php:2
1998
  msgid "Enable advertisers so they can review and manage their own ads."
1999
  msgstr ""
2000
 
2001
- #: dashboard/settings/advertisers.php:5
2002
  msgid "Enable Advertisers"
2003
  msgstr ""
2004
 
2005
- #: dashboard/settings/advertisers.php:7
2006
  msgid "Allow adverts to be coupled to users (Advertisers)."
2007
  msgstr ""
2008
 
2009
- #: dashboard/settings/advertisers.php:11
2010
  msgid "Edit/update adverts"
2011
  msgstr ""
2012
 
2013
- #: dashboard/settings/advertisers.php:13
2014
  msgid "Allow advertisers to add new or edit their adverts."
2015
  msgstr ""
2016
 
2017
- #: dashboard/settings/advertisers.php:19
2018
  msgid ""
2019
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2020
  "be enabled, too."
2021
  msgstr ""
2022
 
2023
- #: dashboard/settings/advertisers.php:23
2024
  msgid "Advertiser role"
2025
  msgstr ""
2026
 
2027
- #: dashboard/settings/advertisers.php:25
2028
  msgid "Create a seperate user role for your advertisers."
2029
  msgstr ""
2030
 
2031
- #: dashboard/settings/advertisers.php:26
2032
  msgid ""
2033
  "Don't forget to give these users access to their advertiser dashboard via "
2034
  "the Roles tab."
2035
  msgstr ""
2036
 
2037
- #: dashboard/settings/general.php:1
2038
  msgid "General Settings"
2039
  msgstr ""
2040
 
2041
- #: dashboard/settings/general.php:2
2042
  msgid "General settings for AdRotate."
2043
  msgstr ""
2044
 
2045
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2046
  msgid "Load jQuery"
2047
  msgstr "Utilisez jQuery"
2048
 
2049
- #: dashboard/settings/general.php:6
2050
  msgid ""
2051
- "jQuery is required for dynamic groups, ad block detection and some other "
2052
- "features. Enable this if your theme does not load jQuery."
2053
  msgstr ""
2054
 
2055
- #: dashboard/settings/general.php:9
2056
  msgid "Load scripts in footer?"
2057
  msgstr ""
2058
 
2059
- #: dashboard/settings/general.php:10
2060
  msgid ""
2061
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2062
  "site."
2063
  msgstr ""
2064
 
2065
- #: dashboard/settings/general.php:14
2066
- msgid "Banner Folder"
2067
  msgstr ""
2068
 
2069
- #: dashboard/settings/general.php:15
2070
- msgid "Set a location where your banner images will be stored."
2071
  msgstr ""
2072
 
2073
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2074
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2075
- #: dashboard/settings/statistics.php:38
2076
- msgid "Available in AdRotate Pro!"
2077
  msgstr ""
2078
 
2079
- #: dashboard/settings/general.php:18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2080
  msgid "Location"
2081
  msgstr ""
2082
 
2083
- #: dashboard/settings/general.php:20
2084
  msgid "(Default: wp-content/banners/)."
2085
  msgstr ""
2086
 
2087
- #: dashboard/settings/general.php:21
2088
  msgid ""
2089
  "To try and trick ad blockers you could set the folder to something crazy "
2090
  "like:"
2091
  msgstr ""
2092
 
2093
- #: dashboard/settings/general.php:22
2094
  msgid ""
2095
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2096
  "will show errors when the folder is missing."
2097
  msgstr ""
2098
 
2099
- #: dashboard/settings/general.php:27
2100
  msgid "Bot filter"
2101
  msgstr "Filtre de robots"
2102
 
2103
- #: dashboard/settings/general.php:28
2104
  msgid "The bot filter is used for the AdRotate stats tracker."
2105
  msgstr ""
2106
 
2107
- #: dashboard/settings/general.php:31
2108
  msgid "User-Agent Filter"
2109
  msgstr "Filtrage par User-Agent"
2110
 
2111
- #: dashboard/settings/general.php:34
2112
  msgid ""
2113
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2114
  msgstr ""
2115
 
2116
- #: dashboard/settings/general.php:35
2117
  msgid ""
2118
  "Keep in mind that this might give false positives. The word 'fire' also "
2119
  "matches 'firefox', but not vice-versa. So be careful!"
2120
  msgstr ""
2121
 
2122
- #: dashboard/settings/general.php:36
2123
  msgid ""
2124
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2125
  "characters are stripped out."
2126
  msgstr ""
2127
 
2128
- #: dashboard/settings/general.php:37
2129
  msgid ""
2130
  "Additionally to the list specified here, empty User-Agents are blocked as "
2131
  "well."
@@ -2133,94 +2133,90 @@ msgstr ""
2133
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2134
  "bloqués."
2135
 
2136
- #: dashboard/settings/general.php:37
2137
  msgid "Learn more about"
2138
  msgstr "En savoir plus sur"
2139
 
2140
- #: dashboard/settings/general.php:37
2141
  msgid "user-agents"
2142
  msgstr "user-agents"
2143
 
2144
- #: dashboard/settings/geotargeting.php:1
2145
  msgid "Geo Targeting - Available in AdRotate Pro"
2146
  msgstr ""
2147
 
2148
- #: dashboard/settings/geotargeting.php:2
2149
  msgid "Target certain areas in the world for better advertising oppurtunities."
2150
  msgstr ""
2151
 
2152
- #: dashboard/settings/geotargeting.php:5
2153
  msgid "Which Geo Service"
2154
  msgstr ""
2155
 
2156
- #: dashboard/settings/geotargeting.php:15
2157
- msgid "No Geo Targeting is available for your adverts."
2158
- msgstr ""
2159
-
2160
- #: dashboard/settings/geotargeting.php:16
2161
  msgid ""
2162
  "The most complete and accurate geo targeting you can get for only $20 USD "
2163
  "per 50000 lookups."
2164
  msgstr ""
2165
 
2166
- #: dashboard/settings/geotargeting.php:18
2167
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2168
  msgstr ""
2169
 
2170
- #: dashboard/settings/geotargeting.php:20
2171
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2172
  msgstr ""
2173
 
2174
- #: dashboard/settings/geotargeting.php:26
2175
  msgid "Geo Cookie Lifespan"
2176
  msgstr ""
2177
 
2178
- #: dashboard/settings/geotargeting.php:35
2179
  msgid "Hours."
2180
  msgstr ""
2181
 
2182
- #: dashboard/settings/geotargeting.php:36
2183
  msgid ""
2184
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2185
  "cookie last? A longer period is less accurate for mobile users but may "
2186
  "reduce the usage of your lookups drastically."
2187
  msgstr ""
2188
 
2189
- #: dashboard/settings/geotargeting.php:42
2190
  msgid "MaxMind City/Country"
2191
  msgstr ""
2192
 
2193
- #: dashboard/settings/geotargeting.php:45
2194
  msgid "Username/Email"
2195
  msgstr ""
2196
 
2197
- #: dashboard/settings/geotargeting.php:49
2198
  msgid "Password/License Key"
2199
  msgstr ""
2200
 
2201
- #: dashboard/settings/maintenance.php:1
2202
  msgid "Maintenance"
2203
  msgstr "Maintenance"
2204
 
2205
- #: dashboard/settings/maintenance.php:2
2206
  msgid ""
2207
  "Use these functions when you notice your database is slow, unresponsive and "
2208
  "sluggish."
2209
  msgstr ""
2210
 
2211
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2212
  msgid "Optimize Database"
2213
  msgstr "Optimiser la base de données"
2214
 
2215
- #: dashboard/settings/maintenance.php:7
2216
  msgid "You are about to optimize the AdRotate database."
2217
  msgstr "Vous allez optimiser la base de données de Adrotate."
2218
 
2219
- #: dashboard/settings/maintenance.php:7
2220
  msgid "Did you make a backup of your database?"
2221
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
2222
 
2223
- #: dashboard/settings/maintenance.php:7
2224
  msgid ""
2225
  "This may take a moment and may cause your website to respond slow "
2226
  "temporarily!"
@@ -2228,11 +2224,11 @@ msgstr ""
2228
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
2229
  "temporaire!"
2230
 
2231
- #: dashboard/settings/maintenance.php:8
2232
  msgid "Cleans up overhead data in the AdRotate tables."
2233
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
2234
 
2235
- #: dashboard/settings/maintenance.php:9
2236
  msgid ""
2237
  "Overhead data is accumulated garbage resulting from many changes you've "
2238
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2241,11 +2237,11 @@ msgstr ""
2241
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2242
  "KB de données."
2243
 
2244
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2245
  msgid "Clean-up Database"
2246
  msgstr "Nettoyer la base de données"
2247
 
2248
- #: dashboard/settings/maintenance.php:15
2249
  msgid ""
2250
  "You are about to clean up your database. This may delete expired schedules "
2251
  "and older statistics."
@@ -2253,51 +2249,51 @@ msgstr ""
2253
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2254
  "supprimer des calendriers périmés et des vieilles statistiques.."
2255
 
2256
- #: dashboard/settings/maintenance.php:15
2257
  msgid "Are you sure you want to continue?"
2258
  msgstr "Etes-vous certains de vouloir continuer?"
2259
 
2260
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2261
  msgid "This might take a while and may slow down your site during this action!"
2262
  msgstr ""
2263
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2264
  "interval!"
2265
 
2266
- #: dashboard/settings/maintenance.php:16
2267
  msgid "Delete stats older than 356 days (Optional)."
2268
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2269
 
2270
- #: dashboard/settings/maintenance.php:17
2271
  msgid ""
2272
  "AdRotate creates empty records when you start making ads, groups or "
2273
  "schedules. In rare occasions these records are faulty."
2274
  msgstr ""
2275
 
2276
- #: dashboard/settings/maintenance.php:17
2277
  msgid ""
2278
  "If you made an ad, group or schedule that does not save when you make it use "
2279
  "this button to delete those empty records."
2280
  msgstr ""
2281
 
2282
- #: dashboard/settings/maintenance.php:17
2283
  msgid ""
2284
  "Additionally you can clean up old schedules and/or statistics. This will "
2285
  "improve the speed of your site."
2286
  msgstr ""
2287
 
2288
- #: dashboard/settings/maintenance.php:21
2289
  msgid "Re-evaluate Ads"
2290
  msgstr "Re-évaluer les publicités"
2291
 
2292
- #: dashboard/settings/maintenance.php:23
2293
  msgid "Re-evaluate all ads"
2294
  msgstr "Re-évaluer toutes les publicités"
2295
 
2296
- #: dashboard/settings/maintenance.php:23
2297
  msgid "You are about to check all ads for errors."
2298
  msgstr "Vous allez véifier l'état de toutes les publicités."
2299
 
2300
- #: dashboard/settings/maintenance.php:24
2301
  msgid ""
2302
  "This will apply all evaluation rules to all ads to see if any error slipped "
2303
  "in. Normally you should not need this feature."
@@ -2306,7 +2302,7 @@ msgstr ""
2306
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2307
  "fonctionalité."
2308
 
2309
- #: dashboard/settings/maintenance.php:28
2310
  msgid ""
2311
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2312
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2319,11 +2315,11 @@ msgid ""
2319
  "is not a valid point in any case."
2320
  msgstr ""
2321
 
2322
- #: dashboard/settings/maintenance.php:30
2323
  msgid "Troubleshooting"
2324
  msgstr "Diagnostic de dépannage"
2325
 
2326
- #: dashboard/settings/maintenance.php:31
2327
  msgid ""
2328
  "The below options are not meant for normal use and are only there for "
2329
  "developers to review saved settings or how ads are selected. These can be "
@@ -2331,19 +2327,19 @@ msgid ""
2331
  "SHOULD BE LEFT UNCHECKED!!"
2332
  msgstr ""
2333
 
2334
- #: dashboard/settings/maintenance.php:34
2335
  msgid "Developer Debug"
2336
  msgstr "Debuggage de développeur"
2337
 
2338
- #: dashboard/settings/maintenance.php:36
2339
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2340
  msgstr ""
2341
 
2342
- #: dashboard/settings/maintenance.php:37
2343
  msgid "View advert specs and (some) stats in the dashboard."
2344
  msgstr ""
2345
 
2346
- #: dashboard/settings/maintenance.php:38
2347
  msgid ""
2348
  "Disable timers for clicks and impressions and enable a alert window for "
2349
  "clicktracking."
@@ -2351,80 +2347,75 @@ msgstr ""
2351
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2352
  "fenêtre d'alerte pour le suivi des clicks."
2353
 
2354
- #: dashboard/settings/maintenance.php:39
2355
  msgid "Temporarily disable encryption on the redirect url."
2356
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2357
 
2358
- #: dashboard/settings/maintenance.php:44
2359
  msgid "Status and Versions"
2360
  msgstr ""
2361
 
2362
- #: dashboard/settings/maintenance.php:47
2363
  msgid "Current version:"
2364
  msgstr "Version actuelle :"
2365
 
2366
- #: dashboard/settings/maintenance.php:48
2367
  msgid "Previous version:"
2368
  msgstr "Version antérieure :"
2369
 
2370
- #: dashboard/settings/maintenance.php:51
2371
  msgid "Current database version:"
2372
  msgstr "Version actuelle de la base de données :"
2373
 
2374
- #: dashboard/settings/maintenance.php:52
2375
  msgid "Previous database version:"
2376
  msgstr "Version antérieure de la base de données :"
2377
 
2378
- #: dashboard/settings/maintenance.php:55
2379
  msgid "Current status of adverts"
2380
  msgstr "Etat actuel des publicités"
2381
 
2382
- #: dashboard/settings/maintenance.php:56
2383
  msgid "Normal"
2384
  msgstr "Normal"
2385
 
2386
- #: dashboard/settings/maintenance.php:56
2387
  msgid "Error"
2388
  msgstr "Erreur"
2389
 
2390
- #: dashboard/settings/maintenance.php:56
2391
  msgid "Expired"
2392
  msgstr "Expiré"
2393
 
2394
- #: dashboard/settings/maintenance.php:56
2395
  msgid "Expires Soon"
2396
  msgstr "Expire bientôt"
2397
 
2398
- #: dashboard/settings/maintenance.php:56
2399
  msgid "Unknown"
2400
  msgstr ""
2401
 
2402
- #: dashboard/settings/maintenance.php:59
2403
  msgid "Ad evaluation next run:"
2404
  msgstr ""
2405
 
2406
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2407
- #: dashboard/settings/maintenance.php:68
2408
  msgid "Not scheduled!"
2409
  msgstr "Pas planifié!"
2410
 
2411
- #: dashboard/settings/maintenance.php:63
2412
- msgid "Ad Notifications next run:"
2413
- msgstr ""
2414
-
2415
- #: dashboard/settings/maintenance.php:67
2416
  msgid "Clean Trackerdata next run:"
2417
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2418
 
2419
- #: dashboard/settings/misc.php:1
2420
  msgid "Miscellaneous"
2421
  msgstr "Divers"
2422
 
2423
- #: dashboard/settings/misc.php:4
2424
  msgid "Widget alignment"
2425
  msgstr "Alignement du Widget"
2426
 
2427
- #: dashboard/settings/misc.php:5
2428
  msgid ""
2429
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2430
  "not always help!)"
@@ -2432,11 +2423,11 @@ msgstr ""
2432
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
2433
  "votre thème. Cette fonction peux ne pas régler le soucis!"
2434
 
2435
- #: dashboard/settings/misc.php:8
2436
  msgid "Widget padding"
2437
  msgstr "Marge interne du Widget"
2438
 
2439
- #: dashboard/settings/misc.php:9
2440
  msgid ""
2441
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2442
  "not always work!)"
@@ -2444,11 +2435,11 @@ msgstr ""
2444
  "Activez cette option pour supprimer la marge (espace vide) autour des "
2445
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
2446
 
2447
- #: dashboard/settings/misc.php:13
2448
  msgid "NOTICE:"
2449
  msgstr ""
2450
 
2451
- #: dashboard/settings/misc.php:14
2452
  msgid ""
2453
  "You have enabled W3 Total Caching support but not defined the security hash. "
2454
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2460,15 +2451,15 @@ msgstr ""
2460
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
2461
  "fonction \"late init\" doit être activée dans W3 Total Cache."
2462
 
2463
- #: dashboard/settings/misc.php:18
2464
  msgid "W3 Total Caching"
2465
  msgstr "W3 Total Caching"
2466
 
2467
- #: dashboard/settings/misc.php:19
2468
  msgid "Check this box if you use W3 Total Caching on your site."
2469
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
2470
 
2471
- #: dashboard/settings/misc.php:23
2472
  msgid ""
2473
  "It may take a while for the ad to start rotating. The caching plugin needs "
2474
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2478,7 +2469,7 @@ msgstr ""
2478
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
2479
  "pas fait manuellement."
2480
 
2481
- #: dashboard/settings/misc.php:23
2482
  msgid ""
2483
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2484
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2487,308 +2478,328 @@ msgstr ""
2487
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2488
  "PHP dans le code d'exclusion vous-même."
2489
 
2490
- #: dashboard/settings/notifications.php:1
2491
  msgid "Notifications - Available in AdRotate Pro"
2492
  msgstr ""
2493
 
2494
- #: dashboard/settings/notifications.php:2
2495
  msgid "Set up who gets notifications if ads need your attention."
2496
  msgstr ""
2497
 
2498
- #: dashboard/settings/notifications.php:5
2499
  msgid "Delivery method"
2500
  msgstr ""
2501
 
2502
- #: dashboard/settings/notifications.php:7
2503
  msgid "Email message."
2504
  msgstr ""
2505
 
2506
- #: dashboard/settings/notifications.php:8
2507
  msgid "Push notifications to your smartphone."
2508
  msgstr ""
2509
 
2510
- #: dashboard/settings/notifications.php:9
2511
  msgid ""
2512
  "Push notifications are delivered through Pushover, a notification service "
2513
  "for Android and iOS"
2514
  msgstr ""
2515
 
2516
- #: dashboard/settings/notifications.php:9
2517
  msgid ""
2518
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2519
  "information can be found on the pushover website;"
2520
  msgstr ""
2521
 
2522
- #: dashboard/settings/notifications.php:13
2523
  msgid "Test notification"
2524
  msgstr ""
2525
 
2526
- #: dashboard/settings/notifications.php:15
2527
  msgid ""
2528
  "This sends a test notification. Before you test, save the options first!"
2529
  msgstr ""
2530
 
2531
- #: dashboard/settings/notifications.php:20
2532
  msgid "Dashboard Notifications"
2533
  msgstr ""
2534
 
2535
- #: dashboard/settings/notifications.php:21
2536
  msgid "These show to every administrator who can edit adverts."
2537
  msgstr ""
2538
 
2539
- #: dashboard/settings/notifications.php:24
2540
  msgid "Notification banners"
2541
  msgstr ""
2542
 
2543
- #: dashboard/settings/notifications.php:25
2544
  msgid "Disable dashboard notifications."
2545
  msgstr ""
2546
 
2547
- #: dashboard/settings/notifications.php:29
2548
  msgid "Email Notifications"
2549
  msgstr ""
2550
 
2551
- #: dashboard/settings/notifications.php:30
2552
  msgid "Set up who gets notification emails."
2553
  msgstr ""
2554
 
2555
- #: dashboard/settings/notifications.php:33
2556
- #: dashboard/settings/notifications.php:53
2557
  msgid "Publishers"
2558
  msgstr ""
2559
 
2560
- #: dashboard/settings/notifications.php:36
2561
  msgid ""
2562
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2563
  "list to a minimum!"
2564
  msgstr ""
2565
 
2566
- #: dashboard/settings/notifications.php:37
2567
  msgid ""
2568
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2569
  "email notifications will be send."
2570
  msgstr ""
2571
 
2572
- #: dashboard/settings/notifications.php:41
2573
  msgid "Advertisers"
2574
  msgstr ""
2575
 
2576
- #: dashboard/settings/notifications.php:44
2577
  msgid ""
2578
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2579
  "This field may not be empty!"
2580
  msgstr ""
2581
 
2582
- #: dashboard/settings/notifications.php:49
2583
  msgid "Push Notifications"
2584
  msgstr ""
2585
 
2586
- #: dashboard/settings/notifications.php:50
2587
  msgid ""
2588
  "Receive information about what is happening with your AdRotate setup on your "
2589
  "smartphone via Pushover."
2590
  msgstr ""
2591
 
2592
- #: dashboard/settings/notifications.php:55
2593
  msgid "When you are running out of Geo Targeting Lookups."
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/notifications.php:56
2597
  msgid "Daily digest of any advert status other than normal."
2598
  msgstr ""
2599
 
2600
- #: dashboard/settings/notifications.php:57
2601
  msgid "Any advertiser saving an advert in your moderation queue."
2602
  msgstr ""
2603
 
2604
- #: dashboard/settings/notifications.php:58
2605
  msgid "A moderator approved an advert from the moderation queue."
2606
  msgstr ""
2607
 
2608
- #: dashboard/settings/notifications.php:59
2609
  msgid "A moderator rejected an advert from the moderation queue."
2610
  msgstr ""
2611
 
2612
- #: dashboard/settings/notifications.php:59
2613
  msgid ""
2614
  "If you have a lot of activity with many advertisers adding/changing adverts "
2615
  "you may get a lot of messages!"
2616
  msgstr ""
2617
 
2618
- #: dashboard/settings/notifications.php:64
2619
  msgid "User Key"
2620
  msgstr ""
2621
 
2622
- #: dashboard/settings/notifications.php:66
2623
  msgid "Get your user token"
2624
  msgstr ""
2625
 
2626
- #: dashboard/settings/notifications.php:66
2627
- #: dashboard/settings/notifications.php:72
2628
  msgid "here"
2629
  msgstr ""
2630
 
2631
- #: dashboard/settings/notifications.php:70
2632
  msgid "Api Token"
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/notifications.php:72
2636
  msgid "Create your"
2637
  msgstr ""
2638
 
2639
- #: dashboard/settings/notifications.php:72
2640
  msgid "App"
2641
  msgstr ""
2642
 
2643
- #: dashboard/settings/notifications.php:72
2644
  msgid "and get your API token"
2645
  msgstr ""
2646
 
2647
- #: dashboard/settings/roles.php:1
2648
  msgid "Roles"
2649
  msgstr ""
2650
 
2651
- #: dashboard/settings/roles.php:2
2652
  msgid "Who has access to what?"
2653
  msgstr "Qui a accès à quoi?"
2654
 
2655
- #: dashboard/settings/roles.php:5
2656
  msgid "Manage/Add/Edit adverts"
2657
  msgstr "Gérer/Ajouter/Modifier les publicités"
2658
 
2659
- #: dashboard/settings/roles.php:9
2660
  msgid "Role to see and add/edit ads."
2661
  msgstr "Rôle pour voir et gérer/modifier les publicités."
2662
 
2663
- #: dashboard/settings/roles.php:13
2664
  msgid "Delete/Reset adverts"
2665
  msgstr "Supprimer/Mettre à zéro les publicités"
2666
 
2667
- #: dashboard/settings/roles.php:17
2668
  msgid "Role to delete ads and reset stats."
2669
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
2670
 
2671
- #: dashboard/settings/roles.php:21
2672
  msgid "Manage/Add/Edit groups"
2673
  msgstr "Gérer/Ajouter/Modifier les groupes"
2674
 
2675
- #: dashboard/settings/roles.php:25
2676
  msgid "Role to see and add/edit groups."
2677
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
2678
 
2679
- #: dashboard/settings/roles.php:29
2680
  msgid "Delete groups"
2681
  msgstr "Effacer les groups"
2682
 
2683
- #: dashboard/settings/roles.php:33
2684
  msgid "Role to delete groups."
2685
  msgstr "Rôle pour supprimer les groupes."
2686
 
2687
- #: dashboard/settings/statistics.php:2
2688
  msgid "Track statistics for your adverts."
2689
  msgstr ""
2690
 
2691
- #: dashboard/settings/statistics.php:5
2692
  msgid "How to track stats"
2693
  msgstr ""
2694
 
2695
- #: dashboard/settings/statistics.php:14
2696
- msgid "No impressions and clicks can be recorded for any of your adverts."
2697
- msgstr ""
2698
-
2699
- #: dashboard/settings/statistics.php:15
2700
  msgid "Tracks impressions and clicks internally"
2701
  msgstr ""
2702
 
2703
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2704
- #: dashboard/settings/statistics.php:19
2705
  msgid "manual"
2706
  msgstr ""
2707
 
2708
- #: dashboard/settings/statistics.php:16
2709
  msgid ""
2710
  "Click and Impression recording, Click and impression limits, impression "
2711
- "spread for schedules, local stats display."
 
2712
  msgstr ""
2713
 
2714
- #: dashboard/settings/statistics.php:17
 
 
 
 
2715
  msgid ""
2716
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2717
  "attributes"
2718
  msgstr ""
2719
 
2720
- #: dashboard/settings/statistics.php:18
2721
  msgid ""
2722
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2723
  "Contents."
2724
  msgstr ""
2725
 
2726
- #: dashboard/settings/statistics.php:19
2727
  msgid ""
2728
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2729
  "uses onClick() and onload() in adverts"
2730
  msgstr ""
2731
 
2732
- #: dashboard/settings/statistics.php:20
2733
  msgid ""
2734
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/statistics.php:26
2738
  msgid "Internal Tracker"
2739
  msgstr ""
2740
 
2741
- #: dashboard/settings/statistics.php:27
2742
  msgid ""
2743
  "The settings below are for the internal tracker and have no effect when "
2744
  "using Piwik/Google Analytics."
2745
  msgstr ""
2746
 
2747
- #: dashboard/settings/statistics.php:30
2748
  msgid "Logged in impressions"
2749
  msgstr ""
2750
 
2751
- #: dashboard/settings/statistics.php:32
2752
  msgid "Track impressions from logged in users."
2753
  msgstr ""
2754
 
2755
- #: dashboard/settings/statistics.php:36
2756
  msgid "Logged in clicks"
2757
  msgstr ""
2758
 
2759
- #: dashboard/settings/statistics.php:38
2760
  msgid "Track clicks from logged in users."
2761
  msgstr ""
2762
 
2763
- #: dashboard/settings/statistics.php:42
2764
- msgid "Impressions timer"
2765
- msgstr "Minuterie de impressions"
2766
 
2767
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2768
  msgid "Seconds."
2769
  msgstr "Secondes."
2770
 
2771
- #: dashboard/settings/statistics.php:45
2772
  msgid "Default: 60."
2773
  msgstr ""
2774
 
2775
- #: dashboard/settings/statistics.php:45
2776
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2777
  msgstr ""
2778
 
2779
- #: dashboard/settings/statistics.php:49
2780
- msgid "Clicks timer"
2781
- msgstr "Interval de clicks"
2782
 
2783
- #: dashboard/settings/statistics.php:52
2784
  msgid "Default: 86400."
2785
  msgstr ""
2786
 
2787
- #: dashboard/settings/statistics.php:52
2788
  msgid ""
2789
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2790
  msgstr ""
2791
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2792
  #, fuzzy
2793
  #~ msgid "Learn More"
2794
  #~ msgstr "En savoir plus"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: en_US\n"
244
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
245
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
246
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
247
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
248
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
249
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
250
+ #: dashboard/settings/geotargeting.php:26
251
  msgid "Buy now"
252
  msgstr ""
253
 
341
  msgid "on WordPress.org to help AdRotate grow in a positive way"
342
  msgstr ""
343
 
344
+ #: adrotate-output.php:887
345
  msgid "Available in AdRotate Pro"
346
  msgstr "Disponible dans Adrotate Pro"
347
 
357
  msgid "Learn more"
358
  msgstr "En savoir plus"
359
 
360
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
361
+ #: dashboard/publisher/adverts-edit.php:240
362
  msgid "January"
363
  msgstr "Janvier"
364
 
365
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
366
+ #: dashboard/publisher/adverts-edit.php:241
367
  msgid "February"
368
  msgstr "Février"
369
 
370
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
371
+ #: dashboard/publisher/adverts-edit.php:242
372
  msgid "March"
373
  msgstr "Mars"
374
 
375
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
376
+ #: dashboard/publisher/adverts-edit.php:243
377
  msgid "April"
378
  msgstr "Avril"
379
 
380
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
381
+ #: dashboard/publisher/adverts-edit.php:244
382
  msgid "May"
383
  msgstr "Mai"
384
 
385
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
386
+ #: dashboard/publisher/adverts-edit.php:245
387
  msgid "June"
388
  msgstr "Juin"
389
 
390
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
391
+ #: dashboard/publisher/adverts-edit.php:246
392
  msgid "July"
393
  msgstr "Juillet"
394
 
395
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
396
+ #: dashboard/publisher/adverts-edit.php:247
397
  msgid "August"
398
  msgstr "Août"
399
 
400
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
401
+ #: dashboard/publisher/adverts-edit.php:248
402
  msgid "September"
403
  msgstr "Septembre"
404
 
405
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
406
+ #: dashboard/publisher/adverts-edit.php:249
407
  msgid "October"
408
  msgstr "Octobre"
409
 
410
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
411
+ #: dashboard/publisher/adverts-edit.php:250
412
  msgid "November"
413
  msgstr "Novembre"
414
 
415
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
416
+ #: dashboard/publisher/adverts-edit.php:251
417
  msgid "December"
418
  msgstr "Décembre"
419
 
530
  msgstr "Gérer les groupes"
531
 
532
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
533
+ #: dashboard/publisher/groups-main.php:70
534
  msgid "Report"
535
  msgstr "Rapport"
536
 
546
  "AdRotate Pro."
547
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
548
 
549
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
550
  #: dashboard/publisher/adverts-main.php:114
551
  #: dashboard/publisher/groups-edit.php:75
552
+ #: dashboard/publisher/groups-main.php:89
553
  msgid "More information"
554
  msgstr "Plus d'information"
555
 
584
  msgid "End"
585
  msgstr ""
586
 
587
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
588
  #: dashboard/publisher/groups-main.php:34
589
  msgid "Ads"
590
  msgstr "Pubs"
591
 
592
  #: adrotate.php:428
593
  #, fuzzy
594
+ msgid "Max Impressions"
595
+ msgstr "Nombre max de vues :"
596
 
597
  #: adrotate.php:429
598
  #, fuzzy
599
+ msgid "Max Clicks"
600
+ msgstr "Nombre de clicks max :"
601
 
602
  #: adrotate.php:459
603
  #, fuzzy
687
  "complet d'images de tailles différentes est recommendé si vous avez un site "
688
  "fluide."
689
 
690
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
691
  msgid ""
692
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
693
  "filename instead of \".full\" for the various viewports."
696
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
697
  "tailles d'écran."
698
 
699
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
700
  #: dashboard/publisher/groups-edit.php:312
701
  #: dashboard/publisher/groups-edit.php:320
702
  msgid "Example:"
703
  msgstr "Exemple :"
704
 
705
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
706
  #, fuzzy
707
  msgid ""
708
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
800
  "forum. Get a solution (usually) within a day."
801
  msgstr ""
802
 
803
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
804
  msgid "AdRotate is brought to you by"
805
  msgstr "AdRotate est offert par"
806
 
807
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
808
  msgid ""
809
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
810
+ "starters or people looking for a new direction!"
811
  msgstr ""
812
 
 
 
 
 
813
  #: dashboard/adrotatepro.php:58
814
  msgid "Schedule all campaigns with ease"
815
  msgstr "Planifier toutes vos campagnes en toute simplicité"
836
  msgstr ""
837
 
838
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
839
+ #: dashboard/info.php:93 dashboard/info.php:105
840
  msgid "Buy AdRotate Professional"
841
  msgstr "Achetez AdRotate Professionel"
842
 
843
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
844
  msgid "Single License"
845
  msgstr ""
846
 
847
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
848
  msgid "For one WordPress installation."
849
  msgstr "Pour une installation Wordpress."
850
 
851
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
852
+ #: dashboard/info.php:98 dashboard/info.php:110
853
  msgid "Duo License"
854
  msgstr "Licence Duo"
855
 
856
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
857
  msgid "For two WordPress installations."
858
  msgstr "Pour deux installations Wordpress."
859
 
860
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
861
+ #: dashboard/info.php:99 dashboard/info.php:111
862
  msgid "Multi License"
863
  msgstr "Licence Multiple"
864
 
865
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
866
  msgid " For up to five WordPress installations."
867
  msgstr "Pour un max de cinq installation Wordpress."
868
 
869
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
870
+ #: dashboard/info.php:100 dashboard/info.php:112
871
  msgid "Developer License"
872
  msgstr "Licence de Developpeur"
873
 
874
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
875
  msgid "Unlimited WordPress installations and/or networks."
876
  msgstr ""
877
 
878
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
879
+ #: dashboard/info.php:101 dashboard/info.php:114
880
  msgid "Compare licenses"
881
  msgstr "Comparer les licences"
882
 
883
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
884
  msgid "Not sure which license is for you? Compare them..."
885
  msgstr ""
886
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
887
 
888
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
889
  msgid "All Licenses"
890
  msgstr "Toutes les licences"
891
 
892
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
893
  msgid "Lifetime License"
894
  msgstr ""
895
 
896
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
897
  msgid "Single installation."
898
  msgstr ""
899
 
900
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
901
  msgid "Up to 2 installations."
902
  msgstr ""
903
 
904
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
905
  msgid "Up to 10 installations."
906
  msgstr ""
907
 
908
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
909
  msgid "Up to 25 installations or multisite networks."
910
  msgstr ""
911
 
912
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
913
  msgid ""
914
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
915
  msgstr ""
916
 
917
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
918
  msgid "Not sure which license is for you?"
919
  msgstr ""
920
 
921
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
922
  msgid "Compare Licenses"
923
  msgstr ""
924
 
925
+ #: dashboard/info.php:24
926
  msgid "Currently"
927
  msgstr "Actuellement"
928
 
929
+ #: dashboard/info.php:30
930
  msgid "Your setup"
931
  msgstr "Votre configuration"
932
 
933
+ #: dashboard/info.php:31
934
  msgid "Adverts that need you"
935
  msgstr "Publicités qui ont besoin de votre attention"
936
 
937
+ #: dashboard/info.php:37
938
  msgid "Adverts"
939
  msgstr "Publicités"
940
 
941
+ #: dashboard/info.php:38
942
  msgid "(Almost) Expired"
943
  msgstr "(presque) expiré"
944
 
945
+ #: dashboard/info.php:41
946
  msgid "Groups"
947
  msgstr "Groupes"
948
 
949
+ #: dashboard/info.php:42
950
  msgid "Have errors"
951
  msgstr "Il y a des erreurs"
952
 
953
+ #: dashboard/info.php:48
954
  msgid "Support AdRotate"
955
  msgstr "Soutenez AdRotate"
956
 
957
+ #: dashboard/info.php:55
958
  msgid "Your gift helps ensure the continued development of AdRotate!"
959
  msgstr ""
960
 
961
+ #: dashboard/info.php:55
962
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
963
  msgstr ""
964
 
965
+ #: dashboard/info.php:64
966
  msgid "AdRotate News and Developer Blog"
967
  msgstr "Actus AdRotate et blog du développeur"
968
 
969
+ #: dashboard/info.php:86
970
  msgid "Get more features with AdRotate Pro"
971
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
972
 
973
+ #: dashboard/info.php:89
974
  msgid ""
975
  "Benefit from extra features to reinforce your income with advertising "
976
  "campaigns. Make the most of your website with the powerful tools AdRotate "
981
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
982
  "la version gratuite."
983
 
984
+ #: dashboard/info.php:89
985
  msgid "Want to know more about"
986
  msgstr ""
987
 
988
+ #: dashboard/info.php:89
989
  msgid "Visit the"
990
  msgstr "Visitez le"
991
 
992
+ #: dashboard/info.php:89
993
  msgid "website"
994
  msgstr "site"
995
 
 
 
 
 
996
  #: dashboard/publisher/adverts-disabled.php:15
997
  msgid "Disabled Ads"
998
  msgstr "Pubs inactives"
999
 
1000
  #: dashboard/publisher/adverts-disabled.php:21
1001
+ #: dashboard/publisher/adverts-edit.php:175
1002
  msgid "Activate"
1003
  msgstr "Activer"
1004
 
1023
 
1024
  #: dashboard/publisher/adverts-disabled.php:38
1025
  #: dashboard/publisher/adverts-report.php:34
 
 
1026
  #: dashboard/publisher/groups-report.php:40
1027
  msgid "Impressions"
1028
  msgstr "Vues"
1046
  #: dashboard/publisher/adverts-disabled.php:74
1047
  #: dashboard/publisher/adverts-error.php:64
1048
  #: dashboard/publisher/adverts-main.php:87
1049
+ #: dashboard/publisher/groups-main.php:70
1050
  msgid "Edit"
1051
  msgstr "Modifier"
1052
 
1169
  "click to add it."
1170
  msgstr ""
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:140
1173
+ msgid "Preview"
1174
+ msgstr "En avant-première"
1175
+
1176
+ #: dashboard/publisher/adverts-edit.php:143
1177
+ msgid ""
1178
+ "Note: While this preview is an accurate one, it might look different then it "
1179
+ "does on the website."
1180
+ msgstr ""
1181
+ "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1182
+ "différente sur le site."
1183
+
1184
+ #: dashboard/publisher/adverts-edit.php:144
1185
+ msgid ""
1186
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1187
+ msgstr ""
1188
+ "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1189
+ "pas actif ici!"
1190
+
1191
+ #: dashboard/publisher/adverts-edit.php:149
1192
  msgid "Banner asset"
1193
  msgstr ""
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:152
1196
  msgid "WordPress media:"
1197
  msgstr ""
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:152
1200
  msgid "Select Banner"
1201
  msgstr "Choisir l'image"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:154
1204
  msgid "- OR -"
1205
  msgstr "- OU -"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:156
1208
  msgid "Banner folder:"
1209
  msgstr "Dossier de bannières :"
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:157
1212
  msgid "No image selected"
1213
  msgstr "Aucune image sélectionnée"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:161
1216
  msgid "Use %image% in the adcode instead of the file path."
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:161
1220
  msgid ""
1221
  "Use either the text field or the dropdown. If the textfield has content that "
1222
  "field has priority."
1224
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1225
  "valeur, ce champ a la priorité."
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:166
1228
+ #: dashboard/settings/statistics.php:12
1229
  msgid "Statistics"
1230
  msgstr "Statistiques"
1231
 
1232
+ #: dashboard/publisher/adverts-edit.php:168
1233
  msgid "Enable click and impression tracking for this advert."
1234
  msgstr ""
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:169
1237
  msgid ""
1238
  "Note: Clicktracking does not work for Javascript adverts such as those "
1239
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1240
+ "always supported."
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:179
1244
  msgid "Yes, this ad will be used"
1245
  msgstr "Oui, cette publicité sera utilisée"
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:180
1248
  msgid "No, do not show this ad anywhere"
1249
  msgstr "Non, cette publicité ne sera pas utilisée"
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:187
1252
  #: dashboard/publisher/adverts-main.php:114
1253
  #: dashboard/publisher/groups-edit.php:75
1254
+ #: dashboard/publisher/groups-main.php:89
1255
  msgid "Get more features with AdRotate Pro."
1256
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:190
1259
+ #: dashboard/publisher/adverts-edit.php:290
1260
+ #: dashboard/publisher/adverts-edit.php:378
1261
+ #: dashboard/publisher/adverts-edit.php:419
1262
  msgid "Save Advert"
1263
  msgstr "Sauvegarder la pub"
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:191
1266
+ #: dashboard/publisher/adverts-edit.php:291
1267
+ #: dashboard/publisher/adverts-edit.php:379
1268
+ #: dashboard/publisher/adverts-edit.php:420
1269
  #: dashboard/publisher/groups-edit.php:154
1270
  #: dashboard/publisher/groups-edit.php:301
1271
  #: dashboard/publisher/groups-edit.php:393
1272
  msgid "Cancel"
1273
  msgstr "Annuller"
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:194
1276
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1277
  #: dashboard/publisher/groups-edit.php:136
1278
  #: dashboard/publisher/groups-edit.php:283
1279
  msgid "Usage"
1280
  msgstr "Usage"
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:198
1283
+ #: dashboard/publisher/adverts-edit.php:365
1284
  #: dashboard/publisher/groups-edit.php:140
1285
  #: dashboard/publisher/groups-edit.php:287
1286
  msgid "Widget"
1287
  msgstr ""
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:199
1290
+ #: dashboard/publisher/adverts-edit.php:366
1291
  msgid ""
1292
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1293
  "and enter ID"
1294
  msgstr ""
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:202
1297
+ #: dashboard/publisher/adverts-edit.php:369
1298
  #: dashboard/publisher/groups-edit.php:144
1299
  #: dashboard/publisher/groups-edit.php:291
1300
  msgid "In a post or page"
1301
  msgstr ""
1302
 
1303
+ #: dashboard/publisher/adverts-edit.php:204
1304
+ #: dashboard/publisher/adverts-edit.php:371
1305
  #: dashboard/publisher/groups-edit.php:146
1306
  #: dashboard/publisher/groups-edit.php:293
1307
  msgid "Directly in a theme"
1308
  msgstr ""
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:210
1311
  msgid "Schedule your advert"
1312
  msgstr ""
1313
 
1314
+ #: dashboard/publisher/adverts-edit.php:214
1315
  msgid "Start date (day/month/year)"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:235
1319
  msgid "End date (day/month/year)"
1320
  msgstr ""
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:258
1323
  msgid "Start time (hh:mm)"
1324
  msgstr ""
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:265
1327
  msgid "End time (hh:mm)"
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:275
1331
  msgid "Maximum Clicks"
1332
  msgstr ""
1333
 
1334
+ #: dashboard/publisher/adverts-edit.php:276
1335
+ #: dashboard/publisher/adverts-edit.php:278
1336
  msgid "Leave empty or 0 to skip this."
1337
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1338
 
1339
+ #: dashboard/publisher/adverts-edit.php:277
1340
  msgid "Maximum Impressions"
1341
  msgstr ""
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:282
1344
  msgid "Important"
1345
  msgstr ""
1346
 
1347
+ #: dashboard/publisher/adverts-edit.php:283
1348
  msgid ""
1349
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1350
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1351
  "14:00 hours. 6AM is 6:00 hours."
1352
  msgstr ""
1353
 
1354
+ #: dashboard/publisher/adverts-edit.php:287
1355
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1356
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1357
 
1358
+ #: dashboard/publisher/adverts-edit.php:287
1359
+ #: dashboard/publisher/adverts-edit.php:315
1360
+ #: dashboard/publisher/adverts-edit.php:359
1361
  #: dashboard/publisher/groups-edit.php:200
1362
  msgid "Upgrade today"
1363
  msgstr "Mettre à jour aujourd'hui"
1364
 
1365
+ #: dashboard/publisher/adverts-edit.php:294
1366
  #: dashboard/publisher/groups-edit.php:157
1367
  msgid "Advanced"
1368
  msgstr "Avancé"
1369
 
1370
+ #: dashboard/publisher/adverts-edit.php:295
1371
  msgid "Everything below is optional."
1372
  msgstr "Tous les paramètres ci-dessous sont optionels."
1373
 
1374
+ #: dashboard/publisher/adverts-edit.php:299
1375
  msgid "Responsive"
1376
  msgstr ""
1377
 
1378
+ #: dashboard/publisher/adverts-edit.php:301
1379
  msgid "Enable responsive support for this advert."
1380
  msgstr "Activer le support réactif pour cette publicité."
1381
 
1382
+ #: dashboard/publisher/adverts-edit.php:302
1383
  msgid ""
1384
  "Upload your images to the banner folder and make sure the filename is in the "
1385
  "following format; \"imagename.full.ext\". A full set of sized images is "
1390
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1391
  "fluide."
1392
 
1393
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1394
  #: dashboard/publisher/groups-edit.php:194
1395
  msgid "Sortorder"
1396
  msgstr ""
1397
 
1398
+ #: dashboard/publisher/adverts-edit.php:310
1399
  #: dashboard/publisher/groups-edit.php:196
1400
  msgid "For administrative purposes set a sortorder."
1401
  msgstr "Pour des raisons administratives définir un ordre de tri."
1402
 
1403
+ #: dashboard/publisher/adverts-edit.php:310
1404
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1405
  msgstr ""
1406
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1407
  "de l'ID de la publicité."
1408
 
1409
+ #: dashboard/publisher/adverts-edit.php:315
1410
  msgid ""
1411
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1412
  msgstr ""
1413
 
1414
+ #: dashboard/publisher/adverts-edit.php:317
1415
  msgid "Geo Targeting in AdRotate Pro"
1416
  msgstr ""
1417
 
1418
+ #: dashboard/publisher/adverts-edit.php:318
1419
  msgid ""
1420
  "Assign the advert to a group and enable that group to use Geo Targeting."
1421
  msgstr ""
1422
 
1423
+ #: dashboard/publisher/adverts-edit.php:322
1424
  msgid "Cities/States"
1425
  msgstr ""
1426
 
1427
+ #: dashboard/publisher/adverts-edit.php:325
1428
  msgid ""
1429
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1430
  "states ISO codes are supported)"
1431
  msgstr ""
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:325
1434
  msgid ""
1435
  "AdRotate does not check the validity of names so make sure you spell them "
1436
  "correctly!"
1437
  msgstr ""
1438
 
1439
+ #: dashboard/publisher/adverts-edit.php:329
1440
  msgid "Countries"
1441
  msgstr ""
1442
 
1443
+ #: dashboard/publisher/adverts-edit.php:354
1444
  #, fuzzy
1445
  msgid "Select the countries you want the adverts to show in."
1446
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1447
 
1448
+ #: dashboard/publisher/adverts-edit.php:354
1449
  msgid "Cities take priority and will be filtered first."
1450
  msgstr ""
1451
 
1452
+ #: dashboard/publisher/adverts-edit.php:359
1453
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1454
  msgstr ""
1455
 
1456
+ #: dashboard/publisher/adverts-edit.php:383
1457
  msgid "Select Groups"
1458
  msgstr "Choisir groupes"
1459
 
1460
+ #: dashboard/publisher/adverts-edit.php:388
1461
  msgid "ID - Name"
1462
  msgstr "ID - Nom"
1463
 
1464
+ #: dashboard/publisher/adverts-edit.php:398
1465
+ #: dashboard/publisher/groups-main.php:60
1466
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
1467
  msgid "Default"
1468
  msgstr "Par défaut"
1469
 
1470
+ #: dashboard/publisher/adverts-edit.php:399
1471
+ #: dashboard/publisher/groups-main.php:61
1472
  msgid "Dynamic"
1473
  msgstr "Dynamique"
1474
 
1475
+ #: dashboard/publisher/adverts-edit.php:399
1476
+ #: dashboard/publisher/groups-main.php:61
1477
  msgid "second rotation"
1478
  msgstr "deuxième rotation"
1479
 
1480
+ #: dashboard/publisher/adverts-edit.php:400
1481
+ #: dashboard/publisher/groups-main.php:62
1482
  msgid "Block"
1483
  msgstr "Bloc"
1484
 
1485
+ #: dashboard/publisher/adverts-edit.php:400
1486
+ #: dashboard/publisher/groups-main.php:62
1487
  msgid "grid"
1488
  msgstr "grille"
1489
 
1490
+ #: dashboard/publisher/adverts-edit.php:401
1491
  #: dashboard/publisher/groups-edit.php:202
1492
+ #: dashboard/publisher/groups-main.php:63
1493
  msgid "Post Injection"
1494
  msgstr "Injection dans l'article"
1495
 
1496
+ #: dashboard/publisher/adverts-edit.php:402
1497
  msgid "Geolocation"
1498
  msgstr "Géolocalisation"
1499
 
1500
+ #: dashboard/publisher/adverts-edit.php:408
1501
  #: dashboard/publisher/groups-edit.php:61
1502
+ #: dashboard/publisher/groups-main.php:70
1503
  msgid "Mode"
1504
  msgstr "Mode"
1505
 
1550
  msgid "Export to XML"
1551
  msgstr ""
1552
 
1553
+ #: dashboard/publisher/adverts-main.php:42
1554
+ #: dashboard/publisher/groups-edit.php:336
1555
+ msgid "Weight"
1556
+ msgstr "Importance"
1557
+
1558
  #: dashboard/publisher/adverts-main.php:44
1559
+ #: dashboard/publisher/groups-edit.php:333
1560
+ #: dashboard/publisher/groups-main.php:36
1561
  msgid "Shown"
1562
  msgstr "Montré"
1563
 
1760
  msgstr ""
1761
 
1762
  #: dashboard/publisher/groups-edit.php:184
1763
+ #: dashboard/settings/advertisers.php:28
1764
  msgid "Geo Targeting"
1765
  msgstr ""
1766
 
1800
 
1801
  #: dashboard/publisher/groups-edit.php:209
1802
  #: dashboard/publisher/groups-edit.php:247
1803
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1804
  msgid "Disabled"
1805
  msgstr "Désactivé"
1806
 
1915
  msgid "Select adverts"
1916
  msgstr ""
1917
 
1918
+ #: dashboard/publisher/groups-edit.php:331
1919
+ msgid "Choose adverts"
1920
+ msgstr ""
1921
+
1922
  #: dashboard/publisher/groups-edit.php:337
1923
  msgid "Visible until"
1924
  msgstr "Visible jusqu'à"
1943
  msgid "This action can not be undone!"
1944
  msgstr "Ceci ne peux pas être défait!"
1945
 
1946
+ #: dashboard/publisher/groups-main.php:24
1947
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1948
+ #: dashboard/settings/maintenance.php:34
1949
  msgid "OK to continue, CANCEL to stop."
1950
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1951
 
1952
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1953
  msgid "No groups created!"
1954
  msgstr "Aucun groupe n'a été créé!"
1955
 
1957
  msgid "Statistics for group"
1958
  msgstr "Statistiques pour le groupe"
1959
 
1960
+ #: dashboard/settings/advertisers.php:12
1961
  msgid "Advertisers - Available in AdRotate Pro"
1962
  msgstr ""
1963
 
1964
+ #: dashboard/settings/advertisers.php:13
1965
  msgid "Enable advertisers so they can review and manage their own ads."
1966
  msgstr ""
1967
 
1968
+ #: dashboard/settings/advertisers.php:16
1969
  msgid "Enable Advertisers"
1970
  msgstr ""
1971
 
1972
+ #: dashboard/settings/advertisers.php:18
1973
  msgid "Allow adverts to be coupled to users (Advertisers)."
1974
  msgstr ""
1975
 
1976
+ #: dashboard/settings/advertisers.php:22
1977
  msgid "Edit/update adverts"
1978
  msgstr ""
1979
 
1980
+ #: dashboard/settings/advertisers.php:24
1981
  msgid "Allow advertisers to add new or edit their adverts."
1982
  msgstr ""
1983
 
1984
+ #: dashboard/settings/advertisers.php:30
1985
  msgid ""
1986
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1987
  "be enabled, too."
1988
  msgstr ""
1989
 
1990
+ #: dashboard/settings/advertisers.php:34
1991
  msgid "Advertiser role"
1992
  msgstr ""
1993
 
1994
+ #: dashboard/settings/advertisers.php:36
1995
  msgid "Create a seperate user role for your advertisers."
1996
  msgstr ""
1997
 
1998
+ #: dashboard/settings/advertisers.php:37
1999
  msgid ""
2000
  "Don't forget to give these users access to their advertiser dashboard via "
2001
  "the Roles tab."
2002
  msgstr ""
2003
 
2004
+ #: dashboard/settings/general.php:12
2005
  msgid "General Settings"
2006
  msgstr ""
2007
 
2008
+ #: dashboard/settings/general.php:13
2009
  msgid "General settings for AdRotate."
2010
  msgstr ""
2011
 
2012
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2013
+ msgid "Some options are only available in AdRotate Pro!"
2014
+ msgstr ""
2015
+
2016
+ #: dashboard/settings/general.php:16
2017
+ msgid "Text widgets"
2018
+ msgstr ""
2019
+
2020
+ #: dashboard/settings/general.php:17
2021
+ msgid ""
2022
+ "Enable if your theme does not support shortcodes in the WordPress text "
2023
+ "widget."
2024
+ msgstr ""
2025
+
2026
+ #: dashboard/settings/general.php:20
2027
  msgid "Load jQuery"
2028
  msgstr "Utilisez jQuery"
2029
 
2030
+ #: dashboard/settings/general.php:21
2031
  msgid ""
2032
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2033
+ "groups, statistics and some other features."
2034
  msgstr ""
2035
 
2036
+ #: dashboard/settings/general.php:24
2037
  msgid "Load scripts in footer?"
2038
  msgstr ""
2039
 
2040
+ #: dashboard/settings/general.php:25
2041
  msgid ""
2042
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2043
  "site."
2044
  msgstr ""
2045
 
2046
+ #: dashboard/settings/general.php:28
2047
+ msgid "Adblock disguise"
2048
  msgstr ""
2049
 
2050
+ #: dashboard/settings/general.php:30
2051
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2052
  msgstr ""
2053
 
2054
+ #: dashboard/settings/general.php:31
2055
+ msgid ""
2056
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
 
2057
  msgstr ""
2058
 
2059
+ #: dashboard/settings/general.php:31
2060
+ msgid ""
2061
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2062
+ "instead of the AdRotate widget."
2063
+ msgstr ""
2064
+
2065
+ #: dashboard/settings/general.php:31
2066
+ msgid ""
2067
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2068
+ "feature will have little effect!"
2069
+ msgstr ""
2070
+
2071
+ #: dashboard/settings/general.php:36
2072
+ msgid "Banner Folder"
2073
+ msgstr ""
2074
+
2075
+ #: dashboard/settings/general.php:37
2076
+ msgid "Set a location where your banner images will be stored."
2077
+ msgstr ""
2078
+
2079
+ #: dashboard/settings/general.php:40
2080
  msgid "Location"
2081
  msgstr ""
2082
 
2083
+ #: dashboard/settings/general.php:42
2084
  msgid "(Default: wp-content/banners/)."
2085
  msgstr ""
2086
 
2087
+ #: dashboard/settings/general.php:43
2088
  msgid ""
2089
  "To try and trick ad blockers you could set the folder to something crazy "
2090
  "like:"
2091
  msgstr ""
2092
 
2093
+ #: dashboard/settings/general.php:44
2094
  msgid ""
2095
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2096
  "will show errors when the folder is missing."
2097
  msgstr ""
2098
 
2099
+ #: dashboard/settings/general.php:49
2100
  msgid "Bot filter"
2101
  msgstr "Filtre de robots"
2102
 
2103
+ #: dashboard/settings/general.php:50
2104
  msgid "The bot filter is used for the AdRotate stats tracker."
2105
  msgstr ""
2106
 
2107
+ #: dashboard/settings/general.php:53
2108
  msgid "User-Agent Filter"
2109
  msgstr "Filtrage par User-Agent"
2110
 
2111
+ #: dashboard/settings/general.php:56
2112
  msgid ""
2113
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2114
  msgstr ""
2115
 
2116
+ #: dashboard/settings/general.php:57
2117
  msgid ""
2118
  "Keep in mind that this might give false positives. The word 'fire' also "
2119
  "matches 'firefox', but not vice-versa. So be careful!"
2120
  msgstr ""
2121
 
2122
+ #: dashboard/settings/general.php:58
2123
  msgid ""
2124
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2125
  "characters are stripped out."
2126
  msgstr ""
2127
 
2128
+ #: dashboard/settings/general.php:59
2129
  msgid ""
2130
  "Additionally to the list specified here, empty User-Agents are blocked as "
2131
  "well."
2133
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2134
  "bloqués."
2135
 
2136
+ #: dashboard/settings/general.php:59
2137
  msgid "Learn more about"
2138
  msgstr "En savoir plus sur"
2139
 
2140
+ #: dashboard/settings/general.php:59
2141
  msgid "user-agents"
2142
  msgstr "user-agents"
2143
 
2144
+ #: dashboard/settings/geotargeting.php:12
2145
  msgid "Geo Targeting - Available in AdRotate Pro"
2146
  msgstr ""
2147
 
2148
+ #: dashboard/settings/geotargeting.php:13
2149
  msgid "Target certain areas in the world for better advertising oppurtunities."
2150
  msgstr ""
2151
 
2152
+ #: dashboard/settings/geotargeting.php:16
2153
  msgid "Which Geo Service"
2154
  msgstr ""
2155
 
2156
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2157
  msgid ""
2158
  "The most complete and accurate geo targeting you can get for only $20 USD "
2159
  "per 50000 lookups."
2160
  msgstr ""
2161
 
2162
+ #: dashboard/settings/geotargeting.php:28
2163
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2164
  msgstr ""
2165
 
2166
+ #: dashboard/settings/geotargeting.php:30
2167
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2168
  msgstr ""
2169
 
2170
+ #: dashboard/settings/geotargeting.php:36
2171
  msgid "Geo Cookie Lifespan"
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/geotargeting.php:45
2175
  msgid "Hours."
2176
  msgstr ""
2177
 
2178
+ #: dashboard/settings/geotargeting.php:46
2179
  msgid ""
2180
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2181
  "cookie last? A longer period is less accurate for mobile users but may "
2182
  "reduce the usage of your lookups drastically."
2183
  msgstr ""
2184
 
2185
+ #: dashboard/settings/geotargeting.php:52
2186
  msgid "MaxMind City/Country"
2187
  msgstr ""
2188
 
2189
+ #: dashboard/settings/geotargeting.php:55
2190
  msgid "Username/Email"
2191
  msgstr ""
2192
 
2193
+ #: dashboard/settings/geotargeting.php:59
2194
  msgid "Password/License Key"
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/maintenance.php:12
2198
  msgid "Maintenance"
2199
  msgstr "Maintenance"
2200
 
2201
+ #: dashboard/settings/maintenance.php:13
2202
  msgid ""
2203
  "Use these functions when you notice your database is slow, unresponsive and "
2204
  "sluggish."
2205
  msgstr ""
2206
 
2207
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2208
  msgid "Optimize Database"
2209
  msgstr "Optimiser la base de données"
2210
 
2211
+ #: dashboard/settings/maintenance.php:18
2212
  msgid "You are about to optimize the AdRotate database."
2213
  msgstr "Vous allez optimiser la base de données de Adrotate."
2214
 
2215
+ #: dashboard/settings/maintenance.php:18
2216
  msgid "Did you make a backup of your database?"
2217
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
2218
 
2219
+ #: dashboard/settings/maintenance.php:18
2220
  msgid ""
2221
  "This may take a moment and may cause your website to respond slow "
2222
  "temporarily!"
2224
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
2225
  "temporaire!"
2226
 
2227
+ #: dashboard/settings/maintenance.php:19
2228
  msgid "Cleans up overhead data in the AdRotate tables."
2229
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
2230
 
2231
+ #: dashboard/settings/maintenance.php:20
2232
  msgid ""
2233
  "Overhead data is accumulated garbage resulting from many changes you've "
2234
  "made. This can vary from nothing to hundreds of KiB of data."
2237
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2238
  "KB de données."
2239
 
2240
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2241
  msgid "Clean-up Database"
2242
  msgstr "Nettoyer la base de données"
2243
 
2244
+ #: dashboard/settings/maintenance.php:26
2245
  msgid ""
2246
  "You are about to clean up your database. This may delete expired schedules "
2247
  "and older statistics."
2249
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2250
  "supprimer des calendriers périmés et des vieilles statistiques.."
2251
 
2252
+ #: dashboard/settings/maintenance.php:26
2253
  msgid "Are you sure you want to continue?"
2254
  msgstr "Etes-vous certains de vouloir continuer?"
2255
 
2256
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2257
  msgid "This might take a while and may slow down your site during this action!"
2258
  msgstr ""
2259
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2260
  "interval!"
2261
 
2262
+ #: dashboard/settings/maintenance.php:27
2263
  msgid "Delete stats older than 356 days (Optional)."
2264
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2265
 
2266
+ #: dashboard/settings/maintenance.php:28
2267
  msgid ""
2268
  "AdRotate creates empty records when you start making ads, groups or "
2269
  "schedules. In rare occasions these records are faulty."
2270
  msgstr ""
2271
 
2272
+ #: dashboard/settings/maintenance.php:28
2273
  msgid ""
2274
  "If you made an ad, group or schedule that does not save when you make it use "
2275
  "this button to delete those empty records."
2276
  msgstr ""
2277
 
2278
+ #: dashboard/settings/maintenance.php:28
2279
  msgid ""
2280
  "Additionally you can clean up old schedules and/or statistics. This will "
2281
  "improve the speed of your site."
2282
  msgstr ""
2283
 
2284
+ #: dashboard/settings/maintenance.php:32
2285
  msgid "Re-evaluate Ads"
2286
  msgstr "Re-évaluer les publicités"
2287
 
2288
+ #: dashboard/settings/maintenance.php:34
2289
  msgid "Re-evaluate all ads"
2290
  msgstr "Re-évaluer toutes les publicités"
2291
 
2292
+ #: dashboard/settings/maintenance.php:34
2293
  msgid "You are about to check all ads for errors."
2294
  msgstr "Vous allez véifier l'état de toutes les publicités."
2295
 
2296
+ #: dashboard/settings/maintenance.php:35
2297
  msgid ""
2298
  "This will apply all evaluation rules to all ads to see if any error slipped "
2299
  "in. Normally you should not need this feature."
2302
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2303
  "fonctionalité."
2304
 
2305
+ #: dashboard/settings/maintenance.php:39
2306
  msgid ""
2307
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2308
  "database. They only apply to your ads/groups and stats. Not to other "
2315
  "is not a valid point in any case."
2316
  msgstr ""
2317
 
2318
+ #: dashboard/settings/maintenance.php:41
2319
  msgid "Troubleshooting"
2320
  msgstr "Diagnostic de dépannage"
2321
 
2322
+ #: dashboard/settings/maintenance.php:42
2323
  msgid ""
2324
  "The below options are not meant for normal use and are only there for "
2325
  "developers to review saved settings or how ads are selected. These can be "
2327
  "SHOULD BE LEFT UNCHECKED!!"
2328
  msgstr ""
2329
 
2330
+ #: dashboard/settings/maintenance.php:45
2331
  msgid "Developer Debug"
2332
  msgstr "Debuggage de développeur"
2333
 
2334
+ #: dashboard/settings/maintenance.php:47
2335
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2336
  msgstr ""
2337
 
2338
+ #: dashboard/settings/maintenance.php:48
2339
  msgid "View advert specs and (some) stats in the dashboard."
2340
  msgstr ""
2341
 
2342
+ #: dashboard/settings/maintenance.php:49
2343
  msgid ""
2344
  "Disable timers for clicks and impressions and enable a alert window for "
2345
  "clicktracking."
2347
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2348
  "fenêtre d'alerte pour le suivi des clicks."
2349
 
2350
+ #: dashboard/settings/maintenance.php:50
2351
  msgid "Temporarily disable encryption on the redirect url."
2352
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2353
 
2354
+ #: dashboard/settings/maintenance.php:55
2355
  msgid "Status and Versions"
2356
  msgstr ""
2357
 
2358
+ #: dashboard/settings/maintenance.php:58
2359
  msgid "Current version:"
2360
  msgstr "Version actuelle :"
2361
 
2362
+ #: dashboard/settings/maintenance.php:59
2363
  msgid "Previous version:"
2364
  msgstr "Version antérieure :"
2365
 
2366
+ #: dashboard/settings/maintenance.php:62
2367
  msgid "Current database version:"
2368
  msgstr "Version actuelle de la base de données :"
2369
 
2370
+ #: dashboard/settings/maintenance.php:63
2371
  msgid "Previous database version:"
2372
  msgstr "Version antérieure de la base de données :"
2373
 
2374
+ #: dashboard/settings/maintenance.php:66
2375
  msgid "Current status of adverts"
2376
  msgstr "Etat actuel des publicités"
2377
 
2378
+ #: dashboard/settings/maintenance.php:67
2379
  msgid "Normal"
2380
  msgstr "Normal"
2381
 
2382
+ #: dashboard/settings/maintenance.php:67
2383
  msgid "Error"
2384
  msgstr "Erreur"
2385
 
2386
+ #: dashboard/settings/maintenance.php:67
2387
  msgid "Expired"
2388
  msgstr "Expiré"
2389
 
2390
+ #: dashboard/settings/maintenance.php:67
2391
  msgid "Expires Soon"
2392
  msgstr "Expire bientôt"
2393
 
2394
+ #: dashboard/settings/maintenance.php:67
2395
  msgid "Unknown"
2396
  msgstr ""
2397
 
2398
+ #: dashboard/settings/maintenance.php:70
2399
  msgid "Ad evaluation next run:"
2400
  msgstr ""
2401
 
2402
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2403
  msgid "Not scheduled!"
2404
  msgstr "Pas planifié!"
2405
 
2406
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2407
  msgid "Clean Trackerdata next run:"
2408
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2409
 
2410
+ #: dashboard/settings/misc.php:12
2411
  msgid "Miscellaneous"
2412
  msgstr "Divers"
2413
 
2414
+ #: dashboard/settings/misc.php:15
2415
  msgid "Widget alignment"
2416
  msgstr "Alignement du Widget"
2417
 
2418
+ #: dashboard/settings/misc.php:16
2419
  msgid ""
2420
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2421
  "not always help!)"
2423
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
2424
  "votre thème. Cette fonction peux ne pas régler le soucis!"
2425
 
2426
+ #: dashboard/settings/misc.php:19
2427
  msgid "Widget padding"
2428
  msgstr "Marge interne du Widget"
2429
 
2430
+ #: dashboard/settings/misc.php:20
2431
  msgid ""
2432
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2433
  "not always work!)"
2435
  "Activez cette option pour supprimer la marge (espace vide) autour des "
2436
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
2437
 
2438
+ #: dashboard/settings/misc.php:24
2439
  msgid "NOTICE:"
2440
  msgstr ""
2441
 
2442
+ #: dashboard/settings/misc.php:25
2443
  msgid ""
2444
  "You have enabled W3 Total Caching support but not defined the security hash. "
2445
  "You need to add the following line to your wp-config.php near the bottom or "
2451
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
2452
  "fonction \"late init\" doit être activée dans W3 Total Cache."
2453
 
2454
+ #: dashboard/settings/misc.php:29
2455
  msgid "W3 Total Caching"
2456
  msgstr "W3 Total Caching"
2457
 
2458
+ #: dashboard/settings/misc.php:30
2459
  msgid "Check this box if you use W3 Total Caching on your site."
2460
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
2461
 
2462
+ #: dashboard/settings/misc.php:34
2463
  msgid ""
2464
  "It may take a while for the ad to start rotating. The caching plugin needs "
2465
  "to refresh the cache. This can take up to a week if not done manually."
2469
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
2470
  "pas fait manuellement."
2471
 
2472
+ #: dashboard/settings/misc.php:34
2473
  msgid ""
2474
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2475
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2478
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2479
  "PHP dans le code d'exclusion vous-même."
2480
 
2481
+ #: dashboard/settings/notifications.php:12
2482
  msgid "Notifications - Available in AdRotate Pro"
2483
  msgstr ""
2484
 
2485
+ #: dashboard/settings/notifications.php:13
2486
  msgid "Set up who gets notifications if ads need your attention."
2487
  msgstr ""
2488
 
2489
+ #: dashboard/settings/notifications.php:16
2490
  msgid "Delivery method"
2491
  msgstr ""
2492
 
2493
+ #: dashboard/settings/notifications.php:18
2494
  msgid "Email message."
2495
  msgstr ""
2496
 
2497
+ #: dashboard/settings/notifications.php:19
2498
  msgid "Push notifications to your smartphone."
2499
  msgstr ""
2500
 
2501
+ #: dashboard/settings/notifications.php:20
2502
  msgid ""
2503
  "Push notifications are delivered through Pushover, a notification service "
2504
  "for Android and iOS"
2505
  msgstr ""
2506
 
2507
+ #: dashboard/settings/notifications.php:20
2508
  msgid ""
2509
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2510
  "information can be found on the pushover website;"
2511
  msgstr ""
2512
 
2513
+ #: dashboard/settings/notifications.php:24
2514
  msgid "Test notification"
2515
  msgstr ""
2516
 
2517
+ #: dashboard/settings/notifications.php:26
2518
  msgid ""
2519
  "This sends a test notification. Before you test, save the options first!"
2520
  msgstr ""
2521
 
2522
+ #: dashboard/settings/notifications.php:31
2523
  msgid "Dashboard Notifications"
2524
  msgstr ""
2525
 
2526
+ #: dashboard/settings/notifications.php:32
2527
  msgid "These show to every administrator who can edit adverts."
2528
  msgstr ""
2529
 
2530
+ #: dashboard/settings/notifications.php:35
2531
  msgid "Notification banners"
2532
  msgstr ""
2533
 
2534
+ #: dashboard/settings/notifications.php:36
2535
  msgid "Disable dashboard notifications."
2536
  msgstr ""
2537
 
2538
+ #: dashboard/settings/notifications.php:40
2539
  msgid "Email Notifications"
2540
  msgstr ""
2541
 
2542
+ #: dashboard/settings/notifications.php:41
2543
  msgid "Set up who gets notification emails."
2544
  msgstr ""
2545
 
2546
+ #: dashboard/settings/notifications.php:44
2547
+ #: dashboard/settings/notifications.php:64
2548
  msgid "Publishers"
2549
  msgstr ""
2550
 
2551
+ #: dashboard/settings/notifications.php:47
2552
  msgid ""
2553
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2554
  "list to a minimum!"
2555
  msgstr ""
2556
 
2557
+ #: dashboard/settings/notifications.php:48
2558
  msgid ""
2559
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2560
  "email notifications will be send."
2561
  msgstr ""
2562
 
2563
+ #: dashboard/settings/notifications.php:52
2564
  msgid "Advertisers"
2565
  msgstr ""
2566
 
2567
+ #: dashboard/settings/notifications.php:55
2568
  msgid ""
2569
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2570
  "This field may not be empty!"
2571
  msgstr ""
2572
 
2573
+ #: dashboard/settings/notifications.php:60
2574
  msgid "Push Notifications"
2575
  msgstr ""
2576
 
2577
+ #: dashboard/settings/notifications.php:61
2578
  msgid ""
2579
  "Receive information about what is happening with your AdRotate setup on your "
2580
  "smartphone via Pushover."
2581
  msgstr ""
2582
 
2583
+ #: dashboard/settings/notifications.php:66
2584
  msgid "When you are running out of Geo Targeting Lookups."
2585
  msgstr ""
2586
 
2587
+ #: dashboard/settings/notifications.php:67
2588
  msgid "Daily digest of any advert status other than normal."
2589
  msgstr ""
2590
 
2591
+ #: dashboard/settings/notifications.php:68
2592
  msgid "Any advertiser saving an advert in your moderation queue."
2593
  msgstr ""
2594
 
2595
+ #: dashboard/settings/notifications.php:69
2596
  msgid "A moderator approved an advert from the moderation queue."
2597
  msgstr ""
2598
 
2599
+ #: dashboard/settings/notifications.php:70
2600
  msgid "A moderator rejected an advert from the moderation queue."
2601
  msgstr ""
2602
 
2603
+ #: dashboard/settings/notifications.php:70
2604
  msgid ""
2605
  "If you have a lot of activity with many advertisers adding/changing adverts "
2606
  "you may get a lot of messages!"
2607
  msgstr ""
2608
 
2609
+ #: dashboard/settings/notifications.php:75
2610
  msgid "User Key"
2611
  msgstr ""
2612
 
2613
+ #: dashboard/settings/notifications.php:77
2614
  msgid "Get your user token"
2615
  msgstr ""
2616
 
2617
+ #: dashboard/settings/notifications.php:77
2618
+ #: dashboard/settings/notifications.php:83
2619
  msgid "here"
2620
  msgstr ""
2621
 
2622
+ #: dashboard/settings/notifications.php:81
2623
  msgid "Api Token"
2624
  msgstr ""
2625
 
2626
+ #: dashboard/settings/notifications.php:83
2627
  msgid "Create your"
2628
  msgstr ""
2629
 
2630
+ #: dashboard/settings/notifications.php:83
2631
  msgid "App"
2632
  msgstr ""
2633
 
2634
+ #: dashboard/settings/notifications.php:83
2635
  msgid "and get your API token"
2636
  msgstr ""
2637
 
2638
+ #: dashboard/settings/roles.php:12
2639
  msgid "Roles"
2640
  msgstr ""
2641
 
2642
+ #: dashboard/settings/roles.php:13
2643
  msgid "Who has access to what?"
2644
  msgstr "Qui a accès à quoi?"
2645
 
2646
+ #: dashboard/settings/roles.php:16
2647
  msgid "Manage/Add/Edit adverts"
2648
  msgstr "Gérer/Ajouter/Modifier les publicités"
2649
 
2650
+ #: dashboard/settings/roles.php:20
2651
  msgid "Role to see and add/edit ads."
2652
  msgstr "Rôle pour voir et gérer/modifier les publicités."
2653
 
2654
+ #: dashboard/settings/roles.php:24
2655
  msgid "Delete/Reset adverts"
2656
  msgstr "Supprimer/Mettre à zéro les publicités"
2657
 
2658
+ #: dashboard/settings/roles.php:28
2659
  msgid "Role to delete ads and reset stats."
2660
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
2661
 
2662
+ #: dashboard/settings/roles.php:32
2663
  msgid "Manage/Add/Edit groups"
2664
  msgstr "Gérer/Ajouter/Modifier les groupes"
2665
 
2666
+ #: dashboard/settings/roles.php:36
2667
  msgid "Role to see and add/edit groups."
2668
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
2669
 
2670
+ #: dashboard/settings/roles.php:40
2671
  msgid "Delete groups"
2672
  msgstr "Effacer les groups"
2673
 
2674
+ #: dashboard/settings/roles.php:44
2675
  msgid "Role to delete groups."
2676
  msgstr "Rôle pour supprimer les groupes."
2677
 
2678
+ #: dashboard/settings/statistics.php:13
2679
  msgid "Track statistics for your adverts."
2680
  msgstr ""
2681
 
2682
+ #: dashboard/settings/statistics.php:16
2683
  msgid "How to track stats"
2684
  msgstr ""
2685
 
2686
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2687
  msgid "Tracks impressions and clicks internally"
2688
  msgstr ""
2689
 
2690
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2691
+ #: dashboard/settings/statistics.php:29
2692
  msgid "manual"
2693
  msgstr ""
2694
 
2695
+ #: dashboard/settings/statistics.php:26
2696
  msgid ""
2697
  "Click and Impression recording, Click and impression limits, impression "
2698
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2699
+ "will only track impressions."
2700
  msgstr ""
2701
 
2702
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2703
+ msgid "In AdRotate Pro!"
2704
+ msgstr ""
2705
+
2706
+ #: dashboard/settings/statistics.php:27
2707
  msgid ""
2708
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2709
  "attributes"
2710
  msgstr ""
2711
 
2712
+ #: dashboard/settings/statistics.php:28
2713
  msgid ""
2714
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2715
  "Contents."
2716
  msgstr ""
2717
 
2718
+ #: dashboard/settings/statistics.php:29
2719
  msgid ""
2720
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2721
  "uses onClick() and onload() in adverts"
2722
  msgstr ""
2723
 
2724
+ #: dashboard/settings/statistics.php:30
2725
  msgid ""
2726
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2727
+ "Banner."
2728
  msgstr ""
2729
 
2730
+ #: dashboard/settings/statistics.php:36
2731
  msgid "Internal Tracker"
2732
  msgstr ""
2733
 
2734
+ #: dashboard/settings/statistics.php:37
2735
  msgid ""
2736
  "The settings below are for the internal tracker and have no effect when "
2737
  "using Piwik/Google Analytics."
2738
  msgstr ""
2739
 
2740
+ #: dashboard/settings/statistics.php:40
2741
  msgid "Logged in impressions"
2742
  msgstr ""
2743
 
2744
+ #: dashboard/settings/statistics.php:42
2745
  msgid "Track impressions from logged in users."
2746
  msgstr ""
2747
 
2748
+ #: dashboard/settings/statistics.php:46
2749
  msgid "Logged in clicks"
2750
  msgstr ""
2751
 
2752
+ #: dashboard/settings/statistics.php:48
2753
  msgid "Track clicks from logged in users."
2754
  msgstr ""
2755
 
2756
+ #: dashboard/settings/statistics.php:52
2757
+ msgid "Impression timer"
2758
+ msgstr ""
2759
 
2760
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2761
  msgid "Seconds."
2762
  msgstr "Secondes."
2763
 
2764
+ #: dashboard/settings/statistics.php:55
2765
  msgid "Default: 60."
2766
  msgstr ""
2767
 
2768
+ #: dashboard/settings/statistics.php:55
2769
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2770
  msgstr ""
2771
 
2772
+ #: dashboard/settings/statistics.php:59
2773
+ msgid "Click timer"
2774
+ msgstr ""
2775
 
2776
+ #: dashboard/settings/statistics.php:62
2777
  msgid "Default: 86400."
2778
  msgstr ""
2779
 
2780
+ #: dashboard/settings/statistics.php:62
2781
  msgid ""
2782
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2783
  msgstr ""
2784
 
2785
+ #~ msgid "Find out more"
2786
+ #~ msgstr "En savoir plus"
2787
+
2788
+ #~ msgid "Follow"
2789
+ #~ msgstr "Suivre"
2790
+
2791
+ #~ msgid "Ads in group"
2792
+ #~ msgstr "Pubs dans le groupe"
2793
+
2794
+ #~ msgid "Code"
2795
+ #~ msgstr "Code"
2796
+
2797
+ #~ msgid "Impressions timer"
2798
+ #~ msgstr "Minuterie de impressions"
2799
+
2800
+ #~ msgid "Clicks timer"
2801
+ #~ msgstr "Interval de clicks"
2802
+
2803
  #, fuzzy
2804
  #~ msgid "Learn More"
2805
  #~ msgstr "En savoir plus"
language/adrotate-ja.mo CHANGED
Binary file
language/adrotate-ja.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: 2015-08-23 20:09+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:10+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
@@ -249,10 +249,10 @@ msgstr "これは出来る限り早く修正して下さい。"
249
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
250
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
251
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
252
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
253
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
254
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
255
- #: dashboard/settings/geotargeting.php:16
256
  #, fuzzy
257
  msgid "Buy now"
258
  msgstr "継続する場合は対応して下さい。"
@@ -355,7 +355,7 @@ msgstr "全般レポートを見れる権限"
355
  msgid "on WordPress.org to help AdRotate grow in a positive way"
356
  msgstr ""
357
 
358
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
359
  #, fuzzy
360
  msgid "Available in AdRotate Pro"
361
  msgstr "AdRotate Blog"
@@ -375,63 +375,63 @@ msgstr "この機能は使いません。"
375
  msgid "Learn more"
376
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
379
- #: dashboard/publisher/adverts-edit.php:245
380
  msgid "January"
381
  msgstr "1月"
382
 
383
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
384
- #: dashboard/publisher/adverts-edit.php:246
385
  msgid "February"
386
  msgstr "2月"
387
 
388
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
389
- #: dashboard/publisher/adverts-edit.php:247
390
  msgid "March"
391
  msgstr "3月"
392
 
393
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
394
- #: dashboard/publisher/adverts-edit.php:248
395
  msgid "April"
396
  msgstr "4月"
397
 
398
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
399
- #: dashboard/publisher/adverts-edit.php:249
400
  msgid "May"
401
  msgstr "5月"
402
 
403
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
404
- #: dashboard/publisher/adverts-edit.php:250
405
  msgid "June"
406
  msgstr "6月"
407
 
408
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
409
- #: dashboard/publisher/adverts-edit.php:251
410
  msgid "July"
411
  msgstr "7月"
412
 
413
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
414
- #: dashboard/publisher/adverts-edit.php:252
415
  msgid "August"
416
  msgstr "8月"
417
 
418
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
419
- #: dashboard/publisher/adverts-edit.php:253
420
  msgid "September"
421
  msgstr "9月"
422
 
423
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
424
- #: dashboard/publisher/adverts-edit.php:254
425
  msgid "October"
426
  msgstr "10月"
427
 
428
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
429
- #: dashboard/publisher/adverts-edit.php:255
430
  msgid "November"
431
  msgstr "11月"
432
 
433
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
434
- #: dashboard/publisher/adverts-edit.php:256
435
  msgid "December"
436
  msgstr "12月"
437
 
@@ -554,7 +554,7 @@ msgid "Group Management"
554
  msgstr "グループの管理"
555
 
556
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
557
- #: dashboard/publisher/groups-main.php:71
558
  msgid "Report"
559
  msgstr "レポート"
560
 
@@ -570,10 +570,10 @@ msgid ""
570
  "AdRotate Pro."
571
  msgstr "この機能は使いません。"
572
 
573
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
574
  #: dashboard/publisher/adverts-main.php:114
575
  #: dashboard/publisher/groups-edit.php:75
576
- #: dashboard/publisher/groups-main.php:91
577
  #, fuzzy
578
  msgid "More information"
579
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
@@ -609,20 +609,20 @@ msgstr ""
609
  msgid "End"
610
  msgstr ""
611
 
612
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
613
  #: dashboard/publisher/groups-main.php:34
614
  msgid "Ads"
615
  msgstr "広告"
616
 
617
  #: adrotate.php:428
618
  #, fuzzy
619
- msgid "Max Clicks"
620
- msgstr "クリック"
621
 
622
  #: adrotate.php:429
623
  #, fuzzy
624
- msgid "Max Impressions"
625
- msgstr "表示数"
626
 
627
  #: adrotate.php:459
628
  #, fuzzy
@@ -711,19 +711,19 @@ msgid ""
711
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
712
  msgstr ""
713
 
714
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
715
  msgid ""
716
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
717
  "filename instead of \".full\" for the various viewports."
718
  msgstr ""
719
 
720
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
721
  #: dashboard/publisher/groups-edit.php:312
722
  #: dashboard/publisher/groups-edit.php:320
723
  msgid "Example:"
724
  msgstr "例:"
725
 
726
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
727
  msgid ""
728
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
729
  "for different viewports."
@@ -816,22 +816,17 @@ msgid ""
816
  "forum. Get a solution (usually) within a day."
817
  msgstr ""
818
 
819
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
820
  #, fuzzy
821
  msgid "AdRotate is brought to you by"
822
  msgstr "サービス紹介"
823
 
824
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
825
  msgid ""
826
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
827
- "details!"
828
  msgstr ""
829
 
830
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
831
- #, fuzzy
832
- msgid "Find out more"
833
- msgstr "以下のURLをチェック下さい。"
834
-
835
  #: dashboard/adrotatepro.php:58
836
  msgid "Schedule all campaigns with ease"
837
  msgstr ""
@@ -858,105 +853,105 @@ msgid ""
858
  msgstr ""
859
 
860
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
861
- #: dashboard/info.php:134 dashboard/info.php:146
862
  #, fuzzy
863
  msgid "Buy AdRotate Professional"
864
  msgstr "AdRotate Blog"
865
 
866
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
867
  msgid "Single License"
868
  msgstr ""
869
 
870
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
871
  msgid "For one WordPress installation."
872
  msgstr ""
873
 
874
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
875
- #: dashboard/info.php:139 dashboard/info.php:151
876
  msgid "Duo License"
877
  msgstr ""
878
 
879
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
880
  msgid "For two WordPress installations."
881
  msgstr ""
882
 
883
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
884
- #: dashboard/info.php:140 dashboard/info.php:152
885
  msgid "Multi License"
886
  msgstr ""
887
 
888
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
889
  msgid " For up to five WordPress installations."
890
  msgstr ""
891
 
892
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
893
- #: dashboard/info.php:141 dashboard/info.php:153
894
  #, fuzzy
895
  msgid "Developer License"
896
  msgstr "開発者向けデバッグ"
897
 
898
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
899
  msgid "Unlimited WordPress installations and/or networks."
900
  msgstr ""
901
 
902
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
903
- #: dashboard/info.php:142 dashboard/info.php:155
904
  msgid "Compare licenses"
905
  msgstr ""
906
 
907
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
908
  msgid "Not sure which license is for you? Compare them..."
909
  msgstr ""
910
 
911
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
912
  #, fuzzy
913
  msgid "All Licenses"
914
  msgstr "すべての広告の再評価"
915
 
916
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
917
  msgid "Lifetime License"
918
  msgstr ""
919
 
920
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
921
  msgid "Single installation."
922
  msgstr ""
923
 
924
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
925
  msgid "Up to 2 installations."
926
  msgstr ""
927
 
928
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
929
  msgid "Up to 10 installations."
930
  msgstr ""
931
 
932
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
933
  msgid "Up to 25 installations or multisite networks."
934
  msgstr ""
935
 
936
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
937
  msgid ""
938
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
939
  msgstr ""
940
 
941
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
942
  msgid "Not sure which license is for you?"
943
  msgstr ""
944
 
945
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
946
  msgid "Compare Licenses"
947
  msgstr ""
948
 
949
- #: dashboard/info.php:65
950
  #, fuzzy
951
  msgid "Currently"
952
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
953
 
954
- #: dashboard/info.php:71
955
  #, fuzzy
956
  msgid "Your setup"
957
  msgstr "データベースのバックアップを取りましたか?"
958
 
959
- #: dashboard/info.php:72
960
  #, fuzzy
961
  msgid "Adverts that need you"
962
  msgstr ""
@@ -964,62 +959,62 @@ msgstr ""
964
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
965
  "さい。英語ですが。"
966
 
967
- #: dashboard/info.php:78
968
  #, fuzzy
969
  msgid "Adverts"
970
  msgstr "新しい広告の承認"
971
 
972
- #: dashboard/info.php:79
973
  #, fuzzy
974
  msgid "(Almost) Expired"
975
  msgstr "個の広告が期限切れです。"
976
 
977
- #: dashboard/info.php:82
978
  msgid "Groups"
979
  msgstr "グループ"
980
 
981
- #: dashboard/info.php:83
982
  #, fuzzy
983
  msgid "Have errors"
984
  msgstr "個の広告が設定エラーになっています。"
985
 
986
- #: dashboard/info.php:89
987
  #, fuzzy
988
  msgid "Support AdRotate"
989
  msgstr "AdRotate Blog"
990
 
991
- #: dashboard/info.php:96
992
  msgid "Your gift helps ensure the continued development of AdRotate!"
993
  msgstr ""
994
 
995
- #: dashboard/info.php:96
996
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
997
  msgstr ""
998
 
999
- #: dashboard/info.php:105
1000
  #, fuzzy
1001
  msgid "AdRotate News and Developer Blog"
1002
  msgstr "AdRotate Blog"
1003
 
1004
- #: dashboard/info.php:127
1005
  #, fuzzy
1006
  msgid "Get more features with AdRotate Pro"
1007
  msgstr ""
1008
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1009
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1010
 
1011
- #: dashboard/info.php:130
1012
  msgid ""
1013
  "Benefit from extra features to reinforce your income with advertising "
1014
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1015
  "Pro offers on top of the trusted features included in the free version."
1016
  msgstr ""
1017
 
1018
- #: dashboard/info.php:130
1019
  msgid "Want to know more about"
1020
  msgstr ""
1021
 
1022
- #: dashboard/info.php:130
1023
  #, fuzzy
1024
  msgid "Visit the"
1025
  msgstr ""
@@ -1027,21 +1022,17 @@ msgstr ""
1027
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1028
  "さい。英語ですが。"
1029
 
1030
- #: dashboard/info.php:130
1031
  #, fuzzy
1032
  msgid "website"
1033
  msgstr "開発者のWEBサイトは以下です。"
1034
 
1035
- #: dashboard/info.php:166
1036
- msgid "Follow"
1037
- msgstr ""
1038
-
1039
  #: dashboard/publisher/adverts-disabled.php:15
1040
  msgid "Disabled Ads"
1041
  msgstr "掲載不可広告"
1042
 
1043
  #: dashboard/publisher/adverts-disabled.php:21
1044
- #: dashboard/publisher/adverts-edit.php:165
1045
  msgid "Activate"
1046
  msgstr "利用可能"
1047
 
@@ -1066,8 +1057,6 @@ msgstr "タイトル"
1066
 
1067
  #: dashboard/publisher/adverts-disabled.php:38
1068
  #: dashboard/publisher/adverts-report.php:34
1069
- #: dashboard/publisher/groups-edit.php:333
1070
- #: dashboard/publisher/groups-main.php:36
1071
  #: dashboard/publisher/groups-report.php:40
1072
  msgid "Impressions"
1073
  msgstr "表示数"
@@ -1091,7 +1080,7 @@ msgstr ""
1091
  #: dashboard/publisher/adverts-disabled.php:74
1092
  #: dashboard/publisher/adverts-error.php:64
1093
  #: dashboard/publisher/adverts-main.php:87
1094
- #: dashboard/publisher/groups-main.php:71
1095
  msgid "Edit"
1096
  msgstr "編集"
1097
 
@@ -1216,36 +1205,55 @@ msgid ""
1216
  "click to add it."
1217
  msgstr ""
1218
 
1219
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1220
  msgid "Banner asset"
1221
  msgstr ""
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:142
1224
  msgid "WordPress media:"
1225
  msgstr ""
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:142
1228
  #, fuzzy
1229
  msgid "Select Banner"
1230
  msgstr "バナー画像"
1231
 
1232
- #: dashboard/publisher/adverts-edit.php:144
1233
  msgid "- OR -"
1234
  msgstr "- もしくは -"
1235
 
1236
- #: dashboard/publisher/adverts-edit.php:146
1237
  msgid "Banner folder:"
1238
  msgstr "画像バナー"
1239
 
1240
- #: dashboard/publisher/adverts-edit.php:147
1241
  msgid "No image selected"
1242
  msgstr "画像は設定されていません。"
1243
 
1244
- #: dashboard/publisher/adverts-edit.php:151
1245
  msgid "Use %image% in the adcode instead of the file path."
1246
  msgstr ""
1247
 
1248
- #: dashboard/publisher/adverts-edit.php:151
1249
  msgid ""
1250
  "Use either the text field or the dropdown. If the textfield has content that "
1251
  "field has priority."
@@ -1253,344 +1261,293 @@ msgstr ""
1253
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1254
  "合はそちらが優先されます。"
1255
 
1256
- #: dashboard/publisher/adverts-edit.php:156
1257
- #: dashboard/settings/statistics.php:1
1258
  msgid "Statistics"
1259
  msgstr "統計"
1260
 
1261
- #: dashboard/publisher/adverts-edit.php:158
1262
  msgid "Enable click and impression tracking for this advert."
1263
  msgstr ""
1264
 
1265
- #: dashboard/publisher/adverts-edit.php:159
1266
  msgid ""
1267
  "Note: Clicktracking does not work for Javascript adverts such as those "
1268
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1269
- "supported."
1270
  msgstr ""
1271
 
1272
- #: dashboard/publisher/adverts-edit.php:169
1273
  msgid "Yes, this ad will be used"
1274
  msgstr "この広告を掲載されるように設定する"
1275
 
1276
- #: dashboard/publisher/adverts-edit.php:170
1277
  #, fuzzy
1278
  msgid "No, do not show this ad anywhere"
1279
  msgstr "表示できるデータがありません。"
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:177
1282
  #: dashboard/publisher/adverts-main.php:114
1283
  #: dashboard/publisher/groups-edit.php:75
1284
- #: dashboard/publisher/groups-main.php:91
1285
  #, fuzzy
1286
  msgid "Get more features with AdRotate Pro."
1287
  msgstr ""
1288
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1289
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:180
1292
- #: dashboard/publisher/adverts-edit.php:295
1293
- #: dashboard/publisher/adverts-edit.php:395
1294
- #: dashboard/publisher/adverts-edit.php:436
1295
  #, fuzzy
1296
  msgid "Save Advert"
1297
  msgstr "保存"
1298
 
1299
- #: dashboard/publisher/adverts-edit.php:181
1300
- #: dashboard/publisher/adverts-edit.php:296
1301
- #: dashboard/publisher/adverts-edit.php:396
1302
- #: dashboard/publisher/adverts-edit.php:437
1303
  #: dashboard/publisher/groups-edit.php:154
1304
  #: dashboard/publisher/groups-edit.php:301
1305
  #: dashboard/publisher/groups-edit.php:393
1306
  msgid "Cancel"
1307
  msgstr "キャンセル"
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:185
1310
- msgid "Preview"
1311
- msgstr "プレビュー"
1312
-
1313
- #: dashboard/publisher/adverts-edit.php:191
1314
- msgid ""
1315
- "Note: While this preview is an accurate one, it might look different then it "
1316
- "does on the website."
1317
- msgstr ""
1318
- "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1319
- "場合があります。"
1320
-
1321
- #: dashboard/publisher/adverts-edit.php:192
1322
- msgid ""
1323
- "This is because of CSS differences. Your themes CSS file is not active here!"
1324
- msgstr ""
1325
- "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1326
- "ている場合は実ページでご確認下さい。"
1327
-
1328
- #: dashboard/publisher/adverts-edit.php:199
1329
- #: dashboard/publisher/adverts-edit.php:378
1330
  #: dashboard/publisher/groups-edit.php:136
1331
  #: dashboard/publisher/groups-edit.php:283
1332
  msgid "Usage"
1333
  msgstr "利用タグ"
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:203
1336
- #: dashboard/publisher/adverts-edit.php:382
1337
  #: dashboard/publisher/groups-edit.php:140
1338
  #: dashboard/publisher/groups-edit.php:287
1339
  msgid "Widget"
1340
  msgstr ""
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:204
1343
- #: dashboard/publisher/adverts-edit.php:383
1344
  msgid ""
1345
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1346
  "and enter ID"
1347
  msgstr ""
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:207
1350
- #: dashboard/publisher/adverts-edit.php:386
1351
  #: dashboard/publisher/groups-edit.php:144
1352
  #: dashboard/publisher/groups-edit.php:291
1353
  msgid "In a post or page"
1354
  msgstr ""
1355
 
1356
- #: dashboard/publisher/adverts-edit.php:209
1357
- #: dashboard/publisher/adverts-edit.php:388
1358
  #: dashboard/publisher/groups-edit.php:146
1359
  #: dashboard/publisher/groups-edit.php:293
1360
  msgid "Directly in a theme"
1361
  msgstr ""
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:215
1364
  msgid "Schedule your advert"
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:219
1368
  msgid "Start date (day/month/year)"
1369
  msgstr ""
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:240
1372
  msgid "End date (day/month/year)"
1373
  msgstr ""
1374
 
1375
- #: dashboard/publisher/adverts-edit.php:263
1376
  msgid "Start time (hh:mm)"
1377
  msgstr ""
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:270
1380
  msgid "End time (hh:mm)"
1381
  msgstr ""
1382
 
1383
- #: dashboard/publisher/adverts-edit.php:280
1384
  msgid "Maximum Clicks"
1385
  msgstr ""
1386
 
1387
- #: dashboard/publisher/adverts-edit.php:281
1388
- #: dashboard/publisher/adverts-edit.php:283
1389
  msgid "Leave empty or 0 to skip this."
1390
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:282
1393
  msgid "Maximum Impressions"
1394
  msgstr ""
1395
 
1396
- #: dashboard/publisher/adverts-edit.php:287
1397
  msgid "Important"
1398
  msgstr ""
1399
 
1400
- #: dashboard/publisher/adverts-edit.php:288
1401
  msgid ""
1402
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1403
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1404
  "14:00 hours. 6AM is 6:00 hours."
1405
  msgstr ""
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:292
1408
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1409
  msgstr ""
1410
 
1411
- #: dashboard/publisher/adverts-edit.php:292
1412
- #: dashboard/publisher/adverts-edit.php:332
1413
- #: dashboard/publisher/adverts-edit.php:376
1414
  #: dashboard/publisher/groups-edit.php:200
1415
  #, fuzzy
1416
  msgid "Upgrade today"
1417
  msgstr "本日"
1418
 
1419
- #: dashboard/publisher/adverts-edit.php:299
1420
  #: dashboard/publisher/groups-edit.php:157
1421
  #, fuzzy
1422
  msgid "Advanced"
1423
  msgstr "設定例(高度):"
1424
 
1425
- #: dashboard/publisher/adverts-edit.php:300
1426
  #, fuzzy
1427
  msgid "Everything below is optional."
1428
  msgstr "タイトル(オプション):"
1429
 
1430
- #: dashboard/publisher/adverts-edit.php:304
1431
  msgid "Responsive"
1432
  msgstr ""
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:306
1435
  #, fuzzy
1436
  msgid "Enable responsive support for this advert."
1437
  msgstr "広告の追加・編集管理"
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:307
1440
  msgid ""
1441
  "Upload your images to the banner folder and make sure the filename is in the "
1442
  "following format; \"imagename.full.ext\". A full set of sized images is "
1443
  "strongly recommended."
1444
  msgstr ""
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:313
1447
- #: dashboard/publisher/adverts-main.php:42
1448
- #: dashboard/publisher/groups-edit.php:336
1449
- msgid "Weight"
1450
- msgstr "表示頻度"
1451
-
1452
- #: dashboard/publisher/adverts-edit.php:316
1453
- msgid "Barely visible"
1454
- msgstr "稀な表示(20%程度)"
1455
-
1456
- #: dashboard/publisher/adverts-edit.php:317
1457
- msgid "Less than average"
1458
- msgstr "標準より少し少ない表示(40%程度)"
1459
-
1460
- #: dashboard/publisher/adverts-edit.php:318
1461
- msgid "Normal coverage"
1462
- msgstr "平均的表示(50%程度)"
1463
-
1464
- #: dashboard/publisher/adverts-edit.php:319
1465
- msgid "More than average"
1466
- msgstr "平均よりも多めの表示(70%程度)"
1467
-
1468
- #: dashboard/publisher/adverts-edit.php:320
1469
- msgid "Best visibility"
1470
- msgstr "優先表示(100~90%程度)"
1471
-
1472
- #: dashboard/publisher/adverts-edit.php:325
1473
  #: dashboard/publisher/groups-edit.php:194
1474
  msgid "Sortorder"
1475
  msgstr ""
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:327
1478
  #: dashboard/publisher/groups-edit.php:196
1479
  msgid "For administrative purposes set a sortorder."
1480
  msgstr "管理目的で順序を設定できます。"
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:327
1483
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1484
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1485
 
1486
- #: dashboard/publisher/adverts-edit.php:332
1487
  msgid ""
1488
- "With AdRotate Pro you can set the weight to give adverts more or less "
1489
- "exposure."
1490
  msgstr ""
1491
 
1492
- #: dashboard/publisher/adverts-edit.php:334
1493
  msgid "Geo Targeting in AdRotate Pro"
1494
  msgstr ""
1495
 
1496
- #: dashboard/publisher/adverts-edit.php:335
1497
  msgid ""
1498
  "Assign the advert to a group and enable that group to use Geo Targeting."
1499
  msgstr ""
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:339
1502
  msgid "Cities/States"
1503
  msgstr ""
1504
 
1505
- #: dashboard/publisher/adverts-edit.php:342
1506
  msgid ""
1507
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1508
  "states ISO codes are supported)"
1509
  msgstr ""
1510
 
1511
- #: dashboard/publisher/adverts-edit.php:342
1512
  msgid ""
1513
  "AdRotate does not check the validity of names so make sure you spell them "
1514
  "correctly!"
1515
  msgstr ""
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:346
1518
  msgid "Countries"
1519
  msgstr ""
1520
 
1521
- #: dashboard/publisher/adverts-edit.php:371
1522
  #, fuzzy
1523
  msgid "Select the countries you want the adverts to show in."
1524
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1525
 
1526
- #: dashboard/publisher/adverts-edit.php:371
1527
  msgid "Cities take priority and will be filtered first."
1528
  msgstr ""
1529
 
1530
- #: dashboard/publisher/adverts-edit.php:376
1531
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1532
  msgstr ""
1533
 
1534
- #: dashboard/publisher/adverts-edit.php:400
1535
  msgid "Select Groups"
1536
  msgstr "グループを選択"
1537
 
1538
- #: dashboard/publisher/adverts-edit.php:405
1539
  #, fuzzy
1540
  msgid "ID - Name"
1541
  msgstr "名前"
1542
 
1543
- #: dashboard/publisher/adverts-edit.php:406
1544
- #, fuzzy
1545
- msgid "Ads in group"
1546
- msgstr "広告グループ - グループIDを使ってください。"
1547
-
1548
- #: dashboard/publisher/adverts-edit.php:415
1549
- #: dashboard/publisher/groups-main.php:61
1550
- #: dashboard/settings/geotargeting.php:29
1551
  #, fuzzy
1552
  msgid "Default"
1553
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1554
 
1555
- #: dashboard/publisher/adverts-edit.php:416
1556
- #: dashboard/publisher/groups-main.php:62
1557
  msgid "Dynamic"
1558
  msgstr ""
1559
 
1560
- #: dashboard/publisher/adverts-edit.php:416
1561
- #: dashboard/publisher/groups-main.php:62
1562
  #, fuzzy
1563
  msgid "second rotation"
1564
  msgstr "バナーがないか、利用不可か適応されていません。"
1565
 
1566
- #: dashboard/publisher/adverts-edit.php:417
1567
- #: dashboard/publisher/groups-main.php:63
1568
  #, fuzzy
1569
  msgid "Block"
1570
  msgstr "ブロック管理"
1571
 
1572
- #: dashboard/publisher/adverts-edit.php:417
1573
- #: dashboard/publisher/groups-main.php:63
1574
  #, fuzzy
1575
  msgid "grid"
1576
  msgstr ""
1577
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1578
  "列です。)"
1579
 
1580
- #: dashboard/publisher/adverts-edit.php:418
1581
  #: dashboard/publisher/groups-edit.php:202
1582
- #: dashboard/publisher/groups-main.php:64
1583
  #, fuzzy
1584
  msgid "Post Injection"
1585
  msgstr "投稿及びページ内掲載する場合:"
1586
 
1587
- #: dashboard/publisher/adverts-edit.php:419
1588
  msgid "Geolocation"
1589
  msgstr ""
1590
 
1591
- #: dashboard/publisher/adverts-edit.php:425
1592
  #: dashboard/publisher/groups-edit.php:61
1593
- #: dashboard/publisher/groups-main.php:71
1594
  #, fuzzy
1595
  msgid "Mode"
1596
  msgstr "承認待ち"
@@ -1644,7 +1601,14 @@ msgstr "利用可能な広告"
1644
  msgid "Export to XML"
1645
  msgstr "エクスポートオプション"
1646
 
 
 
 
 
 
1647
  #: dashboard/publisher/adverts-main.php:44
 
 
1648
  #, fuzzy
1649
  msgid "Shown"
1650
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
@@ -1865,7 +1829,7 @@ msgid ""
1865
  msgstr ""
1866
 
1867
  #: dashboard/publisher/groups-edit.php:184
1868
- #: dashboard/settings/advertisers.php:17
1869
  msgid "Geo Targeting"
1870
  msgstr ""
1871
 
@@ -1906,7 +1870,7 @@ msgstr ""
1906
 
1907
  #: dashboard/publisher/groups-edit.php:209
1908
  #: dashboard/publisher/groups-edit.php:247
1909
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1910
  #, fuzzy
1911
  msgid "Disabled"
1912
  msgstr "掲載不可広告"
@@ -2026,6 +1990,10 @@ msgstr ""
2026
  msgid "Select adverts"
2027
  msgstr ""
2028
 
 
 
 
 
2029
  #: dashboard/publisher/groups-edit.php:337
2030
  msgid "Visible until"
2031
  msgstr "掲載期限"
@@ -2050,16 +2018,13 @@ msgstr "グループを削除しようとしています。"
2050
  msgid "This action can not be undone!"
2051
  msgstr "この処理は復旧できません。注意して下さい。"
2052
 
2053
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
2054
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
2055
  msgid "OK to continue, CANCEL to stop."
2056
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
2057
 
2058
- #: dashboard/publisher/groups-main.php:41
2059
- msgid "Code"
2060
- msgstr "コード"
2061
-
2062
- #: dashboard/publisher/groups-main.php:86
2063
  msgid "No groups created!"
2064
  msgstr "グループがまだ作られていません。"
2065
 
@@ -2068,110 +2033,143 @@ msgstr "グループがまだ作られていません。"
2068
  msgid "Statistics for group"
2069
  msgstr "統計 "
2070
 
2071
- #: dashboard/settings/advertisers.php:1
2072
  msgid "Advertisers - Available in AdRotate Pro"
2073
  msgstr ""
2074
 
2075
- #: dashboard/settings/advertisers.php:2
2076
  #, fuzzy
2077
  msgid "Enable advertisers so they can review and manage their own ads."
2078
  msgstr "広告管理"
2079
 
2080
- #: dashboard/settings/advertisers.php:5
2081
  #, fuzzy
2082
  msgid "Enable Advertisers"
2083
  msgstr "広告主から提出された広告を承認する権限"
2084
 
2085
- #: dashboard/settings/advertisers.php:7
2086
  #, fuzzy
2087
  msgid "Allow adverts to be coupled to users (Advertisers)."
2088
  msgstr "広告主やユーザーのレポートページを見れる権限です。"
2089
 
2090
- #: dashboard/settings/advertisers.php:11
2091
  #, fuzzy
2092
  msgid "Edit/update adverts"
2093
  msgstr "広告の追加・編集管理"
2094
 
2095
- #: dashboard/settings/advertisers.php:13
2096
  #, fuzzy
2097
  msgid "Allow advertisers to add new or edit their adverts."
2098
  msgstr "広告の追加・編集管理"
2099
 
2100
- #: dashboard/settings/advertisers.php:19
2101
  msgid ""
2102
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2103
  "be enabled, too."
2104
  msgstr ""
2105
 
2106
- #: dashboard/settings/advertisers.php:23
2107
  #, fuzzy
2108
  msgid "Advertiser role"
2109
  msgstr "広告主"
2110
 
2111
- #: dashboard/settings/advertisers.php:25
2112
  msgid "Create a seperate user role for your advertisers."
2113
  msgstr ""
2114
 
2115
- #: dashboard/settings/advertisers.php:26
2116
  msgid ""
2117
  "Don't forget to give these users access to their advertiser dashboard via "
2118
  "the Roles tab."
2119
  msgstr ""
2120
 
2121
- #: dashboard/settings/general.php:1
2122
  msgid "General Settings"
2123
  msgstr ""
2124
 
2125
- #: dashboard/settings/general.php:2
2126
  msgid "General settings for AdRotate."
2127
  msgstr ""
2128
 
2129
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2130
  msgid "Load jQuery"
2131
  msgstr ""
2132
 
2133
- #: dashboard/settings/general.php:6
2134
  msgid ""
2135
- "jQuery is required for dynamic groups, ad block detection and some other "
2136
- "features. Enable this if your theme does not load jQuery."
2137
  msgstr ""
2138
 
2139
- #: dashboard/settings/general.php:9
2140
  msgid "Load scripts in footer?"
2141
  msgstr ""
2142
 
2143
- #: dashboard/settings/general.php:10
2144
  msgid ""
2145
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2146
  "site."
2147
  msgstr ""
2148
 
2149
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2150
  #, fuzzy
2151
  msgid "Banner Folder"
2152
  msgstr "画像バナー"
2153
 
2154
- #: dashboard/settings/general.php:15
2155
  #, fuzzy
2156
  msgid "Set a location where your banner images will be stored."
2157
  msgstr "バナーがないか、利用不可か適応されていません。"
2158
 
2159
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2160
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2161
- #: dashboard/settings/statistics.php:38
2162
- msgid "Available in AdRotate Pro!"
2163
- msgstr ""
2164
-
2165
- #: dashboard/settings/general.php:18
2166
  #, fuzzy
2167
  msgid "Location"
2168
  msgstr "バナーがないか、利用不可か適応されていません。"
2169
 
2170
- #: dashboard/settings/general.php:20
2171
  msgid "(Default: wp-content/banners/)."
2172
  msgstr ""
2173
 
2174
- #: dashboard/settings/general.php:21
2175
  #, fuzzy
2176
  msgid ""
2177
  "To try and trick ad blockers you could set the folder to something crazy "
@@ -2180,44 +2178,44 @@ msgstr ""
2180
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
2181
  "を再度保存してください!"
2182
 
2183
- #: dashboard/settings/general.php:22
2184
  #, fuzzy
2185
  msgid ""
2186
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2187
  "will show errors when the folder is missing."
2188
  msgstr "画像バナー"
2189
 
2190
- #: dashboard/settings/general.php:27
2191
  #, fuzzy
2192
  msgid "Bot filter"
2193
  msgstr "ユーザーエージェントフィルター"
2194
 
2195
- #: dashboard/settings/general.php:28
2196
  msgid "The bot filter is used for the AdRotate stats tracker."
2197
  msgstr ""
2198
 
2199
- #: dashboard/settings/general.php:31
2200
  msgid "User-Agent Filter"
2201
  msgstr "ユーザーエージェントフィルター"
2202
 
2203
- #: dashboard/settings/general.php:34
2204
  msgid ""
2205
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2206
  msgstr ""
2207
 
2208
- #: dashboard/settings/general.php:35
2209
  msgid ""
2210
  "Keep in mind that this might give false positives. The word 'fire' also "
2211
  "matches 'firefox', but not vice-versa. So be careful!"
2212
  msgstr ""
2213
 
2214
- #: dashboard/settings/general.php:36
2215
  msgid ""
2216
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2217
  "characters are stripped out."
2218
  msgstr ""
2219
 
2220
- #: dashboard/settings/general.php:37
2221
  msgid ""
2222
  "Additionally to the list specified here, empty User-Agents are blocked as "
2223
  "well."
@@ -2225,94 +2223,90 @@ msgstr ""
2225
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
2226
  "れます。"
2227
 
2228
- #: dashboard/settings/general.php:37
2229
  msgid "Learn more about"
2230
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
2231
 
2232
- #: dashboard/settings/general.php:37
2233
  msgid "user-agents"
2234
  msgstr "ユーザーエージェント[英語]"
2235
 
2236
- #: dashboard/settings/geotargeting.php:1
2237
  msgid "Geo Targeting - Available in AdRotate Pro"
2238
  msgstr ""
2239
 
2240
- #: dashboard/settings/geotargeting.php:2
2241
  msgid "Target certain areas in the world for better advertising oppurtunities."
2242
  msgstr ""
2243
 
2244
- #: dashboard/settings/geotargeting.php:5
2245
  msgid "Which Geo Service"
2246
  msgstr ""
2247
 
2248
- #: dashboard/settings/geotargeting.php:15
2249
- msgid "No Geo Targeting is available for your adverts."
2250
- msgstr ""
2251
-
2252
- #: dashboard/settings/geotargeting.php:16
2253
  msgid ""
2254
  "The most complete and accurate geo targeting you can get for only $20 USD "
2255
  "per 50000 lookups."
2256
  msgstr ""
2257
 
2258
- #: dashboard/settings/geotargeting.php:18
2259
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2260
  msgstr ""
2261
 
2262
- #: dashboard/settings/geotargeting.php:20
2263
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2264
  msgstr ""
2265
 
2266
- #: dashboard/settings/geotargeting.php:26
2267
  msgid "Geo Cookie Lifespan"
2268
  msgstr ""
2269
 
2270
- #: dashboard/settings/geotargeting.php:35
2271
  msgid "Hours."
2272
  msgstr ""
2273
 
2274
- #: dashboard/settings/geotargeting.php:36
2275
  msgid ""
2276
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2277
  "cookie last? A longer period is less accurate for mobile users but may "
2278
  "reduce the usage of your lookups drastically."
2279
  msgstr ""
2280
 
2281
- #: dashboard/settings/geotargeting.php:42
2282
  msgid "MaxMind City/Country"
2283
  msgstr ""
2284
 
2285
- #: dashboard/settings/geotargeting.php:45
2286
  msgid "Username/Email"
2287
  msgstr ""
2288
 
2289
- #: dashboard/settings/geotargeting.php:49
2290
  msgid "Password/License Key"
2291
  msgstr ""
2292
 
2293
- #: dashboard/settings/maintenance.php:1
2294
  msgid "Maintenance"
2295
  msgstr "メンテナンス"
2296
 
2297
- #: dashboard/settings/maintenance.php:2
2298
  msgid ""
2299
  "Use these functions when you notice your database is slow, unresponsive and "
2300
  "sluggish."
2301
  msgstr ""
2302
 
2303
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2304
  msgid "Optimize Database"
2305
  msgstr "データベースの最適化"
2306
 
2307
- #: dashboard/settings/maintenance.php:7
2308
  msgid "You are about to optimize the AdRotate database."
2309
  msgstr "AdRotateのデータベースの最適化を行います。"
2310
 
2311
- #: dashboard/settings/maintenance.php:7
2312
  msgid "Did you make a backup of your database?"
2313
  msgstr "データベースのバックアップを取りましたか?"
2314
 
2315
- #: dashboard/settings/maintenance.php:7
2316
  msgid ""
2317
  "This may take a moment and may cause your website to respond slow "
2318
  "temporarily!"
@@ -2320,83 +2314,83 @@ msgstr ""
2320
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2321
  "可能性があります。"
2322
 
2323
- #: dashboard/settings/maintenance.php:8
2324
  msgid "Cleans up overhead data in the AdRotate tables."
2325
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2326
 
2327
- #: dashboard/settings/maintenance.php:9
2328
  #, fuzzy
2329
  msgid ""
2330
  "Overhead data is accumulated garbage resulting from many changes you've "
2331
  "made. This can vary from nothing to hundreds of KiB of data."
2332
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2333
 
2334
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2335
  msgid "Clean-up Database"
2336
  msgstr "データベースのクリーンアップ"
2337
 
2338
- #: dashboard/settings/maintenance.php:15
2339
  #, fuzzy
2340
  msgid ""
2341
  "You are about to clean up your database. This may delete expired schedules "
2342
  "and older statistics."
2343
  msgstr "データベースのクリーンアップ"
2344
 
2345
- #: dashboard/settings/maintenance.php:15
2346
  #, fuzzy
2347
  msgid "Are you sure you want to continue?"
2348
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2349
 
2350
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2351
  #, fuzzy
2352
  msgid "This might take a while and may slow down your site during this action!"
2353
  msgstr ""
2354
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2355
  "可能性があります。"
2356
 
2357
- #: dashboard/settings/maintenance.php:16
2358
  #, fuzzy
2359
  msgid "Delete stats older than 356 days (Optional)."
2360
  msgstr "広告の削除やリセットする権限"
2361
 
2362
- #: dashboard/settings/maintenance.php:17
2363
  msgid ""
2364
  "AdRotate creates empty records when you start making ads, groups or "
2365
  "schedules. In rare occasions these records are faulty."
2366
  msgstr ""
2367
 
2368
- #: dashboard/settings/maintenance.php:17
2369
  msgid ""
2370
  "If you made an ad, group or schedule that does not save when you make it use "
2371
  "this button to delete those empty records."
2372
  msgstr ""
2373
 
2374
- #: dashboard/settings/maintenance.php:17
2375
  msgid ""
2376
  "Additionally you can clean up old schedules and/or statistics. This will "
2377
  "improve the speed of your site."
2378
  msgstr ""
2379
 
2380
- #: dashboard/settings/maintenance.php:21
2381
  msgid "Re-evaluate Ads"
2382
  msgstr "広告の再評価"
2383
 
2384
- #: dashboard/settings/maintenance.php:23
2385
  msgid "Re-evaluate all ads"
2386
  msgstr "すべての広告の再評価"
2387
 
2388
- #: dashboard/settings/maintenance.php:23
2389
  msgid "You are about to check all ads for errors."
2390
  msgstr "すべての広告のエラーをチェックしようとしています。"
2391
 
2392
- #: dashboard/settings/maintenance.php:24
2393
  #, fuzzy
2394
  msgid ""
2395
  "This will apply all evaluation rules to all ads to see if any error slipped "
2396
  "in. Normally you should not need this feature."
2397
  msgstr "すべての広告のエラーをチェックしようとしています。"
2398
 
2399
- #: dashboard/settings/maintenance.php:28
2400
  msgid ""
2401
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2402
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2409,11 +2403,11 @@ msgid ""
2409
  "is not a valid point in any case."
2410
  msgstr ""
2411
 
2412
- #: dashboard/settings/maintenance.php:30
2413
  msgid "Troubleshooting"
2414
  msgstr "トラブルシューティング(トラブル対応)"
2415
 
2416
- #: dashboard/settings/maintenance.php:31
2417
  msgid ""
2418
  "The below options are not meant for normal use and are only there for "
2419
  "developers to review saved settings or how ads are selected. These can be "
@@ -2421,114 +2415,109 @@ msgid ""
2421
  "SHOULD BE LEFT UNCHECKED!!"
2422
  msgstr ""
2423
 
2424
- #: dashboard/settings/maintenance.php:34
2425
  msgid "Developer Debug"
2426
  msgstr "開発者向けデバッグ"
2427
 
2428
- #: dashboard/settings/maintenance.php:36
2429
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2430
  msgstr ""
2431
 
2432
- #: dashboard/settings/maintenance.php:37
2433
  msgid "View advert specs and (some) stats in the dashboard."
2434
  msgstr ""
2435
 
2436
- #: dashboard/settings/maintenance.php:38
2437
  #, fuzzy
2438
  msgid ""
2439
  "Disable timers for clicks and impressions and enable a alert window for "
2440
  "clicktracking."
2441
  msgstr "テキストリンク(クリック数調査付):"
2442
 
2443
- #: dashboard/settings/maintenance.php:39
2444
  #, fuzzy
2445
  msgid "Temporarily disable encryption on the redirect url."
2446
  msgstr ""
2447
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2448
  "可能性があります。"
2449
 
2450
- #: dashboard/settings/maintenance.php:44
2451
  msgid "Status and Versions"
2452
  msgstr ""
2453
 
2454
- #: dashboard/settings/maintenance.php:47
2455
  #, fuzzy
2456
  msgid "Current version:"
2457
  msgstr "現在のスケジュール"
2458
 
2459
- #: dashboard/settings/maintenance.php:48
2460
  #, fuzzy
2461
  msgid "Previous version:"
2462
  msgstr "プレビュー"
2463
 
2464
- #: dashboard/settings/maintenance.php:51
2465
  #, fuzzy
2466
  msgid "Current database version:"
2467
  msgstr "現在のスケジュール"
2468
 
2469
- #: dashboard/settings/maintenance.php:52
2470
  #, fuzzy
2471
  msgid "Previous database version:"
2472
  msgstr "データベースの最適化"
2473
 
2474
- #: dashboard/settings/maintenance.php:55
2475
  #, fuzzy
2476
  msgid "Current status of adverts"
2477
  msgstr "現在のスケジュール"
2478
 
2479
- #: dashboard/settings/maintenance.php:56
2480
  #, fuzzy
2481
  msgid "Normal"
2482
  msgstr "平均的表示(50%程度)"
2483
 
2484
- #: dashboard/settings/maintenance.php:56
2485
  #, fuzzy
2486
  msgid "Error"
2487
  msgstr "理解できないエラーが起こっています。"
2488
 
2489
- #: dashboard/settings/maintenance.php:56
2490
  #, fuzzy
2491
  msgid "Expired"
2492
  msgstr "個の広告が期限切れです。"
2493
 
2494
- #: dashboard/settings/maintenance.php:56
2495
  #, fuzzy
2496
  msgid "Expires Soon"
2497
  msgstr "これは出来る限り早く修正して下さい。"
2498
 
2499
- #: dashboard/settings/maintenance.php:56
2500
  msgid "Unknown"
2501
  msgstr ""
2502
 
2503
- #: dashboard/settings/maintenance.php:59
2504
  #, fuzzy
2505
  msgid "Ad evaluation next run:"
2506
  msgstr "通知先"
2507
 
2508
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2509
- #: dashboard/settings/maintenance.php:68
2510
  #, fuzzy
2511
  msgid "Not scheduled!"
2512
  msgstr "掲載期間"
2513
 
2514
- #: dashboard/settings/maintenance.php:63
2515
- msgid "Ad Notifications next run:"
2516
- msgstr ""
2517
-
2518
- #: dashboard/settings/maintenance.php:67
2519
  #, fuzzy
2520
  msgid "Clean Trackerdata next run:"
2521
  msgstr "データベースのクリーンアップ"
2522
 
2523
- #: dashboard/settings/misc.php:1
2524
  msgid "Miscellaneous"
2525
  msgstr "その他"
2526
 
2527
- #: dashboard/settings/misc.php:4
2528
  msgid "Widget alignment"
2529
  msgstr "ウィジェットの配置"
2530
 
2531
- #: dashboard/settings/misc.php:5
2532
  msgid ""
2533
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2534
  "not always help!)"
@@ -2536,12 +2525,12 @@ msgstr ""
2536
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2537
  "クスをオンにします。"
2538
 
2539
- #: dashboard/settings/misc.php:8
2540
  #, fuzzy
2541
  msgid "Widget padding"
2542
  msgstr "ブロックの隙間"
2543
 
2544
- #: dashboard/settings/misc.php:9
2545
  #, fuzzy
2546
  msgid ""
2547
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -2550,11 +2539,11 @@ msgstr ""
2550
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2551
  "クスをオンにします。"
2552
 
2553
- #: dashboard/settings/misc.php:13
2554
  msgid "NOTICE:"
2555
  msgstr ""
2556
 
2557
- #: dashboard/settings/misc.php:14
2558
  msgid ""
2559
  "You have enabled W3 Total Caching support but not defined the security hash. "
2560
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2562,18 +2551,18 @@ msgid ""
2562
  "needs to be enabled in W3 Total Cache as well too."
2563
  msgstr ""
2564
 
2565
- #: dashboard/settings/misc.php:18
2566
  msgid "W3 Total Caching"
2567
  msgstr ""
2568
 
2569
- #: dashboard/settings/misc.php:19
2570
  #, fuzzy
2571
  msgid "Check this box if you use W3 Total Caching on your site."
2572
  msgstr ""
2573
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2574
  "クスをオンにします。"
2575
 
2576
- #: dashboard/settings/misc.php:23
2577
  #, fuzzy
2578
  msgid ""
2579
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -2582,53 +2571,53 @@ msgstr ""
2582
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2583
  "可能性があります。"
2584
 
2585
- #: dashboard/settings/misc.php:23
2586
  #, fuzzy
2587
  msgid ""
2588
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2589
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2590
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2591
 
2592
- #: dashboard/settings/notifications.php:1
2593
  msgid "Notifications - Available in AdRotate Pro"
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/notifications.php:2
2597
  #, fuzzy
2598
  msgid "Set up who gets notifications if ads need your attention."
2599
  msgstr "すぐに注意を必要とする広告"
2600
 
2601
- #: dashboard/settings/notifications.php:5
2602
  msgid "Delivery method"
2603
  msgstr ""
2604
 
2605
- #: dashboard/settings/notifications.php:7
2606
  #, fuzzy
2607
  msgid "Email message."
2608
  msgstr "広告主のページ"
2609
 
2610
- #: dashboard/settings/notifications.php:8
2611
  #, fuzzy
2612
  msgid "Push notifications to your smartphone."
2613
  msgstr "この通知は、あなたのウェブサイトからあなたに送られています。"
2614
 
2615
- #: dashboard/settings/notifications.php:9
2616
  msgid ""
2617
  "Push notifications are delivered through Pushover, a notification service "
2618
  "for Android and iOS"
2619
  msgstr ""
2620
 
2621
- #: dashboard/settings/notifications.php:9
2622
  msgid ""
2623
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2624
  "information can be found on the pushover website;"
2625
  msgstr ""
2626
 
2627
- #: dashboard/settings/notifications.php:13
2628
  msgid "Test notification"
2629
  msgstr ""
2630
 
2631
- #: dashboard/settings/notifications.php:15
2632
  #, fuzzy
2633
  msgid ""
2634
  "This sends a test notification. Before you test, save the options first!"
@@ -2636,38 +2625,38 @@ msgstr ""
2636
  "これは、テスト通知を送信します。新しいメールアドレスの設定時など、まずはオプ"
2637
  "ションを保存してから、テストして下さい。"
2638
 
2639
- #: dashboard/settings/notifications.php:20
2640
  #, fuzzy
2641
  msgid "Dashboard Notifications"
2642
  msgstr "通知先"
2643
 
2644
- #: dashboard/settings/notifications.php:21
2645
  msgid "These show to every administrator who can edit adverts."
2646
  msgstr ""
2647
 
2648
- #: dashboard/settings/notifications.php:24
2649
  msgid "Notification banners"
2650
  msgstr ""
2651
 
2652
- #: dashboard/settings/notifications.php:25
2653
  msgid "Disable dashboard notifications."
2654
  msgstr ""
2655
 
2656
- #: dashboard/settings/notifications.php:29
2657
  msgid "Email Notifications"
2658
  msgstr "メール問い合わせ先"
2659
 
2660
- #: dashboard/settings/notifications.php:30
2661
  #, fuzzy
2662
  msgid "Set up who gets notification emails."
2663
  msgstr "すぐに注意を必要とする広告"
2664
 
2665
- #: dashboard/settings/notifications.php:33
2666
- #: dashboard/settings/notifications.php:53
2667
  msgid "Publishers"
2668
  msgstr ""
2669
 
2670
- #: dashboard/settings/notifications.php:36
2671
  msgid ""
2672
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2673
  "list to a minimum!"
@@ -2675,7 +2664,7 @@ msgstr ""
2675
  "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
2676
  "抑えて下さい。"
2677
 
2678
- #: dashboard/settings/notifications.php:37
2679
  #, fuzzy
2680
  msgid ""
2681
  "Messages are sent once every 24 hours when needed. If this field is empty no "
@@ -2684,12 +2673,12 @@ msgstr ""
2684
  "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
2685
  "合、メール通知は無効になります。"
2686
 
2687
- #: dashboard/settings/notifications.php:41
2688
  #, fuzzy
2689
  msgid "Advertisers"
2690
  msgstr "広告主から提出された広告を承認する権限"
2691
 
2692
- #: dashboard/settings/notifications.php:44
2693
  #, fuzzy
2694
  msgid ""
2695
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
@@ -2698,228 +2687,262 @@ msgstr ""
2698
  "最大2個のメールアドレスがコンマ区切りで登録できます。ここは空欄では利用できま"
2699
  "せん。"
2700
 
2701
- #: dashboard/settings/notifications.php:49
2702
  #, fuzzy
2703
  msgid "Push Notifications"
2704
  msgstr "通知先"
2705
 
2706
- #: dashboard/settings/notifications.php:50
2707
  msgid ""
2708
  "Receive information about what is happening with your AdRotate setup on your "
2709
  "smartphone via Pushover."
2710
  msgstr ""
2711
 
2712
- #: dashboard/settings/notifications.php:55
2713
  msgid "When you are running out of Geo Targeting Lookups."
2714
  msgstr ""
2715
 
2716
- #: dashboard/settings/notifications.php:56
2717
  msgid "Daily digest of any advert status other than normal."
2718
  msgstr ""
2719
 
2720
- #: dashboard/settings/notifications.php:57
2721
  msgid "Any advertiser saving an advert in your moderation queue."
2722
  msgstr ""
2723
 
2724
- #: dashboard/settings/notifications.php:58
2725
  #, fuzzy
2726
  msgid "A moderator approved an advert from the moderation queue."
2727
  msgstr "承認待ち広告の承認/拒否"
2728
 
2729
- #: dashboard/settings/notifications.php:59
2730
  #, fuzzy
2731
  msgid "A moderator rejected an advert from the moderation queue."
2732
  msgstr "承認待ち広告の承認/拒否"
2733
 
2734
- #: dashboard/settings/notifications.php:59
2735
  msgid ""
2736
  "If you have a lot of activity with many advertisers adding/changing adverts "
2737
  "you may get a lot of messages!"
2738
  msgstr ""
2739
 
2740
- #: dashboard/settings/notifications.php:64
2741
  #, fuzzy
2742
  msgid "User Key"
2743
  msgstr "ユーザーエージェント[英語]"
2744
 
2745
- #: dashboard/settings/notifications.php:66
2746
  msgid "Get your user token"
2747
  msgstr ""
2748
 
2749
- #: dashboard/settings/notifications.php:66
2750
- #: dashboard/settings/notifications.php:72
2751
  msgid "here"
2752
  msgstr ""
2753
 
2754
- #: dashboard/settings/notifications.php:70
2755
  msgid "Api Token"
2756
  msgstr ""
2757
 
2758
- #: dashboard/settings/notifications.php:72
2759
  msgid "Create your"
2760
  msgstr ""
2761
 
2762
- #: dashboard/settings/notifications.php:72
2763
  msgid "App"
2764
  msgstr ""
2765
 
2766
- #: dashboard/settings/notifications.php:72
2767
  msgid "and get your API token"
2768
  msgstr ""
2769
 
2770
- #: dashboard/settings/roles.php:1
2771
  msgid "Roles"
2772
  msgstr ""
2773
 
2774
- #: dashboard/settings/roles.php:2
2775
  msgid "Who has access to what?"
2776
  msgstr ""
2777
 
2778
- #: dashboard/settings/roles.php:5
2779
  msgid "Manage/Add/Edit adverts"
2780
  msgstr "広告の追加・編集管理"
2781
 
2782
- #: dashboard/settings/roles.php:9
2783
  msgid "Role to see and add/edit ads."
2784
  msgstr "広告を追加・編集する権限"
2785
 
2786
- #: dashboard/settings/roles.php:13
2787
  msgid "Delete/Reset adverts"
2788
  msgstr "広告の削除やリセット"
2789
 
2790
- #: dashboard/settings/roles.php:17
2791
  msgid "Role to delete ads and reset stats."
2792
  msgstr "広告の削除やリセットする権限"
2793
 
2794
- #: dashboard/settings/roles.php:21
2795
  msgid "Manage/Add/Edit groups"
2796
  msgstr "グループの追加・編集管理"
2797
 
2798
- #: dashboard/settings/roles.php:25
2799
  msgid "Role to see and add/edit groups."
2800
  msgstr "グループを削除・編集する権限"
2801
 
2802
- #: dashboard/settings/roles.php:29
2803
  msgid "Delete groups"
2804
  msgstr "グループの削除"
2805
 
2806
- #: dashboard/settings/roles.php:33
2807
  msgid "Role to delete groups."
2808
  msgstr "グループを削除できる権限"
2809
 
2810
- #: dashboard/settings/statistics.php:2
2811
  msgid "Track statistics for your adverts."
2812
  msgstr ""
2813
 
2814
- #: dashboard/settings/statistics.php:5
2815
  msgid "How to track stats"
2816
  msgstr ""
2817
 
2818
- #: dashboard/settings/statistics.php:14
2819
- msgid "No impressions and clicks can be recorded for any of your adverts."
2820
- msgstr ""
2821
-
2822
- #: dashboard/settings/statistics.php:15
2823
  msgid "Tracks impressions and clicks internally"
2824
  msgstr ""
2825
 
2826
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2827
- #: dashboard/settings/statistics.php:19
2828
  msgid "manual"
2829
  msgstr ""
2830
 
2831
- #: dashboard/settings/statistics.php:16
2832
  msgid ""
2833
  "Click and Impression recording, Click and impression limits, impression "
2834
- "spread for schedules, local stats display."
 
 
 
 
 
2835
  msgstr ""
2836
 
2837
- #: dashboard/settings/statistics.php:17
2838
  msgid ""
2839
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2840
  "attributes"
2841
  msgstr ""
2842
 
2843
- #: dashboard/settings/statistics.php:18
2844
  msgid ""
2845
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2846
  "Contents."
2847
  msgstr ""
2848
 
2849
- #: dashboard/settings/statistics.php:19
2850
  msgid ""
2851
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2852
  "uses onClick() and onload() in adverts"
2853
  msgstr ""
2854
 
2855
- #: dashboard/settings/statistics.php:20
2856
  msgid ""
2857
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2858
  msgstr ""
2859
 
2860
- #: dashboard/settings/statistics.php:26
2861
  msgid "Internal Tracker"
2862
  msgstr ""
2863
 
2864
- #: dashboard/settings/statistics.php:27
2865
  msgid ""
2866
  "The settings below are for the internal tracker and have no effect when "
2867
  "using Piwik/Google Analytics."
2868
  msgstr ""
2869
 
2870
- #: dashboard/settings/statistics.php:30
2871
  #, fuzzy
2872
  msgid "Logged in impressions"
2873
  msgstr "表示数"
2874
 
2875
- #: dashboard/settings/statistics.php:32
2876
  msgid "Track impressions from logged in users."
2877
  msgstr ""
2878
 
2879
- #: dashboard/settings/statistics.php:36
2880
  #, fuzzy
2881
  msgid "Logged in clicks"
2882
  msgstr "クリック"
2883
 
2884
- #: dashboard/settings/statistics.php:38
2885
  #, fuzzy
2886
  msgid "Track clicks from logged in users."
2887
  msgstr "クリック"
2888
 
2889
- #: dashboard/settings/statistics.php:42
2890
- msgid "Impressions timer"
2891
- msgstr "表示時間"
2892
 
2893
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2894
  msgid "Seconds."
2895
  msgstr "秒"
2896
 
2897
- #: dashboard/settings/statistics.php:45
2898
  #, fuzzy
2899
  msgid "Default: 60."
2900
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2901
 
2902
- #: dashboard/settings/statistics.php:45
2903
  #, fuzzy
2904
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2905
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2906
 
2907
- #: dashboard/settings/statistics.php:49
2908
- #, fuzzy
2909
- msgid "Clicks timer"
2910
- msgstr "表示時間"
2911
 
2912
- #: dashboard/settings/statistics.php:52
2913
  #, fuzzy
2914
  msgid "Default: 86400."
2915
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2916
 
2917
- #: dashboard/settings/statistics.php:52
2918
  #, fuzzy
2919
  msgid ""
2920
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2921
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2922
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2923
  #, fuzzy
2924
  #~ msgid "Learn More"
2925
  #~ msgstr "ユーザーえー助演について知りたい方はこちらから。"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
249
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
250
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
251
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
252
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
253
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
254
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
255
+ #: dashboard/settings/geotargeting.php:26
256
  #, fuzzy
257
  msgid "Buy now"
258
  msgstr "継続する場合は対応して下さい。"
355
  msgid "on WordPress.org to help AdRotate grow in a positive way"
356
  msgstr ""
357
 
358
+ #: adrotate-output.php:887
359
  #, fuzzy
360
  msgid "Available in AdRotate Pro"
361
  msgstr "AdRotate Blog"
375
  msgid "Learn more"
376
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
377
 
378
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
379
+ #: dashboard/publisher/adverts-edit.php:240
380
  msgid "January"
381
  msgstr "1月"
382
 
383
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
384
+ #: dashboard/publisher/adverts-edit.php:241
385
  msgid "February"
386
  msgstr "2月"
387
 
388
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
389
+ #: dashboard/publisher/adverts-edit.php:242
390
  msgid "March"
391
  msgstr "3月"
392
 
393
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
394
+ #: dashboard/publisher/adverts-edit.php:243
395
  msgid "April"
396
  msgstr "4月"
397
 
398
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
399
+ #: dashboard/publisher/adverts-edit.php:244
400
  msgid "May"
401
  msgstr "5月"
402
 
403
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
404
+ #: dashboard/publisher/adverts-edit.php:245
405
  msgid "June"
406
  msgstr "6月"
407
 
408
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
409
+ #: dashboard/publisher/adverts-edit.php:246
410
  msgid "July"
411
  msgstr "7月"
412
 
413
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
414
+ #: dashboard/publisher/adverts-edit.php:247
415
  msgid "August"
416
  msgstr "8月"
417
 
418
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
419
+ #: dashboard/publisher/adverts-edit.php:248
420
  msgid "September"
421
  msgstr "9月"
422
 
423
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
424
+ #: dashboard/publisher/adverts-edit.php:249
425
  msgid "October"
426
  msgstr "10月"
427
 
428
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
429
+ #: dashboard/publisher/adverts-edit.php:250
430
  msgid "November"
431
  msgstr "11月"
432
 
433
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
434
+ #: dashboard/publisher/adverts-edit.php:251
435
  msgid "December"
436
  msgstr "12月"
437
 
554
  msgstr "グループの管理"
555
 
556
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
557
+ #: dashboard/publisher/groups-main.php:70
558
  msgid "Report"
559
  msgstr "レポート"
560
 
570
  "AdRotate Pro."
571
  msgstr "この機能は使いません。"
572
 
573
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
574
  #: dashboard/publisher/adverts-main.php:114
575
  #: dashboard/publisher/groups-edit.php:75
576
+ #: dashboard/publisher/groups-main.php:89
577
  #, fuzzy
578
  msgid "More information"
579
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
609
  msgid "End"
610
  msgstr ""
611
 
612
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
613
  #: dashboard/publisher/groups-main.php:34
614
  msgid "Ads"
615
  msgstr "広告"
616
 
617
  #: adrotate.php:428
618
  #, fuzzy
619
+ msgid "Max Impressions"
620
+ msgstr "表示数"
621
 
622
  #: adrotate.php:429
623
  #, fuzzy
624
+ msgid "Max Clicks"
625
+ msgstr "クリック"
626
 
627
  #: adrotate.php:459
628
  #, fuzzy
711
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
712
  msgstr ""
713
 
714
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
715
  msgid ""
716
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
717
  "filename instead of \".full\" for the various viewports."
718
  msgstr ""
719
 
720
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
721
  #: dashboard/publisher/groups-edit.php:312
722
  #: dashboard/publisher/groups-edit.php:320
723
  msgid "Example:"
724
  msgstr "例:"
725
 
726
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
727
  msgid ""
728
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
729
  "for different viewports."
816
  "forum. Get a solution (usually) within a day."
817
  msgstr ""
818
 
819
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
820
  #, fuzzy
821
  msgid "AdRotate is brought to you by"
822
  msgstr "サービス紹介"
823
 
824
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
825
  msgid ""
826
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
827
+ "starters or people looking for a new direction!"
828
  msgstr ""
829
 
 
 
 
 
 
830
  #: dashboard/adrotatepro.php:58
831
  msgid "Schedule all campaigns with ease"
832
  msgstr ""
853
  msgstr ""
854
 
855
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
856
+ #: dashboard/info.php:93 dashboard/info.php:105
857
  #, fuzzy
858
  msgid "Buy AdRotate Professional"
859
  msgstr "AdRotate Blog"
860
 
861
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
862
  msgid "Single License"
863
  msgstr ""
864
 
865
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
866
  msgid "For one WordPress installation."
867
  msgstr ""
868
 
869
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
870
+ #: dashboard/info.php:98 dashboard/info.php:110
871
  msgid "Duo License"
872
  msgstr ""
873
 
874
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
875
  msgid "For two WordPress installations."
876
  msgstr ""
877
 
878
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
879
+ #: dashboard/info.php:99 dashboard/info.php:111
880
  msgid "Multi License"
881
  msgstr ""
882
 
883
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
884
  msgid " For up to five WordPress installations."
885
  msgstr ""
886
 
887
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
888
+ #: dashboard/info.php:100 dashboard/info.php:112
889
  #, fuzzy
890
  msgid "Developer License"
891
  msgstr "開発者向けデバッグ"
892
 
893
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
894
  msgid "Unlimited WordPress installations and/or networks."
895
  msgstr ""
896
 
897
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
898
+ #: dashboard/info.php:101 dashboard/info.php:114
899
  msgid "Compare licenses"
900
  msgstr ""
901
 
902
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
903
  msgid "Not sure which license is for you? Compare them..."
904
  msgstr ""
905
 
906
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
907
  #, fuzzy
908
  msgid "All Licenses"
909
  msgstr "すべての広告の再評価"
910
 
911
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
912
  msgid "Lifetime License"
913
  msgstr ""
914
 
915
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
916
  msgid "Single installation."
917
  msgstr ""
918
 
919
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
920
  msgid "Up to 2 installations."
921
  msgstr ""
922
 
923
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
924
  msgid "Up to 10 installations."
925
  msgstr ""
926
 
927
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
928
  msgid "Up to 25 installations or multisite networks."
929
  msgstr ""
930
 
931
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
932
  msgid ""
933
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
934
  msgstr ""
935
 
936
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
937
  msgid "Not sure which license is for you?"
938
  msgstr ""
939
 
940
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
941
  msgid "Compare Licenses"
942
  msgstr ""
943
 
944
+ #: dashboard/info.php:24
945
  #, fuzzy
946
  msgid "Currently"
947
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
948
 
949
+ #: dashboard/info.php:30
950
  #, fuzzy
951
  msgid "Your setup"
952
  msgstr "データベースのバックアップを取りましたか?"
953
 
954
+ #: dashboard/info.php:31
955
  #, fuzzy
956
  msgid "Adverts that need you"
957
  msgstr ""
959
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
960
  "さい。英語ですが。"
961
 
962
+ #: dashboard/info.php:37
963
  #, fuzzy
964
  msgid "Adverts"
965
  msgstr "新しい広告の承認"
966
 
967
+ #: dashboard/info.php:38
968
  #, fuzzy
969
  msgid "(Almost) Expired"
970
  msgstr "個の広告が期限切れです。"
971
 
972
+ #: dashboard/info.php:41
973
  msgid "Groups"
974
  msgstr "グループ"
975
 
976
+ #: dashboard/info.php:42
977
  #, fuzzy
978
  msgid "Have errors"
979
  msgstr "個の広告が設定エラーになっています。"
980
 
981
+ #: dashboard/info.php:48
982
  #, fuzzy
983
  msgid "Support AdRotate"
984
  msgstr "AdRotate Blog"
985
 
986
+ #: dashboard/info.php:55
987
  msgid "Your gift helps ensure the continued development of AdRotate!"
988
  msgstr ""
989
 
990
+ #: dashboard/info.php:55
991
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
992
  msgstr ""
993
 
994
+ #: dashboard/info.php:64
995
  #, fuzzy
996
  msgid "AdRotate News and Developer Blog"
997
  msgstr "AdRotate Blog"
998
 
999
+ #: dashboard/info.php:86
1000
  #, fuzzy
1001
  msgid "Get more features with AdRotate Pro"
1002
  msgstr ""
1003
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1004
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1005
 
1006
+ #: dashboard/info.php:89
1007
  msgid ""
1008
  "Benefit from extra features to reinforce your income with advertising "
1009
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1010
  "Pro offers on top of the trusted features included in the free version."
1011
  msgstr ""
1012
 
1013
+ #: dashboard/info.php:89
1014
  msgid "Want to know more about"
1015
  msgstr ""
1016
 
1017
+ #: dashboard/info.php:89
1018
  #, fuzzy
1019
  msgid "Visit the"
1020
  msgstr ""
1022
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1023
  "さい。英語ですが。"
1024
 
1025
+ #: dashboard/info.php:89
1026
  #, fuzzy
1027
  msgid "website"
1028
  msgstr "開発者のWEBサイトは以下です。"
1029
 
 
 
 
 
1030
  #: dashboard/publisher/adverts-disabled.php:15
1031
  msgid "Disabled Ads"
1032
  msgstr "掲載不可広告"
1033
 
1034
  #: dashboard/publisher/adverts-disabled.php:21
1035
+ #: dashboard/publisher/adverts-edit.php:175
1036
  msgid "Activate"
1037
  msgstr "利用可能"
1038
 
1057
 
1058
  #: dashboard/publisher/adverts-disabled.php:38
1059
  #: dashboard/publisher/adverts-report.php:34
 
 
1060
  #: dashboard/publisher/groups-report.php:40
1061
  msgid "Impressions"
1062
  msgstr "表示数"
1080
  #: dashboard/publisher/adverts-disabled.php:74
1081
  #: dashboard/publisher/adverts-error.php:64
1082
  #: dashboard/publisher/adverts-main.php:87
1083
+ #: dashboard/publisher/groups-main.php:70
1084
  msgid "Edit"
1085
  msgstr "編集"
1086
 
1205
  "click to add it."
1206
  msgstr ""
1207
 
1208
+ #: dashboard/publisher/adverts-edit.php:140
1209
+ msgid "Preview"
1210
+ msgstr "プレビュー"
1211
+
1212
+ #: dashboard/publisher/adverts-edit.php:143
1213
+ msgid ""
1214
+ "Note: While this preview is an accurate one, it might look different then it "
1215
+ "does on the website."
1216
+ msgstr ""
1217
+ "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1218
+ "場合があります。"
1219
+
1220
+ #: dashboard/publisher/adverts-edit.php:144
1221
+ msgid ""
1222
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1223
+ msgstr ""
1224
+ "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1225
+ "ている場合は実ページでご確認下さい。"
1226
+
1227
+ #: dashboard/publisher/adverts-edit.php:149
1228
  msgid "Banner asset"
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:152
1232
  msgid "WordPress media:"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:152
1236
  #, fuzzy
1237
  msgid "Select Banner"
1238
  msgstr "バナー画像"
1239
 
1240
+ #: dashboard/publisher/adverts-edit.php:154
1241
  msgid "- OR -"
1242
  msgstr "- もしくは -"
1243
 
1244
+ #: dashboard/publisher/adverts-edit.php:156
1245
  msgid "Banner folder:"
1246
  msgstr "画像バナー"
1247
 
1248
+ #: dashboard/publisher/adverts-edit.php:157
1249
  msgid "No image selected"
1250
  msgstr "画像は設定されていません。"
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:161
1253
  msgid "Use %image% in the adcode instead of the file path."
1254
  msgstr ""
1255
 
1256
+ #: dashboard/publisher/adverts-edit.php:161
1257
  msgid ""
1258
  "Use either the text field or the dropdown. If the textfield has content that "
1259
  "field has priority."
1261
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1262
  "合はそちらが優先されます。"
1263
 
1264
+ #: dashboard/publisher/adverts-edit.php:166
1265
+ #: dashboard/settings/statistics.php:12
1266
  msgid "Statistics"
1267
  msgstr "統計"
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:168
1270
  msgid "Enable click and impression tracking for this advert."
1271
  msgstr ""
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:169
1274
  msgid ""
1275
  "Note: Clicktracking does not work for Javascript adverts such as those "
1276
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1277
+ "always supported."
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:179
1281
  msgid "Yes, this ad will be used"
1282
  msgstr "この広告を掲載されるように設定する"
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:180
1285
  #, fuzzy
1286
  msgid "No, do not show this ad anywhere"
1287
  msgstr "表示できるデータがありません。"
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:187
1290
  #: dashboard/publisher/adverts-main.php:114
1291
  #: dashboard/publisher/groups-edit.php:75
1292
+ #: dashboard/publisher/groups-main.php:89
1293
  #, fuzzy
1294
  msgid "Get more features with AdRotate Pro."
1295
  msgstr ""
1296
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1297
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:190
1300
+ #: dashboard/publisher/adverts-edit.php:290
1301
+ #: dashboard/publisher/adverts-edit.php:378
1302
+ #: dashboard/publisher/adverts-edit.php:419
1303
  #, fuzzy
1304
  msgid "Save Advert"
1305
  msgstr "保存"
1306
 
1307
+ #: dashboard/publisher/adverts-edit.php:191
1308
+ #: dashboard/publisher/adverts-edit.php:291
1309
+ #: dashboard/publisher/adverts-edit.php:379
1310
+ #: dashboard/publisher/adverts-edit.php:420
1311
  #: dashboard/publisher/groups-edit.php:154
1312
  #: dashboard/publisher/groups-edit.php:301
1313
  #: dashboard/publisher/groups-edit.php:393
1314
  msgid "Cancel"
1315
  msgstr "キャンセル"
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:194
1318
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1319
  #: dashboard/publisher/groups-edit.php:136
1320
  #: dashboard/publisher/groups-edit.php:283
1321
  msgid "Usage"
1322
  msgstr "利用タグ"
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:198
1325
+ #: dashboard/publisher/adverts-edit.php:365
1326
  #: dashboard/publisher/groups-edit.php:140
1327
  #: dashboard/publisher/groups-edit.php:287
1328
  msgid "Widget"
1329
  msgstr ""
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:199
1332
+ #: dashboard/publisher/adverts-edit.php:366
1333
  msgid ""
1334
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1335
  "and enter ID"
1336
  msgstr ""
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:202
1339
+ #: dashboard/publisher/adverts-edit.php:369
1340
  #: dashboard/publisher/groups-edit.php:144
1341
  #: dashboard/publisher/groups-edit.php:291
1342
  msgid "In a post or page"
1343
  msgstr ""
1344
 
1345
+ #: dashboard/publisher/adverts-edit.php:204
1346
+ #: dashboard/publisher/adverts-edit.php:371
1347
  #: dashboard/publisher/groups-edit.php:146
1348
  #: dashboard/publisher/groups-edit.php:293
1349
  msgid "Directly in a theme"
1350
  msgstr ""
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:210
1353
  msgid "Schedule your advert"
1354
  msgstr ""
1355
 
1356
+ #: dashboard/publisher/adverts-edit.php:214
1357
  msgid "Start date (day/month/year)"
1358
  msgstr ""
1359
 
1360
+ #: dashboard/publisher/adverts-edit.php:235
1361
  msgid "End date (day/month/year)"
1362
  msgstr ""
1363
 
1364
+ #: dashboard/publisher/adverts-edit.php:258
1365
  msgid "Start time (hh:mm)"
1366
  msgstr ""
1367
 
1368
+ #: dashboard/publisher/adverts-edit.php:265
1369
  msgid "End time (hh:mm)"
1370
  msgstr ""
1371
 
1372
+ #: dashboard/publisher/adverts-edit.php:275
1373
  msgid "Maximum Clicks"
1374
  msgstr ""
1375
 
1376
+ #: dashboard/publisher/adverts-edit.php:276
1377
+ #: dashboard/publisher/adverts-edit.php:278
1378
  msgid "Leave empty or 0 to skip this."
1379
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:277
1382
  msgid "Maximum Impressions"
1383
  msgstr ""
1384
 
1385
+ #: dashboard/publisher/adverts-edit.php:282
1386
  msgid "Important"
1387
  msgstr ""
1388
 
1389
+ #: dashboard/publisher/adverts-edit.php:283
1390
  msgid ""
1391
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1392
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1393
  "14:00 hours. 6AM is 6:00 hours."
1394
  msgstr ""
1395
 
1396
+ #: dashboard/publisher/adverts-edit.php:287
1397
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1398
  msgstr ""
1399
 
1400
+ #: dashboard/publisher/adverts-edit.php:287
1401
+ #: dashboard/publisher/adverts-edit.php:315
1402
+ #: dashboard/publisher/adverts-edit.php:359
1403
  #: dashboard/publisher/groups-edit.php:200
1404
  #, fuzzy
1405
  msgid "Upgrade today"
1406
  msgstr "本日"
1407
 
1408
+ #: dashboard/publisher/adverts-edit.php:294
1409
  #: dashboard/publisher/groups-edit.php:157
1410
  #, fuzzy
1411
  msgid "Advanced"
1412
  msgstr "設定例(高度):"
1413
 
1414
+ #: dashboard/publisher/adverts-edit.php:295
1415
  #, fuzzy
1416
  msgid "Everything below is optional."
1417
  msgstr "タイトル(オプション):"
1418
 
1419
+ #: dashboard/publisher/adverts-edit.php:299
1420
  msgid "Responsive"
1421
  msgstr ""
1422
 
1423
+ #: dashboard/publisher/adverts-edit.php:301
1424
  #, fuzzy
1425
  msgid "Enable responsive support for this advert."
1426
  msgstr "広告の追加・編集管理"
1427
 
1428
+ #: dashboard/publisher/adverts-edit.php:302
1429
  msgid ""
1430
  "Upload your images to the banner folder and make sure the filename is in the "
1431
  "following format; \"imagename.full.ext\". A full set of sized images is "
1432
  "strongly recommended."
1433
  msgstr ""
1434
 
1435
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1436
  #: dashboard/publisher/groups-edit.php:194
1437
  msgid "Sortorder"
1438
  msgstr ""
1439
 
1440
+ #: dashboard/publisher/adverts-edit.php:310
1441
  #: dashboard/publisher/groups-edit.php:196
1442
  msgid "For administrative purposes set a sortorder."
1443
  msgstr "管理目的で順序を設定できます。"
1444
 
1445
+ #: dashboard/publisher/adverts-edit.php:310
1446
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1447
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1448
 
1449
+ #: dashboard/publisher/adverts-edit.php:315
1450
  msgid ""
1451
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1452
  msgstr ""
1453
 
1454
+ #: dashboard/publisher/adverts-edit.php:317
1455
  msgid "Geo Targeting in AdRotate Pro"
1456
  msgstr ""
1457
 
1458
+ #: dashboard/publisher/adverts-edit.php:318
1459
  msgid ""
1460
  "Assign the advert to a group and enable that group to use Geo Targeting."
1461
  msgstr ""
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:322
1464
  msgid "Cities/States"
1465
  msgstr ""
1466
 
1467
+ #: dashboard/publisher/adverts-edit.php:325
1468
  msgid ""
1469
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1470
  "states ISO codes are supported)"
1471
  msgstr ""
1472
 
1473
+ #: dashboard/publisher/adverts-edit.php:325
1474
  msgid ""
1475
  "AdRotate does not check the validity of names so make sure you spell them "
1476
  "correctly!"
1477
  msgstr ""
1478
 
1479
+ #: dashboard/publisher/adverts-edit.php:329
1480
  msgid "Countries"
1481
  msgstr ""
1482
 
1483
+ #: dashboard/publisher/adverts-edit.php:354
1484
  #, fuzzy
1485
  msgid "Select the countries you want the adverts to show in."
1486
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1487
 
1488
+ #: dashboard/publisher/adverts-edit.php:354
1489
  msgid "Cities take priority and will be filtered first."
1490
  msgstr ""
1491
 
1492
+ #: dashboard/publisher/adverts-edit.php:359
1493
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1494
  msgstr ""
1495
 
1496
+ #: dashboard/publisher/adverts-edit.php:383
1497
  msgid "Select Groups"
1498
  msgstr "グループを選択"
1499
 
1500
+ #: dashboard/publisher/adverts-edit.php:388
1501
  #, fuzzy
1502
  msgid "ID - Name"
1503
  msgstr "名前"
1504
 
1505
+ #: dashboard/publisher/adverts-edit.php:398
1506
+ #: dashboard/publisher/groups-main.php:60
1507
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
 
1508
  #, fuzzy
1509
  msgid "Default"
1510
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1511
 
1512
+ #: dashboard/publisher/adverts-edit.php:399
1513
+ #: dashboard/publisher/groups-main.php:61
1514
  msgid "Dynamic"
1515
  msgstr ""
1516
 
1517
+ #: dashboard/publisher/adverts-edit.php:399
1518
+ #: dashboard/publisher/groups-main.php:61
1519
  #, fuzzy
1520
  msgid "second rotation"
1521
  msgstr "バナーがないか、利用不可か適応されていません。"
1522
 
1523
+ #: dashboard/publisher/adverts-edit.php:400
1524
+ #: dashboard/publisher/groups-main.php:62
1525
  #, fuzzy
1526
  msgid "Block"
1527
  msgstr "ブロック管理"
1528
 
1529
+ #: dashboard/publisher/adverts-edit.php:400
1530
+ #: dashboard/publisher/groups-main.php:62
1531
  #, fuzzy
1532
  msgid "grid"
1533
  msgstr ""
1534
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1535
  "列です。)"
1536
 
1537
+ #: dashboard/publisher/adverts-edit.php:401
1538
  #: dashboard/publisher/groups-edit.php:202
1539
+ #: dashboard/publisher/groups-main.php:63
1540
  #, fuzzy
1541
  msgid "Post Injection"
1542
  msgstr "投稿及びページ内掲載する場合:"
1543
 
1544
+ #: dashboard/publisher/adverts-edit.php:402
1545
  msgid "Geolocation"
1546
  msgstr ""
1547
 
1548
+ #: dashboard/publisher/adverts-edit.php:408
1549
  #: dashboard/publisher/groups-edit.php:61
1550
+ #: dashboard/publisher/groups-main.php:70
1551
  #, fuzzy
1552
  msgid "Mode"
1553
  msgstr "承認待ち"
1601
  msgid "Export to XML"
1602
  msgstr "エクスポートオプション"
1603
 
1604
+ #: dashboard/publisher/adverts-main.php:42
1605
+ #: dashboard/publisher/groups-edit.php:336
1606
+ msgid "Weight"
1607
+ msgstr "表示頻度"
1608
+
1609
  #: dashboard/publisher/adverts-main.php:44
1610
+ #: dashboard/publisher/groups-edit.php:333
1611
+ #: dashboard/publisher/groups-main.php:36
1612
  #, fuzzy
1613
  msgid "Shown"
1614
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1829
  msgstr ""
1830
 
1831
  #: dashboard/publisher/groups-edit.php:184
1832
+ #: dashboard/settings/advertisers.php:28
1833
  msgid "Geo Targeting"
1834
  msgstr ""
1835
 
1870
 
1871
  #: dashboard/publisher/groups-edit.php:209
1872
  #: dashboard/publisher/groups-edit.php:247
1873
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1874
  #, fuzzy
1875
  msgid "Disabled"
1876
  msgstr "掲載不可広告"
1990
  msgid "Select adverts"
1991
  msgstr ""
1992
 
1993
+ #: dashboard/publisher/groups-edit.php:331
1994
+ msgid "Choose adverts"
1995
+ msgstr ""
1996
+
1997
  #: dashboard/publisher/groups-edit.php:337
1998
  msgid "Visible until"
1999
  msgstr "掲載期限"
2018
  msgid "This action can not be undone!"
2019
  msgstr "この処理は復旧できません。注意して下さい。"
2020
 
2021
+ #: dashboard/publisher/groups-main.php:24
2022
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
2023
+ #: dashboard/settings/maintenance.php:34
2024
  msgid "OK to continue, CANCEL to stop."
2025
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
2026
 
2027
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
2028
  msgid "No groups created!"
2029
  msgstr "グループがまだ作られていません。"
2030
 
2033
  msgid "Statistics for group"
2034
  msgstr "統計 "
2035
 
2036
+ #: dashboard/settings/advertisers.php:12
2037
  msgid "Advertisers - Available in AdRotate Pro"
2038
  msgstr ""
2039
 
2040
+ #: dashboard/settings/advertisers.php:13
2041
  #, fuzzy
2042
  msgid "Enable advertisers so they can review and manage their own ads."
2043
  msgstr "広告管理"
2044
 
2045
+ #: dashboard/settings/advertisers.php:16
2046
  #, fuzzy
2047
  msgid "Enable Advertisers"
2048
  msgstr "広告主から提出された広告を承認する権限"
2049
 
2050
+ #: dashboard/settings/advertisers.php:18
2051
  #, fuzzy
2052
  msgid "Allow adverts to be coupled to users (Advertisers)."
2053
  msgstr "広告主やユーザーのレポートページを見れる権限です。"
2054
 
2055
+ #: dashboard/settings/advertisers.php:22
2056
  #, fuzzy
2057
  msgid "Edit/update adverts"
2058
  msgstr "広告の追加・編集管理"
2059
 
2060
+ #: dashboard/settings/advertisers.php:24
2061
  #, fuzzy
2062
  msgid "Allow advertisers to add new or edit their adverts."
2063
  msgstr "広告の追加・編集管理"
2064
 
2065
+ #: dashboard/settings/advertisers.php:30
2066
  msgid ""
2067
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2068
  "be enabled, too."
2069
  msgstr ""
2070
 
2071
+ #: dashboard/settings/advertisers.php:34
2072
  #, fuzzy
2073
  msgid "Advertiser role"
2074
  msgstr "広告主"
2075
 
2076
+ #: dashboard/settings/advertisers.php:36
2077
  msgid "Create a seperate user role for your advertisers."
2078
  msgstr ""
2079
 
2080
+ #: dashboard/settings/advertisers.php:37
2081
  msgid ""
2082
  "Don't forget to give these users access to their advertiser dashboard via "
2083
  "the Roles tab."
2084
  msgstr ""
2085
 
2086
+ #: dashboard/settings/general.php:12
2087
  msgid "General Settings"
2088
  msgstr ""
2089
 
2090
+ #: dashboard/settings/general.php:13
2091
  msgid "General settings for AdRotate."
2092
  msgstr ""
2093
 
2094
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2095
+ msgid "Some options are only available in AdRotate Pro!"
2096
+ msgstr ""
2097
+
2098
+ #: dashboard/settings/general.php:16
2099
+ msgid "Text widgets"
2100
+ msgstr ""
2101
+
2102
+ #: dashboard/settings/general.php:17
2103
+ msgid ""
2104
+ "Enable if your theme does not support shortcodes in the WordPress text "
2105
+ "widget."
2106
+ msgstr ""
2107
+
2108
+ #: dashboard/settings/general.php:20
2109
  msgid "Load jQuery"
2110
  msgstr ""
2111
 
2112
+ #: dashboard/settings/general.php:21
2113
  msgid ""
2114
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2115
+ "groups, statistics and some other features."
2116
  msgstr ""
2117
 
2118
+ #: dashboard/settings/general.php:24
2119
  msgid "Load scripts in footer?"
2120
  msgstr ""
2121
 
2122
+ #: dashboard/settings/general.php:25
2123
  msgid ""
2124
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2125
  "site."
2126
  msgstr ""
2127
 
2128
+ #: dashboard/settings/general.php:28
2129
+ msgid "Adblock disguise"
2130
+ msgstr ""
2131
+
2132
+ #: dashboard/settings/general.php:30
2133
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2134
+ msgstr ""
2135
+
2136
+ #: dashboard/settings/general.php:31
2137
+ msgid ""
2138
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2139
+ msgstr ""
2140
+
2141
+ #: dashboard/settings/general.php:31
2142
+ msgid ""
2143
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2144
+ "instead of the AdRotate widget."
2145
+ msgstr ""
2146
+
2147
+ #: dashboard/settings/general.php:31
2148
+ msgid ""
2149
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2150
+ "feature will have little effect!"
2151
+ msgstr ""
2152
+
2153
+ #: dashboard/settings/general.php:36
2154
  #, fuzzy
2155
  msgid "Banner Folder"
2156
  msgstr "画像バナー"
2157
 
2158
+ #: dashboard/settings/general.php:37
2159
  #, fuzzy
2160
  msgid "Set a location where your banner images will be stored."
2161
  msgstr "バナーがないか、利用不可か適応されていません。"
2162
 
2163
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2164
  #, fuzzy
2165
  msgid "Location"
2166
  msgstr "バナーがないか、利用不可か適応されていません。"
2167
 
2168
+ #: dashboard/settings/general.php:42
2169
  msgid "(Default: wp-content/banners/)."
2170
  msgstr ""
2171
 
2172
+ #: dashboard/settings/general.php:43
2173
  #, fuzzy
2174
  msgid ""
2175
  "To try and trick ad blockers you could set the folder to something crazy "
2178
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
2179
  "を再度保存してください!"
2180
 
2181
+ #: dashboard/settings/general.php:44
2182
  #, fuzzy
2183
  msgid ""
2184
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2185
  "will show errors when the folder is missing."
2186
  msgstr "画像バナー"
2187
 
2188
+ #: dashboard/settings/general.php:49
2189
  #, fuzzy
2190
  msgid "Bot filter"
2191
  msgstr "ユーザーエージェントフィルター"
2192
 
2193
+ #: dashboard/settings/general.php:50
2194
  msgid "The bot filter is used for the AdRotate stats tracker."
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/general.php:53
2198
  msgid "User-Agent Filter"
2199
  msgstr "ユーザーエージェントフィルター"
2200
 
2201
+ #: dashboard/settings/general.php:56
2202
  msgid ""
2203
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2204
  msgstr ""
2205
 
2206
+ #: dashboard/settings/general.php:57
2207
  msgid ""
2208
  "Keep in mind that this might give false positives. The word 'fire' also "
2209
  "matches 'firefox', but not vice-versa. So be careful!"
2210
  msgstr ""
2211
 
2212
+ #: dashboard/settings/general.php:58
2213
  msgid ""
2214
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2215
  "characters are stripped out."
2216
  msgstr ""
2217
 
2218
+ #: dashboard/settings/general.php:59
2219
  msgid ""
2220
  "Additionally to the list specified here, empty User-Agents are blocked as "
2221
  "well."
2223
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
2224
  "れます。"
2225
 
2226
+ #: dashboard/settings/general.php:59
2227
  msgid "Learn more about"
2228
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
2229
 
2230
+ #: dashboard/settings/general.php:59
2231
  msgid "user-agents"
2232
  msgstr "ユーザーエージェント[英語]"
2233
 
2234
+ #: dashboard/settings/geotargeting.php:12
2235
  msgid "Geo Targeting - Available in AdRotate Pro"
2236
  msgstr ""
2237
 
2238
+ #: dashboard/settings/geotargeting.php:13
2239
  msgid "Target certain areas in the world for better advertising oppurtunities."
2240
  msgstr ""
2241
 
2242
+ #: dashboard/settings/geotargeting.php:16
2243
  msgid "Which Geo Service"
2244
  msgstr ""
2245
 
2246
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2247
  msgid ""
2248
  "The most complete and accurate geo targeting you can get for only $20 USD "
2249
  "per 50000 lookups."
2250
  msgstr ""
2251
 
2252
+ #: dashboard/settings/geotargeting.php:28
2253
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2254
  msgstr ""
2255
 
2256
+ #: dashboard/settings/geotargeting.php:30
2257
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2258
  msgstr ""
2259
 
2260
+ #: dashboard/settings/geotargeting.php:36
2261
  msgid "Geo Cookie Lifespan"
2262
  msgstr ""
2263
 
2264
+ #: dashboard/settings/geotargeting.php:45
2265
  msgid "Hours."
2266
  msgstr ""
2267
 
2268
+ #: dashboard/settings/geotargeting.php:46
2269
  msgid ""
2270
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2271
  "cookie last? A longer period is less accurate for mobile users but may "
2272
  "reduce the usage of your lookups drastically."
2273
  msgstr ""
2274
 
2275
+ #: dashboard/settings/geotargeting.php:52
2276
  msgid "MaxMind City/Country"
2277
  msgstr ""
2278
 
2279
+ #: dashboard/settings/geotargeting.php:55
2280
  msgid "Username/Email"
2281
  msgstr ""
2282
 
2283
+ #: dashboard/settings/geotargeting.php:59
2284
  msgid "Password/License Key"
2285
  msgstr ""
2286
 
2287
+ #: dashboard/settings/maintenance.php:12
2288
  msgid "Maintenance"
2289
  msgstr "メンテナンス"
2290
 
2291
+ #: dashboard/settings/maintenance.php:13
2292
  msgid ""
2293
  "Use these functions when you notice your database is slow, unresponsive and "
2294
  "sluggish."
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2298
  msgid "Optimize Database"
2299
  msgstr "データベースの最適化"
2300
 
2301
+ #: dashboard/settings/maintenance.php:18
2302
  msgid "You are about to optimize the AdRotate database."
2303
  msgstr "AdRotateのデータベースの最適化を行います。"
2304
 
2305
+ #: dashboard/settings/maintenance.php:18
2306
  msgid "Did you make a backup of your database?"
2307
  msgstr "データベースのバックアップを取りましたか?"
2308
 
2309
+ #: dashboard/settings/maintenance.php:18
2310
  msgid ""
2311
  "This may take a moment and may cause your website to respond slow "
2312
  "temporarily!"
2314
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2315
  "可能性があります。"
2316
 
2317
+ #: dashboard/settings/maintenance.php:19
2318
  msgid "Cleans up overhead data in the AdRotate tables."
2319
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2320
 
2321
+ #: dashboard/settings/maintenance.php:20
2322
  #, fuzzy
2323
  msgid ""
2324
  "Overhead data is accumulated garbage resulting from many changes you've "
2325
  "made. This can vary from nothing to hundreds of KiB of data."
2326
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2327
 
2328
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2329
  msgid "Clean-up Database"
2330
  msgstr "データベースのクリーンアップ"
2331
 
2332
+ #: dashboard/settings/maintenance.php:26
2333
  #, fuzzy
2334
  msgid ""
2335
  "You are about to clean up your database. This may delete expired schedules "
2336
  "and older statistics."
2337
  msgstr "データベースのクリーンアップ"
2338
 
2339
+ #: dashboard/settings/maintenance.php:26
2340
  #, fuzzy
2341
  msgid "Are you sure you want to continue?"
2342
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2343
 
2344
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2345
  #, fuzzy
2346
  msgid "This might take a while and may slow down your site during this action!"
2347
  msgstr ""
2348
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2349
  "可能性があります。"
2350
 
2351
+ #: dashboard/settings/maintenance.php:27
2352
  #, fuzzy
2353
  msgid "Delete stats older than 356 days (Optional)."
2354
  msgstr "広告の削除やリセットする権限"
2355
 
2356
+ #: dashboard/settings/maintenance.php:28
2357
  msgid ""
2358
  "AdRotate creates empty records when you start making ads, groups or "
2359
  "schedules. In rare occasions these records are faulty."
2360
  msgstr ""
2361
 
2362
+ #: dashboard/settings/maintenance.php:28
2363
  msgid ""
2364
  "If you made an ad, group or schedule that does not save when you make it use "
2365
  "this button to delete those empty records."
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:28
2369
  msgid ""
2370
  "Additionally you can clean up old schedules and/or statistics. This will "
2371
  "improve the speed of your site."
2372
  msgstr ""
2373
 
2374
+ #: dashboard/settings/maintenance.php:32
2375
  msgid "Re-evaluate Ads"
2376
  msgstr "広告の再評価"
2377
 
2378
+ #: dashboard/settings/maintenance.php:34
2379
  msgid "Re-evaluate all ads"
2380
  msgstr "すべての広告の再評価"
2381
 
2382
+ #: dashboard/settings/maintenance.php:34
2383
  msgid "You are about to check all ads for errors."
2384
  msgstr "すべての広告のエラーをチェックしようとしています。"
2385
 
2386
+ #: dashboard/settings/maintenance.php:35
2387
  #, fuzzy
2388
  msgid ""
2389
  "This will apply all evaluation rules to all ads to see if any error slipped "
2390
  "in. Normally you should not need this feature."
2391
  msgstr "すべての広告のエラーをチェックしようとしています。"
2392
 
2393
+ #: dashboard/settings/maintenance.php:39
2394
  msgid ""
2395
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2396
  "database. They only apply to your ads/groups and stats. Not to other "
2403
  "is not a valid point in any case."
2404
  msgstr ""
2405
 
2406
+ #: dashboard/settings/maintenance.php:41
2407
  msgid "Troubleshooting"
2408
  msgstr "トラブルシューティング(トラブル対応)"
2409
 
2410
+ #: dashboard/settings/maintenance.php:42
2411
  msgid ""
2412
  "The below options are not meant for normal use and are only there for "
2413
  "developers to review saved settings or how ads are selected. These can be "
2415
  "SHOULD BE LEFT UNCHECKED!!"
2416
  msgstr ""
2417
 
2418
+ #: dashboard/settings/maintenance.php:45
2419
  msgid "Developer Debug"
2420
  msgstr "開発者向けデバッグ"
2421
 
2422
+ #: dashboard/settings/maintenance.php:47
2423
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2424
  msgstr ""
2425
 
2426
+ #: dashboard/settings/maintenance.php:48
2427
  msgid "View advert specs and (some) stats in the dashboard."
2428
  msgstr ""
2429
 
2430
+ #: dashboard/settings/maintenance.php:49
2431
  #, fuzzy
2432
  msgid ""
2433
  "Disable timers for clicks and impressions and enable a alert window for "
2434
  "clicktracking."
2435
  msgstr "テキストリンク(クリック数調査付):"
2436
 
2437
+ #: dashboard/settings/maintenance.php:50
2438
  #, fuzzy
2439
  msgid "Temporarily disable encryption on the redirect url."
2440
  msgstr ""
2441
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2442
  "可能性があります。"
2443
 
2444
+ #: dashboard/settings/maintenance.php:55
2445
  msgid "Status and Versions"
2446
  msgstr ""
2447
 
2448
+ #: dashboard/settings/maintenance.php:58
2449
  #, fuzzy
2450
  msgid "Current version:"
2451
  msgstr "現在のスケジュール"
2452
 
2453
+ #: dashboard/settings/maintenance.php:59
2454
  #, fuzzy
2455
  msgid "Previous version:"
2456
  msgstr "プレビュー"
2457
 
2458
+ #: dashboard/settings/maintenance.php:62
2459
  #, fuzzy
2460
  msgid "Current database version:"
2461
  msgstr "現在のスケジュール"
2462
 
2463
+ #: dashboard/settings/maintenance.php:63
2464
  #, fuzzy
2465
  msgid "Previous database version:"
2466
  msgstr "データベースの最適化"
2467
 
2468
+ #: dashboard/settings/maintenance.php:66
2469
  #, fuzzy
2470
  msgid "Current status of adverts"
2471
  msgstr "現在のスケジュール"
2472
 
2473
+ #: dashboard/settings/maintenance.php:67
2474
  #, fuzzy
2475
  msgid "Normal"
2476
  msgstr "平均的表示(50%程度)"
2477
 
2478
+ #: dashboard/settings/maintenance.php:67
2479
  #, fuzzy
2480
  msgid "Error"
2481
  msgstr "理解できないエラーが起こっています。"
2482
 
2483
+ #: dashboard/settings/maintenance.php:67
2484
  #, fuzzy
2485
  msgid "Expired"
2486
  msgstr "個の広告が期限切れです。"
2487
 
2488
+ #: dashboard/settings/maintenance.php:67
2489
  #, fuzzy
2490
  msgid "Expires Soon"
2491
  msgstr "これは出来る限り早く修正して下さい。"
2492
 
2493
+ #: dashboard/settings/maintenance.php:67
2494
  msgid "Unknown"
2495
  msgstr ""
2496
 
2497
+ #: dashboard/settings/maintenance.php:70
2498
  #, fuzzy
2499
  msgid "Ad evaluation next run:"
2500
  msgstr "通知先"
2501
 
2502
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2503
  #, fuzzy
2504
  msgid "Not scheduled!"
2505
  msgstr "掲載期間"
2506
 
2507
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2508
  #, fuzzy
2509
  msgid "Clean Trackerdata next run:"
2510
  msgstr "データベースのクリーンアップ"
2511
 
2512
+ #: dashboard/settings/misc.php:12
2513
  msgid "Miscellaneous"
2514
  msgstr "その他"
2515
 
2516
+ #: dashboard/settings/misc.php:15
2517
  msgid "Widget alignment"
2518
  msgstr "ウィジェットの配置"
2519
 
2520
+ #: dashboard/settings/misc.php:16
2521
  msgid ""
2522
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2523
  "not always help!)"
2525
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2526
  "クスをオンにします。"
2527
 
2528
+ #: dashboard/settings/misc.php:19
2529
  #, fuzzy
2530
  msgid "Widget padding"
2531
  msgstr "ブロックの隙間"
2532
 
2533
+ #: dashboard/settings/misc.php:20
2534
  #, fuzzy
2535
  msgid ""
2536
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2539
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2540
  "クスをオンにします。"
2541
 
2542
+ #: dashboard/settings/misc.php:24
2543
  msgid "NOTICE:"
2544
  msgstr ""
2545
 
2546
+ #: dashboard/settings/misc.php:25
2547
  msgid ""
2548
  "You have enabled W3 Total Caching support but not defined the security hash. "
2549
  "You need to add the following line to your wp-config.php near the bottom or "
2551
  "needs to be enabled in W3 Total Cache as well too."
2552
  msgstr ""
2553
 
2554
+ #: dashboard/settings/misc.php:29
2555
  msgid "W3 Total Caching"
2556
  msgstr ""
2557
 
2558
+ #: dashboard/settings/misc.php:30
2559
  #, fuzzy
2560
  msgid "Check this box if you use W3 Total Caching on your site."
2561
  msgstr ""
2562
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2563
  "クスをオンにします。"
2564
 
2565
+ #: dashboard/settings/misc.php:34
2566
  #, fuzzy
2567
  msgid ""
2568
  "It may take a while for the ad to start rotating. The caching plugin needs "
2571
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2572
  "可能性があります。"
2573
 
2574
+ #: dashboard/settings/misc.php:34
2575
  #, fuzzy
2576
  msgid ""
2577
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2578
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2579
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2580
 
2581
+ #: dashboard/settings/notifications.php:12
2582
  msgid "Notifications - Available in AdRotate Pro"
2583
  msgstr ""
2584
 
2585
+ #: dashboard/settings/notifications.php:13
2586
  #, fuzzy
2587
  msgid "Set up who gets notifications if ads need your attention."
2588
  msgstr "すぐに注意を必要とする広告"
2589
 
2590
+ #: dashboard/settings/notifications.php:16
2591
  msgid "Delivery method"
2592
  msgstr ""
2593
 
2594
+ #: dashboard/settings/notifications.php:18
2595
  #, fuzzy
2596
  msgid "Email message."
2597
  msgstr "広告主のページ"
2598
 
2599
+ #: dashboard/settings/notifications.php:19
2600
  #, fuzzy
2601
  msgid "Push notifications to your smartphone."
2602
  msgstr "この通知は、あなたのウェブサイトからあなたに送られています。"
2603
 
2604
+ #: dashboard/settings/notifications.php:20
2605
  msgid ""
2606
  "Push notifications are delivered through Pushover, a notification service "
2607
  "for Android and iOS"
2608
  msgstr ""
2609
 
2610
+ #: dashboard/settings/notifications.php:20
2611
  msgid ""
2612
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2613
  "information can be found on the pushover website;"
2614
  msgstr ""
2615
 
2616
+ #: dashboard/settings/notifications.php:24
2617
  msgid "Test notification"
2618
  msgstr ""
2619
 
2620
+ #: dashboard/settings/notifications.php:26
2621
  #, fuzzy
2622
  msgid ""
2623
  "This sends a test notification. Before you test, save the options first!"
2625
  "これは、テスト通知を送信します。新しいメールアドレスの設定時など、まずはオプ"
2626
  "ションを保存してから、テストして下さい。"
2627
 
2628
+ #: dashboard/settings/notifications.php:31
2629
  #, fuzzy
2630
  msgid "Dashboard Notifications"
2631
  msgstr "通知先"
2632
 
2633
+ #: dashboard/settings/notifications.php:32
2634
  msgid "These show to every administrator who can edit adverts."
2635
  msgstr ""
2636
 
2637
+ #: dashboard/settings/notifications.php:35
2638
  msgid "Notification banners"
2639
  msgstr ""
2640
 
2641
+ #: dashboard/settings/notifications.php:36
2642
  msgid "Disable dashboard notifications."
2643
  msgstr ""
2644
 
2645
+ #: dashboard/settings/notifications.php:40
2646
  msgid "Email Notifications"
2647
  msgstr "メール問い合わせ先"
2648
 
2649
+ #: dashboard/settings/notifications.php:41
2650
  #, fuzzy
2651
  msgid "Set up who gets notification emails."
2652
  msgstr "すぐに注意を必要とする広告"
2653
 
2654
+ #: dashboard/settings/notifications.php:44
2655
+ #: dashboard/settings/notifications.php:64
2656
  msgid "Publishers"
2657
  msgstr ""
2658
 
2659
+ #: dashboard/settings/notifications.php:47
2660
  msgid ""
2661
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2662
  "list to a minimum!"
2664
  "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
2665
  "抑えて下さい。"
2666
 
2667
+ #: dashboard/settings/notifications.php:48
2668
  #, fuzzy
2669
  msgid ""
2670
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2673
  "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
2674
  "合、メール通知は無効になります。"
2675
 
2676
+ #: dashboard/settings/notifications.php:52
2677
  #, fuzzy
2678
  msgid "Advertisers"
2679
  msgstr "広告主から提出された広告を承認する権限"
2680
 
2681
+ #: dashboard/settings/notifications.php:55
2682
  #, fuzzy
2683
  msgid ""
2684
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2687
  "最大2個のメールアドレスがコンマ区切りで登録できます。ここは空欄では利用できま"
2688
  "せん。"
2689
 
2690
+ #: dashboard/settings/notifications.php:60
2691
  #, fuzzy
2692
  msgid "Push Notifications"
2693
  msgstr "通知先"
2694
 
2695
+ #: dashboard/settings/notifications.php:61
2696
  msgid ""
2697
  "Receive information about what is happening with your AdRotate setup on your "
2698
  "smartphone via Pushover."
2699
  msgstr ""
2700
 
2701
+ #: dashboard/settings/notifications.php:66
2702
  msgid "When you are running out of Geo Targeting Lookups."
2703
  msgstr ""
2704
 
2705
+ #: dashboard/settings/notifications.php:67
2706
  msgid "Daily digest of any advert status other than normal."
2707
  msgstr ""
2708
 
2709
+ #: dashboard/settings/notifications.php:68
2710
  msgid "Any advertiser saving an advert in your moderation queue."
2711
  msgstr ""
2712
 
2713
+ #: dashboard/settings/notifications.php:69
2714
  #, fuzzy
2715
  msgid "A moderator approved an advert from the moderation queue."
2716
  msgstr "承認待ち広告の承認/拒否"
2717
 
2718
+ #: dashboard/settings/notifications.php:70
2719
  #, fuzzy
2720
  msgid "A moderator rejected an advert from the moderation queue."
2721
  msgstr "承認待ち広告の承認/拒否"
2722
 
2723
+ #: dashboard/settings/notifications.php:70
2724
  msgid ""
2725
  "If you have a lot of activity with many advertisers adding/changing adverts "
2726
  "you may get a lot of messages!"
2727
  msgstr ""
2728
 
2729
+ #: dashboard/settings/notifications.php:75
2730
  #, fuzzy
2731
  msgid "User Key"
2732
  msgstr "ユーザーエージェント[英語]"
2733
 
2734
+ #: dashboard/settings/notifications.php:77
2735
  msgid "Get your user token"
2736
  msgstr ""
2737
 
2738
+ #: dashboard/settings/notifications.php:77
2739
+ #: dashboard/settings/notifications.php:83
2740
  msgid "here"
2741
  msgstr ""
2742
 
2743
+ #: dashboard/settings/notifications.php:81
2744
  msgid "Api Token"
2745
  msgstr ""
2746
 
2747
+ #: dashboard/settings/notifications.php:83
2748
  msgid "Create your"
2749
  msgstr ""
2750
 
2751
+ #: dashboard/settings/notifications.php:83
2752
  msgid "App"
2753
  msgstr ""
2754
 
2755
+ #: dashboard/settings/notifications.php:83
2756
  msgid "and get your API token"
2757
  msgstr ""
2758
 
2759
+ #: dashboard/settings/roles.php:12
2760
  msgid "Roles"
2761
  msgstr ""
2762
 
2763
+ #: dashboard/settings/roles.php:13
2764
  msgid "Who has access to what?"
2765
  msgstr ""
2766
 
2767
+ #: dashboard/settings/roles.php:16
2768
  msgid "Manage/Add/Edit adverts"
2769
  msgstr "広告の追加・編集管理"
2770
 
2771
+ #: dashboard/settings/roles.php:20
2772
  msgid "Role to see and add/edit ads."
2773
  msgstr "広告を追加・編集する権限"
2774
 
2775
+ #: dashboard/settings/roles.php:24
2776
  msgid "Delete/Reset adverts"
2777
  msgstr "広告の削除やリセット"
2778
 
2779
+ #: dashboard/settings/roles.php:28
2780
  msgid "Role to delete ads and reset stats."
2781
  msgstr "広告の削除やリセットする権限"
2782
 
2783
+ #: dashboard/settings/roles.php:32
2784
  msgid "Manage/Add/Edit groups"
2785
  msgstr "グループの追加・編集管理"
2786
 
2787
+ #: dashboard/settings/roles.php:36
2788
  msgid "Role to see and add/edit groups."
2789
  msgstr "グループを削除・編集する権限"
2790
 
2791
+ #: dashboard/settings/roles.php:40
2792
  msgid "Delete groups"
2793
  msgstr "グループの削除"
2794
 
2795
+ #: dashboard/settings/roles.php:44
2796
  msgid "Role to delete groups."
2797
  msgstr "グループを削除できる権限"
2798
 
2799
+ #: dashboard/settings/statistics.php:13
2800
  msgid "Track statistics for your adverts."
2801
  msgstr ""
2802
 
2803
+ #: dashboard/settings/statistics.php:16
2804
  msgid "How to track stats"
2805
  msgstr ""
2806
 
2807
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2808
  msgid "Tracks impressions and clicks internally"
2809
  msgstr ""
2810
 
2811
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2812
+ #: dashboard/settings/statistics.php:29
2813
  msgid "manual"
2814
  msgstr ""
2815
 
2816
+ #: dashboard/settings/statistics.php:26
2817
  msgid ""
2818
  "Click and Impression recording, Click and impression limits, impression "
2819
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2820
+ "will only track impressions."
2821
+ msgstr ""
2822
+
2823
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2824
+ msgid "In AdRotate Pro!"
2825
  msgstr ""
2826
 
2827
+ #: dashboard/settings/statistics.php:27
2828
  msgid ""
2829
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2830
  "attributes"
2831
  msgstr ""
2832
 
2833
+ #: dashboard/settings/statistics.php:28
2834
  msgid ""
2835
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2836
  "Contents."
2837
  msgstr ""
2838
 
2839
+ #: dashboard/settings/statistics.php:29
2840
  msgid ""
2841
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2842
  "uses onClick() and onload() in adverts"
2843
  msgstr ""
2844
 
2845
+ #: dashboard/settings/statistics.php:30
2846
  msgid ""
2847
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2848
+ "Banner."
2849
  msgstr ""
2850
 
2851
+ #: dashboard/settings/statistics.php:36
2852
  msgid "Internal Tracker"
2853
  msgstr ""
2854
 
2855
+ #: dashboard/settings/statistics.php:37
2856
  msgid ""
2857
  "The settings below are for the internal tracker and have no effect when "
2858
  "using Piwik/Google Analytics."
2859
  msgstr ""
2860
 
2861
+ #: dashboard/settings/statistics.php:40
2862
  #, fuzzy
2863
  msgid "Logged in impressions"
2864
  msgstr "表示数"
2865
 
2866
+ #: dashboard/settings/statistics.php:42
2867
  msgid "Track impressions from logged in users."
2868
  msgstr ""
2869
 
2870
+ #: dashboard/settings/statistics.php:46
2871
  #, fuzzy
2872
  msgid "Logged in clicks"
2873
  msgstr "クリック"
2874
 
2875
+ #: dashboard/settings/statistics.php:48
2876
  #, fuzzy
2877
  msgid "Track clicks from logged in users."
2878
  msgstr "クリック"
2879
 
2880
+ #: dashboard/settings/statistics.php:52
2881
+ msgid "Impression timer"
2882
+ msgstr ""
2883
 
2884
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2885
  msgid "Seconds."
2886
  msgstr "秒"
2887
 
2888
+ #: dashboard/settings/statistics.php:55
2889
  #, fuzzy
2890
  msgid "Default: 60."
2891
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2892
 
2893
+ #: dashboard/settings/statistics.php:55
2894
  #, fuzzy
2895
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2896
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2897
 
2898
+ #: dashboard/settings/statistics.php:59
2899
+ msgid "Click timer"
2900
+ msgstr ""
 
2901
 
2902
+ #: dashboard/settings/statistics.php:62
2903
  #, fuzzy
2904
  msgid "Default: 86400."
2905
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2906
 
2907
+ #: dashboard/settings/statistics.php:62
2908
  #, fuzzy
2909
  msgid ""
2910
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2911
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2912
 
2913
+ #, fuzzy
2914
+ #~ msgid "Find out more"
2915
+ #~ msgstr "以下のURLをチェック下さい。"
2916
+
2917
+ #~ msgid "Barely visible"
2918
+ #~ msgstr "稀な表示(20%程度)"
2919
+
2920
+ #~ msgid "Less than average"
2921
+ #~ msgstr "標準より少し少ない表示(40%程度)"
2922
+
2923
+ #~ msgid "Normal coverage"
2924
+ #~ msgstr "平均的表示(50%程度)"
2925
+
2926
+ #~ msgid "More than average"
2927
+ #~ msgstr "平均よりも多めの表示(70%程度)"
2928
+
2929
+ #~ msgid "Best visibility"
2930
+ #~ msgstr "優先表示(100~90%程度)"
2931
+
2932
+ #, fuzzy
2933
+ #~ msgid "Ads in group"
2934
+ #~ msgstr "広告グループ - グループIDを使ってください。"
2935
+
2936
+ #~ msgid "Code"
2937
+ #~ msgstr "コード"
2938
+
2939
+ #~ msgid "Impressions timer"
2940
+ #~ msgstr "表示時間"
2941
+
2942
+ #, fuzzy
2943
+ #~ msgid "Clicks timer"
2944
+ #~ msgstr "表示時間"
2945
+
2946
  #, fuzzy
2947
  #~ msgid "Learn More"
2948
  #~ msgstr "ユーザーえー助演について知りたい方はこちらから。"
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: 2015-08-23 20:09+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:09+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
9
  "Language: pl_PL\n"
@@ -244,10 +244,10 @@ msgstr "Napraw to tak szybko jak to możliwe"
244
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
245
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
246
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
247
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
248
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
249
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
250
- #: dashboard/settings/geotargeting.php:16
251
  #, fuzzy
252
  msgid "Buy now"
253
  msgstr "Kup"
@@ -348,7 +348,7 @@ msgstr ""
348
  msgid "on WordPress.org to help AdRotate grow in a positive way"
349
  msgstr ""
350
 
351
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
352
  msgid "Available in AdRotate Pro"
353
  msgstr "Dostępne w wersji AdRotate Pro"
354
 
@@ -364,63 +364,63 @@ msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
364
  msgid "Learn more"
365
  msgstr "Dowiedź się więcej"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
368
- #: dashboard/publisher/adverts-edit.php:245
369
  msgid "January"
370
  msgstr "Styczeń "
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
373
- #: dashboard/publisher/adverts-edit.php:246
374
  msgid "February"
375
  msgstr "Luty"
376
 
377
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
378
- #: dashboard/publisher/adverts-edit.php:247
379
  msgid "March"
380
  msgstr "Marzec"
381
 
382
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
383
- #: dashboard/publisher/adverts-edit.php:248
384
  msgid "April"
385
  msgstr "Kwiecień"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
388
- #: dashboard/publisher/adverts-edit.php:249
389
  msgid "May"
390
  msgstr "Maj"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
393
- #: dashboard/publisher/adverts-edit.php:250
394
  msgid "June"
395
  msgstr "Czerwiec"
396
 
397
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
398
- #: dashboard/publisher/adverts-edit.php:251
399
  msgid "July"
400
  msgstr "Lipiec"
401
 
402
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
403
- #: dashboard/publisher/adverts-edit.php:252
404
  msgid "August"
405
  msgstr "Sierpień"
406
 
407
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
408
- #: dashboard/publisher/adverts-edit.php:253
409
  msgid "September"
410
  msgstr "Wrzesień"
411
 
412
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
413
- #: dashboard/publisher/adverts-edit.php:254
414
  msgid "October"
415
  msgstr "Pażdziernik"
416
 
417
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
418
- #: dashboard/publisher/adverts-edit.php:255
419
  msgid "November"
420
  msgstr "Listopad"
421
 
422
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
423
- #: dashboard/publisher/adverts-edit.php:256
424
  msgid "December"
425
  msgstr "Grudzień"
426
 
@@ -535,7 +535,7 @@ msgid "Group Management"
535
  msgstr "Zarządzanie grupą reklam"
536
 
537
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
538
- #: dashboard/publisher/groups-main.php:71
539
  msgid "Report"
540
  msgstr "Raport"
541
 
@@ -550,10 +550,10 @@ msgid ""
550
  "AdRotate Pro."
551
  msgstr ""
552
 
553
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
554
  #: dashboard/publisher/adverts-main.php:114
555
  #: dashboard/publisher/groups-edit.php:75
556
- #: dashboard/publisher/groups-main.php:91
557
  #, fuzzy
558
  msgid "More information"
559
  msgstr "Więcej informacji"
@@ -590,19 +590,19 @@ msgstr "Start / Koniec"
590
  msgid "End"
591
  msgstr "Start / Koniec"
592
 
593
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
594
  #: dashboard/publisher/groups-main.php:34
595
  msgid "Ads"
596
  msgstr "Reklamy"
597
 
598
  #: adrotate.php:428
599
- msgid "Max Clicks"
600
- msgstr "Maksymalna liczna kliknięć"
601
-
602
- #: adrotate.php:429
603
  msgid "Max Impressions"
604
  msgstr "Maksymalna liczba wyświetleń"
605
 
 
 
 
 
606
  #: adrotate.php:459
607
  #, fuzzy
608
  msgid "No schedules created yet!"
@@ -690,7 +690,7 @@ msgstr ""
690
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
691
  "pełnego wachlarza rozmiarów.'"
692
 
693
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
694
  msgid ""
695
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
696
  "filename instead of \".full\" for the various viewports."
@@ -698,13 +698,13 @@ msgstr ""
698
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
699
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
700
 
701
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
702
  #: dashboard/publisher/groups-edit.php:312
703
  #: dashboard/publisher/groups-edit.php:320
704
  msgid "Example:"
705
  msgstr "Przykład:"
706
 
707
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
708
  #, fuzzy
709
  msgid ""
710
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -802,20 +802,16 @@ msgid ""
802
  "forum. Get a solution (usually) within a day."
803
  msgstr ""
804
 
805
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
806
  msgid "AdRotate is brought to you by"
807
  msgstr "Możesz koszystać z AdRotate dzięki"
808
 
809
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
810
  msgid ""
811
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
812
- "details!"
813
  msgstr ""
814
 
815
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
816
- msgid "Find out more"
817
- msgstr "Dowiedź się więcej"
818
-
819
  #: dashboard/adrotatepro.php:58
820
  msgid "Schedule all campaigns with ease"
821
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
@@ -842,140 +838,140 @@ msgid ""
842
  msgstr ""
843
 
844
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
845
- #: dashboard/info.php:134 dashboard/info.php:146
846
  msgid "Buy AdRotate Professional"
847
  msgstr "Kup AdRotate Pro"
848
 
849
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
850
  msgid "Single License"
851
  msgstr ""
852
 
853
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
854
  msgid "For one WordPress installation."
855
  msgstr "dla jednej instalcji Wordpressa"
856
 
857
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
858
- #: dashboard/info.php:139 dashboard/info.php:151
859
  msgid "Duo License"
860
  msgstr "Podwójna licencja"
861
 
862
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
863
  msgid "For two WordPress installations."
864
  msgstr "dla dwóch instalcji Wordpressa"
865
 
866
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
867
- #: dashboard/info.php:140 dashboard/info.php:152
868
  msgid "Multi License"
869
  msgstr "Multi licencja"
870
 
871
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
872
  msgid " For up to five WordPress installations."
873
  msgstr "dla 5 instalacji Wordpessa."
874
 
875
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
876
- #: dashboard/info.php:141 dashboard/info.php:153
877
  msgid "Developer License"
878
  msgstr "Licencja Programisty"
879
 
880
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
881
  msgid "Unlimited WordPress installations and/or networks."
882
  msgstr ""
883
 
884
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
885
- #: dashboard/info.php:142 dashboard/info.php:155
886
  msgid "Compare licenses"
887
  msgstr "Porównaj licencje."
888
 
889
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
890
  msgid "Not sure which license is for you? Compare them..."
891
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
892
 
893
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
894
  msgid "All Licenses"
895
  msgstr "Wszystkie licencje"
896
 
897
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
898
  msgid "Lifetime License"
899
  msgstr ""
900
 
901
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
902
  msgid "Single installation."
903
  msgstr ""
904
 
905
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
906
  msgid "Up to 2 installations."
907
  msgstr ""
908
 
909
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
910
  msgid "Up to 10 installations."
911
  msgstr ""
912
 
913
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
914
  msgid "Up to 25 installations or multisite networks."
915
  msgstr ""
916
 
917
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
918
  msgid ""
919
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
920
  msgstr ""
921
 
922
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
923
  msgid "Not sure which license is for you?"
924
  msgstr ""
925
 
926
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
927
  msgid "Compare Licenses"
928
  msgstr ""
929
 
930
- #: dashboard/info.php:65
931
  msgid "Currently"
932
  msgstr "Bieżace"
933
 
934
- #: dashboard/info.php:71
935
  msgid "Your setup"
936
  msgstr "Twoje ustawienia"
937
 
938
- #: dashboard/info.php:72
939
  msgid "Adverts that need you"
940
  msgstr "Reklamy wymagające uwagi"
941
 
942
- #: dashboard/info.php:78
943
  msgid "Adverts"
944
  msgstr "Reklamy"
945
 
946
- #: dashboard/info.php:79
947
  msgid "(Almost) Expired"
948
  msgstr "(Wkrótce) wygasa "
949
 
950
- #: dashboard/info.php:82
951
  msgid "Groups"
952
  msgstr "Grupy"
953
 
954
- #: dashboard/info.php:83
955
  msgid "Have errors"
956
  msgstr "Posiada błędy"
957
 
958
- #: dashboard/info.php:89
959
  msgid "Support AdRotate"
960
  msgstr "Wesprzyj AdRotate"
961
 
962
- #: dashboard/info.php:96
963
  msgid "Your gift helps ensure the continued development of AdRotate!"
964
  msgstr ""
965
 
966
- #: dashboard/info.php:96
967
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
968
  msgstr ""
969
 
970
- #: dashboard/info.php:105
971
  msgid "AdRotate News and Developer Blog"
972
  msgstr "AdRotere Wiadomości i Blog "
973
 
974
- #: dashboard/info.php:127
975
  msgid "Get more features with AdRotate Pro"
976
  msgstr "Więcej ustawień z AdRotate Pro"
977
 
978
- #: dashboard/info.php:130
979
  msgid ""
980
  "Benefit from extra features to reinforce your income with advertising "
981
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -985,28 +981,24 @@ msgstr ""
985
  "Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
986
  "funkcjom."
987
 
988
- #: dashboard/info.php:130
989
  msgid "Want to know more about"
990
  msgstr ""
991
 
992
- #: dashboard/info.php:130
993
  msgid "Visit the"
994
  msgstr "Odwiedź"
995
 
996
- #: dashboard/info.php:130
997
  msgid "website"
998
  msgstr "strone internetową"
999
 
1000
- #: dashboard/info.php:166
1001
- msgid "Follow"
1002
- msgstr "Obserwuj"
1003
-
1004
  #: dashboard/publisher/adverts-disabled.php:15
1005
  msgid "Disabled Ads"
1006
  msgstr "Wyłączone reklamy"
1007
 
1008
  #: dashboard/publisher/adverts-disabled.php:21
1009
- #: dashboard/publisher/adverts-edit.php:165
1010
  msgid "Activate"
1011
  msgstr "Aktywuj"
1012
 
@@ -1031,8 +1023,6 @@ msgstr "tytuł"
1031
 
1032
  #: dashboard/publisher/adverts-disabled.php:38
1033
  #: dashboard/publisher/adverts-report.php:34
1034
- #: dashboard/publisher/groups-edit.php:333
1035
- #: dashboard/publisher/groups-main.php:36
1036
  #: dashboard/publisher/groups-report.php:40
1037
  msgid "Impressions"
1038
  msgstr "Wyświetlenia"
@@ -1056,7 +1046,7 @@ msgstr "CTR"
1056
  #: dashboard/publisher/adverts-disabled.php:74
1057
  #: dashboard/publisher/adverts-error.php:64
1058
  #: dashboard/publisher/adverts-main.php:87
1059
- #: dashboard/publisher/groups-main.php:71
1060
  msgid "Edit"
1061
  msgstr "Edytuj"
1062
 
@@ -1181,35 +1171,54 @@ msgid ""
1181
  "click to add it."
1182
  msgstr ""
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgid "Banner asset"
1186
  msgstr ""
1187
 
1188
- #: dashboard/publisher/adverts-edit.php:142
1189
  msgid "WordPress media:"
1190
  msgstr ""
1191
 
1192
- #: dashboard/publisher/adverts-edit.php:142
1193
  msgid "Select Banner"
1194
  msgstr "Wybierz baner:"
1195
 
1196
- #: dashboard/publisher/adverts-edit.php:144
1197
  msgid "- OR -"
1198
  msgstr "--albo-"
1199
 
1200
- #: dashboard/publisher/adverts-edit.php:146
1201
  msgid "Banner folder:"
1202
  msgstr "Folder banerów:"
1203
 
1204
- #: dashboard/publisher/adverts-edit.php:147
1205
  msgid "No image selected"
1206
  msgstr "Nie wybrano żadnego obrazu"
1207
 
1208
- #: dashboard/publisher/adverts-edit.php:151
1209
  msgid "Use %image% in the adcode instead of the file path."
1210
  msgstr ""
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:151
1213
  msgid ""
1214
  "Use either the text field or the dropdown. If the textfield has content that "
1215
  "field has priority."
@@ -1217,183 +1226,164 @@ msgstr ""
1217
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1218
  "zawiera treści, te pole ma pierwszeństwo."
1219
 
1220
- #: dashboard/publisher/adverts-edit.php:156
1221
- #: dashboard/settings/statistics.php:1
1222
  msgid "Statistics"
1223
  msgstr "Statystyki"
1224
 
1225
- #: dashboard/publisher/adverts-edit.php:158
1226
  msgid "Enable click and impression tracking for this advert."
1227
  msgstr ""
1228
 
1229
- #: dashboard/publisher/adverts-edit.php:159
1230
  msgid ""
1231
  "Note: Clicktracking does not work for Javascript adverts such as those "
1232
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1233
- "supported."
1234
  msgstr ""
1235
 
1236
- #: dashboard/publisher/adverts-edit.php:169
1237
  msgid "Yes, this ad will be used"
1238
  msgstr "Uruchom ta reklamę"
1239
 
1240
- #: dashboard/publisher/adverts-edit.php:170
1241
  msgid "No, do not show this ad anywhere"
1242
  msgstr "Niepokazuj tej reklamy."
1243
 
1244
- #: dashboard/publisher/adverts-edit.php:177
1245
  #: dashboard/publisher/adverts-main.php:114
1246
  #: dashboard/publisher/groups-edit.php:75
1247
- #: dashboard/publisher/groups-main.php:91
1248
  #, fuzzy
1249
  msgid "Get more features with AdRotate Pro."
1250
  msgstr "Więcej ustawień z AdRotate Pro"
1251
 
1252
- #: dashboard/publisher/adverts-edit.php:180
1253
- #: dashboard/publisher/adverts-edit.php:295
1254
- #: dashboard/publisher/adverts-edit.php:395
1255
- #: dashboard/publisher/adverts-edit.php:436
1256
  msgid "Save Advert"
1257
  msgstr "Zapisz reklamę"
1258
 
1259
- #: dashboard/publisher/adverts-edit.php:181
1260
- #: dashboard/publisher/adverts-edit.php:296
1261
- #: dashboard/publisher/adverts-edit.php:396
1262
- #: dashboard/publisher/adverts-edit.php:437
1263
  #: dashboard/publisher/groups-edit.php:154
1264
  #: dashboard/publisher/groups-edit.php:301
1265
  #: dashboard/publisher/groups-edit.php:393
1266
  msgid "Cancel"
1267
  msgstr "Anuluj"
1268
 
1269
- #: dashboard/publisher/adverts-edit.php:185
1270
- msgid "Preview"
1271
- msgstr "Podgląd"
1272
-
1273
- #: dashboard/publisher/adverts-edit.php:191
1274
- msgid ""
1275
- "Note: While this preview is an accurate one, it might look different then it "
1276
- "does on the website."
1277
- msgstr ""
1278
- "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1279
- "internetowej."
1280
-
1281
- #: dashboard/publisher/adverts-edit.php:192
1282
- msgid ""
1283
- "This is because of CSS differences. Your themes CSS file is not active here!"
1284
- msgstr ""
1285
- "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1286
- "działa w tym pliku!."
1287
-
1288
- #: dashboard/publisher/adverts-edit.php:199
1289
- #: dashboard/publisher/adverts-edit.php:378
1290
  #: dashboard/publisher/groups-edit.php:136
1291
  #: dashboard/publisher/groups-edit.php:283
1292
  msgid "Usage"
1293
  msgstr "Użycie"
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:203
1296
- #: dashboard/publisher/adverts-edit.php:382
1297
  #: dashboard/publisher/groups-edit.php:140
1298
  #: dashboard/publisher/groups-edit.php:287
1299
  msgid "Widget"
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:204
1303
- #: dashboard/publisher/adverts-edit.php:383
1304
  msgid ""
1305
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1306
  "and enter ID"
1307
  msgstr ""
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:207
1310
- #: dashboard/publisher/adverts-edit.php:386
1311
  #: dashboard/publisher/groups-edit.php:144
1312
  #: dashboard/publisher/groups-edit.php:291
1313
  msgid "In a post or page"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:209
1317
- #: dashboard/publisher/adverts-edit.php:388
1318
  #: dashboard/publisher/groups-edit.php:146
1319
  #: dashboard/publisher/groups-edit.php:293
1320
  msgid "Directly in a theme"
1321
  msgstr ""
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:215
1324
  msgid "Schedule your advert"
1325
  msgstr ""
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:219
1328
  msgid "Start date (day/month/year)"
1329
  msgstr ""
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:240
1332
  msgid "End date (day/month/year)"
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:263
1336
  msgid "Start time (hh:mm)"
1337
  msgstr ""
1338
 
1339
- #: dashboard/publisher/adverts-edit.php:270
1340
  msgid "End time (hh:mm)"
1341
  msgstr ""
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:280
1344
  msgid "Maximum Clicks"
1345
  msgstr ""
1346
 
1347
- #: dashboard/publisher/adverts-edit.php:281
1348
- #: dashboard/publisher/adverts-edit.php:283
1349
  msgid "Leave empty or 0 to skip this."
1350
  msgstr "Pozostaw puste albo wpisz 0 ."
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:282
1353
  msgid "Maximum Impressions"
1354
  msgstr ""
1355
 
1356
- #: dashboard/publisher/adverts-edit.php:287
1357
  msgid "Important"
1358
  msgstr ""
1359
 
1360
- #: dashboard/publisher/adverts-edit.php:288
1361
  msgid ""
1362
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1363
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1364
  "14:00 hours. 6AM is 6:00 hours."
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:292
1368
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1369
  msgstr ""
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:292
1372
- #: dashboard/publisher/adverts-edit.php:332
1373
- #: dashboard/publisher/adverts-edit.php:376
1374
  #: dashboard/publisher/groups-edit.php:200
1375
  #, fuzzy
1376
  msgid "Upgrade today"
1377
  msgstr "Dziś"
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:299
1380
  #: dashboard/publisher/groups-edit.php:157
1381
  msgid "Advanced"
1382
  msgstr "Zaawansowane"
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:300
1385
  msgid "Everything below is optional."
1386
  msgstr "Wszystkie opcje poniżej są opcjonalne."
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:304
1389
  msgid "Responsive"
1390
  msgstr ""
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:306
1393
  msgid "Enable responsive support for this advert."
1394
  msgstr "Włącz responsywny wygląd dla tej reklamy."
1395
 
1396
- #: dashboard/publisher/adverts-edit.php:307
1397
  msgid ""
1398
  "Upload your images to the banner folder and make sure the filename is in the "
1399
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1403,145 +1393,114 @@ msgstr ""
1403
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
1404
  "pełnego wachlarza rozmiarów.'"
1405
 
1406
- #: dashboard/publisher/adverts-edit.php:313
1407
- #: dashboard/publisher/adverts-main.php:42
1408
- #: dashboard/publisher/groups-edit.php:336
1409
- msgid "Weight"
1410
- msgstr "Waga"
1411
-
1412
- #: dashboard/publisher/adverts-edit.php:316
1413
- msgid "Barely visible"
1414
- msgstr "Ledwno widoczne"
1415
-
1416
- #: dashboard/publisher/adverts-edit.php:317
1417
- msgid "Less than average"
1418
- msgstr "Mniej niż średnia"
1419
-
1420
- #: dashboard/publisher/adverts-edit.php:318
1421
- msgid "Normal coverage"
1422
- msgstr "Normalny zasięg"
1423
-
1424
- #: dashboard/publisher/adverts-edit.php:319
1425
- msgid "More than average"
1426
- msgstr "Więcej niż średnia"
1427
-
1428
- #: dashboard/publisher/adverts-edit.php:320
1429
- msgid "Best visibility"
1430
- msgstr "Najlepsza widoczność"
1431
-
1432
- #: dashboard/publisher/adverts-edit.php:325
1433
  #: dashboard/publisher/groups-edit.php:194
1434
  msgid "Sortorder"
1435
  msgstr ""
1436
 
1437
- #: dashboard/publisher/adverts-edit.php:327
1438
  #: dashboard/publisher/groups-edit.php:196
1439
  msgid "For administrative purposes set a sortorder."
1440
  msgstr "Dla celów administracyjnych ustaw sortowanie."
1441
 
1442
- #: dashboard/publisher/adverts-edit.php:327
1443
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1444
  msgstr ""
1445
  "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:332
1448
  msgid ""
1449
- "With AdRotate Pro you can set the weight to give adverts more or less "
1450
- "exposure."
1451
  msgstr ""
1452
 
1453
- #: dashboard/publisher/adverts-edit.php:334
1454
  msgid "Geo Targeting in AdRotate Pro"
1455
  msgstr ""
1456
 
1457
- #: dashboard/publisher/adverts-edit.php:335
1458
  msgid ""
1459
  "Assign the advert to a group and enable that group to use Geo Targeting."
1460
  msgstr ""
1461
 
1462
- #: dashboard/publisher/adverts-edit.php:339
1463
  msgid "Cities/States"
1464
  msgstr ""
1465
 
1466
- #: dashboard/publisher/adverts-edit.php:342
1467
  msgid ""
1468
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1469
  "states ISO codes are supported)"
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:342
1473
  msgid ""
1474
  "AdRotate does not check the validity of names so make sure you spell them "
1475
  "correctly!"
1476
  msgstr ""
1477
 
1478
- #: dashboard/publisher/adverts-edit.php:346
1479
  msgid "Countries"
1480
  msgstr ""
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:371
1483
  msgid "Select the countries you want the adverts to show in."
1484
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1485
 
1486
- #: dashboard/publisher/adverts-edit.php:371
1487
  msgid "Cities take priority and will be filtered first."
1488
  msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1489
 
1490
- #: dashboard/publisher/adverts-edit.php:376
1491
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1492
  msgstr ""
1493
 
1494
- #: dashboard/publisher/adverts-edit.php:400
1495
  msgid "Select Groups"
1496
  msgstr "Wybierz grupy"
1497
 
1498
- #: dashboard/publisher/adverts-edit.php:405
1499
  msgid "ID - Name"
1500
  msgstr "ID - Nazwa"
1501
 
1502
- #: dashboard/publisher/adverts-edit.php:406
1503
- msgid "Ads in group"
1504
- msgstr "Reklamy w grupie"
1505
-
1506
- #: dashboard/publisher/adverts-edit.php:415
1507
- #: dashboard/publisher/groups-main.php:61
1508
- #: dashboard/settings/geotargeting.php:29
1509
  msgid "Default"
1510
  msgstr "Domyślny"
1511
 
1512
- #: dashboard/publisher/adverts-edit.php:416
1513
- #: dashboard/publisher/groups-main.php:62
1514
  msgid "Dynamic"
1515
  msgstr "Dynamiczny"
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:416
1518
- #: dashboard/publisher/groups-main.php:62
1519
  msgid "second rotation"
1520
  msgstr "drugi obrót"
1521
 
1522
- #: dashboard/publisher/adverts-edit.php:417
1523
- #: dashboard/publisher/groups-main.php:63
1524
  msgid "Block"
1525
  msgstr "Blok"
1526
 
1527
- #: dashboard/publisher/adverts-edit.php:417
1528
- #: dashboard/publisher/groups-main.php:63
1529
  msgid "grid"
1530
  msgstr "siatka"
1531
 
1532
- #: dashboard/publisher/adverts-edit.php:418
1533
  #: dashboard/publisher/groups-edit.php:202
1534
- #: dashboard/publisher/groups-main.php:64
1535
  msgid "Post Injection"
1536
  msgstr "Umieszczanie we wpisach"
1537
 
1538
- #: dashboard/publisher/adverts-edit.php:419
1539
  msgid "Geolocation"
1540
  msgstr "Geolokalizacja"
1541
 
1542
- #: dashboard/publisher/adverts-edit.php:425
1543
  #: dashboard/publisher/groups-edit.php:61
1544
- #: dashboard/publisher/groups-main.php:71
1545
  msgid "Mode"
1546
  msgstr "Tryb"
1547
 
@@ -1593,7 +1552,14 @@ msgstr "Aktywne reklamy"
1593
  msgid "Export to XML"
1594
  msgstr "Eksportuj ustawienia"
1595
 
 
 
 
 
 
1596
  #: dashboard/publisher/adverts-main.php:44
 
 
1597
  msgid "Shown"
1598
  msgstr "Wyświetlane"
1599
 
@@ -1803,7 +1769,7 @@ msgid ""
1803
  msgstr ""
1804
 
1805
  #: dashboard/publisher/groups-edit.php:184
1806
- #: dashboard/settings/advertisers.php:17
1807
  msgid "Geo Targeting"
1808
  msgstr "Geo Targeting"
1809
 
@@ -1844,7 +1810,7 @@ msgstr ""
1844
 
1845
  #: dashboard/publisher/groups-edit.php:209
1846
  #: dashboard/publisher/groups-edit.php:247
1847
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1848
  msgid "Disabled"
1849
  msgstr "Wyłącz"
1850
 
@@ -1957,6 +1923,10 @@ msgstr ""
1957
  msgid "Select adverts"
1958
  msgstr ""
1959
 
 
 
 
 
1960
  #: dashboard/publisher/groups-edit.php:337
1961
  msgid "Visible until"
1962
  msgstr "Widoczne do"
@@ -1981,16 +1951,13 @@ msgstr "Zamierzasz usunąc grupę reklam"
1981
  msgid "This action can not be undone!"
1982
  msgstr "Nie można cofnąć tego ruchu!"
1983
 
1984
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
1985
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
1986
  msgid "OK to continue, CANCEL to stop."
1987
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1988
 
1989
- #: dashboard/publisher/groups-main.php:41
1990
- msgid "Code"
1991
- msgstr "Kod"
1992
-
1993
- #: dashboard/publisher/groups-main.php:86
1994
  msgid "No groups created!"
1995
  msgstr "Nie utworzono grupy!"
1996
 
@@ -1998,103 +1965,136 @@ msgstr "Nie utworzono grupy!"
1998
  msgid "Statistics for group"
1999
  msgstr "Statystyki dla grupy"
2000
 
2001
- #: dashboard/settings/advertisers.php:1
2002
  msgid "Advertisers - Available in AdRotate Pro"
2003
  msgstr ""
2004
 
2005
- #: dashboard/settings/advertisers.php:2
2006
  msgid "Enable advertisers so they can review and manage their own ads."
2007
  msgstr ""
2008
  "Włącz uprawnienia dla reklamodawców by mogli przeglądać i zarządzać swoimi "
2009
  "reklamami."
2010
 
2011
- #: dashboard/settings/advertisers.php:5
2012
  msgid "Enable Advertisers"
2013
  msgstr "Włącz opcję reklamodawcy"
2014
 
2015
- #: dashboard/settings/advertisers.php:7
2016
  msgid "Allow adverts to be coupled to users (Advertisers)."
2017
  msgstr "Zezwalaj na łączenie reklam z reklamodawcami. "
2018
 
2019
- #: dashboard/settings/advertisers.php:11
2020
  msgid "Edit/update adverts"
2021
  msgstr "Edytuj/Aktualizuj Reklamy"
2022
 
2023
- #: dashboard/settings/advertisers.php:13
2024
  msgid "Allow advertisers to add new or edit their adverts."
2025
  msgstr "Zezwól reklamodawcom na dodawanie oraz edytowanie reklam."
2026
 
2027
- #: dashboard/settings/advertisers.php:19
2028
  msgid ""
2029
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2030
  "be enabled, too."
2031
  msgstr ""
2032
 
2033
- #: dashboard/settings/advertisers.php:23
2034
  msgid "Advertiser role"
2035
  msgstr "Uprawnienia reklamodawcy"
2036
 
2037
- #: dashboard/settings/advertisers.php:25
2038
  msgid "Create a seperate user role for your advertisers."
2039
  msgstr ""
2040
 
2041
- #: dashboard/settings/advertisers.php:26
2042
  msgid ""
2043
  "Don't forget to give these users access to their advertiser dashboard via "
2044
  "the Roles tab."
2045
  msgstr ""
2046
 
2047
- #: dashboard/settings/general.php:1
2048
  msgid "General Settings"
2049
  msgstr ""
2050
 
2051
- #: dashboard/settings/general.php:2
2052
  msgid "General settings for AdRotate."
2053
  msgstr ""
2054
 
2055
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2056
  msgid "Load jQuery"
2057
  msgstr "Załąduj jQuery"
2058
 
2059
- #: dashboard/settings/general.php:6
2060
  msgid ""
2061
- "jQuery is required for dynamic groups, ad block detection and some other "
2062
- "features. Enable this if your theme does not load jQuery."
2063
  msgstr ""
2064
 
2065
- #: dashboard/settings/general.php:9
2066
  msgid "Load scripts in footer?"
2067
  msgstr ""
2068
 
2069
- #: dashboard/settings/general.php:10
2070
  msgid ""
2071
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2072
  "site."
2073
  msgstr ""
2074
 
2075
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2076
  msgid "Banner Folder"
2077
  msgstr "Folder banerów"
2078
 
2079
- #: dashboard/settings/general.php:15
2080
  msgid "Set a location where your banner images will be stored."
2081
  msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
2082
 
2083
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2084
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2085
- #: dashboard/settings/statistics.php:38
2086
- msgid "Available in AdRotate Pro!"
2087
- msgstr ""
2088
-
2089
- #: dashboard/settings/general.php:18
2090
  msgid "Location"
2091
  msgstr "Lokalizacja"
2092
 
2093
- #: dashboard/settings/general.php:20
2094
  msgid "(Default: wp-content/banners/)."
2095
  msgstr "(Domyślnie: wp-content/banners/)."
2096
 
2097
- #: dashboard/settings/general.php:21
2098
  msgid ""
2099
  "To try and trick ad blockers you could set the folder to something crazy "
2100
  "like:"
@@ -2102,7 +2102,7 @@ msgstr ""
2102
  "Jeśli chcesz możeszspróbować trochę oszukać programy blokujące reklamy. "
2103
  "Wsytarczy żę podasz jakąś nietypową nazwę folderu np. taką :"
2104
 
2105
- #: dashboard/settings/general.php:22
2106
  msgid ""
2107
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2108
  "will show errors when the folder is missing."
@@ -2110,129 +2110,125 @@ msgstr ""
2110
  "Ten folder nie zostanie automatycznie utworzony jeśli nie istnieje. AdRotate "
2111
  "wyświetli błędy jeśli nie odnajdzie katalogu."
2112
 
2113
- #: dashboard/settings/general.php:27
2114
  msgid "Bot filter"
2115
  msgstr "Filtr Botów Internetowych"
2116
 
2117
- #: dashboard/settings/general.php:28
2118
  msgid "The bot filter is used for the AdRotate stats tracker."
2119
  msgstr ""
2120
 
2121
- #: dashboard/settings/general.php:31
2122
  msgid "User-Agent Filter"
2123
  msgstr "Filtr Agentów"
2124
 
2125
- #: dashboard/settings/general.php:34
2126
  msgid ""
2127
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2128
  msgstr ""
2129
 
2130
- #: dashboard/settings/general.php:35
2131
  msgid ""
2132
  "Keep in mind that this might give false positives. The word 'fire' also "
2133
  "matches 'firefox', but not vice-versa. So be careful!"
2134
  msgstr ""
2135
 
2136
- #: dashboard/settings/general.php:36
2137
  msgid ""
2138
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2139
  "characters are stripped out."
2140
  msgstr ""
2141
 
2142
- #: dashboard/settings/general.php:37
2143
  msgid ""
2144
  "Additionally to the list specified here, empty User-Agents are blocked as "
2145
  "well."
2146
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
2147
 
2148
- #: dashboard/settings/general.php:37
2149
  msgid "Learn more about"
2150
  msgstr "Dowiedź się więcej o"
2151
 
2152
- #: dashboard/settings/general.php:37
2153
  msgid "user-agents"
2154
  msgstr "Agenci przeglądarek"
2155
 
2156
- #: dashboard/settings/geotargeting.php:1
2157
  msgid "Geo Targeting - Available in AdRotate Pro"
2158
  msgstr ""
2159
 
2160
- #: dashboard/settings/geotargeting.php:2
2161
  msgid "Target certain areas in the world for better advertising oppurtunities."
2162
  msgstr ""
2163
 
2164
- #: dashboard/settings/geotargeting.php:5
2165
  msgid "Which Geo Service"
2166
  msgstr ""
2167
 
2168
- #: dashboard/settings/geotargeting.php:15
2169
- msgid "No Geo Targeting is available for your adverts."
2170
- msgstr ""
2171
-
2172
- #: dashboard/settings/geotargeting.php:16
2173
  msgid ""
2174
  "The most complete and accurate geo targeting you can get for only $20 USD "
2175
  "per 50000 lookups."
2176
  msgstr ""
2177
 
2178
- #: dashboard/settings/geotargeting.php:18
2179
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2180
  msgstr ""
2181
 
2182
- #: dashboard/settings/geotargeting.php:20
2183
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2184
  msgstr ""
2185
 
2186
- #: dashboard/settings/geotargeting.php:26
2187
  msgid "Geo Cookie Lifespan"
2188
  msgstr ""
2189
 
2190
- #: dashboard/settings/geotargeting.php:35
2191
  msgid "Hours."
2192
  msgstr ""
2193
 
2194
- #: dashboard/settings/geotargeting.php:36
2195
  msgid ""
2196
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2197
  "cookie last? A longer period is less accurate for mobile users but may "
2198
  "reduce the usage of your lookups drastically."
2199
  msgstr ""
2200
 
2201
- #: dashboard/settings/geotargeting.php:42
2202
  msgid "MaxMind City/Country"
2203
  msgstr ""
2204
 
2205
- #: dashboard/settings/geotargeting.php:45
2206
  msgid "Username/Email"
2207
  msgstr ""
2208
 
2209
- #: dashboard/settings/geotargeting.php:49
2210
  msgid "Password/License Key"
2211
  msgstr ""
2212
 
2213
- #: dashboard/settings/maintenance.php:1
2214
  msgid "Maintenance"
2215
  msgstr "Ostrzeżenie"
2216
 
2217
- #: dashboard/settings/maintenance.php:2
2218
  msgid ""
2219
  "Use these functions when you notice your database is slow, unresponsive and "
2220
  "sluggish."
2221
  msgstr ""
2222
 
2223
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2224
  msgid "Optimize Database"
2225
  msgstr "Optymalizuj bazę danych"
2226
 
2227
- #: dashboard/settings/maintenance.php:7
2228
  msgid "You are about to optimize the AdRotate database."
2229
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
2230
 
2231
- #: dashboard/settings/maintenance.php:7
2232
  msgid "Did you make a backup of your database?"
2233
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
2234
 
2235
- #: dashboard/settings/maintenance.php:7
2236
  msgid ""
2237
  "This may take a moment and may cause your website to respond slow "
2238
  "temporarily!"
@@ -2240,11 +2236,11 @@ msgstr ""
2240
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
2241
  "wolniej przez jakiś czas."
2242
 
2243
- #: dashboard/settings/maintenance.php:8
2244
  msgid "Cleans up overhead data in the AdRotate tables."
2245
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
2246
 
2247
- #: dashboard/settings/maintenance.php:9
2248
  msgid ""
2249
  "Overhead data is accumulated garbage resulting from many changes you've "
2250
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2253,11 +2249,11 @@ msgstr ""
2253
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
2254
  "kilobajtow do kilku GB."
2255
 
2256
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2257
  msgid "Clean-up Database"
2258
  msgstr "Wyczyść bazę danych"
2259
 
2260
- #: dashboard/settings/maintenance.php:15
2261
  msgid ""
2262
  "You are about to clean up your database. This may delete expired schedules "
2263
  "and older statistics."
@@ -2265,49 +2261,49 @@ msgstr ""
2265
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2266
  "harmonogramów i starych statystyk."
2267
 
2268
- #: dashboard/settings/maintenance.php:15
2269
  msgid "Are you sure you want to continue?"
2270
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2271
 
2272
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2273
  msgid "This might take a while and may slow down your site during this action!"
2274
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2275
 
2276
- #: dashboard/settings/maintenance.php:16
2277
  msgid "Delete stats older than 356 days (Optional)."
2278
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2279
 
2280
- #: dashboard/settings/maintenance.php:17
2281
  msgid ""
2282
  "AdRotate creates empty records when you start making ads, groups or "
2283
  "schedules. In rare occasions these records are faulty."
2284
  msgstr ""
2285
 
2286
- #: dashboard/settings/maintenance.php:17
2287
  msgid ""
2288
  "If you made an ad, group or schedule that does not save when you make it use "
2289
  "this button to delete those empty records."
2290
  msgstr ""
2291
 
2292
- #: dashboard/settings/maintenance.php:17
2293
  msgid ""
2294
  "Additionally you can clean up old schedules and/or statistics. This will "
2295
  "improve the speed of your site."
2296
  msgstr ""
2297
 
2298
- #: dashboard/settings/maintenance.php:21
2299
  msgid "Re-evaluate Ads"
2300
  msgstr "Oszacuj ponownie reklamy."
2301
 
2302
- #: dashboard/settings/maintenance.php:23
2303
  msgid "Re-evaluate all ads"
2304
  msgstr "Oszacuj ponownie wszystkie reklamy."
2305
 
2306
- #: dashboard/settings/maintenance.php:23
2307
  msgid "You are about to check all ads for errors."
2308
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2309
 
2310
- #: dashboard/settings/maintenance.php:24
2311
  msgid ""
2312
  "This will apply all evaluation rules to all ads to see if any error slipped "
2313
  "in. Normally you should not need this feature."
@@ -2316,7 +2312,7 @@ msgstr ""
2316
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
2317
  "potrzebujesz wykorzystywać tej funkcji."
2318
 
2319
- #: dashboard/settings/maintenance.php:28
2320
  msgid ""
2321
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2322
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2329,11 +2325,11 @@ msgid ""
2329
  "is not a valid point in any case."
2330
  msgstr ""
2331
 
2332
- #: dashboard/settings/maintenance.php:30
2333
  msgid "Troubleshooting"
2334
  msgstr "Masz problem"
2335
 
2336
- #: dashboard/settings/maintenance.php:31
2337
  msgid ""
2338
  "The below options are not meant for normal use and are only there for "
2339
  "developers to review saved settings or how ads are selected. These can be "
@@ -2341,19 +2337,19 @@ msgid ""
2341
  "SHOULD BE LEFT UNCHECKED!!"
2342
  msgstr ""
2343
 
2344
- #: dashboard/settings/maintenance.php:34
2345
  msgid "Developer Debug"
2346
  msgstr "Debuger dewelopera"
2347
 
2348
- #: dashboard/settings/maintenance.php:36
2349
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2350
  msgstr ""
2351
 
2352
- #: dashboard/settings/maintenance.php:37
2353
  msgid "View advert specs and (some) stats in the dashboard."
2354
  msgstr ""
2355
 
2356
- #: dashboard/settings/maintenance.php:38
2357
  msgid ""
2358
  "Disable timers for clicks and impressions and enable a alert window for "
2359
  "clicktracking."
@@ -2361,81 +2357,76 @@ msgstr ""
2361
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2362
  "śledzenia kliknięć."
2363
 
2364
- #: dashboard/settings/maintenance.php:39
2365
  msgid "Temporarily disable encryption on the redirect url."
2366
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
2367
 
2368
- #: dashboard/settings/maintenance.php:44
2369
  msgid "Status and Versions"
2370
  msgstr ""
2371
 
2372
- #: dashboard/settings/maintenance.php:47
2373
  msgid "Current version:"
2374
  msgstr "Bieżąca wersja:"
2375
 
2376
- #: dashboard/settings/maintenance.php:48
2377
  msgid "Previous version:"
2378
  msgstr "Poprzednia wersja:"
2379
 
2380
- #: dashboard/settings/maintenance.php:51
2381
  msgid "Current database version:"
2382
  msgstr "Obecna wersja bazy danych:"
2383
 
2384
- #: dashboard/settings/maintenance.php:52
2385
  msgid "Previous database version:"
2386
  msgstr "Poprzednia wersja bazy danych:"
2387
 
2388
- #: dashboard/settings/maintenance.php:55
2389
  msgid "Current status of adverts"
2390
  msgstr "Bieżący status reklam"
2391
 
2392
- #: dashboard/settings/maintenance.php:56
2393
  msgid "Normal"
2394
  msgstr "Normalny"
2395
 
2396
- #: dashboard/settings/maintenance.php:56
2397
  msgid "Error"
2398
  msgstr "Błąd"
2399
 
2400
- #: dashboard/settings/maintenance.php:56
2401
  msgid "Expired"
2402
  msgstr "Wygasa"
2403
 
2404
- #: dashboard/settings/maintenance.php:56
2405
  msgid "Expires Soon"
2406
  msgstr "Wygas wkrótce"
2407
 
2408
- #: dashboard/settings/maintenance.php:56
2409
  msgid "Unknown"
2410
  msgstr ""
2411
 
2412
- #: dashboard/settings/maintenance.php:59
2413
  #, fuzzy
2414
  msgid "Ad evaluation next run:"
2415
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2416
 
2417
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2418
- #: dashboard/settings/maintenance.php:68
2419
  msgid "Not scheduled!"
2420
  msgstr "Nie ustalono harmnogramu!"
2421
 
2422
- #: dashboard/settings/maintenance.php:63
2423
- msgid "Ad Notifications next run:"
2424
- msgstr ""
2425
-
2426
- #: dashboard/settings/maintenance.php:67
2427
  msgid "Clean Trackerdata next run:"
2428
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2429
 
2430
- #: dashboard/settings/misc.php:1
2431
  msgid "Miscellaneous"
2432
  msgstr "Różne"
2433
 
2434
- #: dashboard/settings/misc.php:4
2435
  msgid "Widget alignment"
2436
  msgstr "Wyrównanie widżetu"
2437
 
2438
- #: dashboard/settings/misc.php:5
2439
  msgid ""
2440
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2441
  "not always help!)"
@@ -2443,11 +2434,11 @@ msgstr ""
2443
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
2444
  "pomaga!)"
2445
 
2446
- #: dashboard/settings/misc.php:8
2447
  msgid "Widget padding"
2448
  msgstr "Pusta przestrzeń Widżetu"
2449
 
2450
- #: dashboard/settings/misc.php:9
2451
  msgid ""
2452
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2453
  "not always work!)"
@@ -2455,7 +2446,7 @@ msgstr ""
2455
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
2456
  "działa)"
2457
 
2458
- #: dashboard/settings/misc.php:13
2459
  #, fuzzy
2460
  msgid "NOTICE:"
2461
  msgstr ""
@@ -2465,7 +2456,7 @@ msgstr ""
2465
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
2466
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
2467
 
2468
- #: dashboard/settings/misc.php:14
2469
  msgid ""
2470
  "You have enabled W3 Total Caching support but not defined the security hash. "
2471
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2473,15 +2464,15 @@ msgid ""
2473
  "needs to be enabled in W3 Total Cache as well too."
2474
  msgstr ""
2475
 
2476
- #: dashboard/settings/misc.php:18
2477
  msgid "W3 Total Caching"
2478
  msgstr "W3 Total Caching"
2479
 
2480
- #: dashboard/settings/misc.php:19
2481
  msgid "Check this box if you use W3 Total Caching on your site."
2482
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
2483
 
2484
- #: dashboard/settings/misc.php:23
2485
  msgid ""
2486
  "It may take a while for the ad to start rotating. The caching plugin needs "
2487
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2490,7 +2481,7 @@ msgstr ""
2490
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
2491
  "jeśli nie wykonasz tego ręcznie."
2492
 
2493
- #: dashboard/settings/misc.php:23
2494
  msgid ""
2495
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2496
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2499,27 +2490,27 @@ msgstr ""
2499
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
2500
  "strony."
2501
 
2502
- #: dashboard/settings/notifications.php:1
2503
  msgid "Notifications - Available in AdRotate Pro"
2504
  msgstr ""
2505
 
2506
- #: dashboard/settings/notifications.php:2
2507
  msgid "Set up who gets notifications if ads need your attention."
2508
  msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
2509
 
2510
- #: dashboard/settings/notifications.php:5
2511
  msgid "Delivery method"
2512
  msgstr "Metoda dostarczania"
2513
 
2514
- #: dashboard/settings/notifications.php:7
2515
  msgid "Email message."
2516
  msgstr "Wiadomość email."
2517
 
2518
- #: dashboard/settings/notifications.php:8
2519
  msgid "Push notifications to your smartphone."
2520
  msgstr "Wyślij powiadomienia na swój telefon."
2521
 
2522
- #: dashboard/settings/notifications.php:9
2523
  msgid ""
2524
  "Push notifications are delivered through Pushover, a notification service "
2525
  "for Android and iOS"
@@ -2527,7 +2518,7 @@ msgstr ""
2527
  "Powiadomienia mogą być dostarczane poprzez oprogramowanie Pushover, program "
2528
  "powidamiajacy dla Androida i iOS"
2529
 
2530
- #: dashboard/settings/notifications.php:9
2531
  msgid ""
2532
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2533
  "information can be found on the pushover website;"
@@ -2536,45 +2527,45 @@ msgstr ""
2536
  "dla Android jak i iOS. Więcej informacji znajdziesz na stronie interntowej "
2537
  "aplikacji Pushover"
2538
 
2539
- #: dashboard/settings/notifications.php:13
2540
  msgid "Test notification"
2541
  msgstr ""
2542
 
2543
- #: dashboard/settings/notifications.php:15
2544
  msgid ""
2545
  "This sends a test notification. Before you test, save the options first!"
2546
  msgstr ""
2547
 
2548
- #: dashboard/settings/notifications.php:20
2549
  msgid "Dashboard Notifications"
2550
  msgstr "Powiadomienia panelu administracyjnego"
2551
 
2552
- #: dashboard/settings/notifications.php:21
2553
  msgid "These show to every administrator who can edit adverts."
2554
  msgstr ""
2555
 
2556
- #: dashboard/settings/notifications.php:24
2557
  msgid "Notification banners"
2558
  msgstr ""
2559
 
2560
- #: dashboard/settings/notifications.php:25
2561
  msgid "Disable dashboard notifications."
2562
  msgstr ""
2563
 
2564
- #: dashboard/settings/notifications.php:29
2565
  msgid "Email Notifications"
2566
  msgstr "Powiadomienie na email"
2567
 
2568
- #: dashboard/settings/notifications.php:30
2569
  msgid "Set up who gets notification emails."
2570
  msgstr "Ustal kto otrzymuje powiadomienia na email."
2571
 
2572
- #: dashboard/settings/notifications.php:33
2573
- #: dashboard/settings/notifications.php:53
2574
  msgid "Publishers"
2575
  msgstr "Ogłoszeniodawcy"
2576
 
2577
- #: dashboard/settings/notifications.php:36
2578
  msgid ""
2579
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2580
  "list to a minimum!"
@@ -2583,7 +2574,7 @@ msgstr ""
2583
  "adresów. Postaraj się by ta lista była jak najmniejsza! Gdyż może to zbytnio "
2584
  "obciążać system."
2585
 
2586
- #: dashboard/settings/notifications.php:37
2587
  msgid ""
2588
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2589
  "email notifications will be send."
@@ -2591,11 +2582,11 @@ msgstr ""
2591
  "Wiadomości są wysyłane raz na 24 godziny jeśli jest to faktycznie potrzebne. "
2592
  "Jeśli pozostawisz te pole puste, żadne wiadomości mailowe nie bądą wysyłane."
2593
 
2594
- #: dashboard/settings/notifications.php:41
2595
  msgid "Advertisers"
2596
  msgstr "Reklamodawcy"
2597
 
2598
- #: dashboard/settings/notifications.php:44
2599
  msgid ""
2600
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2601
  "This field may not be empty!"
@@ -2603,11 +2594,11 @@ msgstr ""
2603
  "Kto otrzymuje maile od reklamodawców. Maksymalnie 2 adresy odzielone "
2604
  "średnikiem. Te pole nie możę być puste!."
2605
 
2606
- #: dashboard/settings/notifications.php:49
2607
  msgid "Push Notifications"
2608
  msgstr "Powiadomienia typu PUSH"
2609
 
2610
- #: dashboard/settings/notifications.php:50
2611
  msgid ""
2612
  "Receive information about what is happening with your AdRotate setup on your "
2613
  "smartphone via Pushover."
@@ -2615,29 +2606,29 @@ msgstr ""
2615
  "Możesz otrzymywać wiadomości na smartphona o tym co dzieje się z Twoją "
2616
  "aplikacją AdRotate. Możliwe jest to dzięki aplikacjio Pushover."
2617
 
2618
- #: dashboard/settings/notifications.php:55
2619
  msgid "When you are running out of Geo Targeting Lookups."
2620
  msgstr ""
2621
 
2622
- #: dashboard/settings/notifications.php:56
2623
  msgid "Daily digest of any advert status other than normal."
2624
  msgstr "Dzienne podsumowania reklam inne niż normalne."
2625
 
2626
- #: dashboard/settings/notifications.php:57
2627
  msgid "Any advertiser saving an advert in your moderation queue."
2628
  msgstr ""
2629
  "Każdy reklamodawca zapisuje swoje reklamy w Twojej kolejce moderacyjnej."
2630
 
2631
- #: dashboard/settings/notifications.php:58
2632
  msgid "A moderator approved an advert from the moderation queue."
2633
  msgstr ""
2634
  "Moderator zatwierdza reklamy umieszczone wcześniej w kolejce moderacyjnej."
2635
 
2636
- #: dashboard/settings/notifications.php:59
2637
  msgid "A moderator rejected an advert from the moderation queue."
2638
  msgstr "Moderator wyrzuca reklamuy z kolejki moderacyjnej."
2639
 
2640
- #: dashboard/settings/notifications.php:59
2641
  msgid ""
2642
  "If you have a lot of activity with many advertisers adding/changing adverts "
2643
  "you may get a lot of messages!"
@@ -2645,185 +2636,220 @@ msgstr ""
2645
  "Jeśli odnotowujesz dużą aktwywność reklamodawców dodających i zmieniających "
2646
  "reklamy możesz otrzymywać duża ilość wiadomości!"
2647
 
2648
- #: dashboard/settings/notifications.php:64
2649
  msgid "User Key"
2650
  msgstr ""
2651
 
2652
- #: dashboard/settings/notifications.php:66
2653
  msgid "Get your user token"
2654
  msgstr ""
2655
 
2656
- #: dashboard/settings/notifications.php:66
2657
- #: dashboard/settings/notifications.php:72
2658
  msgid "here"
2659
  msgstr ""
2660
 
2661
- #: dashboard/settings/notifications.php:70
2662
  msgid "Api Token"
2663
  msgstr ""
2664
 
2665
- #: dashboard/settings/notifications.php:72
2666
  msgid "Create your"
2667
  msgstr ""
2668
 
2669
- #: dashboard/settings/notifications.php:72
2670
  msgid "App"
2671
  msgstr ""
2672
 
2673
- #: dashboard/settings/notifications.php:72
2674
  msgid "and get your API token"
2675
  msgstr ""
2676
 
2677
- #: dashboard/settings/roles.php:1
2678
  msgid "Roles"
2679
  msgstr ""
2680
 
2681
- #: dashboard/settings/roles.php:2
2682
  msgid "Who has access to what?"
2683
  msgstr "Kto ma dostęp i do czego?"
2684
 
2685
- #: dashboard/settings/roles.php:5
2686
  msgid "Manage/Add/Edit adverts"
2687
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
2688
 
2689
- #: dashboard/settings/roles.php:9
2690
  msgid "Role to see and add/edit ads."
2691
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
2692
 
2693
- #: dashboard/settings/roles.php:13
2694
  msgid "Delete/Reset adverts"
2695
  msgstr "Usuń/Resetuj reklamy"
2696
 
2697
- #: dashboard/settings/roles.php:17
2698
  msgid "Role to delete ads and reset stats."
2699
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
2700
 
2701
- #: dashboard/settings/roles.php:21
2702
  msgid "Manage/Add/Edit groups"
2703
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
2704
 
2705
- #: dashboard/settings/roles.php:25
2706
  msgid "Role to see and add/edit groups."
2707
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
2708
 
2709
- #: dashboard/settings/roles.php:29
2710
  msgid "Delete groups"
2711
  msgstr "Usuwanie grup"
2712
 
2713
- #: dashboard/settings/roles.php:33
2714
  msgid "Role to delete groups."
2715
  msgstr "Uprawnienia do usuwania grup"
2716
 
2717
- #: dashboard/settings/statistics.php:2
2718
  msgid "Track statistics for your adverts."
2719
  msgstr ""
2720
 
2721
- #: dashboard/settings/statistics.php:5
2722
  msgid "How to track stats"
2723
  msgstr ""
2724
 
2725
- #: dashboard/settings/statistics.php:14
2726
- msgid "No impressions and clicks can be recorded for any of your adverts."
2727
- msgstr ""
2728
-
2729
- #: dashboard/settings/statistics.php:15
2730
  msgid "Tracks impressions and clicks internally"
2731
  msgstr ""
2732
 
2733
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2734
- #: dashboard/settings/statistics.php:19
2735
  msgid "manual"
2736
  msgstr ""
2737
 
2738
- #: dashboard/settings/statistics.php:16
2739
  msgid ""
2740
  "Click and Impression recording, Click and impression limits, impression "
2741
- "spread for schedules, local stats display."
 
 
 
 
 
2742
  msgstr ""
2743
 
2744
- #: dashboard/settings/statistics.php:17
2745
  msgid ""
2746
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2747
  "attributes"
2748
  msgstr ""
2749
 
2750
- #: dashboard/settings/statistics.php:18
2751
  msgid ""
2752
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2753
  "Contents."
2754
  msgstr ""
2755
 
2756
- #: dashboard/settings/statistics.php:19
2757
  msgid ""
2758
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2759
  "uses onClick() and onload() in adverts"
2760
  msgstr ""
2761
 
2762
- #: dashboard/settings/statistics.php:20
2763
  msgid ""
2764
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2765
  msgstr ""
2766
 
2767
- #: dashboard/settings/statistics.php:26
2768
  msgid "Internal Tracker"
2769
  msgstr ""
2770
 
2771
- #: dashboard/settings/statistics.php:27
2772
  msgid ""
2773
  "The settings below are for the internal tracker and have no effect when "
2774
  "using Piwik/Google Analytics."
2775
  msgstr ""
2776
 
2777
- #: dashboard/settings/statistics.php:30
2778
  msgid "Logged in impressions"
2779
  msgstr "Wyświetlenia - Zalogowani"
2780
 
2781
- #: dashboard/settings/statistics.php:32
2782
  msgid "Track impressions from logged in users."
2783
  msgstr ""
2784
 
2785
- #: dashboard/settings/statistics.php:36
2786
  msgid "Logged in clicks"
2787
  msgstr "Kliknięcia - Zalogowani"
2788
 
2789
- #: dashboard/settings/statistics.php:38
2790
  msgid "Track clicks from logged in users."
2791
  msgstr "Śledz kliknięcia - zalogowanych użytkowników."
2792
 
2793
- #: dashboard/settings/statistics.php:42
2794
- msgid "Impressions timer"
2795
- msgstr "Licznik wyświetleń"
2796
 
2797
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2798
  msgid "Seconds."
2799
  msgstr "Sekundy"
2800
 
2801
- #: dashboard/settings/statistics.php:45
2802
  #, fuzzy
2803
  msgid "Default: 60."
2804
  msgstr "Domyślny"
2805
 
2806
- #: dashboard/settings/statistics.php:45
2807
  #, fuzzy
2808
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2809
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
2810
 
2811
- #: dashboard/settings/statistics.php:49
2812
- msgid "Clicks timer"
2813
- msgstr "Licznik kliknięć"
2814
 
2815
- #: dashboard/settings/statistics.php:52
2816
  #, fuzzy
2817
  msgid "Default: 86400."
2818
  msgstr "Domyślny"
2819
 
2820
- #: dashboard/settings/statistics.php:52
2821
  #, fuzzy
2822
  msgid ""
2823
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2824
  msgstr ""
2825
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2827
  #, fuzzy
2828
  #~ msgid "Learn More"
2829
  #~ msgstr "Dowiedź się więcej"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
9
  "Language: pl_PL\n"
244
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
245
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
246
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
247
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
248
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
249
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
250
+ #: dashboard/settings/geotargeting.php:26
251
  #, fuzzy
252
  msgid "Buy now"
253
  msgstr "Kup"
348
  msgid "on WordPress.org to help AdRotate grow in a positive way"
349
  msgstr ""
350
 
351
+ #: adrotate-output.php:887
352
  msgid "Available in AdRotate Pro"
353
  msgstr "Dostępne w wersji AdRotate Pro"
354
 
364
  msgid "Learn more"
365
  msgstr "Dowiedź się więcej"
366
 
367
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
368
+ #: dashboard/publisher/adverts-edit.php:240
369
  msgid "January"
370
  msgstr "Styczeń "
371
 
372
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
373
+ #: dashboard/publisher/adverts-edit.php:241
374
  msgid "February"
375
  msgstr "Luty"
376
 
377
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
378
+ #: dashboard/publisher/adverts-edit.php:242
379
  msgid "March"
380
  msgstr "Marzec"
381
 
382
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
383
+ #: dashboard/publisher/adverts-edit.php:243
384
  msgid "April"
385
  msgstr "Kwiecień"
386
 
387
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
388
+ #: dashboard/publisher/adverts-edit.php:244
389
  msgid "May"
390
  msgstr "Maj"
391
 
392
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
393
+ #: dashboard/publisher/adverts-edit.php:245
394
  msgid "June"
395
  msgstr "Czerwiec"
396
 
397
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
398
+ #: dashboard/publisher/adverts-edit.php:246
399
  msgid "July"
400
  msgstr "Lipiec"
401
 
402
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
403
+ #: dashboard/publisher/adverts-edit.php:247
404
  msgid "August"
405
  msgstr "Sierpień"
406
 
407
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
408
+ #: dashboard/publisher/adverts-edit.php:248
409
  msgid "September"
410
  msgstr "Wrzesień"
411
 
412
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
413
+ #: dashboard/publisher/adverts-edit.php:249
414
  msgid "October"
415
  msgstr "Pażdziernik"
416
 
417
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
418
+ #: dashboard/publisher/adverts-edit.php:250
419
  msgid "November"
420
  msgstr "Listopad"
421
 
422
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
423
+ #: dashboard/publisher/adverts-edit.php:251
424
  msgid "December"
425
  msgstr "Grudzień"
426
 
535
  msgstr "Zarządzanie grupą reklam"
536
 
537
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
538
+ #: dashboard/publisher/groups-main.php:70
539
  msgid "Report"
540
  msgstr "Raport"
541
 
550
  "AdRotate Pro."
551
  msgstr ""
552
 
553
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
554
  #: dashboard/publisher/adverts-main.php:114
555
  #: dashboard/publisher/groups-edit.php:75
556
+ #: dashboard/publisher/groups-main.php:89
557
  #, fuzzy
558
  msgid "More information"
559
  msgstr "Więcej informacji"
590
  msgid "End"
591
  msgstr "Start / Koniec"
592
 
593
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
594
  #: dashboard/publisher/groups-main.php:34
595
  msgid "Ads"
596
  msgstr "Reklamy"
597
 
598
  #: adrotate.php:428
 
 
 
 
599
  msgid "Max Impressions"
600
  msgstr "Maksymalna liczba wyświetleń"
601
 
602
+ #: adrotate.php:429
603
+ msgid "Max Clicks"
604
+ msgstr "Maksymalna liczna kliknięć"
605
+
606
  #: adrotate.php:459
607
  #, fuzzy
608
  msgid "No schedules created yet!"
690
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
691
  "pełnego wachlarza rozmiarów.'"
692
 
693
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
694
  msgid ""
695
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
696
  "filename instead of \".full\" for the various viewports."
698
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
699
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
700
 
701
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
702
  #: dashboard/publisher/groups-edit.php:312
703
  #: dashboard/publisher/groups-edit.php:320
704
  msgid "Example:"
705
  msgstr "Przykład:"
706
 
707
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
708
  #, fuzzy
709
  msgid ""
710
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
802
  "forum. Get a solution (usually) within a day."
803
  msgstr ""
804
 
805
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
806
  msgid "AdRotate is brought to you by"
807
  msgstr "Możesz koszystać z AdRotate dzięki"
808
 
809
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
810
  msgid ""
811
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
812
+ "starters or people looking for a new direction!"
813
  msgstr ""
814
 
 
 
 
 
815
  #: dashboard/adrotatepro.php:58
816
  msgid "Schedule all campaigns with ease"
817
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
838
  msgstr ""
839
 
840
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
841
+ #: dashboard/info.php:93 dashboard/info.php:105
842
  msgid "Buy AdRotate Professional"
843
  msgstr "Kup AdRotate Pro"
844
 
845
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
846
  msgid "Single License"
847
  msgstr ""
848
 
849
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
850
  msgid "For one WordPress installation."
851
  msgstr "dla jednej instalcji Wordpressa"
852
 
853
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
854
+ #: dashboard/info.php:98 dashboard/info.php:110
855
  msgid "Duo License"
856
  msgstr "Podwójna licencja"
857
 
858
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
859
  msgid "For two WordPress installations."
860
  msgstr "dla dwóch instalcji Wordpressa"
861
 
862
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
863
+ #: dashboard/info.php:99 dashboard/info.php:111
864
  msgid "Multi License"
865
  msgstr "Multi licencja"
866
 
867
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
868
  msgid " For up to five WordPress installations."
869
  msgstr "dla 5 instalacji Wordpessa."
870
 
871
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
872
+ #: dashboard/info.php:100 dashboard/info.php:112
873
  msgid "Developer License"
874
  msgstr "Licencja Programisty"
875
 
876
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
877
  msgid "Unlimited WordPress installations and/or networks."
878
  msgstr ""
879
 
880
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
881
+ #: dashboard/info.php:101 dashboard/info.php:114
882
  msgid "Compare licenses"
883
  msgstr "Porównaj licencje."
884
 
885
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
886
  msgid "Not sure which license is for you? Compare them..."
887
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
888
 
889
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
890
  msgid "All Licenses"
891
  msgstr "Wszystkie licencje"
892
 
893
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
894
  msgid "Lifetime License"
895
  msgstr ""
896
 
897
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
898
  msgid "Single installation."
899
  msgstr ""
900
 
901
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
902
  msgid "Up to 2 installations."
903
  msgstr ""
904
 
905
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
906
  msgid "Up to 10 installations."
907
  msgstr ""
908
 
909
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
910
  msgid "Up to 25 installations or multisite networks."
911
  msgstr ""
912
 
913
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
914
  msgid ""
915
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
916
  msgstr ""
917
 
918
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
919
  msgid "Not sure which license is for you?"
920
  msgstr ""
921
 
922
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
923
  msgid "Compare Licenses"
924
  msgstr ""
925
 
926
+ #: dashboard/info.php:24
927
  msgid "Currently"
928
  msgstr "Bieżace"
929
 
930
+ #: dashboard/info.php:30
931
  msgid "Your setup"
932
  msgstr "Twoje ustawienia"
933
 
934
+ #: dashboard/info.php:31
935
  msgid "Adverts that need you"
936
  msgstr "Reklamy wymagające uwagi"
937
 
938
+ #: dashboard/info.php:37
939
  msgid "Adverts"
940
  msgstr "Reklamy"
941
 
942
+ #: dashboard/info.php:38
943
  msgid "(Almost) Expired"
944
  msgstr "(Wkrótce) wygasa "
945
 
946
+ #: dashboard/info.php:41
947
  msgid "Groups"
948
  msgstr "Grupy"
949
 
950
+ #: dashboard/info.php:42
951
  msgid "Have errors"
952
  msgstr "Posiada błędy"
953
 
954
+ #: dashboard/info.php:48
955
  msgid "Support AdRotate"
956
  msgstr "Wesprzyj AdRotate"
957
 
958
+ #: dashboard/info.php:55
959
  msgid "Your gift helps ensure the continued development of AdRotate!"
960
  msgstr ""
961
 
962
+ #: dashboard/info.php:55
963
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
964
  msgstr ""
965
 
966
+ #: dashboard/info.php:64
967
  msgid "AdRotate News and Developer Blog"
968
  msgstr "AdRotere Wiadomości i Blog "
969
 
970
+ #: dashboard/info.php:86
971
  msgid "Get more features with AdRotate Pro"
972
  msgstr "Więcej ustawień z AdRotate Pro"
973
 
974
+ #: dashboard/info.php:89
975
  msgid ""
976
  "Benefit from extra features to reinforce your income with advertising "
977
  "campaigns. Make the most of your website with the powerful tools AdRotate "
981
  "Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
982
  "funkcjom."
983
 
984
+ #: dashboard/info.php:89
985
  msgid "Want to know more about"
986
  msgstr ""
987
 
988
+ #: dashboard/info.php:89
989
  msgid "Visit the"
990
  msgstr "Odwiedź"
991
 
992
+ #: dashboard/info.php:89
993
  msgid "website"
994
  msgstr "strone internetową"
995
 
 
 
 
 
996
  #: dashboard/publisher/adverts-disabled.php:15
997
  msgid "Disabled Ads"
998
  msgstr "Wyłączone reklamy"
999
 
1000
  #: dashboard/publisher/adverts-disabled.php:21
1001
+ #: dashboard/publisher/adverts-edit.php:175
1002
  msgid "Activate"
1003
  msgstr "Aktywuj"
1004
 
1023
 
1024
  #: dashboard/publisher/adverts-disabled.php:38
1025
  #: dashboard/publisher/adverts-report.php:34
 
 
1026
  #: dashboard/publisher/groups-report.php:40
1027
  msgid "Impressions"
1028
  msgstr "Wyświetlenia"
1046
  #: dashboard/publisher/adverts-disabled.php:74
1047
  #: dashboard/publisher/adverts-error.php:64
1048
  #: dashboard/publisher/adverts-main.php:87
1049
+ #: dashboard/publisher/groups-main.php:70
1050
  msgid "Edit"
1051
  msgstr "Edytuj"
1052
 
1171
  "click to add it."
1172
  msgstr ""
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:140
1175
+ msgid "Preview"
1176
+ msgstr "Podgląd"
1177
+
1178
+ #: dashboard/publisher/adverts-edit.php:143
1179
+ msgid ""
1180
+ "Note: While this preview is an accurate one, it might look different then it "
1181
+ "does on the website."
1182
+ msgstr ""
1183
+ "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1184
+ "internetowej."
1185
+
1186
+ #: dashboard/publisher/adverts-edit.php:144
1187
+ msgid ""
1188
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1189
+ msgstr ""
1190
+ "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1191
+ "działa w tym pliku!."
1192
+
1193
+ #: dashboard/publisher/adverts-edit.php:149
1194
  msgid "Banner asset"
1195
  msgstr ""
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:152
1198
  msgid "WordPress media:"
1199
  msgstr ""
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:152
1202
  msgid "Select Banner"
1203
  msgstr "Wybierz baner:"
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:154
1206
  msgid "- OR -"
1207
  msgstr "--albo-"
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:156
1210
  msgid "Banner folder:"
1211
  msgstr "Folder banerów:"
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:157
1214
  msgid "No image selected"
1215
  msgstr "Nie wybrano żadnego obrazu"
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:161
1218
  msgid "Use %image% in the adcode instead of the file path."
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:161
1222
  msgid ""
1223
  "Use either the text field or the dropdown. If the textfield has content that "
1224
  "field has priority."
1226
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1227
  "zawiera treści, te pole ma pierwszeństwo."
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:166
1230
+ #: dashboard/settings/statistics.php:12
1231
  msgid "Statistics"
1232
  msgstr "Statystyki"
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:168
1235
  msgid "Enable click and impression tracking for this advert."
1236
  msgstr ""
1237
 
1238
+ #: dashboard/publisher/adverts-edit.php:169
1239
  msgid ""
1240
  "Note: Clicktracking does not work for Javascript adverts such as those "
1241
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1242
+ "always supported."
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:179
1246
  msgid "Yes, this ad will be used"
1247
  msgstr "Uruchom ta reklamę"
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:180
1250
  msgid "No, do not show this ad anywhere"
1251
  msgstr "Niepokazuj tej reklamy."
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:187
1254
  #: dashboard/publisher/adverts-main.php:114
1255
  #: dashboard/publisher/groups-edit.php:75
1256
+ #: dashboard/publisher/groups-main.php:89
1257
  #, fuzzy
1258
  msgid "Get more features with AdRotate Pro."
1259
  msgstr "Więcej ustawień z AdRotate Pro"
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:190
1262
+ #: dashboard/publisher/adverts-edit.php:290
1263
+ #: dashboard/publisher/adverts-edit.php:378
1264
+ #: dashboard/publisher/adverts-edit.php:419
1265
  msgid "Save Advert"
1266
  msgstr "Zapisz reklamę"
1267
 
1268
+ #: dashboard/publisher/adverts-edit.php:191
1269
+ #: dashboard/publisher/adverts-edit.php:291
1270
+ #: dashboard/publisher/adverts-edit.php:379
1271
+ #: dashboard/publisher/adverts-edit.php:420
1272
  #: dashboard/publisher/groups-edit.php:154
1273
  #: dashboard/publisher/groups-edit.php:301
1274
  #: dashboard/publisher/groups-edit.php:393
1275
  msgid "Cancel"
1276
  msgstr "Anuluj"
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:194
1279
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1280
  #: dashboard/publisher/groups-edit.php:136
1281
  #: dashboard/publisher/groups-edit.php:283
1282
  msgid "Usage"
1283
  msgstr "Użycie"
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:198
1286
+ #: dashboard/publisher/adverts-edit.php:365
1287
  #: dashboard/publisher/groups-edit.php:140
1288
  #: dashboard/publisher/groups-edit.php:287
1289
  msgid "Widget"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:199
1293
+ #: dashboard/publisher/adverts-edit.php:366
1294
  msgid ""
1295
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1296
  "and enter ID"
1297
  msgstr ""
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:202
1300
+ #: dashboard/publisher/adverts-edit.php:369
1301
  #: dashboard/publisher/groups-edit.php:144
1302
  #: dashboard/publisher/groups-edit.php:291
1303
  msgid "In a post or page"
1304
  msgstr ""
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:204
1307
+ #: dashboard/publisher/adverts-edit.php:371
1308
  #: dashboard/publisher/groups-edit.php:146
1309
  #: dashboard/publisher/groups-edit.php:293
1310
  msgid "Directly in a theme"
1311
  msgstr ""
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:210
1314
  msgid "Schedule your advert"
1315
  msgstr ""
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:214
1318
  msgid "Start date (day/month/year)"
1319
  msgstr ""
1320
 
1321
+ #: dashboard/publisher/adverts-edit.php:235
1322
  msgid "End date (day/month/year)"
1323
  msgstr ""
1324
 
1325
+ #: dashboard/publisher/adverts-edit.php:258
1326
  msgid "Start time (hh:mm)"
1327
  msgstr ""
1328
 
1329
+ #: dashboard/publisher/adverts-edit.php:265
1330
  msgid "End time (hh:mm)"
1331
  msgstr ""
1332
 
1333
+ #: dashboard/publisher/adverts-edit.php:275
1334
  msgid "Maximum Clicks"
1335
  msgstr ""
1336
 
1337
+ #: dashboard/publisher/adverts-edit.php:276
1338
+ #: dashboard/publisher/adverts-edit.php:278
1339
  msgid "Leave empty or 0 to skip this."
1340
  msgstr "Pozostaw puste albo wpisz 0 ."
1341
 
1342
+ #: dashboard/publisher/adverts-edit.php:277
1343
  msgid "Maximum Impressions"
1344
  msgstr ""
1345
 
1346
+ #: dashboard/publisher/adverts-edit.php:282
1347
  msgid "Important"
1348
  msgstr ""
1349
 
1350
+ #: dashboard/publisher/adverts-edit.php:283
1351
  msgid ""
1352
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1353
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1354
  "14:00 hours. 6AM is 6:00 hours."
1355
  msgstr ""
1356
 
1357
+ #: dashboard/publisher/adverts-edit.php:287
1358
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1359
  msgstr ""
1360
 
1361
+ #: dashboard/publisher/adverts-edit.php:287
1362
+ #: dashboard/publisher/adverts-edit.php:315
1363
+ #: dashboard/publisher/adverts-edit.php:359
1364
  #: dashboard/publisher/groups-edit.php:200
1365
  #, fuzzy
1366
  msgid "Upgrade today"
1367
  msgstr "Dziś"
1368
 
1369
+ #: dashboard/publisher/adverts-edit.php:294
1370
  #: dashboard/publisher/groups-edit.php:157
1371
  msgid "Advanced"
1372
  msgstr "Zaawansowane"
1373
 
1374
+ #: dashboard/publisher/adverts-edit.php:295
1375
  msgid "Everything below is optional."
1376
  msgstr "Wszystkie opcje poniżej są opcjonalne."
1377
 
1378
+ #: dashboard/publisher/adverts-edit.php:299
1379
  msgid "Responsive"
1380
  msgstr ""
1381
 
1382
+ #: dashboard/publisher/adverts-edit.php:301
1383
  msgid "Enable responsive support for this advert."
1384
  msgstr "Włącz responsywny wygląd dla tej reklamy."
1385
 
1386
+ #: dashboard/publisher/adverts-edit.php:302
1387
  msgid ""
1388
  "Upload your images to the banner folder and make sure the filename is in the "
1389
  "following format; \"imagename.full.ext\". A full set of sized images is "
1393
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
1394
  "pełnego wachlarza rozmiarów.'"
1395
 
1396
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1397
  #: dashboard/publisher/groups-edit.php:194
1398
  msgid "Sortorder"
1399
  msgstr ""
1400
 
1401
+ #: dashboard/publisher/adverts-edit.php:310
1402
  #: dashboard/publisher/groups-edit.php:196
1403
  msgid "For administrative purposes set a sortorder."
1404
  msgstr "Dla celów administracyjnych ustaw sortowanie."
1405
 
1406
+ #: dashboard/publisher/adverts-edit.php:310
1407
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1408
  msgstr ""
1409
  "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1410
 
1411
+ #: dashboard/publisher/adverts-edit.php:315
1412
  msgid ""
1413
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1414
  msgstr ""
1415
 
1416
+ #: dashboard/publisher/adverts-edit.php:317
1417
  msgid "Geo Targeting in AdRotate Pro"
1418
  msgstr ""
1419
 
1420
+ #: dashboard/publisher/adverts-edit.php:318
1421
  msgid ""
1422
  "Assign the advert to a group and enable that group to use Geo Targeting."
1423
  msgstr ""
1424
 
1425
+ #: dashboard/publisher/adverts-edit.php:322
1426
  msgid "Cities/States"
1427
  msgstr ""
1428
 
1429
+ #: dashboard/publisher/adverts-edit.php:325
1430
  msgid ""
1431
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1432
  "states ISO codes are supported)"
1433
  msgstr ""
1434
 
1435
+ #: dashboard/publisher/adverts-edit.php:325
1436
  msgid ""
1437
  "AdRotate does not check the validity of names so make sure you spell them "
1438
  "correctly!"
1439
  msgstr ""
1440
 
1441
+ #: dashboard/publisher/adverts-edit.php:329
1442
  msgid "Countries"
1443
  msgstr ""
1444
 
1445
+ #: dashboard/publisher/adverts-edit.php:354
1446
  msgid "Select the countries you want the adverts to show in."
1447
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1448
 
1449
+ #: dashboard/publisher/adverts-edit.php:354
1450
  msgid "Cities take priority and will be filtered first."
1451
  msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1452
 
1453
+ #: dashboard/publisher/adverts-edit.php:359
1454
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1455
  msgstr ""
1456
 
1457
+ #: dashboard/publisher/adverts-edit.php:383
1458
  msgid "Select Groups"
1459
  msgstr "Wybierz grupy"
1460
 
1461
+ #: dashboard/publisher/adverts-edit.php:388
1462
  msgid "ID - Name"
1463
  msgstr "ID - Nazwa"
1464
 
1465
+ #: dashboard/publisher/adverts-edit.php:398
1466
+ #: dashboard/publisher/groups-main.php:60
1467
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
1468
  msgid "Default"
1469
  msgstr "Domyślny"
1470
 
1471
+ #: dashboard/publisher/adverts-edit.php:399
1472
+ #: dashboard/publisher/groups-main.php:61
1473
  msgid "Dynamic"
1474
  msgstr "Dynamiczny"
1475
 
1476
+ #: dashboard/publisher/adverts-edit.php:399
1477
+ #: dashboard/publisher/groups-main.php:61
1478
  msgid "second rotation"
1479
  msgstr "drugi obrót"
1480
 
1481
+ #: dashboard/publisher/adverts-edit.php:400
1482
+ #: dashboard/publisher/groups-main.php:62
1483
  msgid "Block"
1484
  msgstr "Blok"
1485
 
1486
+ #: dashboard/publisher/adverts-edit.php:400
1487
+ #: dashboard/publisher/groups-main.php:62
1488
  msgid "grid"
1489
  msgstr "siatka"
1490
 
1491
+ #: dashboard/publisher/adverts-edit.php:401
1492
  #: dashboard/publisher/groups-edit.php:202
1493
+ #: dashboard/publisher/groups-main.php:63
1494
  msgid "Post Injection"
1495
  msgstr "Umieszczanie we wpisach"
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:402
1498
  msgid "Geolocation"
1499
  msgstr "Geolokalizacja"
1500
 
1501
+ #: dashboard/publisher/adverts-edit.php:408
1502
  #: dashboard/publisher/groups-edit.php:61
1503
+ #: dashboard/publisher/groups-main.php:70
1504
  msgid "Mode"
1505
  msgstr "Tryb"
1506
 
1552
  msgid "Export to XML"
1553
  msgstr "Eksportuj ustawienia"
1554
 
1555
+ #: dashboard/publisher/adverts-main.php:42
1556
+ #: dashboard/publisher/groups-edit.php:336
1557
+ msgid "Weight"
1558
+ msgstr "Waga"
1559
+
1560
  #: dashboard/publisher/adverts-main.php:44
1561
+ #: dashboard/publisher/groups-edit.php:333
1562
+ #: dashboard/publisher/groups-main.php:36
1563
  msgid "Shown"
1564
  msgstr "Wyświetlane"
1565
 
1769
  msgstr ""
1770
 
1771
  #: dashboard/publisher/groups-edit.php:184
1772
+ #: dashboard/settings/advertisers.php:28
1773
  msgid "Geo Targeting"
1774
  msgstr "Geo Targeting"
1775
 
1810
 
1811
  #: dashboard/publisher/groups-edit.php:209
1812
  #: dashboard/publisher/groups-edit.php:247
1813
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1814
  msgid "Disabled"
1815
  msgstr "Wyłącz"
1816
 
1923
  msgid "Select adverts"
1924
  msgstr ""
1925
 
1926
+ #: dashboard/publisher/groups-edit.php:331
1927
+ msgid "Choose adverts"
1928
+ msgstr ""
1929
+
1930
  #: dashboard/publisher/groups-edit.php:337
1931
  msgid "Visible until"
1932
  msgstr "Widoczne do"
1951
  msgid "This action can not be undone!"
1952
  msgstr "Nie można cofnąć tego ruchu!"
1953
 
1954
+ #: dashboard/publisher/groups-main.php:24
1955
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1956
+ #: dashboard/settings/maintenance.php:34
1957
  msgid "OK to continue, CANCEL to stop."
1958
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1959
 
1960
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1961
  msgid "No groups created!"
1962
  msgstr "Nie utworzono grupy!"
1963
 
1965
  msgid "Statistics for group"
1966
  msgstr "Statystyki dla grupy"
1967
 
1968
+ #: dashboard/settings/advertisers.php:12
1969
  msgid "Advertisers - Available in AdRotate Pro"
1970
  msgstr ""
1971
 
1972
+ #: dashboard/settings/advertisers.php:13
1973
  msgid "Enable advertisers so they can review and manage their own ads."
1974
  msgstr ""
1975
  "Włącz uprawnienia dla reklamodawców by mogli przeglądać i zarządzać swoimi "
1976
  "reklamami."
1977
 
1978
+ #: dashboard/settings/advertisers.php:16
1979
  msgid "Enable Advertisers"
1980
  msgstr "Włącz opcję reklamodawcy"
1981
 
1982
+ #: dashboard/settings/advertisers.php:18
1983
  msgid "Allow adverts to be coupled to users (Advertisers)."
1984
  msgstr "Zezwalaj na łączenie reklam z reklamodawcami. "
1985
 
1986
+ #: dashboard/settings/advertisers.php:22
1987
  msgid "Edit/update adverts"
1988
  msgstr "Edytuj/Aktualizuj Reklamy"
1989
 
1990
+ #: dashboard/settings/advertisers.php:24
1991
  msgid "Allow advertisers to add new or edit their adverts."
1992
  msgstr "Zezwól reklamodawcom na dodawanie oraz edytowanie reklam."
1993
 
1994
+ #: dashboard/settings/advertisers.php:30
1995
  msgid ""
1996
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1997
  "be enabled, too."
1998
  msgstr ""
1999
 
2000
+ #: dashboard/settings/advertisers.php:34
2001
  msgid "Advertiser role"
2002
  msgstr "Uprawnienia reklamodawcy"
2003
 
2004
+ #: dashboard/settings/advertisers.php:36
2005
  msgid "Create a seperate user role for your advertisers."
2006
  msgstr ""
2007
 
2008
+ #: dashboard/settings/advertisers.php:37
2009
  msgid ""
2010
  "Don't forget to give these users access to their advertiser dashboard via "
2011
  "the Roles tab."
2012
  msgstr ""
2013
 
2014
+ #: dashboard/settings/general.php:12
2015
  msgid "General Settings"
2016
  msgstr ""
2017
 
2018
+ #: dashboard/settings/general.php:13
2019
  msgid "General settings for AdRotate."
2020
  msgstr ""
2021
 
2022
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2023
+ msgid "Some options are only available in AdRotate Pro!"
2024
+ msgstr ""
2025
+
2026
+ #: dashboard/settings/general.php:16
2027
+ msgid "Text widgets"
2028
+ msgstr ""
2029
+
2030
+ #: dashboard/settings/general.php:17
2031
+ msgid ""
2032
+ "Enable if your theme does not support shortcodes in the WordPress text "
2033
+ "widget."
2034
+ msgstr ""
2035
+
2036
+ #: dashboard/settings/general.php:20
2037
  msgid "Load jQuery"
2038
  msgstr "Załąduj jQuery"
2039
 
2040
+ #: dashboard/settings/general.php:21
2041
  msgid ""
2042
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2043
+ "groups, statistics and some other features."
2044
  msgstr ""
2045
 
2046
+ #: dashboard/settings/general.php:24
2047
  msgid "Load scripts in footer?"
2048
  msgstr ""
2049
 
2050
+ #: dashboard/settings/general.php:25
2051
  msgid ""
2052
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2053
  "site."
2054
  msgstr ""
2055
 
2056
+ #: dashboard/settings/general.php:28
2057
+ msgid "Adblock disguise"
2058
+ msgstr ""
2059
+
2060
+ #: dashboard/settings/general.php:30
2061
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2062
+ msgstr ""
2063
+
2064
+ #: dashboard/settings/general.php:31
2065
+ msgid ""
2066
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2067
+ msgstr ""
2068
+
2069
+ #: dashboard/settings/general.php:31
2070
+ msgid ""
2071
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2072
+ "instead of the AdRotate widget."
2073
+ msgstr ""
2074
+
2075
+ #: dashboard/settings/general.php:31
2076
+ msgid ""
2077
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2078
+ "feature will have little effect!"
2079
+ msgstr ""
2080
+
2081
+ #: dashboard/settings/general.php:36
2082
  msgid "Banner Folder"
2083
  msgstr "Folder banerów"
2084
 
2085
+ #: dashboard/settings/general.php:37
2086
  msgid "Set a location where your banner images will be stored."
2087
  msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
2088
 
2089
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2090
  msgid "Location"
2091
  msgstr "Lokalizacja"
2092
 
2093
+ #: dashboard/settings/general.php:42
2094
  msgid "(Default: wp-content/banners/)."
2095
  msgstr "(Domyślnie: wp-content/banners/)."
2096
 
2097
+ #: dashboard/settings/general.php:43
2098
  msgid ""
2099
  "To try and trick ad blockers you could set the folder to something crazy "
2100
  "like:"
2102
  "Jeśli chcesz możeszspróbować trochę oszukać programy blokujące reklamy. "
2103
  "Wsytarczy żę podasz jakąś nietypową nazwę folderu np. taką :"
2104
 
2105
+ #: dashboard/settings/general.php:44
2106
  msgid ""
2107
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2108
  "will show errors when the folder is missing."
2110
  "Ten folder nie zostanie automatycznie utworzony jeśli nie istnieje. AdRotate "
2111
  "wyświetli błędy jeśli nie odnajdzie katalogu."
2112
 
2113
+ #: dashboard/settings/general.php:49
2114
  msgid "Bot filter"
2115
  msgstr "Filtr Botów Internetowych"
2116
 
2117
+ #: dashboard/settings/general.php:50
2118
  msgid "The bot filter is used for the AdRotate stats tracker."
2119
  msgstr ""
2120
 
2121
+ #: dashboard/settings/general.php:53
2122
  msgid "User-Agent Filter"
2123
  msgstr "Filtr Agentów"
2124
 
2125
+ #: dashboard/settings/general.php:56
2126
  msgid ""
2127
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2128
  msgstr ""
2129
 
2130
+ #: dashboard/settings/general.php:57
2131
  msgid ""
2132
  "Keep in mind that this might give false positives. The word 'fire' also "
2133
  "matches 'firefox', but not vice-versa. So be careful!"
2134
  msgstr ""
2135
 
2136
+ #: dashboard/settings/general.php:58
2137
  msgid ""
2138
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2139
  "characters are stripped out."
2140
  msgstr ""
2141
 
2142
+ #: dashboard/settings/general.php:59
2143
  msgid ""
2144
  "Additionally to the list specified here, empty User-Agents are blocked as "
2145
  "well."
2146
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
2147
 
2148
+ #: dashboard/settings/general.php:59
2149
  msgid "Learn more about"
2150
  msgstr "Dowiedź się więcej o"
2151
 
2152
+ #: dashboard/settings/general.php:59
2153
  msgid "user-agents"
2154
  msgstr "Agenci przeglądarek"
2155
 
2156
+ #: dashboard/settings/geotargeting.php:12
2157
  msgid "Geo Targeting - Available in AdRotate Pro"
2158
  msgstr ""
2159
 
2160
+ #: dashboard/settings/geotargeting.php:13
2161
  msgid "Target certain areas in the world for better advertising oppurtunities."
2162
  msgstr ""
2163
 
2164
+ #: dashboard/settings/geotargeting.php:16
2165
  msgid "Which Geo Service"
2166
  msgstr ""
2167
 
2168
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2169
  msgid ""
2170
  "The most complete and accurate geo targeting you can get for only $20 USD "
2171
  "per 50000 lookups."
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/geotargeting.php:28
2175
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2176
  msgstr ""
2177
 
2178
+ #: dashboard/settings/geotargeting.php:30
2179
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2180
  msgstr ""
2181
 
2182
+ #: dashboard/settings/geotargeting.php:36
2183
  msgid "Geo Cookie Lifespan"
2184
  msgstr ""
2185
 
2186
+ #: dashboard/settings/geotargeting.php:45
2187
  msgid "Hours."
2188
  msgstr ""
2189
 
2190
+ #: dashboard/settings/geotargeting.php:46
2191
  msgid ""
2192
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2193
  "cookie last? A longer period is less accurate for mobile users but may "
2194
  "reduce the usage of your lookups drastically."
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/geotargeting.php:52
2198
  msgid "MaxMind City/Country"
2199
  msgstr ""
2200
 
2201
+ #: dashboard/settings/geotargeting.php:55
2202
  msgid "Username/Email"
2203
  msgstr ""
2204
 
2205
+ #: dashboard/settings/geotargeting.php:59
2206
  msgid "Password/License Key"
2207
  msgstr ""
2208
 
2209
+ #: dashboard/settings/maintenance.php:12
2210
  msgid "Maintenance"
2211
  msgstr "Ostrzeżenie"
2212
 
2213
+ #: dashboard/settings/maintenance.php:13
2214
  msgid ""
2215
  "Use these functions when you notice your database is slow, unresponsive and "
2216
  "sluggish."
2217
  msgstr ""
2218
 
2219
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2220
  msgid "Optimize Database"
2221
  msgstr "Optymalizuj bazę danych"
2222
 
2223
+ #: dashboard/settings/maintenance.php:18
2224
  msgid "You are about to optimize the AdRotate database."
2225
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
2226
 
2227
+ #: dashboard/settings/maintenance.php:18
2228
  msgid "Did you make a backup of your database?"
2229
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
2230
 
2231
+ #: dashboard/settings/maintenance.php:18
2232
  msgid ""
2233
  "This may take a moment and may cause your website to respond slow "
2234
  "temporarily!"
2236
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
2237
  "wolniej przez jakiś czas."
2238
 
2239
+ #: dashboard/settings/maintenance.php:19
2240
  msgid "Cleans up overhead data in the AdRotate tables."
2241
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
2242
 
2243
+ #: dashboard/settings/maintenance.php:20
2244
  msgid ""
2245
  "Overhead data is accumulated garbage resulting from many changes you've "
2246
  "made. This can vary from nothing to hundreds of KiB of data."
2249
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
2250
  "kilobajtow do kilku GB."
2251
 
2252
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2253
  msgid "Clean-up Database"
2254
  msgstr "Wyczyść bazę danych"
2255
 
2256
+ #: dashboard/settings/maintenance.php:26
2257
  msgid ""
2258
  "You are about to clean up your database. This may delete expired schedules "
2259
  "and older statistics."
2261
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2262
  "harmonogramów i starych statystyk."
2263
 
2264
+ #: dashboard/settings/maintenance.php:26
2265
  msgid "Are you sure you want to continue?"
2266
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2267
 
2268
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2269
  msgid "This might take a while and may slow down your site during this action!"
2270
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2271
 
2272
+ #: dashboard/settings/maintenance.php:27
2273
  msgid "Delete stats older than 356 days (Optional)."
2274
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2275
 
2276
+ #: dashboard/settings/maintenance.php:28
2277
  msgid ""
2278
  "AdRotate creates empty records when you start making ads, groups or "
2279
  "schedules. In rare occasions these records are faulty."
2280
  msgstr ""
2281
 
2282
+ #: dashboard/settings/maintenance.php:28
2283
  msgid ""
2284
  "If you made an ad, group or schedule that does not save when you make it use "
2285
  "this button to delete those empty records."
2286
  msgstr ""
2287
 
2288
+ #: dashboard/settings/maintenance.php:28
2289
  msgid ""
2290
  "Additionally you can clean up old schedules and/or statistics. This will "
2291
  "improve the speed of your site."
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/maintenance.php:32
2295
  msgid "Re-evaluate Ads"
2296
  msgstr "Oszacuj ponownie reklamy."
2297
 
2298
+ #: dashboard/settings/maintenance.php:34
2299
  msgid "Re-evaluate all ads"
2300
  msgstr "Oszacuj ponownie wszystkie reklamy."
2301
 
2302
+ #: dashboard/settings/maintenance.php:34
2303
  msgid "You are about to check all ads for errors."
2304
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2305
 
2306
+ #: dashboard/settings/maintenance.php:35
2307
  msgid ""
2308
  "This will apply all evaluation rules to all ads to see if any error slipped "
2309
  "in. Normally you should not need this feature."
2312
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
2313
  "potrzebujesz wykorzystywać tej funkcji."
2314
 
2315
+ #: dashboard/settings/maintenance.php:39
2316
  msgid ""
2317
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2318
  "database. They only apply to your ads/groups and stats. Not to other "
2325
  "is not a valid point in any case."
2326
  msgstr ""
2327
 
2328
+ #: dashboard/settings/maintenance.php:41
2329
  msgid "Troubleshooting"
2330
  msgstr "Masz problem"
2331
 
2332
+ #: dashboard/settings/maintenance.php:42
2333
  msgid ""
2334
  "The below options are not meant for normal use and are only there for "
2335
  "developers to review saved settings or how ads are selected. These can be "
2337
  "SHOULD BE LEFT UNCHECKED!!"
2338
  msgstr ""
2339
 
2340
+ #: dashboard/settings/maintenance.php:45
2341
  msgid "Developer Debug"
2342
  msgstr "Debuger dewelopera"
2343
 
2344
+ #: dashboard/settings/maintenance.php:47
2345
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2346
  msgstr ""
2347
 
2348
+ #: dashboard/settings/maintenance.php:48
2349
  msgid "View advert specs and (some) stats in the dashboard."
2350
  msgstr ""
2351
 
2352
+ #: dashboard/settings/maintenance.php:49
2353
  msgid ""
2354
  "Disable timers for clicks and impressions and enable a alert window for "
2355
  "clicktracking."
2357
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2358
  "śledzenia kliknięć."
2359
 
2360
+ #: dashboard/settings/maintenance.php:50
2361
  msgid "Temporarily disable encryption on the redirect url."
2362
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
2363
 
2364
+ #: dashboard/settings/maintenance.php:55
2365
  msgid "Status and Versions"
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:58
2369
  msgid "Current version:"
2370
  msgstr "Bieżąca wersja:"
2371
 
2372
+ #: dashboard/settings/maintenance.php:59
2373
  msgid "Previous version:"
2374
  msgstr "Poprzednia wersja:"
2375
 
2376
+ #: dashboard/settings/maintenance.php:62
2377
  msgid "Current database version:"
2378
  msgstr "Obecna wersja bazy danych:"
2379
 
2380
+ #: dashboard/settings/maintenance.php:63
2381
  msgid "Previous database version:"
2382
  msgstr "Poprzednia wersja bazy danych:"
2383
 
2384
+ #: dashboard/settings/maintenance.php:66
2385
  msgid "Current status of adverts"
2386
  msgstr "Bieżący status reklam"
2387
 
2388
+ #: dashboard/settings/maintenance.php:67
2389
  msgid "Normal"
2390
  msgstr "Normalny"
2391
 
2392
+ #: dashboard/settings/maintenance.php:67
2393
  msgid "Error"
2394
  msgstr "Błąd"
2395
 
2396
+ #: dashboard/settings/maintenance.php:67
2397
  msgid "Expired"
2398
  msgstr "Wygasa"
2399
 
2400
+ #: dashboard/settings/maintenance.php:67
2401
  msgid "Expires Soon"
2402
  msgstr "Wygas wkrótce"
2403
 
2404
+ #: dashboard/settings/maintenance.php:67
2405
  msgid "Unknown"
2406
  msgstr ""
2407
 
2408
+ #: dashboard/settings/maintenance.php:70
2409
  #, fuzzy
2410
  msgid "Ad evaluation next run:"
2411
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2412
 
2413
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2414
  msgid "Not scheduled!"
2415
  msgstr "Nie ustalono harmnogramu!"
2416
 
2417
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2418
  msgid "Clean Trackerdata next run:"
2419
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2420
 
2421
+ #: dashboard/settings/misc.php:12
2422
  msgid "Miscellaneous"
2423
  msgstr "Różne"
2424
 
2425
+ #: dashboard/settings/misc.php:15
2426
  msgid "Widget alignment"
2427
  msgstr "Wyrównanie widżetu"
2428
 
2429
+ #: dashboard/settings/misc.php:16
2430
  msgid ""
2431
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2432
  "not always help!)"
2434
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
2435
  "pomaga!)"
2436
 
2437
+ #: dashboard/settings/misc.php:19
2438
  msgid "Widget padding"
2439
  msgstr "Pusta przestrzeń Widżetu"
2440
 
2441
+ #: dashboard/settings/misc.php:20
2442
  msgid ""
2443
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2444
  "not always work!)"
2446
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
2447
  "działa)"
2448
 
2449
+ #: dashboard/settings/misc.php:24
2450
  #, fuzzy
2451
  msgid "NOTICE:"
2452
  msgstr ""
2456
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
2457
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
2458
 
2459
+ #: dashboard/settings/misc.php:25
2460
  msgid ""
2461
  "You have enabled W3 Total Caching support but not defined the security hash. "
2462
  "You need to add the following line to your wp-config.php near the bottom or "
2464
  "needs to be enabled in W3 Total Cache as well too."
2465
  msgstr ""
2466
 
2467
+ #: dashboard/settings/misc.php:29
2468
  msgid "W3 Total Caching"
2469
  msgstr "W3 Total Caching"
2470
 
2471
+ #: dashboard/settings/misc.php:30
2472
  msgid "Check this box if you use W3 Total Caching on your site."
2473
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
2474
 
2475
+ #: dashboard/settings/misc.php:34
2476
  msgid ""
2477
  "It may take a while for the ad to start rotating. The caching plugin needs "
2478
  "to refresh the cache. This can take up to a week if not done manually."
2481
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
2482
  "jeśli nie wykonasz tego ręcznie."
2483
 
2484
+ #: dashboard/settings/misc.php:34
2485
  msgid ""
2486
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2487
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2490
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
2491
  "strony."
2492
 
2493
+ #: dashboard/settings/notifications.php:12
2494
  msgid "Notifications - Available in AdRotate Pro"
2495
  msgstr ""
2496
 
2497
+ #: dashboard/settings/notifications.php:13
2498
  msgid "Set up who gets notifications if ads need your attention."
2499
  msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
2500
 
2501
+ #: dashboard/settings/notifications.php:16
2502
  msgid "Delivery method"
2503
  msgstr "Metoda dostarczania"
2504
 
2505
+ #: dashboard/settings/notifications.php:18
2506
  msgid "Email message."
2507
  msgstr "Wiadomość email."
2508
 
2509
+ #: dashboard/settings/notifications.php:19
2510
  msgid "Push notifications to your smartphone."
2511
  msgstr "Wyślij powiadomienia na swój telefon."
2512
 
2513
+ #: dashboard/settings/notifications.php:20
2514
  msgid ""
2515
  "Push notifications are delivered through Pushover, a notification service "
2516
  "for Android and iOS"
2518
  "Powiadomienia mogą być dostarczane poprzez oprogramowanie Pushover, program "
2519
  "powidamiajacy dla Androida i iOS"
2520
 
2521
+ #: dashboard/settings/notifications.php:20
2522
  msgid ""
2523
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2524
  "information can be found on the pushover website;"
2527
  "dla Android jak i iOS. Więcej informacji znajdziesz na stronie interntowej "
2528
  "aplikacji Pushover"
2529
 
2530
+ #: dashboard/settings/notifications.php:24
2531
  msgid "Test notification"
2532
  msgstr ""
2533
 
2534
+ #: dashboard/settings/notifications.php:26
2535
  msgid ""
2536
  "This sends a test notification. Before you test, save the options first!"
2537
  msgstr ""
2538
 
2539
+ #: dashboard/settings/notifications.php:31
2540
  msgid "Dashboard Notifications"
2541
  msgstr "Powiadomienia panelu administracyjnego"
2542
 
2543
+ #: dashboard/settings/notifications.php:32
2544
  msgid "These show to every administrator who can edit adverts."
2545
  msgstr ""
2546
 
2547
+ #: dashboard/settings/notifications.php:35
2548
  msgid "Notification banners"
2549
  msgstr ""
2550
 
2551
+ #: dashboard/settings/notifications.php:36
2552
  msgid "Disable dashboard notifications."
2553
  msgstr ""
2554
 
2555
+ #: dashboard/settings/notifications.php:40
2556
  msgid "Email Notifications"
2557
  msgstr "Powiadomienie na email"
2558
 
2559
+ #: dashboard/settings/notifications.php:41
2560
  msgid "Set up who gets notification emails."
2561
  msgstr "Ustal kto otrzymuje powiadomienia na email."
2562
 
2563
+ #: dashboard/settings/notifications.php:44
2564
+ #: dashboard/settings/notifications.php:64
2565
  msgid "Publishers"
2566
  msgstr "Ogłoszeniodawcy"
2567
 
2568
+ #: dashboard/settings/notifications.php:47
2569
  msgid ""
2570
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2571
  "list to a minimum!"
2574
  "adresów. Postaraj się by ta lista była jak najmniejsza! Gdyż może to zbytnio "
2575
  "obciążać system."
2576
 
2577
+ #: dashboard/settings/notifications.php:48
2578
  msgid ""
2579
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2580
  "email notifications will be send."
2582
  "Wiadomości są wysyłane raz na 24 godziny jeśli jest to faktycznie potrzebne. "
2583
  "Jeśli pozostawisz te pole puste, żadne wiadomości mailowe nie bądą wysyłane."
2584
 
2585
+ #: dashboard/settings/notifications.php:52
2586
  msgid "Advertisers"
2587
  msgstr "Reklamodawcy"
2588
 
2589
+ #: dashboard/settings/notifications.php:55
2590
  msgid ""
2591
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2592
  "This field may not be empty!"
2594
  "Kto otrzymuje maile od reklamodawców. Maksymalnie 2 adresy odzielone "
2595
  "średnikiem. Te pole nie możę być puste!."
2596
 
2597
+ #: dashboard/settings/notifications.php:60
2598
  msgid "Push Notifications"
2599
  msgstr "Powiadomienia typu PUSH"
2600
 
2601
+ #: dashboard/settings/notifications.php:61
2602
  msgid ""
2603
  "Receive information about what is happening with your AdRotate setup on your "
2604
  "smartphone via Pushover."
2606
  "Możesz otrzymywać wiadomości na smartphona o tym co dzieje się z Twoją "
2607
  "aplikacją AdRotate. Możliwe jest to dzięki aplikacjio Pushover."
2608
 
2609
+ #: dashboard/settings/notifications.php:66
2610
  msgid "When you are running out of Geo Targeting Lookups."
2611
  msgstr ""
2612
 
2613
+ #: dashboard/settings/notifications.php:67
2614
  msgid "Daily digest of any advert status other than normal."
2615
  msgstr "Dzienne podsumowania reklam inne niż normalne."
2616
 
2617
+ #: dashboard/settings/notifications.php:68
2618
  msgid "Any advertiser saving an advert in your moderation queue."
2619
  msgstr ""
2620
  "Każdy reklamodawca zapisuje swoje reklamy w Twojej kolejce moderacyjnej."
2621
 
2622
+ #: dashboard/settings/notifications.php:69
2623
  msgid "A moderator approved an advert from the moderation queue."
2624
  msgstr ""
2625
  "Moderator zatwierdza reklamy umieszczone wcześniej w kolejce moderacyjnej."
2626
 
2627
+ #: dashboard/settings/notifications.php:70
2628
  msgid "A moderator rejected an advert from the moderation queue."
2629
  msgstr "Moderator wyrzuca reklamuy z kolejki moderacyjnej."
2630
 
2631
+ #: dashboard/settings/notifications.php:70
2632
  msgid ""
2633
  "If you have a lot of activity with many advertisers adding/changing adverts "
2634
  "you may get a lot of messages!"
2636
  "Jeśli odnotowujesz dużą aktwywność reklamodawców dodających i zmieniających "
2637
  "reklamy możesz otrzymywać duża ilość wiadomości!"
2638
 
2639
+ #: dashboard/settings/notifications.php:75
2640
  msgid "User Key"
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/notifications.php:77
2644
  msgid "Get your user token"
2645
  msgstr ""
2646
 
2647
+ #: dashboard/settings/notifications.php:77
2648
+ #: dashboard/settings/notifications.php:83
2649
  msgid "here"
2650
  msgstr ""
2651
 
2652
+ #: dashboard/settings/notifications.php:81
2653
  msgid "Api Token"
2654
  msgstr ""
2655
 
2656
+ #: dashboard/settings/notifications.php:83
2657
  msgid "Create your"
2658
  msgstr ""
2659
 
2660
+ #: dashboard/settings/notifications.php:83
2661
  msgid "App"
2662
  msgstr ""
2663
 
2664
+ #: dashboard/settings/notifications.php:83
2665
  msgid "and get your API token"
2666
  msgstr ""
2667
 
2668
+ #: dashboard/settings/roles.php:12
2669
  msgid "Roles"
2670
  msgstr ""
2671
 
2672
+ #: dashboard/settings/roles.php:13
2673
  msgid "Who has access to what?"
2674
  msgstr "Kto ma dostęp i do czego?"
2675
 
2676
+ #: dashboard/settings/roles.php:16
2677
  msgid "Manage/Add/Edit adverts"
2678
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
2679
 
2680
+ #: dashboard/settings/roles.php:20
2681
  msgid "Role to see and add/edit ads."
2682
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
2683
 
2684
+ #: dashboard/settings/roles.php:24
2685
  msgid "Delete/Reset adverts"
2686
  msgstr "Usuń/Resetuj reklamy"
2687
 
2688
+ #: dashboard/settings/roles.php:28
2689
  msgid "Role to delete ads and reset stats."
2690
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
2691
 
2692
+ #: dashboard/settings/roles.php:32
2693
  msgid "Manage/Add/Edit groups"
2694
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
2695
 
2696
+ #: dashboard/settings/roles.php:36
2697
  msgid "Role to see and add/edit groups."
2698
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
2699
 
2700
+ #: dashboard/settings/roles.php:40
2701
  msgid "Delete groups"
2702
  msgstr "Usuwanie grup"
2703
 
2704
+ #: dashboard/settings/roles.php:44
2705
  msgid "Role to delete groups."
2706
  msgstr "Uprawnienia do usuwania grup"
2707
 
2708
+ #: dashboard/settings/statistics.php:13
2709
  msgid "Track statistics for your adverts."
2710
  msgstr ""
2711
 
2712
+ #: dashboard/settings/statistics.php:16
2713
  msgid "How to track stats"
2714
  msgstr ""
2715
 
2716
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2717
  msgid "Tracks impressions and clicks internally"
2718
  msgstr ""
2719
 
2720
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2721
+ #: dashboard/settings/statistics.php:29
2722
  msgid "manual"
2723
  msgstr ""
2724
 
2725
+ #: dashboard/settings/statistics.php:26
2726
  msgid ""
2727
  "Click and Impression recording, Click and impression limits, impression "
2728
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2729
+ "will only track impressions."
2730
+ msgstr ""
2731
+
2732
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2733
+ msgid "In AdRotate Pro!"
2734
  msgstr ""
2735
 
2736
+ #: dashboard/settings/statistics.php:27
2737
  msgid ""
2738
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2739
  "attributes"
2740
  msgstr ""
2741
 
2742
+ #: dashboard/settings/statistics.php:28
2743
  msgid ""
2744
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2745
  "Contents."
2746
  msgstr ""
2747
 
2748
+ #: dashboard/settings/statistics.php:29
2749
  msgid ""
2750
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2751
  "uses onClick() and onload() in adverts"
2752
  msgstr ""
2753
 
2754
+ #: dashboard/settings/statistics.php:30
2755
  msgid ""
2756
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2757
+ "Banner."
2758
  msgstr ""
2759
 
2760
+ #: dashboard/settings/statistics.php:36
2761
  msgid "Internal Tracker"
2762
  msgstr ""
2763
 
2764
+ #: dashboard/settings/statistics.php:37
2765
  msgid ""
2766
  "The settings below are for the internal tracker and have no effect when "
2767
  "using Piwik/Google Analytics."
2768
  msgstr ""
2769
 
2770
+ #: dashboard/settings/statistics.php:40
2771
  msgid "Logged in impressions"
2772
  msgstr "Wyświetlenia - Zalogowani"
2773
 
2774
+ #: dashboard/settings/statistics.php:42
2775
  msgid "Track impressions from logged in users."
2776
  msgstr ""
2777
 
2778
+ #: dashboard/settings/statistics.php:46
2779
  msgid "Logged in clicks"
2780
  msgstr "Kliknięcia - Zalogowani"
2781
 
2782
+ #: dashboard/settings/statistics.php:48
2783
  msgid "Track clicks from logged in users."
2784
  msgstr "Śledz kliknięcia - zalogowanych użytkowników."
2785
 
2786
+ #: dashboard/settings/statistics.php:52
2787
+ msgid "Impression timer"
2788
+ msgstr ""
2789
 
2790
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2791
  msgid "Seconds."
2792
  msgstr "Sekundy"
2793
 
2794
+ #: dashboard/settings/statistics.php:55
2795
  #, fuzzy
2796
  msgid "Default: 60."
2797
  msgstr "Domyślny"
2798
 
2799
+ #: dashboard/settings/statistics.php:55
2800
  #, fuzzy
2801
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2802
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
2803
 
2804
+ #: dashboard/settings/statistics.php:59
2805
+ msgid "Click timer"
2806
+ msgstr ""
2807
 
2808
+ #: dashboard/settings/statistics.php:62
2809
  #, fuzzy
2810
  msgid "Default: 86400."
2811
  msgstr "Domyślny"
2812
 
2813
+ #: dashboard/settings/statistics.php:62
2814
  #, fuzzy
2815
  msgid ""
2816
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2817
  msgstr ""
2818
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2819
 
2820
+ #~ msgid "Find out more"
2821
+ #~ msgstr "Dowiedź się więcej"
2822
+
2823
+ #~ msgid "Follow"
2824
+ #~ msgstr "Obserwuj"
2825
+
2826
+ #~ msgid "Barely visible"
2827
+ #~ msgstr "Ledwno widoczne"
2828
+
2829
+ #~ msgid "Less than average"
2830
+ #~ msgstr "Mniej niż średnia"
2831
+
2832
+ #~ msgid "Normal coverage"
2833
+ #~ msgstr "Normalny zasięg"
2834
+
2835
+ #~ msgid "More than average"
2836
+ #~ msgstr "Więcej niż średnia"
2837
+
2838
+ #~ msgid "Best visibility"
2839
+ #~ msgstr "Najlepsza widoczność"
2840
+
2841
+ #~ msgid "Ads in group"
2842
+ #~ msgstr "Reklamy w grupie"
2843
+
2844
+ #~ msgid "Code"
2845
+ #~ msgstr "Kod"
2846
+
2847
+ #~ msgid "Impressions timer"
2848
+ #~ msgstr "Licznik wyświetleń"
2849
+
2850
+ #~ msgid "Clicks timer"
2851
+ #~ msgstr "Licznik kliknięć"
2852
+
2853
  #, fuzzy
2854
  #~ msgid "Learn More"
2855
  #~ msgstr "Dowiedź się więcej"
language/adrotate-sr_RS.mo CHANGED
Binary file
language/adrotate-sr_RS.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: 2015-08-23 20:09+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:09+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
@@ -236,10 +236,10 @@ msgstr "Popravi ovo što pre je moguće"
236
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
237
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
238
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
239
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
240
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
241
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
242
- #: dashboard/settings/geotargeting.php:16
243
  #, fuzzy
244
  msgid "Buy now"
245
  msgstr "Kupite odmah"
@@ -339,7 +339,7 @@ msgstr "Dajte ocenu i komentar"
339
  msgid "on WordPress.org to help AdRotate grow in a positive way"
340
  msgstr ""
341
 
342
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
343
  msgid "Available in AdRotate Pro"
344
  msgstr "Dostupno u AdRotate Pro"
345
 
@@ -356,63 +356,63 @@ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
356
  msgid "Learn more"
357
  msgstr "Saznajte više"
358
 
359
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
360
- #: dashboard/publisher/adverts-edit.php:245
361
  msgid "January"
362
  msgstr "Januar"
363
 
364
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
365
- #: dashboard/publisher/adverts-edit.php:246
366
  msgid "February"
367
  msgstr "Februar"
368
 
369
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
370
- #: dashboard/publisher/adverts-edit.php:247
371
  msgid "March"
372
  msgstr "Mart"
373
 
374
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
375
- #: dashboard/publisher/adverts-edit.php:248
376
  msgid "April"
377
  msgstr "April"
378
 
379
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
380
- #: dashboard/publisher/adverts-edit.php:249
381
  msgid "May"
382
  msgstr "Maj"
383
 
384
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
385
- #: dashboard/publisher/adverts-edit.php:250
386
  msgid "June"
387
  msgstr "Jun"
388
 
389
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
390
- #: dashboard/publisher/adverts-edit.php:251
391
  msgid "July"
392
  msgstr "Jul"
393
 
394
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
395
- #: dashboard/publisher/adverts-edit.php:252
396
  msgid "August"
397
  msgstr "Avgust"
398
 
399
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
400
- #: dashboard/publisher/adverts-edit.php:253
401
  msgid "September"
402
  msgstr "Septembar"
403
 
404
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
405
- #: dashboard/publisher/adverts-edit.php:254
406
  msgid "October"
407
  msgstr "Oktobar"
408
 
409
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
410
- #: dashboard/publisher/adverts-edit.php:255
411
  msgid "November"
412
  msgstr "Novembar"
413
 
414
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
415
- #: dashboard/publisher/adverts-edit.php:256
416
  msgid "December"
417
  msgstr "Decembar"
418
 
@@ -530,7 +530,7 @@ msgid "Group Management"
530
  msgstr "Menadžment grupe"
531
 
532
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
533
- #: dashboard/publisher/groups-main.php:71
534
  msgid "Report"
535
  msgstr "Izveštaj"
536
 
@@ -546,10 +546,10 @@ msgid ""
546
  "AdRotate Pro."
547
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
548
 
549
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
550
  #: dashboard/publisher/adverts-main.php:114
551
  #: dashboard/publisher/groups-edit.php:75
552
- #: dashboard/publisher/groups-main.php:91
553
  #, fuzzy
554
  msgid "More information"
555
  msgstr "Saznajte više"
@@ -586,20 +586,20 @@ msgstr "Početno vreme (hh:mm):"
586
  msgid "End"
587
  msgstr "Završno vreme (hh:mm):"
588
 
589
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
590
  #: dashboard/publisher/groups-main.php:34
591
  msgid "Ads"
592
  msgstr "Oglasi"
593
 
594
  #: adrotate.php:428
595
  #, fuzzy
596
- msgid "Max Clicks"
597
- msgstr "Klikovi"
598
 
599
  #: adrotate.php:429
600
  #, fuzzy
601
- msgid "Max Impressions"
602
- msgstr "Utisci"
603
 
604
  #: adrotate.php:459
605
  #, fuzzy
@@ -684,19 +684,19 @@ msgid ""
684
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
685
  msgstr ""
686
 
687
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
688
  msgid ""
689
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
690
  "filename instead of \".full\" for the various viewports."
691
  msgstr ""
692
 
693
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
694
  #: dashboard/publisher/groups-edit.php:312
695
  #: dashboard/publisher/groups-edit.php:320
696
  msgid "Example:"
697
  msgstr "Primer"
698
 
699
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
700
  msgid ""
701
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
702
  "for different viewports."
@@ -787,20 +787,16 @@ msgid ""
787
  "forum. Get a solution (usually) within a day."
788
  msgstr ""
789
 
790
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
791
  msgid "AdRotate is brought to you by"
792
  msgstr "AdRotate vam je omogućio"
793
 
794
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
795
  msgid ""
796
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
797
- "details!"
798
  msgstr ""
799
 
800
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
801
- msgid "Find out more"
802
- msgstr "Saznajte više"
803
-
804
  #: dashboard/adrotatepro.php:58
805
  msgid "Schedule all campaigns with ease"
806
  msgstr ""
@@ -827,175 +823,171 @@ msgid ""
827
  msgstr ""
828
 
829
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
830
- #: dashboard/info.php:134 dashboard/info.php:146
831
  #, fuzzy
832
  msgid "Buy AdRotate Professional"
833
  msgstr "Kupite odmah"
834
 
835
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
836
  msgid "Single License"
837
  msgstr ""
838
 
839
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
840
  #, fuzzy
841
  msgid "For one WordPress installation."
842
  msgstr "Instalacije"
843
 
844
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
845
- #: dashboard/info.php:139 dashboard/info.php:151
846
  msgid "Duo License"
847
  msgstr ""
848
 
849
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
850
  #, fuzzy
851
  msgid "For two WordPress installations."
852
  msgstr "Instalacije"
853
 
854
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
855
- #: dashboard/info.php:140 dashboard/info.php:152
856
  msgid "Multi License"
857
  msgstr ""
858
 
859
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
860
  #, fuzzy
861
  msgid " For up to five WordPress installations."
862
  msgstr "Instalacije"
863
 
864
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
865
- #: dashboard/info.php:141 dashboard/info.php:153
866
  #, fuzzy
867
  msgid "Developer License"
868
  msgstr "Debug za programera"
869
 
870
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
871
  msgid "Unlimited WordPress installations and/or networks."
872
  msgstr ""
873
 
874
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
875
- #: dashboard/info.php:142 dashboard/info.php:155
876
  msgid "Compare licenses"
877
  msgstr ""
878
 
879
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
880
  msgid "Not sure which license is for you? Compare them..."
881
  msgstr ""
882
 
883
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
884
  #, fuzzy
885
  msgid "All Licenses"
886
  msgstr "Ponovo ocenite sve oglase"
887
 
888
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
889
  msgid "Lifetime License"
890
  msgstr ""
891
 
892
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
893
  msgid "Single installation."
894
  msgstr ""
895
 
896
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
897
  msgid "Up to 2 installations."
898
  msgstr ""
899
 
900
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
901
  msgid "Up to 10 installations."
902
  msgstr ""
903
 
904
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
905
  msgid "Up to 25 installations or multisite networks."
906
  msgstr ""
907
 
908
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
909
  msgid ""
910
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
911
  msgstr ""
912
 
913
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
914
  msgid "Not sure which license is for you?"
915
  msgstr ""
916
 
917
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
918
  msgid "Compare Licenses"
919
  msgstr ""
920
 
921
- #: dashboard/info.php:65
922
  msgid "Currently"
923
  msgstr "Trenutno"
924
 
925
- #: dashboard/info.php:71
926
  msgid "Your setup"
927
  msgstr "Vaš pristup"
928
 
929
- #: dashboard/info.php:72
930
  msgid "Adverts that need you"
931
  msgstr "Oglasi koji su vam potrebni"
932
 
933
- #: dashboard/info.php:78
934
  msgid "Adverts"
935
  msgstr "Oglasi"
936
 
937
- #: dashboard/info.php:79
938
  msgid "(Almost) Expired"
939
  msgstr "( Skoro ) Isteklo"
940
 
941
- #: dashboard/info.php:82
942
  msgid "Groups"
943
  msgstr "Grupe"
944
 
945
- #: dashboard/info.php:83
946
  msgid "Have errors"
947
  msgstr "Ima greške"
948
 
949
- #: dashboard/info.php:89
950
  msgid "Support AdRotate"
951
  msgstr "AdRotate podrška"
952
 
953
- #: dashboard/info.php:96
954
  msgid "Your gift helps ensure the continued development of AdRotate!"
955
  msgstr ""
956
 
957
- #: dashboard/info.php:96
958
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
959
  msgstr ""
960
 
961
- #: dashboard/info.php:105
962
  msgid "AdRotate News and Developer Blog"
963
  msgstr "AdRotate novosti i blog za programere"
964
 
965
- #: dashboard/info.php:127
966
  #, fuzzy
967
  msgid "Get more features with AdRotate Pro"
968
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
969
 
970
- #: dashboard/info.php:130
971
  msgid ""
972
  "Benefit from extra features to reinforce your income with advertising "
973
  "campaigns. Make the most of your website with the powerful tools AdRotate "
974
  "Pro offers on top of the trusted features included in the free version."
975
  msgstr ""
976
 
977
- #: dashboard/info.php:130
978
  msgid "Want to know more about"
979
  msgstr ""
980
 
981
- #: dashboard/info.php:130
982
  msgid "Visit the"
983
  msgstr "Posetite"
984
 
985
- #: dashboard/info.php:130
986
  msgid "website"
987
  msgstr "websajt"
988
 
989
- #: dashboard/info.php:166
990
- msgid "Follow"
991
- msgstr ""
992
-
993
  #: dashboard/publisher/adverts-disabled.php:15
994
  msgid "Disabled Ads"
995
  msgstr "Onemogući odgovore"
996
 
997
  #: dashboard/publisher/adverts-disabled.php:21
998
- #: dashboard/publisher/adverts-edit.php:165
999
  msgid "Activate"
1000
  msgstr "Aktiviraj"
1001
 
@@ -1024,8 +1016,6 @@ msgstr "Naslov"
1024
 
1025
  #: dashboard/publisher/adverts-disabled.php:38
1026
  #: dashboard/publisher/adverts-report.php:34
1027
- #: dashboard/publisher/groups-edit.php:333
1028
- #: dashboard/publisher/groups-main.php:36
1029
  #: dashboard/publisher/groups-report.php:40
1030
  msgid "Impressions"
1031
  msgstr "Utisci"
@@ -1049,7 +1039,7 @@ msgstr "CTR"
1049
  #: dashboard/publisher/adverts-disabled.php:74
1050
  #: dashboard/publisher/adverts-error.php:64
1051
  #: dashboard/publisher/adverts-main.php:87
1052
- #: dashboard/publisher/groups-main.php:71
1053
  msgid "Edit"
1054
  msgstr "Edituj"
1055
 
@@ -1175,36 +1165,53 @@ msgid ""
1175
  "click to add it."
1176
  msgstr ""
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1179
  msgid "Banner asset"
1180
  msgstr ""
1181
 
1182
- #: dashboard/publisher/adverts-edit.php:142
1183
  msgid "WordPress media:"
1184
  msgstr ""
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:142
1187
  #, fuzzy
1188
  msgid "Select Banner"
1189
  msgstr "Baner Folder"
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:144
1192
  msgid "- OR -"
1193
  msgstr "- ILI -"
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:146
1196
  msgid "Banner folder:"
1197
  msgstr "Folder banera:"
1198
 
1199
- #: dashboard/publisher/adverts-edit.php:147
1200
  msgid "No image selected"
1201
  msgstr "Nijedna slika nije izabrana"
1202
 
1203
- #: dashboard/publisher/adverts-edit.php:151
1204
  msgid "Use %image% in the adcode instead of the file path."
1205
  msgstr ""
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:151
1208
  msgid ""
1209
  "Use either the text field or the dropdown. If the textfield has content that "
1210
  "field has priority."
@@ -1212,347 +1219,289 @@ msgstr ""
1212
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1213
  "polje ima prioritet ."
1214
 
1215
- #: dashboard/publisher/adverts-edit.php:156
1216
- #: dashboard/settings/statistics.php:1
1217
  msgid "Statistics"
1218
  msgstr "Statistike"
1219
 
1220
- #: dashboard/publisher/adverts-edit.php:158
1221
  msgid "Enable click and impression tracking for this advert."
1222
  msgstr ""
1223
 
1224
- #: dashboard/publisher/adverts-edit.php:159
1225
  msgid ""
1226
  "Note: Clicktracking does not work for Javascript adverts such as those "
1227
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1228
- "supported."
1229
  msgstr ""
1230
 
1231
- #: dashboard/publisher/adverts-edit.php:169
1232
  msgid "Yes, this ad will be used"
1233
  msgstr "Da , ovaj oglas će se koristiti"
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:170
1236
  msgid "No, do not show this ad anywhere"
1237
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1238
 
1239
- #: dashboard/publisher/adverts-edit.php:177
1240
  #: dashboard/publisher/adverts-main.php:114
1241
  #: dashboard/publisher/groups-edit.php:75
1242
- #: dashboard/publisher/groups-main.php:91
1243
  #, fuzzy
1244
  msgid "Get more features with AdRotate Pro."
1245
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:180
1248
- #: dashboard/publisher/adverts-edit.php:295
1249
- #: dashboard/publisher/adverts-edit.php:395
1250
- #: dashboard/publisher/adverts-edit.php:436
1251
  msgid "Save Advert"
1252
  msgstr "Sačuvaj oglas"
1253
 
1254
- #: dashboard/publisher/adverts-edit.php:181
1255
- #: dashboard/publisher/adverts-edit.php:296
1256
- #: dashboard/publisher/adverts-edit.php:396
1257
- #: dashboard/publisher/adverts-edit.php:437
1258
  #: dashboard/publisher/groups-edit.php:154
1259
  #: dashboard/publisher/groups-edit.php:301
1260
  #: dashboard/publisher/groups-edit.php:393
1261
  msgid "Cancel"
1262
  msgstr "Ukini"
1263
 
1264
- #: dashboard/publisher/adverts-edit.php:185
1265
- msgid "Preview"
1266
- msgstr "Pregled"
1267
-
1268
- #: dashboard/publisher/adverts-edit.php:191
1269
- msgid ""
1270
- "Note: While this preview is an accurate one, it might look different then it "
1271
- "does on the website."
1272
- msgstr ""
1273
- "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1274
- "drugačije onda to čini na sajtu ."
1275
-
1276
- #: dashboard/publisher/adverts-edit.php:192
1277
- msgid ""
1278
- "This is because of CSS differences. Your themes CSS file is not active here!"
1279
- msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1280
-
1281
- #: dashboard/publisher/adverts-edit.php:199
1282
- #: dashboard/publisher/adverts-edit.php:378
1283
  #: dashboard/publisher/groups-edit.php:136
1284
  #: dashboard/publisher/groups-edit.php:283
1285
  msgid "Usage"
1286
  msgstr "upotreba"
1287
 
1288
- #: dashboard/publisher/adverts-edit.php:203
1289
- #: dashboard/publisher/adverts-edit.php:382
1290
  #: dashboard/publisher/groups-edit.php:140
1291
  #: dashboard/publisher/groups-edit.php:287
1292
  msgid "Widget"
1293
  msgstr ""
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:204
1296
- #: dashboard/publisher/adverts-edit.php:383
1297
  msgid ""
1298
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1299
  "and enter ID"
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:207
1303
- #: dashboard/publisher/adverts-edit.php:386
1304
  #: dashboard/publisher/groups-edit.php:144
1305
  #: dashboard/publisher/groups-edit.php:291
1306
  msgid "In a post or page"
1307
  msgstr ""
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:209
1310
- #: dashboard/publisher/adverts-edit.php:388
1311
  #: dashboard/publisher/groups-edit.php:146
1312
  #: dashboard/publisher/groups-edit.php:293
1313
  msgid "Directly in a theme"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:215
1317
  msgid "Schedule your advert"
1318
  msgstr ""
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:219
1321
  msgid "Start date (day/month/year)"
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:240
1325
  msgid "End date (day/month/year)"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:263
1329
  msgid "Start time (hh:mm)"
1330
  msgstr ""
1331
 
1332
- #: dashboard/publisher/adverts-edit.php:270
1333
  msgid "End time (hh:mm)"
1334
  msgstr ""
1335
 
1336
- #: dashboard/publisher/adverts-edit.php:280
1337
  msgid "Maximum Clicks"
1338
  msgstr ""
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:281
1341
- #: dashboard/publisher/adverts-edit.php:283
1342
  msgid "Leave empty or 0 to skip this."
1343
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1344
 
1345
- #: dashboard/publisher/adverts-edit.php:282
1346
  msgid "Maximum Impressions"
1347
  msgstr ""
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:287
1350
  msgid "Important"
1351
  msgstr ""
1352
 
1353
- #: dashboard/publisher/adverts-edit.php:288
1354
  msgid ""
1355
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1356
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1357
  "14:00 hours. 6AM is 6:00 hours."
1358
  msgstr ""
1359
 
1360
- #: dashboard/publisher/adverts-edit.php:292
1361
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1362
  msgstr ""
1363
 
1364
- #: dashboard/publisher/adverts-edit.php:292
1365
- #: dashboard/publisher/adverts-edit.php:332
1366
- #: dashboard/publisher/adverts-edit.php:376
1367
  #: dashboard/publisher/groups-edit.php:200
1368
  #, fuzzy
1369
  msgid "Upgrade today"
1370
  msgstr "Danas"
1371
 
1372
- #: dashboard/publisher/adverts-edit.php:299
1373
  #: dashboard/publisher/groups-edit.php:157
1374
  msgid "Advanced"
1375
  msgstr ""
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:300
1378
  #, fuzzy
1379
  msgid "Everything below is optional."
1380
  msgstr "Naslov (opcionalno):"
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:304
1383
  msgid "Responsive"
1384
  msgstr ""
1385
 
1386
- #: dashboard/publisher/adverts-edit.php:306
1387
  #, fuzzy
1388
  msgid "Enable responsive support for this advert."
1389
  msgstr "Oglasi"
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:307
1392
  msgid ""
1393
  "Upload your images to the banner folder and make sure the filename is in the "
1394
  "following format; \"imagename.full.ext\". A full set of sized images is "
1395
  "strongly recommended."
1396
  msgstr ""
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:313
1399
- #: dashboard/publisher/adverts-main.php:42
1400
- #: dashboard/publisher/groups-edit.php:336
1401
- msgid "Weight"
1402
- msgstr "Težina"
1403
-
1404
- #: dashboard/publisher/adverts-edit.php:316
1405
- #, fuzzy
1406
- msgid "Barely visible"
1407
- msgstr "Vidljivo do"
1408
-
1409
- #: dashboard/publisher/adverts-edit.php:317
1410
- #, fuzzy
1411
- msgid "Less than average"
1412
- msgstr "Oglas ističe za manje od 2 dana !"
1413
-
1414
- #: dashboard/publisher/adverts-edit.php:318
1415
- #, fuzzy
1416
- msgid "Normal coverage"
1417
- msgstr ""
1418
- "NAPOMENA : Slede opcije nisu namenjene za normalnu upotrebu , a tu su samo "
1419
- "za programere da pregledaju sačuvane postavke ili kako se oglasi izabrani . "
1420
- "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1421
- "normalnu upotrebu oni treba da budu levo neprovereni "
1422
-
1423
- #: dashboard/publisher/adverts-edit.php:319
1424
- #, fuzzy
1425
- msgid "More than average"
1426
- msgstr "Saznajte više"
1427
-
1428
- #: dashboard/publisher/adverts-edit.php:320
1429
- #, fuzzy
1430
- msgid "Best visibility"
1431
- msgstr "Vidljivo do"
1432
-
1433
- #: dashboard/publisher/adverts-edit.php:325
1434
  #: dashboard/publisher/groups-edit.php:194
1435
  msgid "Sortorder"
1436
  msgstr ""
1437
 
1438
- #: dashboard/publisher/adverts-edit.php:327
1439
  #: dashboard/publisher/groups-edit.php:196
1440
  msgid "For administrative purposes set a sortorder."
1441
  msgstr "Za administrativne svrhe postavili sortorder ."
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:327
1444
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1445
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:332
1448
  msgid ""
1449
- "With AdRotate Pro you can set the weight to give adverts more or less "
1450
- "exposure."
1451
  msgstr ""
1452
 
1453
- #: dashboard/publisher/adverts-edit.php:334
1454
  msgid "Geo Targeting in AdRotate Pro"
1455
  msgstr ""
1456
 
1457
- #: dashboard/publisher/adverts-edit.php:335
1458
  msgid ""
1459
  "Assign the advert to a group and enable that group to use Geo Targeting."
1460
  msgstr ""
1461
 
1462
- #: dashboard/publisher/adverts-edit.php:339
1463
  msgid "Cities/States"
1464
  msgstr ""
1465
 
1466
- #: dashboard/publisher/adverts-edit.php:342
1467
  msgid ""
1468
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1469
  "states ISO codes are supported)"
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:342
1473
  msgid ""
1474
  "AdRotate does not check the validity of names so make sure you spell them "
1475
  "correctly!"
1476
  msgstr ""
1477
 
1478
- #: dashboard/publisher/adverts-edit.php:346
1479
  msgid "Countries"
1480
  msgstr ""
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:371
1483
  #, fuzzy
1484
  msgid "Select the countries you want the adverts to show in."
1485
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1486
 
1487
- #: dashboard/publisher/adverts-edit.php:371
1488
  msgid "Cities take priority and will be filtered first."
1489
  msgstr ""
1490
 
1491
- #: dashboard/publisher/adverts-edit.php:376
1492
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1493
  msgstr ""
1494
 
1495
- #: dashboard/publisher/adverts-edit.php:400
1496
  msgid "Select Groups"
1497
  msgstr "Izbor grupe"
1498
 
1499
- #: dashboard/publisher/adverts-edit.php:405
1500
  #, fuzzy
1501
  msgid "ID - Name"
1502
  msgstr "Ime"
1503
 
1504
- #: dashboard/publisher/adverts-edit.php:406
1505
- #, fuzzy
1506
- msgid "Ads in group"
1507
- msgstr "Gupni oglasi - Koristite grupni ID"
1508
-
1509
- #: dashboard/publisher/adverts-edit.php:415
1510
- #: dashboard/publisher/groups-main.php:61
1511
- #: dashboard/settings/geotargeting.php:29
1512
  #, fuzzy
1513
  msgid "Default"
1514
  msgstr "Default - Prikazati po jedan oglas"
1515
 
1516
- #: dashboard/publisher/adverts-edit.php:416
1517
- #: dashboard/publisher/groups-main.php:62
1518
  #, fuzzy
1519
  msgid "Dynamic"
1520
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1521
 
1522
- #: dashboard/publisher/adverts-edit.php:416
1523
- #: dashboard/publisher/groups-main.php:62
1524
  #, fuzzy
1525
  msgid "second rotation"
1526
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1527
 
1528
- #: dashboard/publisher/adverts-edit.php:417
1529
- #: dashboard/publisher/groups-main.php:63
1530
  #, fuzzy
1531
  msgid "Block"
1532
  msgstr "Menadžmet blokiranih"
1533
 
1534
- #: dashboard/publisher/adverts-edit.php:417
1535
- #: dashboard/publisher/groups-main.php:63
1536
  #, fuzzy
1537
  msgid "grid"
1538
  msgstr ""
1539
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1540
 
1541
- #: dashboard/publisher/adverts-edit.php:418
1542
  #: dashboard/publisher/groups-edit.php:202
1543
- #: dashboard/publisher/groups-main.php:64
1544
  #, fuzzy
1545
  msgid "Post Injection"
1546
  msgstr "U post ili stranicu:"
1547
 
1548
- #: dashboard/publisher/adverts-edit.php:419
1549
  #, fuzzy
1550
  msgid "Geolocation"
1551
  msgstr "GeoLocation"
1552
 
1553
- #: dashboard/publisher/adverts-edit.php:425
1554
  #: dashboard/publisher/groups-edit.php:61
1555
- #: dashboard/publisher/groups-main.php:71
1556
  msgid "Mode"
1557
  msgstr "Mod"
1558
 
@@ -1604,7 +1553,14 @@ msgstr "Aktivni oglasi"
1604
  msgid "Export to XML"
1605
  msgstr "Izlazne opcije za"
1606
 
 
 
 
 
 
1607
  #: dashboard/publisher/adverts-main.php:44
 
 
1608
  #, fuzzy
1609
  msgid "Shown"
1610
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
@@ -1822,7 +1778,7 @@ msgid ""
1822
  msgstr ""
1823
 
1824
  #: dashboard/publisher/groups-edit.php:184
1825
- #: dashboard/settings/advertisers.php:17
1826
  #, fuzzy
1827
  msgid "Geo Targeting"
1828
  msgstr "GeoTargeting"
@@ -1862,7 +1818,7 @@ msgstr ""
1862
 
1863
  #: dashboard/publisher/groups-edit.php:209
1864
  #: dashboard/publisher/groups-edit.php:247
1865
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1866
  #, fuzzy
1867
  msgid "Disabled"
1868
  msgstr "Onemogući odgovore"
@@ -1980,6 +1936,10 @@ msgstr ""
1980
  msgid "Select adverts"
1981
  msgstr ""
1982
 
 
 
 
 
1983
  #: dashboard/publisher/groups-edit.php:337
1984
  msgid "Visible until"
1985
  msgstr "Vidljivo do"
@@ -2004,16 +1964,13 @@ msgstr "Vi ste na putu da izbrišete grupu"
2004
  msgid "This action can not be undone!"
2005
  msgstr "Ovo delo se ne može povratiti!"
2006
 
2007
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
2008
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
2009
  msgid "OK to continue, CANCEL to stop."
2010
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
2011
 
2012
- #: dashboard/publisher/groups-main.php:41
2013
- msgid "Code"
2014
- msgstr "Kod"
2015
-
2016
- #: dashboard/publisher/groups-main.php:86
2017
  msgid "No groups created!"
2018
  msgstr "Grupa nije napravljena!"
2019
 
@@ -2022,112 +1979,145 @@ msgstr "Grupa nije napravljena!"
2022
  msgid "Statistics for group"
2023
  msgstr "Sttistike za"
2024
 
2025
- #: dashboard/settings/advertisers.php:1
2026
  msgid "Advertisers - Available in AdRotate Pro"
2027
  msgstr ""
2028
 
2029
- #: dashboard/settings/advertisers.php:2
2030
  #, fuzzy
2031
  msgid "Enable advertisers so they can review and manage their own ads."
2032
  msgstr "Omogući oglašivače"
2033
 
2034
- #: dashboard/settings/advertisers.php:5
2035
  msgid "Enable Advertisers"
2036
  msgstr "Omogući oglašivače"
2037
 
2038
- #: dashboard/settings/advertisers.php:7
2039
  msgid "Allow adverts to be coupled to users (Advertisers)."
2040
  msgstr "Dozvoli reklame, da se zajedno sa korisnicima ( oglašivači ) ."
2041
 
2042
- #: dashboard/settings/advertisers.php:11
2043
  msgid "Edit/update adverts"
2044
  msgstr "Edit/update oglasi"
2045
 
2046
- #: dashboard/settings/advertisers.php:13
2047
  msgid "Allow advertisers to add new or edit their adverts."
2048
  msgstr "Dozvoli oglašavačima da dodate nove ili izmeniti njihove reklame ."
2049
 
2050
- #: dashboard/settings/advertisers.php:19
2051
  msgid ""
2052
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2053
  "be enabled, too."
2054
  msgstr ""
2055
 
2056
- #: dashboard/settings/advertisers.php:23
2057
  msgid "Advertiser role"
2058
  msgstr "Uloga oglašivača"
2059
 
2060
- #: dashboard/settings/advertisers.php:25
2061
  msgid "Create a seperate user role for your advertisers."
2062
  msgstr ""
2063
 
2064
- #: dashboard/settings/advertisers.php:26
2065
  msgid ""
2066
  "Don't forget to give these users access to their advertiser dashboard via "
2067
  "the Roles tab."
2068
  msgstr ""
2069
 
2070
- #: dashboard/settings/general.php:1
2071
  msgid "General Settings"
2072
  msgstr ""
2073
 
2074
- #: dashboard/settings/general.php:2
2075
  msgid "General settings for AdRotate."
2076
  msgstr ""
2077
 
2078
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2079
  #, fuzzy
2080
  msgid "Load jQuery"
2081
  msgstr ""
2082
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
2083
  "Default: 6."
2084
 
2085
- #: dashboard/settings/general.php:6
2086
  msgid ""
2087
- "jQuery is required for dynamic groups, ad block detection and some other "
2088
- "features. Enable this if your theme does not load jQuery."
2089
  msgstr ""
2090
 
2091
- #: dashboard/settings/general.php:9
2092
  msgid "Load scripts in footer?"
2093
  msgstr ""
2094
 
2095
- #: dashboard/settings/general.php:10
2096
  msgid ""
2097
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2098
  "site."
2099
  msgstr ""
2100
 
2101
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2102
  msgid "Banner Folder"
2103
  msgstr "Baner Folder"
2104
 
2105
- #: dashboard/settings/general.php:15
2106
  #, fuzzy
2107
  msgid "Set a location where your banner images will be stored."
2108
  msgstr ""
2109
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2110
  "banners/)."
2111
 
2112
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2113
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2114
- #: dashboard/settings/statistics.php:38
2115
- msgid "Available in AdRotate Pro!"
2116
- msgstr ""
2117
-
2118
- #: dashboard/settings/general.php:18
2119
  #, fuzzy
2120
  msgid "Location"
2121
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2122
 
2123
- #: dashboard/settings/general.php:20
2124
  #, fuzzy
2125
  msgid "(Default: wp-content/banners/)."
2126
  msgstr ""
2127
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2128
  "banners/)."
2129
 
2130
- #: dashboard/settings/general.php:21
2131
  msgid ""
2132
  "To try and trick ad blockers you could set the folder to something crazy "
2133
  "like:"
@@ -2135,7 +2125,7 @@ msgstr ""
2135
  "Da biste probali i prevarili blokatore oglasa možete da odredite folder u "
2136
  "nešto ludo kao što su :"
2137
 
2138
- #: dashboard/settings/general.php:22
2139
  msgid ""
2140
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2141
  "will show errors when the folder is missing."
@@ -2143,37 +2133,37 @@ msgstr ""
2143
  "Ovaj folder neće biti kreirani automatski ako se ona ne postoji . AdRotate "
2144
  "će pokazati greške kada folder nedostaje ."
2145
 
2146
- #: dashboard/settings/general.php:27
2147
  #, fuzzy
2148
  msgid "Bot filter"
2149
  msgstr "User- agent filter"
2150
 
2151
- #: dashboard/settings/general.php:28
2152
  msgid "The bot filter is used for the AdRotate stats tracker."
2153
  msgstr ""
2154
 
2155
- #: dashboard/settings/general.php:31
2156
  msgid "User-Agent Filter"
2157
  msgstr "User- agent filter"
2158
 
2159
- #: dashboard/settings/general.php:34
2160
  msgid ""
2161
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2162
  msgstr ""
2163
 
2164
- #: dashboard/settings/general.php:35
2165
  msgid ""
2166
  "Keep in mind that this might give false positives. The word 'fire' also "
2167
  "matches 'firefox', but not vice-versa. So be careful!"
2168
  msgstr ""
2169
 
2170
- #: dashboard/settings/general.php:36
2171
  msgid ""
2172
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2173
  "characters are stripped out."
2174
  msgstr ""
2175
 
2176
- #: dashboard/settings/general.php:37
2177
  msgid ""
2178
  "Additionally to the list specified here, empty User-Agents are blocked as "
2179
  "well."
@@ -2181,94 +2171,90 @@ msgstr ""
2181
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
2182
  "dobro."
2183
 
2184
- #: dashboard/settings/general.php:37
2185
  msgid "Learn more about"
2186
  msgstr "Saznajte više o"
2187
 
2188
- #: dashboard/settings/general.php:37
2189
  msgid "user-agents"
2190
  msgstr "korisnici-agenti"
2191
 
2192
- #: dashboard/settings/geotargeting.php:1
2193
  msgid "Geo Targeting - Available in AdRotate Pro"
2194
  msgstr ""
2195
 
2196
- #: dashboard/settings/geotargeting.php:2
2197
  msgid "Target certain areas in the world for better advertising oppurtunities."
2198
  msgstr ""
2199
 
2200
- #: dashboard/settings/geotargeting.php:5
2201
  msgid "Which Geo Service"
2202
  msgstr ""
2203
 
2204
- #: dashboard/settings/geotargeting.php:15
2205
- msgid "No Geo Targeting is available for your adverts."
2206
- msgstr ""
2207
-
2208
- #: dashboard/settings/geotargeting.php:16
2209
  msgid ""
2210
  "The most complete and accurate geo targeting you can get for only $20 USD "
2211
  "per 50000 lookups."
2212
  msgstr ""
2213
 
2214
- #: dashboard/settings/geotargeting.php:18
2215
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2216
  msgstr ""
2217
 
2218
- #: dashboard/settings/geotargeting.php:20
2219
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2220
  msgstr ""
2221
 
2222
- #: dashboard/settings/geotargeting.php:26
2223
  msgid "Geo Cookie Lifespan"
2224
  msgstr ""
2225
 
2226
- #: dashboard/settings/geotargeting.php:35
2227
  msgid "Hours."
2228
  msgstr ""
2229
 
2230
- #: dashboard/settings/geotargeting.php:36
2231
  msgid ""
2232
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2233
  "cookie last? A longer period is less accurate for mobile users but may "
2234
  "reduce the usage of your lookups drastically."
2235
  msgstr ""
2236
 
2237
- #: dashboard/settings/geotargeting.php:42
2238
  msgid "MaxMind City/Country"
2239
  msgstr ""
2240
 
2241
- #: dashboard/settings/geotargeting.php:45
2242
  msgid "Username/Email"
2243
  msgstr ""
2244
 
2245
- #: dashboard/settings/geotargeting.php:49
2246
  msgid "Password/License Key"
2247
  msgstr ""
2248
 
2249
- #: dashboard/settings/maintenance.php:1
2250
  msgid "Maintenance"
2251
  msgstr "Održavanje"
2252
 
2253
- #: dashboard/settings/maintenance.php:2
2254
  msgid ""
2255
  "Use these functions when you notice your database is slow, unresponsive and "
2256
  "sluggish."
2257
  msgstr ""
2258
 
2259
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2260
  msgid "Optimize Database"
2261
  msgstr "Optimizacija baze podataka"
2262
 
2263
- #: dashboard/settings/maintenance.php:7
2264
  msgid "You are about to optimize the AdRotate database."
2265
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
2266
 
2267
- #: dashboard/settings/maintenance.php:7
2268
  msgid "Did you make a backup of your database?"
2269
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
2270
 
2271
- #: dashboard/settings/maintenance.php:7
2272
  msgid ""
2273
  "This may take a moment and may cause your website to respond slow "
2274
  "temporarily!"
@@ -2276,11 +2262,11 @@ msgstr ""
2276
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2277
  "sporo privremeno !"
2278
 
2279
- #: dashboard/settings/maintenance.php:8
2280
  msgid "Cleans up overhead data in the AdRotate tables."
2281
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
2282
 
2283
- #: dashboard/settings/maintenance.php:9
2284
  msgid ""
2285
  "Overhead data is accumulated garbage resulting from many changes you've "
2286
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2288,65 +2274,65 @@ msgstr ""
2288
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
2289
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
2290
 
2291
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2292
  msgid "Clean-up Database"
2293
  msgstr "Čišćenje baze"
2294
 
2295
- #: dashboard/settings/maintenance.php:15
2296
  #, fuzzy
2297
  msgid ""
2298
  "You are about to clean up your database. This may delete expired schedules "
2299
  "and older statistics."
2300
  msgstr "Čišćenje baze"
2301
 
2302
- #: dashboard/settings/maintenance.php:15
2303
  #, fuzzy
2304
  msgid "Are you sure you want to continue?"
2305
  msgstr "Popunite ID tipa koji želite da prikažete!"
2306
 
2307
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2308
  #, fuzzy
2309
  msgid "This might take a while and may slow down your site during this action!"
2310
  msgstr ""
2311
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2312
  "sporo privremeno !"
2313
 
2314
- #: dashboard/settings/maintenance.php:16
2315
  #, fuzzy
2316
  msgid "Delete stats older than 356 days (Optional)."
2317
  msgstr "Uloga obrisati oglase i resetovanje ."
2318
 
2319
- #: dashboard/settings/maintenance.php:17
2320
  msgid ""
2321
  "AdRotate creates empty records when you start making ads, groups or "
2322
  "schedules. In rare occasions these records are faulty."
2323
  msgstr ""
2324
 
2325
- #: dashboard/settings/maintenance.php:17
2326
  msgid ""
2327
  "If you made an ad, group or schedule that does not save when you make it use "
2328
  "this button to delete those empty records."
2329
  msgstr ""
2330
 
2331
- #: dashboard/settings/maintenance.php:17
2332
  msgid ""
2333
  "Additionally you can clean up old schedules and/or statistics. This will "
2334
  "improve the speed of your site."
2335
  msgstr ""
2336
 
2337
- #: dashboard/settings/maintenance.php:21
2338
  msgid "Re-evaluate Ads"
2339
  msgstr "Ponovo ocenjeni oglasi"
2340
 
2341
- #: dashboard/settings/maintenance.php:23
2342
  msgid "Re-evaluate all ads"
2343
  msgstr "Ponovo ocenite sve oglase"
2344
 
2345
- #: dashboard/settings/maintenance.php:23
2346
  msgid "You are about to check all ads for errors."
2347
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2348
 
2349
- #: dashboard/settings/maintenance.php:24
2350
  msgid ""
2351
  "This will apply all evaluation rules to all ads to see if any error slipped "
2352
  "in. Normally you should not need this feature."
@@ -2354,7 +2340,7 @@ msgstr ""
2354
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
2355
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
2356
 
2357
- #: dashboard/settings/maintenance.php:28
2358
  msgid ""
2359
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2360
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2367,11 +2353,11 @@ msgid ""
2367
  "is not a valid point in any case."
2368
  msgstr ""
2369
 
2370
- #: dashboard/settings/maintenance.php:30
2371
  msgid "Troubleshooting"
2372
  msgstr "Rešavanje problema"
2373
 
2374
- #: dashboard/settings/maintenance.php:31
2375
  msgid ""
2376
  "The below options are not meant for normal use and are only there for "
2377
  "developers to review saved settings or how ads are selected. These can be "
@@ -2379,55 +2365,55 @@ msgid ""
2379
  "SHOULD BE LEFT UNCHECKED!!"
2380
  msgstr ""
2381
 
2382
- #: dashboard/settings/maintenance.php:34
2383
  msgid "Developer Debug"
2384
  msgstr "Debug za programera"
2385
 
2386
- #: dashboard/settings/maintenance.php:36
2387
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2388
  msgstr ""
2389
 
2390
- #: dashboard/settings/maintenance.php:37
2391
  msgid "View advert specs and (some) stats in the dashboard."
2392
  msgstr ""
2393
 
2394
- #: dashboard/settings/maintenance.php:38
2395
  #, fuzzy
2396
  msgid ""
2397
  "Disable timers for clicks and impressions and enable a alert window for "
2398
  "clicktracking."
2399
  msgstr "Pratite klikove i prikaze ."
2400
 
2401
- #: dashboard/settings/maintenance.php:39
2402
  msgid "Temporarily disable encryption on the redirect url."
2403
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
2404
 
2405
- #: dashboard/settings/maintenance.php:44
2406
  msgid "Status and Versions"
2407
  msgstr ""
2408
 
2409
- #: dashboard/settings/maintenance.php:47
2410
  msgid "Current version:"
2411
  msgstr "Trenutna verzija :"
2412
 
2413
- #: dashboard/settings/maintenance.php:48
2414
  msgid "Previous version:"
2415
  msgstr "Prethodna verzija :"
2416
 
2417
- #: dashboard/settings/maintenance.php:51
2418
  msgid "Current database version:"
2419
  msgstr "Trenutna verzija baze podataka :"
2420
 
2421
- #: dashboard/settings/maintenance.php:52
2422
  msgid "Previous database version:"
2423
  msgstr "Prethodna verzija baze podataka :"
2424
 
2425
- #: dashboard/settings/maintenance.php:55
2426
  #, fuzzy
2427
  msgid "Current status of adverts"
2428
  msgstr "Trenutni raspored"
2429
 
2430
- #: dashboard/settings/maintenance.php:56
2431
  #, fuzzy
2432
  msgid "Normal"
2433
  msgstr ""
@@ -2436,52 +2422,47 @@ msgstr ""
2436
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
2437
  "normalnu upotrebu oni treba da budu levo neprovereni "
2438
 
2439
- #: dashboard/settings/maintenance.php:56
2440
  #, fuzzy
2441
  msgid "Error"
2442
  msgstr "Nepoznati error se ukazao."
2443
 
2444
- #: dashboard/settings/maintenance.php:56
2445
  #, fuzzy
2446
  msgid "Expired"
2447
  msgstr "Isteklo je."
2448
 
2449
- #: dashboard/settings/maintenance.php:56
2450
  #, fuzzy
2451
  msgid "Expires Soon"
2452
  msgstr "Ističe uskoro."
2453
 
2454
- #: dashboard/settings/maintenance.php:56
2455
  msgid "Unknown"
2456
  msgstr ""
2457
 
2458
- #: dashboard/settings/maintenance.php:59
2459
  #, fuzzy
2460
  msgid "Ad evaluation next run:"
2461
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
2462
 
2463
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2464
- #: dashboard/settings/maintenance.php:68
2465
  msgid "Not scheduled!"
2466
  msgstr "Nije planirano:"
2467
 
2468
- #: dashboard/settings/maintenance.php:63
2469
- msgid "Ad Notifications next run:"
2470
- msgstr ""
2471
-
2472
- #: dashboard/settings/maintenance.php:67
2473
  msgid "Clean Trackerdata next run:"
2474
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
2475
 
2476
- #: dashboard/settings/misc.php:1
2477
  msgid "Miscellaneous"
2478
  msgstr "Ostalo"
2479
 
2480
- #: dashboard/settings/misc.php:4
2481
  msgid "Widget alignment"
2482
  msgstr "Widget alignment"
2483
 
2484
- #: dashboard/settings/misc.php:5
2485
  msgid ""
2486
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2487
  "not always help!)"
@@ -2489,12 +2470,12 @@ msgstr ""
2489
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2490
  "uvek ! )"
2491
 
2492
- #: dashboard/settings/misc.php:8
2493
  #, fuzzy
2494
  msgid "Widget padding"
2495
  msgstr "Blokiraj punjenje"
2496
 
2497
- #: dashboard/settings/misc.php:9
2498
  #, fuzzy
2499
  msgid ""
2500
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -2503,7 +2484,7 @@ msgstr ""
2503
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2504
  "uvek ! )"
2505
 
2506
- #: dashboard/settings/misc.php:13
2507
  #, fuzzy
2508
  msgid "NOTICE:"
2509
  msgstr ""
@@ -2513,7 +2494,7 @@ msgstr ""
2513
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
2514
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
2515
 
2516
- #: dashboard/settings/misc.php:14
2517
  msgid ""
2518
  "You have enabled W3 Total Caching support but not defined the security hash. "
2519
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2521,15 +2502,15 @@ msgid ""
2521
  "needs to be enabled in W3 Total Cache as well too."
2522
  msgstr ""
2523
 
2524
- #: dashboard/settings/misc.php:18
2525
  msgid "W3 Total Caching"
2526
  msgstr "W3 Total Caching"
2527
 
2528
- #: dashboard/settings/misc.php:19
2529
  msgid "Check this box if you use W3 Total Caching on your site."
2530
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
2531
 
2532
- #: dashboard/settings/misc.php:23
2533
  msgid ""
2534
  "It may take a while for the ad to start rotating. The caching plugin needs "
2535
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2537,7 +2518,7 @@ msgstr ""
2537
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2538
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2539
 
2540
- #: dashboard/settings/misc.php:23
2541
  msgid ""
2542
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2543
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2545,45 +2526,45 @@ msgstr ""
2545
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
2546
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
2547
 
2548
- #: dashboard/settings/notifications.php:1
2549
  msgid "Notifications - Available in AdRotate Pro"
2550
  msgstr ""
2551
 
2552
- #: dashboard/settings/notifications.php:2
2553
  #, fuzzy
2554
  msgid "Set up who gets notifications if ads need your attention."
2555
  msgstr "Oglasi koje treba neposrednu pažnju"
2556
 
2557
- #: dashboard/settings/notifications.php:5
2558
  msgid "Delivery method"
2559
  msgstr ""
2560
 
2561
- #: dashboard/settings/notifications.php:7
2562
  #, fuzzy
2563
  msgid "Email message."
2564
  msgstr "Stranica oglašivača"
2565
 
2566
- #: dashboard/settings/notifications.php:8
2567
  msgid "Push notifications to your smartphone."
2568
  msgstr ""
2569
 
2570
- #: dashboard/settings/notifications.php:9
2571
  msgid ""
2572
  "Push notifications are delivered through Pushover, a notification service "
2573
  "for Android and iOS"
2574
  msgstr ""
2575
 
2576
- #: dashboard/settings/notifications.php:9
2577
  msgid ""
2578
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2579
  "information can be found on the pushover website;"
2580
  msgstr ""
2581
 
2582
- #: dashboard/settings/notifications.php:13
2583
  msgid "Test notification"
2584
  msgstr ""
2585
 
2586
- #: dashboard/settings/notifications.php:15
2587
  #, fuzzy
2588
  msgid ""
2589
  "This sends a test notification. Before you test, save the options first!"
@@ -2591,41 +2572,41 @@ msgstr ""
2591
  "Ovaj test šalje obaveštenje . Pre nego što testirate , na primer , sa novim "
2592
  "email adresu. Sačuvajte prvi opcije !"
2593
 
2594
- #: dashboard/settings/notifications.php:20
2595
  #, fuzzy
2596
  msgid "Dashboard Notifications"
2597
  msgstr "Notifikacije"
2598
 
2599
- #: dashboard/settings/notifications.php:21
2600
  msgid "These show to every administrator who can edit adverts."
2601
  msgstr ""
2602
 
2603
- #: dashboard/settings/notifications.php:24
2604
  msgid "Notification banners"
2605
  msgstr ""
2606
 
2607
- #: dashboard/settings/notifications.php:25
2608
  msgid "Disable dashboard notifications."
2609
  msgstr ""
2610
 
2611
- #: dashboard/settings/notifications.php:29
2612
  msgid "Email Notifications"
2613
  msgstr "Email Obaveštenja"
2614
 
2615
- #: dashboard/settings/notifications.php:30
2616
  #, fuzzy
2617
  msgid "Set up who gets notification emails."
2618
  msgstr "Oglasi koje treba neposrednu pažnju"
2619
 
2620
- #: dashboard/settings/notifications.php:33
2621
- #: dashboard/settings/notifications.php:53
2622
  #, fuzzy
2623
  msgid "Publishers"
2624
  msgstr ""
2625
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
2626
  "samo izdavačima ."
2627
 
2628
- #: dashboard/settings/notifications.php:36
2629
  msgid ""
2630
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2631
  "list to a minimum!"
@@ -2633,7 +2614,7 @@ msgstr ""
2633
  "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
2634
  "ovu listu na minimum !"
2635
 
2636
- #: dashboard/settings/notifications.php:37
2637
  #, fuzzy
2638
  msgid ""
2639
  "Messages are sent once every 24 hours when needed. If this field is empty no "
@@ -2642,11 +2623,11 @@ msgstr ""
2642
  "Poruke se šalju jednom u 24 sata kada je to potrebno . Ako ovo polje je "
2643
  "praznofunkcija će biti onemogućena "
2644
 
2645
- #: dashboard/settings/notifications.php:41
2646
  msgid "Advertisers"
2647
  msgstr "Oglašivači"
2648
 
2649
- #: dashboard/settings/notifications.php:44
2650
  #, fuzzy
2651
  msgid ""
2652
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
@@ -2654,229 +2635,271 @@ msgid ""
2654
  msgstr ""
2655
  "Maksimalno 2 adrese. Odvojenu zarezima. Ovo polje ne može biti prazno !"
2656
 
2657
- #: dashboard/settings/notifications.php:49
2658
  #, fuzzy
2659
  msgid "Push Notifications"
2660
  msgstr "Notifikacije"
2661
 
2662
- #: dashboard/settings/notifications.php:50
2663
  msgid ""
2664
  "Receive information about what is happening with your AdRotate setup on your "
2665
  "smartphone via Pushover."
2666
  msgstr ""
2667
 
2668
- #: dashboard/settings/notifications.php:55
2669
  msgid "When you are running out of Geo Targeting Lookups."
2670
  msgstr ""
2671
 
2672
- #: dashboard/settings/notifications.php:56
2673
  msgid "Daily digest of any advert status other than normal."
2674
  msgstr ""
2675
 
2676
- #: dashboard/settings/notifications.php:57
2677
  msgid "Any advertiser saving an advert in your moderation queue."
2678
  msgstr ""
2679
 
2680
- #: dashboard/settings/notifications.php:58
2681
  #, fuzzy
2682
  msgid "A moderator approved an advert from the moderation queue."
2683
  msgstr "Odobri / odbaci reklame u red za uređivanje"
2684
 
2685
- #: dashboard/settings/notifications.php:59
2686
  #, fuzzy
2687
  msgid "A moderator rejected an advert from the moderation queue."
2688
  msgstr "Odobri / odbaci reklame u red za uređivanje"
2689
 
2690
- #: dashboard/settings/notifications.php:59
2691
  msgid ""
2692
  "If you have a lot of activity with many advertisers adding/changing adverts "
2693
  "you may get a lot of messages!"
2694
  msgstr ""
2695
 
2696
- #: dashboard/settings/notifications.php:64
2697
  #, fuzzy
2698
  msgid "User Key"
2699
  msgstr "korisnici-agenti"
2700
 
2701
- #: dashboard/settings/notifications.php:66
2702
  msgid "Get your user token"
2703
  msgstr ""
2704
 
2705
- #: dashboard/settings/notifications.php:66
2706
- #: dashboard/settings/notifications.php:72
2707
  msgid "here"
2708
  msgstr ""
2709
 
2710
- #: dashboard/settings/notifications.php:70
2711
  msgid "Api Token"
2712
  msgstr ""
2713
 
2714
- #: dashboard/settings/notifications.php:72
2715
  msgid "Create your"
2716
  msgstr ""
2717
 
2718
- #: dashboard/settings/notifications.php:72
2719
  msgid "App"
2720
  msgstr ""
2721
 
2722
- #: dashboard/settings/notifications.php:72
2723
  msgid "and get your API token"
2724
  msgstr ""
2725
 
2726
- #: dashboard/settings/roles.php:1
2727
  msgid "Roles"
2728
  msgstr ""
2729
 
2730
- #: dashboard/settings/roles.php:2
2731
  msgid "Who has access to what?"
2732
  msgstr ""
2733
 
2734
- #: dashboard/settings/roles.php:5
2735
  msgid "Manage/Add/Edit adverts"
2736
  msgstr "Upravljanje / Add / Edit reklame"
2737
 
2738
- #: dashboard/settings/roles.php:9
2739
  msgid "Role to see and add/edit ads."
2740
  msgstr "Uloga videti i add / edit oglase ."
2741
 
2742
- #: dashboard/settings/roles.php:13
2743
  msgid "Delete/Reset adverts"
2744
  msgstr "Brisanje / Reset reklame"
2745
 
2746
- #: dashboard/settings/roles.php:17
2747
  msgid "Role to delete ads and reset stats."
2748
  msgstr "Uloga obrisati oglase i resetovanje ."
2749
 
2750
- #: dashboard/settings/roles.php:21
2751
  msgid "Manage/Add/Edit groups"
2752
  msgstr "Upravljanje / Add / Edit grupama"
2753
 
2754
- #: dashboard/settings/roles.php:25
2755
  msgid "Role to see and add/edit groups."
2756
  msgstr "Uloga videti i add / edit grupe ."
2757
 
2758
- #: dashboard/settings/roles.php:29
2759
  msgid "Delete groups"
2760
  msgstr "Brisanje grupe"
2761
 
2762
- #: dashboard/settings/roles.php:33
2763
  msgid "Role to delete groups."
2764
  msgstr "Uloga za brisanje grupe ."
2765
 
2766
- #: dashboard/settings/statistics.php:2
2767
  msgid "Track statistics for your adverts."
2768
  msgstr ""
2769
 
2770
- #: dashboard/settings/statistics.php:5
2771
  msgid "How to track stats"
2772
  msgstr ""
2773
 
2774
- #: dashboard/settings/statistics.php:14
2775
- msgid "No impressions and clicks can be recorded for any of your adverts."
2776
- msgstr ""
2777
-
2778
- #: dashboard/settings/statistics.php:15
2779
  msgid "Tracks impressions and clicks internally"
2780
  msgstr ""
2781
 
2782
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2783
- #: dashboard/settings/statistics.php:19
2784
  msgid "manual"
2785
  msgstr ""
2786
 
2787
- #: dashboard/settings/statistics.php:16
2788
  msgid ""
2789
  "Click and Impression recording, Click and impression limits, impression "
2790
- "spread for schedules, local stats display."
 
2791
  msgstr ""
2792
 
2793
- #: dashboard/settings/statistics.php:17
 
 
 
 
2794
  msgid ""
2795
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2796
  "attributes"
2797
  msgstr ""
2798
 
2799
- #: dashboard/settings/statistics.php:18
2800
  msgid ""
2801
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2802
  "Contents."
2803
  msgstr ""
2804
 
2805
- #: dashboard/settings/statistics.php:19
2806
  msgid ""
2807
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2808
  "uses onClick() and onload() in adverts"
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/statistics.php:20
2812
  msgid ""
2813
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2814
  msgstr ""
2815
 
2816
- #: dashboard/settings/statistics.php:26
2817
  msgid "Internal Tracker"
2818
  msgstr ""
2819
 
2820
- #: dashboard/settings/statistics.php:27
2821
  msgid ""
2822
  "The settings below are for the internal tracker and have no effect when "
2823
  "using Piwik/Google Analytics."
2824
  msgstr ""
2825
 
2826
- #: dashboard/settings/statistics.php:30
2827
  #, fuzzy
2828
  msgid "Logged in impressions"
2829
  msgstr "Pratite utiske ulogovanih korisniika (Preporučeno)"
2830
 
2831
- #: dashboard/settings/statistics.php:32
2832
  msgid "Track impressions from logged in users."
2833
  msgstr ""
2834
 
2835
- #: dashboard/settings/statistics.php:36
2836
  #, fuzzy
2837
  msgid "Logged in clicks"
2838
  msgstr "Pratite klikove ulogovani korisnici ."
2839
 
2840
- #: dashboard/settings/statistics.php:38
2841
  msgid "Track clicks from logged in users."
2842
  msgstr "Pratite klikove ulogovani korisnici ."
2843
 
2844
- #: dashboard/settings/statistics.php:42
2845
- msgid "Impressions timer"
2846
- msgstr "Utisci tajmer"
2847
 
2848
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2849
  msgid "Seconds."
2850
  msgstr "Sekunde."
2851
 
2852
- #: dashboard/settings/statistics.php:45
2853
  #, fuzzy
2854
  msgid "Default: 60."
2855
  msgstr "Default - Prikazati po jedan oglas"
2856
 
2857
- #: dashboard/settings/statistics.php:45
2858
  #, fuzzy
2859
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2860
  msgstr ""
2861
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2862
 
2863
- #: dashboard/settings/statistics.php:49
2864
- #, fuzzy
2865
- msgid "Clicks timer"
2866
- msgstr "Utisci tajmer"
2867
 
2868
- #: dashboard/settings/statistics.php:52
2869
  #, fuzzy
2870
  msgid "Default: 86400."
2871
  msgstr "Default - Prikazati po jedan oglas"
2872
 
2873
- #: dashboard/settings/statistics.php:52
2874
  #, fuzzy
2875
  msgid ""
2876
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2877
  msgstr ""
2878
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2879
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2880
  #, fuzzy
2881
  #~ msgid "Learn More"
2882
  #~ msgstr "Saznajte više"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
236
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
237
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
238
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
239
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
240
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
241
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
242
+ #: dashboard/settings/geotargeting.php:26
243
  #, fuzzy
244
  msgid "Buy now"
245
  msgstr "Kupite odmah"
339
  msgid "on WordPress.org to help AdRotate grow in a positive way"
340
  msgstr ""
341
 
342
+ #: adrotate-output.php:887
343
  msgid "Available in AdRotate Pro"
344
  msgstr "Dostupno u AdRotate Pro"
345
 
356
  msgid "Learn more"
357
  msgstr "Saznajte više"
358
 
359
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
360
+ #: dashboard/publisher/adverts-edit.php:240
361
  msgid "January"
362
  msgstr "Januar"
363
 
364
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
365
+ #: dashboard/publisher/adverts-edit.php:241
366
  msgid "February"
367
  msgstr "Februar"
368
 
369
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
370
+ #: dashboard/publisher/adverts-edit.php:242
371
  msgid "March"
372
  msgstr "Mart"
373
 
374
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
375
+ #: dashboard/publisher/adverts-edit.php:243
376
  msgid "April"
377
  msgstr "April"
378
 
379
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
380
+ #: dashboard/publisher/adverts-edit.php:244
381
  msgid "May"
382
  msgstr "Maj"
383
 
384
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
385
+ #: dashboard/publisher/adverts-edit.php:245
386
  msgid "June"
387
  msgstr "Jun"
388
 
389
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
390
+ #: dashboard/publisher/adverts-edit.php:246
391
  msgid "July"
392
  msgstr "Jul"
393
 
394
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
395
+ #: dashboard/publisher/adverts-edit.php:247
396
  msgid "August"
397
  msgstr "Avgust"
398
 
399
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
400
+ #: dashboard/publisher/adverts-edit.php:248
401
  msgid "September"
402
  msgstr "Septembar"
403
 
404
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
405
+ #: dashboard/publisher/adverts-edit.php:249
406
  msgid "October"
407
  msgstr "Oktobar"
408
 
409
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
410
+ #: dashboard/publisher/adverts-edit.php:250
411
  msgid "November"
412
  msgstr "Novembar"
413
 
414
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
415
+ #: dashboard/publisher/adverts-edit.php:251
416
  msgid "December"
417
  msgstr "Decembar"
418
 
530
  msgstr "Menadžment grupe"
531
 
532
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
533
+ #: dashboard/publisher/groups-main.php:70
534
  msgid "Report"
535
  msgstr "Izveštaj"
536
 
546
  "AdRotate Pro."
547
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
548
 
549
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
550
  #: dashboard/publisher/adverts-main.php:114
551
  #: dashboard/publisher/groups-edit.php:75
552
+ #: dashboard/publisher/groups-main.php:89
553
  #, fuzzy
554
  msgid "More information"
555
  msgstr "Saznajte više"
586
  msgid "End"
587
  msgstr "Završno vreme (hh:mm):"
588
 
589
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
590
  #: dashboard/publisher/groups-main.php:34
591
  msgid "Ads"
592
  msgstr "Oglasi"
593
 
594
  #: adrotate.php:428
595
  #, fuzzy
596
+ msgid "Max Impressions"
597
+ msgstr "Utisci"
598
 
599
  #: adrotate.php:429
600
  #, fuzzy
601
+ msgid "Max Clicks"
602
+ msgstr "Klikovi"
603
 
604
  #: adrotate.php:459
605
  #, fuzzy
684
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
685
  msgstr ""
686
 
687
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
688
  msgid ""
689
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
690
  "filename instead of \".full\" for the various viewports."
691
  msgstr ""
692
 
693
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
694
  #: dashboard/publisher/groups-edit.php:312
695
  #: dashboard/publisher/groups-edit.php:320
696
  msgid "Example:"
697
  msgstr "Primer"
698
 
699
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
700
  msgid ""
701
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
702
  "for different viewports."
787
  "forum. Get a solution (usually) within a day."
788
  msgstr ""
789
 
790
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
791
  msgid "AdRotate is brought to you by"
792
  msgstr "AdRotate vam je omogućio"
793
 
794
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
795
  msgid ""
796
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
797
+ "starters or people looking for a new direction!"
798
  msgstr ""
799
 
 
 
 
 
800
  #: dashboard/adrotatepro.php:58
801
  msgid "Schedule all campaigns with ease"
802
  msgstr ""
823
  msgstr ""
824
 
825
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
826
+ #: dashboard/info.php:93 dashboard/info.php:105
827
  #, fuzzy
828
  msgid "Buy AdRotate Professional"
829
  msgstr "Kupite odmah"
830
 
831
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
832
  msgid "Single License"
833
  msgstr ""
834
 
835
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
836
  #, fuzzy
837
  msgid "For one WordPress installation."
838
  msgstr "Instalacije"
839
 
840
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
841
+ #: dashboard/info.php:98 dashboard/info.php:110
842
  msgid "Duo License"
843
  msgstr ""
844
 
845
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
846
  #, fuzzy
847
  msgid "For two WordPress installations."
848
  msgstr "Instalacije"
849
 
850
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
851
+ #: dashboard/info.php:99 dashboard/info.php:111
852
  msgid "Multi License"
853
  msgstr ""
854
 
855
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
856
  #, fuzzy
857
  msgid " For up to five WordPress installations."
858
  msgstr "Instalacije"
859
 
860
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
861
+ #: dashboard/info.php:100 dashboard/info.php:112
862
  #, fuzzy
863
  msgid "Developer License"
864
  msgstr "Debug za programera"
865
 
866
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
867
  msgid "Unlimited WordPress installations and/or networks."
868
  msgstr ""
869
 
870
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
871
+ #: dashboard/info.php:101 dashboard/info.php:114
872
  msgid "Compare licenses"
873
  msgstr ""
874
 
875
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
876
  msgid "Not sure which license is for you? Compare them..."
877
  msgstr ""
878
 
879
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
880
  #, fuzzy
881
  msgid "All Licenses"
882
  msgstr "Ponovo ocenite sve oglase"
883
 
884
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
885
  msgid "Lifetime License"
886
  msgstr ""
887
 
888
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
889
  msgid "Single installation."
890
  msgstr ""
891
 
892
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
893
  msgid "Up to 2 installations."
894
  msgstr ""
895
 
896
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
897
  msgid "Up to 10 installations."
898
  msgstr ""
899
 
900
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
901
  msgid "Up to 25 installations or multisite networks."
902
  msgstr ""
903
 
904
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
905
  msgid ""
906
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
907
  msgstr ""
908
 
909
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
910
  msgid "Not sure which license is for you?"
911
  msgstr ""
912
 
913
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
914
  msgid "Compare Licenses"
915
  msgstr ""
916
 
917
+ #: dashboard/info.php:24
918
  msgid "Currently"
919
  msgstr "Trenutno"
920
 
921
+ #: dashboard/info.php:30
922
  msgid "Your setup"
923
  msgstr "Vaš pristup"
924
 
925
+ #: dashboard/info.php:31
926
  msgid "Adverts that need you"
927
  msgstr "Oglasi koji su vam potrebni"
928
 
929
+ #: dashboard/info.php:37
930
  msgid "Adverts"
931
  msgstr "Oglasi"
932
 
933
+ #: dashboard/info.php:38
934
  msgid "(Almost) Expired"
935
  msgstr "( Skoro ) Isteklo"
936
 
937
+ #: dashboard/info.php:41
938
  msgid "Groups"
939
  msgstr "Grupe"
940
 
941
+ #: dashboard/info.php:42
942
  msgid "Have errors"
943
  msgstr "Ima greške"
944
 
945
+ #: dashboard/info.php:48
946
  msgid "Support AdRotate"
947
  msgstr "AdRotate podrška"
948
 
949
+ #: dashboard/info.php:55
950
  msgid "Your gift helps ensure the continued development of AdRotate!"
951
  msgstr ""
952
 
953
+ #: dashboard/info.php:55
954
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
955
  msgstr ""
956
 
957
+ #: dashboard/info.php:64
958
  msgid "AdRotate News and Developer Blog"
959
  msgstr "AdRotate novosti i blog za programere"
960
 
961
+ #: dashboard/info.php:86
962
  #, fuzzy
963
  msgid "Get more features with AdRotate Pro"
964
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
965
 
966
+ #: dashboard/info.php:89
967
  msgid ""
968
  "Benefit from extra features to reinforce your income with advertising "
969
  "campaigns. Make the most of your website with the powerful tools AdRotate "
970
  "Pro offers on top of the trusted features included in the free version."
971
  msgstr ""
972
 
973
+ #: dashboard/info.php:89
974
  msgid "Want to know more about"
975
  msgstr ""
976
 
977
+ #: dashboard/info.php:89
978
  msgid "Visit the"
979
  msgstr "Posetite"
980
 
981
+ #: dashboard/info.php:89
982
  msgid "website"
983
  msgstr "websajt"
984
 
 
 
 
 
985
  #: dashboard/publisher/adverts-disabled.php:15
986
  msgid "Disabled Ads"
987
  msgstr "Onemogući odgovore"
988
 
989
  #: dashboard/publisher/adverts-disabled.php:21
990
+ #: dashboard/publisher/adverts-edit.php:175
991
  msgid "Activate"
992
  msgstr "Aktiviraj"
993
 
1016
 
1017
  #: dashboard/publisher/adverts-disabled.php:38
1018
  #: dashboard/publisher/adverts-report.php:34
 
 
1019
  #: dashboard/publisher/groups-report.php:40
1020
  msgid "Impressions"
1021
  msgstr "Utisci"
1039
  #: dashboard/publisher/adverts-disabled.php:74
1040
  #: dashboard/publisher/adverts-error.php:64
1041
  #: dashboard/publisher/adverts-main.php:87
1042
+ #: dashboard/publisher/groups-main.php:70
1043
  msgid "Edit"
1044
  msgstr "Edituj"
1045
 
1165
  "click to add it."
1166
  msgstr ""
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:140
1169
+ msgid "Preview"
1170
+ msgstr "Pregled"
1171
+
1172
+ #: dashboard/publisher/adverts-edit.php:143
1173
+ msgid ""
1174
+ "Note: While this preview is an accurate one, it might look different then it "
1175
+ "does on the website."
1176
+ msgstr ""
1177
+ "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1178
+ "drugačije onda to čini na sajtu ."
1179
+
1180
+ #: dashboard/publisher/adverts-edit.php:144
1181
+ msgid ""
1182
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1183
+ msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1184
+
1185
+ #: dashboard/publisher/adverts-edit.php:149
1186
  msgid "Banner asset"
1187
  msgstr ""
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:152
1190
  msgid "WordPress media:"
1191
  msgstr ""
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:152
1194
  #, fuzzy
1195
  msgid "Select Banner"
1196
  msgstr "Baner Folder"
1197
 
1198
+ #: dashboard/publisher/adverts-edit.php:154
1199
  msgid "- OR -"
1200
  msgstr "- ILI -"
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:156
1203
  msgid "Banner folder:"
1204
  msgstr "Folder banera:"
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:157
1207
  msgid "No image selected"
1208
  msgstr "Nijedna slika nije izabrana"
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:161
1211
  msgid "Use %image% in the adcode instead of the file path."
1212
  msgstr ""
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:161
1215
  msgid ""
1216
  "Use either the text field or the dropdown. If the textfield has content that "
1217
  "field has priority."
1219
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1220
  "polje ima prioritet ."
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:166
1223
+ #: dashboard/settings/statistics.php:12
1224
  msgid "Statistics"
1225
  msgstr "Statistike"
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:168
1228
  msgid "Enable click and impression tracking for this advert."
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:169
1232
  msgid ""
1233
  "Note: Clicktracking does not work for Javascript adverts such as those "
1234
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1235
+ "always supported."
1236
  msgstr ""
1237
 
1238
+ #: dashboard/publisher/adverts-edit.php:179
1239
  msgid "Yes, this ad will be used"
1240
  msgstr "Da , ovaj oglas će se koristiti"
1241
 
1242
+ #: dashboard/publisher/adverts-edit.php:180
1243
  msgid "No, do not show this ad anywhere"
1244
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1245
 
1246
+ #: dashboard/publisher/adverts-edit.php:187
1247
  #: dashboard/publisher/adverts-main.php:114
1248
  #: dashboard/publisher/groups-edit.php:75
1249
+ #: dashboard/publisher/groups-main.php:89
1250
  #, fuzzy
1251
  msgid "Get more features with AdRotate Pro."
1252
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1253
 
1254
+ #: dashboard/publisher/adverts-edit.php:190
1255
+ #: dashboard/publisher/adverts-edit.php:290
1256
+ #: dashboard/publisher/adverts-edit.php:378
1257
+ #: dashboard/publisher/adverts-edit.php:419
1258
  msgid "Save Advert"
1259
  msgstr "Sačuvaj oglas"
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:191
1262
+ #: dashboard/publisher/adverts-edit.php:291
1263
+ #: dashboard/publisher/adverts-edit.php:379
1264
+ #: dashboard/publisher/adverts-edit.php:420
1265
  #: dashboard/publisher/groups-edit.php:154
1266
  #: dashboard/publisher/groups-edit.php:301
1267
  #: dashboard/publisher/groups-edit.php:393
1268
  msgid "Cancel"
1269
  msgstr "Ukini"
1270
 
1271
+ #: dashboard/publisher/adverts-edit.php:194
1272
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1273
  #: dashboard/publisher/groups-edit.php:136
1274
  #: dashboard/publisher/groups-edit.php:283
1275
  msgid "Usage"
1276
  msgstr "upotreba"
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:198
1279
+ #: dashboard/publisher/adverts-edit.php:365
1280
  #: dashboard/publisher/groups-edit.php:140
1281
  #: dashboard/publisher/groups-edit.php:287
1282
  msgid "Widget"
1283
  msgstr ""
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:199
1286
+ #: dashboard/publisher/adverts-edit.php:366
1287
  msgid ""
1288
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1289
  "and enter ID"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:202
1293
+ #: dashboard/publisher/adverts-edit.php:369
1294
  #: dashboard/publisher/groups-edit.php:144
1295
  #: dashboard/publisher/groups-edit.php:291
1296
  msgid "In a post or page"
1297
  msgstr ""
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:204
1300
+ #: dashboard/publisher/adverts-edit.php:371
1301
  #: dashboard/publisher/groups-edit.php:146
1302
  #: dashboard/publisher/groups-edit.php:293
1303
  msgid "Directly in a theme"
1304
  msgstr ""
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:210
1307
  msgid "Schedule your advert"
1308
  msgstr ""
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:214
1311
  msgid "Start date (day/month/year)"
1312
  msgstr ""
1313
 
1314
+ #: dashboard/publisher/adverts-edit.php:235
1315
  msgid "End date (day/month/year)"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:258
1319
  msgid "Start time (hh:mm)"
1320
  msgstr ""
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:265
1323
  msgid "End time (hh:mm)"
1324
  msgstr ""
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:275
1327
  msgid "Maximum Clicks"
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:276
1331
+ #: dashboard/publisher/adverts-edit.php:278
1332
  msgid "Leave empty or 0 to skip this."
1333
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1334
 
1335
+ #: dashboard/publisher/adverts-edit.php:277
1336
  msgid "Maximum Impressions"
1337
  msgstr ""
1338
 
1339
+ #: dashboard/publisher/adverts-edit.php:282
1340
  msgid "Important"
1341
  msgstr ""
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:283
1344
  msgid ""
1345
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1346
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1347
  "14:00 hours. 6AM is 6:00 hours."
1348
  msgstr ""
1349
 
1350
+ #: dashboard/publisher/adverts-edit.php:287
1351
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1352
  msgstr ""
1353
 
1354
+ #: dashboard/publisher/adverts-edit.php:287
1355
+ #: dashboard/publisher/adverts-edit.php:315
1356
+ #: dashboard/publisher/adverts-edit.php:359
1357
  #: dashboard/publisher/groups-edit.php:200
1358
  #, fuzzy
1359
  msgid "Upgrade today"
1360
  msgstr "Danas"
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:294
1363
  #: dashboard/publisher/groups-edit.php:157
1364
  msgid "Advanced"
1365
  msgstr ""
1366
 
1367
+ #: dashboard/publisher/adverts-edit.php:295
1368
  #, fuzzy
1369
  msgid "Everything below is optional."
1370
  msgstr "Naslov (opcionalno):"
1371
 
1372
+ #: dashboard/publisher/adverts-edit.php:299
1373
  msgid "Responsive"
1374
  msgstr ""
1375
 
1376
+ #: dashboard/publisher/adverts-edit.php:301
1377
  #, fuzzy
1378
  msgid "Enable responsive support for this advert."
1379
  msgstr "Oglasi"
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:302
1382
  msgid ""
1383
  "Upload your images to the banner folder and make sure the filename is in the "
1384
  "following format; \"imagename.full.ext\". A full set of sized images is "
1385
  "strongly recommended."
1386
  msgstr ""
1387
 
1388
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1389
  #: dashboard/publisher/groups-edit.php:194
1390
  msgid "Sortorder"
1391
  msgstr ""
1392
 
1393
+ #: dashboard/publisher/adverts-edit.php:310
1394
  #: dashboard/publisher/groups-edit.php:196
1395
  msgid "For administrative purposes set a sortorder."
1396
  msgstr "Za administrativne svrhe postavili sortorder ."
1397
 
1398
+ #: dashboard/publisher/adverts-edit.php:310
1399
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1400
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1401
 
1402
+ #: dashboard/publisher/adverts-edit.php:315
1403
  msgid ""
1404
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1405
  msgstr ""
1406
 
1407
+ #: dashboard/publisher/adverts-edit.php:317
1408
  msgid "Geo Targeting in AdRotate Pro"
1409
  msgstr ""
1410
 
1411
+ #: dashboard/publisher/adverts-edit.php:318
1412
  msgid ""
1413
  "Assign the advert to a group and enable that group to use Geo Targeting."
1414
  msgstr ""
1415
 
1416
+ #: dashboard/publisher/adverts-edit.php:322
1417
  msgid "Cities/States"
1418
  msgstr ""
1419
 
1420
+ #: dashboard/publisher/adverts-edit.php:325
1421
  msgid ""
1422
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1423
  "states ISO codes are supported)"
1424
  msgstr ""
1425
 
1426
+ #: dashboard/publisher/adverts-edit.php:325
1427
  msgid ""
1428
  "AdRotate does not check the validity of names so make sure you spell them "
1429
  "correctly!"
1430
  msgstr ""
1431
 
1432
+ #: dashboard/publisher/adverts-edit.php:329
1433
  msgid "Countries"
1434
  msgstr ""
1435
 
1436
+ #: dashboard/publisher/adverts-edit.php:354
1437
  #, fuzzy
1438
  msgid "Select the countries you want the adverts to show in."
1439
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1440
 
1441
+ #: dashboard/publisher/adverts-edit.php:354
1442
  msgid "Cities take priority and will be filtered first."
1443
  msgstr ""
1444
 
1445
+ #: dashboard/publisher/adverts-edit.php:359
1446
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1447
  msgstr ""
1448
 
1449
+ #: dashboard/publisher/adverts-edit.php:383
1450
  msgid "Select Groups"
1451
  msgstr "Izbor grupe"
1452
 
1453
+ #: dashboard/publisher/adverts-edit.php:388
1454
  #, fuzzy
1455
  msgid "ID - Name"
1456
  msgstr "Ime"
1457
 
1458
+ #: dashboard/publisher/adverts-edit.php:398
1459
+ #: dashboard/publisher/groups-main.php:60
1460
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
 
1461
  #, fuzzy
1462
  msgid "Default"
1463
  msgstr "Default - Prikazati po jedan oglas"
1464
 
1465
+ #: dashboard/publisher/adverts-edit.php:399
1466
+ #: dashboard/publisher/groups-main.php:61
1467
  #, fuzzy
1468
  msgid "Dynamic"
1469
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1470
 
1471
+ #: dashboard/publisher/adverts-edit.php:399
1472
+ #: dashboard/publisher/groups-main.php:61
1473
  #, fuzzy
1474
  msgid "second rotation"
1475
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1476
 
1477
+ #: dashboard/publisher/adverts-edit.php:400
1478
+ #: dashboard/publisher/groups-main.php:62
1479
  #, fuzzy
1480
  msgid "Block"
1481
  msgstr "Menadžmet blokiranih"
1482
 
1483
+ #: dashboard/publisher/adverts-edit.php:400
1484
+ #: dashboard/publisher/groups-main.php:62
1485
  #, fuzzy
1486
  msgid "grid"
1487
  msgstr ""
1488
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1489
 
1490
+ #: dashboard/publisher/adverts-edit.php:401
1491
  #: dashboard/publisher/groups-edit.php:202
1492
+ #: dashboard/publisher/groups-main.php:63
1493
  #, fuzzy
1494
  msgid "Post Injection"
1495
  msgstr "U post ili stranicu:"
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:402
1498
  #, fuzzy
1499
  msgid "Geolocation"
1500
  msgstr "GeoLocation"
1501
 
1502
+ #: dashboard/publisher/adverts-edit.php:408
1503
  #: dashboard/publisher/groups-edit.php:61
1504
+ #: dashboard/publisher/groups-main.php:70
1505
  msgid "Mode"
1506
  msgstr "Mod"
1507
 
1553
  msgid "Export to XML"
1554
  msgstr "Izlazne opcije za"
1555
 
1556
+ #: dashboard/publisher/adverts-main.php:42
1557
+ #: dashboard/publisher/groups-edit.php:336
1558
+ msgid "Weight"
1559
+ msgstr "Težina"
1560
+
1561
  #: dashboard/publisher/adverts-main.php:44
1562
+ #: dashboard/publisher/groups-edit.php:333
1563
+ #: dashboard/publisher/groups-main.php:36
1564
  #, fuzzy
1565
  msgid "Shown"
1566
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1778
  msgstr ""
1779
 
1780
  #: dashboard/publisher/groups-edit.php:184
1781
+ #: dashboard/settings/advertisers.php:28
1782
  #, fuzzy
1783
  msgid "Geo Targeting"
1784
  msgstr "GeoTargeting"
1818
 
1819
  #: dashboard/publisher/groups-edit.php:209
1820
  #: dashboard/publisher/groups-edit.php:247
1821
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1822
  #, fuzzy
1823
  msgid "Disabled"
1824
  msgstr "Onemogući odgovore"
1936
  msgid "Select adverts"
1937
  msgstr ""
1938
 
1939
+ #: dashboard/publisher/groups-edit.php:331
1940
+ msgid "Choose adverts"
1941
+ msgstr ""
1942
+
1943
  #: dashboard/publisher/groups-edit.php:337
1944
  msgid "Visible until"
1945
  msgstr "Vidljivo do"
1964
  msgid "This action can not be undone!"
1965
  msgstr "Ovo delo se ne može povratiti!"
1966
 
1967
+ #: dashboard/publisher/groups-main.php:24
1968
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1969
+ #: dashboard/settings/maintenance.php:34
1970
  msgid "OK to continue, CANCEL to stop."
1971
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1972
 
1973
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1974
  msgid "No groups created!"
1975
  msgstr "Grupa nije napravljena!"
1976
 
1979
  msgid "Statistics for group"
1980
  msgstr "Sttistike za"
1981
 
1982
+ #: dashboard/settings/advertisers.php:12
1983
  msgid "Advertisers - Available in AdRotate Pro"
1984
  msgstr ""
1985
 
1986
+ #: dashboard/settings/advertisers.php:13
1987
  #, fuzzy
1988
  msgid "Enable advertisers so they can review and manage their own ads."
1989
  msgstr "Omogući oglašivače"
1990
 
1991
+ #: dashboard/settings/advertisers.php:16
1992
  msgid "Enable Advertisers"
1993
  msgstr "Omogući oglašivače"
1994
 
1995
+ #: dashboard/settings/advertisers.php:18
1996
  msgid "Allow adverts to be coupled to users (Advertisers)."
1997
  msgstr "Dozvoli reklame, da se zajedno sa korisnicima ( oglašivači ) ."
1998
 
1999
+ #: dashboard/settings/advertisers.php:22
2000
  msgid "Edit/update adverts"
2001
  msgstr "Edit/update oglasi"
2002
 
2003
+ #: dashboard/settings/advertisers.php:24
2004
  msgid "Allow advertisers to add new or edit their adverts."
2005
  msgstr "Dozvoli oglašavačima da dodate nove ili izmeniti njihove reklame ."
2006
 
2007
+ #: dashboard/settings/advertisers.php:30
2008
  msgid ""
2009
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2010
  "be enabled, too."
2011
  msgstr ""
2012
 
2013
+ #: dashboard/settings/advertisers.php:34
2014
  msgid "Advertiser role"
2015
  msgstr "Uloga oglašivača"
2016
 
2017
+ #: dashboard/settings/advertisers.php:36
2018
  msgid "Create a seperate user role for your advertisers."
2019
  msgstr ""
2020
 
2021
+ #: dashboard/settings/advertisers.php:37
2022
  msgid ""
2023
  "Don't forget to give these users access to their advertiser dashboard via "
2024
  "the Roles tab."
2025
  msgstr ""
2026
 
2027
+ #: dashboard/settings/general.php:12
2028
  msgid "General Settings"
2029
  msgstr ""
2030
 
2031
+ #: dashboard/settings/general.php:13
2032
  msgid "General settings for AdRotate."
2033
  msgstr ""
2034
 
2035
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2036
+ msgid "Some options are only available in AdRotate Pro!"
2037
+ msgstr ""
2038
+
2039
+ #: dashboard/settings/general.php:16
2040
+ msgid "Text widgets"
2041
+ msgstr ""
2042
+
2043
+ #: dashboard/settings/general.php:17
2044
+ msgid ""
2045
+ "Enable if your theme does not support shortcodes in the WordPress text "
2046
+ "widget."
2047
+ msgstr ""
2048
+
2049
+ #: dashboard/settings/general.php:20
2050
  #, fuzzy
2051
  msgid "Load jQuery"
2052
  msgstr ""
2053
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
2054
  "Default: 6."
2055
 
2056
+ #: dashboard/settings/general.php:21
2057
  msgid ""
2058
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2059
+ "groups, statistics and some other features."
2060
  msgstr ""
2061
 
2062
+ #: dashboard/settings/general.php:24
2063
  msgid "Load scripts in footer?"
2064
  msgstr ""
2065
 
2066
+ #: dashboard/settings/general.php:25
2067
  msgid ""
2068
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2069
  "site."
2070
  msgstr ""
2071
 
2072
+ #: dashboard/settings/general.php:28
2073
+ msgid "Adblock disguise"
2074
+ msgstr ""
2075
+
2076
+ #: dashboard/settings/general.php:30
2077
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2078
+ msgstr ""
2079
+
2080
+ #: dashboard/settings/general.php:31
2081
+ msgid ""
2082
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2083
+ msgstr ""
2084
+
2085
+ #: dashboard/settings/general.php:31
2086
+ msgid ""
2087
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2088
+ "instead of the AdRotate widget."
2089
+ msgstr ""
2090
+
2091
+ #: dashboard/settings/general.php:31
2092
+ msgid ""
2093
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2094
+ "feature will have little effect!"
2095
+ msgstr ""
2096
+
2097
+ #: dashboard/settings/general.php:36
2098
  msgid "Banner Folder"
2099
  msgstr "Baner Folder"
2100
 
2101
+ #: dashboard/settings/general.php:37
2102
  #, fuzzy
2103
  msgid "Set a location where your banner images will be stored."
2104
  msgstr ""
2105
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2106
  "banners/)."
2107
 
2108
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2109
  #, fuzzy
2110
  msgid "Location"
2111
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2112
 
2113
+ #: dashboard/settings/general.php:42
2114
  #, fuzzy
2115
  msgid "(Default: wp-content/banners/)."
2116
  msgstr ""
2117
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2118
  "banners/)."
2119
 
2120
+ #: dashboard/settings/general.php:43
2121
  msgid ""
2122
  "To try and trick ad blockers you could set the folder to something crazy "
2123
  "like:"
2125
  "Da biste probali i prevarili blokatore oglasa možete da odredite folder u "
2126
  "nešto ludo kao što su :"
2127
 
2128
+ #: dashboard/settings/general.php:44
2129
  msgid ""
2130
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2131
  "will show errors when the folder is missing."
2133
  "Ovaj folder neće biti kreirani automatski ako se ona ne postoji . AdRotate "
2134
  "će pokazati greške kada folder nedostaje ."
2135
 
2136
+ #: dashboard/settings/general.php:49
2137
  #, fuzzy
2138
  msgid "Bot filter"
2139
  msgstr "User- agent filter"
2140
 
2141
+ #: dashboard/settings/general.php:50
2142
  msgid "The bot filter is used for the AdRotate stats tracker."
2143
  msgstr ""
2144
 
2145
+ #: dashboard/settings/general.php:53
2146
  msgid "User-Agent Filter"
2147
  msgstr "User- agent filter"
2148
 
2149
+ #: dashboard/settings/general.php:56
2150
  msgid ""
2151
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2152
  msgstr ""
2153
 
2154
+ #: dashboard/settings/general.php:57
2155
  msgid ""
2156
  "Keep in mind that this might give false positives. The word 'fire' also "
2157
  "matches 'firefox', but not vice-versa. So be careful!"
2158
  msgstr ""
2159
 
2160
+ #: dashboard/settings/general.php:58
2161
  msgid ""
2162
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2163
  "characters are stripped out."
2164
  msgstr ""
2165
 
2166
+ #: dashboard/settings/general.php:59
2167
  msgid ""
2168
  "Additionally to the list specified here, empty User-Agents are blocked as "
2169
  "well."
2171
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
2172
  "dobro."
2173
 
2174
+ #: dashboard/settings/general.php:59
2175
  msgid "Learn more about"
2176
  msgstr "Saznajte više o"
2177
 
2178
+ #: dashboard/settings/general.php:59
2179
  msgid "user-agents"
2180
  msgstr "korisnici-agenti"
2181
 
2182
+ #: dashboard/settings/geotargeting.php:12
2183
  msgid "Geo Targeting - Available in AdRotate Pro"
2184
  msgstr ""
2185
 
2186
+ #: dashboard/settings/geotargeting.php:13
2187
  msgid "Target certain areas in the world for better advertising oppurtunities."
2188
  msgstr ""
2189
 
2190
+ #: dashboard/settings/geotargeting.php:16
2191
  msgid "Which Geo Service"
2192
  msgstr ""
2193
 
2194
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2195
  msgid ""
2196
  "The most complete and accurate geo targeting you can get for only $20 USD "
2197
  "per 50000 lookups."
2198
  msgstr ""
2199
 
2200
+ #: dashboard/settings/geotargeting.php:28
2201
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2202
  msgstr ""
2203
 
2204
+ #: dashboard/settings/geotargeting.php:30
2205
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2206
  msgstr ""
2207
 
2208
+ #: dashboard/settings/geotargeting.php:36
2209
  msgid "Geo Cookie Lifespan"
2210
  msgstr ""
2211
 
2212
+ #: dashboard/settings/geotargeting.php:45
2213
  msgid "Hours."
2214
  msgstr ""
2215
 
2216
+ #: dashboard/settings/geotargeting.php:46
2217
  msgid ""
2218
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2219
  "cookie last? A longer period is less accurate for mobile users but may "
2220
  "reduce the usage of your lookups drastically."
2221
  msgstr ""
2222
 
2223
+ #: dashboard/settings/geotargeting.php:52
2224
  msgid "MaxMind City/Country"
2225
  msgstr ""
2226
 
2227
+ #: dashboard/settings/geotargeting.php:55
2228
  msgid "Username/Email"
2229
  msgstr ""
2230
 
2231
+ #: dashboard/settings/geotargeting.php:59
2232
  msgid "Password/License Key"
2233
  msgstr ""
2234
 
2235
+ #: dashboard/settings/maintenance.php:12
2236
  msgid "Maintenance"
2237
  msgstr "Održavanje"
2238
 
2239
+ #: dashboard/settings/maintenance.php:13
2240
  msgid ""
2241
  "Use these functions when you notice your database is slow, unresponsive and "
2242
  "sluggish."
2243
  msgstr ""
2244
 
2245
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2246
  msgid "Optimize Database"
2247
  msgstr "Optimizacija baze podataka"
2248
 
2249
+ #: dashboard/settings/maintenance.php:18
2250
  msgid "You are about to optimize the AdRotate database."
2251
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
2252
 
2253
+ #: dashboard/settings/maintenance.php:18
2254
  msgid "Did you make a backup of your database?"
2255
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
2256
 
2257
+ #: dashboard/settings/maintenance.php:18
2258
  msgid ""
2259
  "This may take a moment and may cause your website to respond slow "
2260
  "temporarily!"
2262
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2263
  "sporo privremeno !"
2264
 
2265
+ #: dashboard/settings/maintenance.php:19
2266
  msgid "Cleans up overhead data in the AdRotate tables."
2267
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
2268
 
2269
+ #: dashboard/settings/maintenance.php:20
2270
  msgid ""
2271
  "Overhead data is accumulated garbage resulting from many changes you've "
2272
  "made. This can vary from nothing to hundreds of KiB of data."
2274
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
2275
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
2276
 
2277
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2278
  msgid "Clean-up Database"
2279
  msgstr "Čišćenje baze"
2280
 
2281
+ #: dashboard/settings/maintenance.php:26
2282
  #, fuzzy
2283
  msgid ""
2284
  "You are about to clean up your database. This may delete expired schedules "
2285
  "and older statistics."
2286
  msgstr "Čišćenje baze"
2287
 
2288
+ #: dashboard/settings/maintenance.php:26
2289
  #, fuzzy
2290
  msgid "Are you sure you want to continue?"
2291
  msgstr "Popunite ID tipa koji želite da prikažete!"
2292
 
2293
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2294
  #, fuzzy
2295
  msgid "This might take a while and may slow down your site during this action!"
2296
  msgstr ""
2297
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2298
  "sporo privremeno !"
2299
 
2300
+ #: dashboard/settings/maintenance.php:27
2301
  #, fuzzy
2302
  msgid "Delete stats older than 356 days (Optional)."
2303
  msgstr "Uloga obrisati oglase i resetovanje ."
2304
 
2305
+ #: dashboard/settings/maintenance.php:28
2306
  msgid ""
2307
  "AdRotate creates empty records when you start making ads, groups or "
2308
  "schedules. In rare occasions these records are faulty."
2309
  msgstr ""
2310
 
2311
+ #: dashboard/settings/maintenance.php:28
2312
  msgid ""
2313
  "If you made an ad, group or schedule that does not save when you make it use "
2314
  "this button to delete those empty records."
2315
  msgstr ""
2316
 
2317
+ #: dashboard/settings/maintenance.php:28
2318
  msgid ""
2319
  "Additionally you can clean up old schedules and/or statistics. This will "
2320
  "improve the speed of your site."
2321
  msgstr ""
2322
 
2323
+ #: dashboard/settings/maintenance.php:32
2324
  msgid "Re-evaluate Ads"
2325
  msgstr "Ponovo ocenjeni oglasi"
2326
 
2327
+ #: dashboard/settings/maintenance.php:34
2328
  msgid "Re-evaluate all ads"
2329
  msgstr "Ponovo ocenite sve oglase"
2330
 
2331
+ #: dashboard/settings/maintenance.php:34
2332
  msgid "You are about to check all ads for errors."
2333
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2334
 
2335
+ #: dashboard/settings/maintenance.php:35
2336
  msgid ""
2337
  "This will apply all evaluation rules to all ads to see if any error slipped "
2338
  "in. Normally you should not need this feature."
2340
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
2341
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
2342
 
2343
+ #: dashboard/settings/maintenance.php:39
2344
  msgid ""
2345
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2346
  "database. They only apply to your ads/groups and stats. Not to other "
2353
  "is not a valid point in any case."
2354
  msgstr ""
2355
 
2356
+ #: dashboard/settings/maintenance.php:41
2357
  msgid "Troubleshooting"
2358
  msgstr "Rešavanje problema"
2359
 
2360
+ #: dashboard/settings/maintenance.php:42
2361
  msgid ""
2362
  "The below options are not meant for normal use and are only there for "
2363
  "developers to review saved settings or how ads are selected. These can be "
2365
  "SHOULD BE LEFT UNCHECKED!!"
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:45
2369
  msgid "Developer Debug"
2370
  msgstr "Debug za programera"
2371
 
2372
+ #: dashboard/settings/maintenance.php:47
2373
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2374
  msgstr ""
2375
 
2376
+ #: dashboard/settings/maintenance.php:48
2377
  msgid "View advert specs and (some) stats in the dashboard."
2378
  msgstr ""
2379
 
2380
+ #: dashboard/settings/maintenance.php:49
2381
  #, fuzzy
2382
  msgid ""
2383
  "Disable timers for clicks and impressions and enable a alert window for "
2384
  "clicktracking."
2385
  msgstr "Pratite klikove i prikaze ."
2386
 
2387
+ #: dashboard/settings/maintenance.php:50
2388
  msgid "Temporarily disable encryption on the redirect url."
2389
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
2390
 
2391
+ #: dashboard/settings/maintenance.php:55
2392
  msgid "Status and Versions"
2393
  msgstr ""
2394
 
2395
+ #: dashboard/settings/maintenance.php:58
2396
  msgid "Current version:"
2397
  msgstr "Trenutna verzija :"
2398
 
2399
+ #: dashboard/settings/maintenance.php:59
2400
  msgid "Previous version:"
2401
  msgstr "Prethodna verzija :"
2402
 
2403
+ #: dashboard/settings/maintenance.php:62
2404
  msgid "Current database version:"
2405
  msgstr "Trenutna verzija baze podataka :"
2406
 
2407
+ #: dashboard/settings/maintenance.php:63
2408
  msgid "Previous database version:"
2409
  msgstr "Prethodna verzija baze podataka :"
2410
 
2411
+ #: dashboard/settings/maintenance.php:66
2412
  #, fuzzy
2413
  msgid "Current status of adverts"
2414
  msgstr "Trenutni raspored"
2415
 
2416
+ #: dashboard/settings/maintenance.php:67
2417
  #, fuzzy
2418
  msgid "Normal"
2419
  msgstr ""
2422
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
2423
  "normalnu upotrebu oni treba da budu levo neprovereni "
2424
 
2425
+ #: dashboard/settings/maintenance.php:67
2426
  #, fuzzy
2427
  msgid "Error"
2428
  msgstr "Nepoznati error se ukazao."
2429
 
2430
+ #: dashboard/settings/maintenance.php:67
2431
  #, fuzzy
2432
  msgid "Expired"
2433
  msgstr "Isteklo je."
2434
 
2435
+ #: dashboard/settings/maintenance.php:67
2436
  #, fuzzy
2437
  msgid "Expires Soon"
2438
  msgstr "Ističe uskoro."
2439
 
2440
+ #: dashboard/settings/maintenance.php:67
2441
  msgid "Unknown"
2442
  msgstr ""
2443
 
2444
+ #: dashboard/settings/maintenance.php:70
2445
  #, fuzzy
2446
  msgid "Ad evaluation next run:"
2447
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
2448
 
2449
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2450
  msgid "Not scheduled!"
2451
  msgstr "Nije planirano:"
2452
 
2453
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2454
  msgid "Clean Trackerdata next run:"
2455
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
2456
 
2457
+ #: dashboard/settings/misc.php:12
2458
  msgid "Miscellaneous"
2459
  msgstr "Ostalo"
2460
 
2461
+ #: dashboard/settings/misc.php:15
2462
  msgid "Widget alignment"
2463
  msgstr "Widget alignment"
2464
 
2465
+ #: dashboard/settings/misc.php:16
2466
  msgid ""
2467
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2468
  "not always help!)"
2470
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2471
  "uvek ! )"
2472
 
2473
+ #: dashboard/settings/misc.php:19
2474
  #, fuzzy
2475
  msgid "Widget padding"
2476
  msgstr "Blokiraj punjenje"
2477
 
2478
+ #: dashboard/settings/misc.php:20
2479
  #, fuzzy
2480
  msgid ""
2481
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2484
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2485
  "uvek ! )"
2486
 
2487
+ #: dashboard/settings/misc.php:24
2488
  #, fuzzy
2489
  msgid "NOTICE:"
2490
  msgstr ""
2494
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
2495
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
2496
 
2497
+ #: dashboard/settings/misc.php:25
2498
  msgid ""
2499
  "You have enabled W3 Total Caching support but not defined the security hash. "
2500
  "You need to add the following line to your wp-config.php near the bottom or "
2502
  "needs to be enabled in W3 Total Cache as well too."
2503
  msgstr ""
2504
 
2505
+ #: dashboard/settings/misc.php:29
2506
  msgid "W3 Total Caching"
2507
  msgstr "W3 Total Caching"
2508
 
2509
+ #: dashboard/settings/misc.php:30
2510
  msgid "Check this box if you use W3 Total Caching on your site."
2511
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
2512
 
2513
+ #: dashboard/settings/misc.php:34
2514
  msgid ""
2515
  "It may take a while for the ad to start rotating. The caching plugin needs "
2516
  "to refresh the cache. This can take up to a week if not done manually."
2518
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2519
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2520
 
2521
+ #: dashboard/settings/misc.php:34
2522
  msgid ""
2523
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2524
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2526
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
2527
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
2528
 
2529
+ #: dashboard/settings/notifications.php:12
2530
  msgid "Notifications - Available in AdRotate Pro"
2531
  msgstr ""
2532
 
2533
+ #: dashboard/settings/notifications.php:13
2534
  #, fuzzy
2535
  msgid "Set up who gets notifications if ads need your attention."
2536
  msgstr "Oglasi koje treba neposrednu pažnju"
2537
 
2538
+ #: dashboard/settings/notifications.php:16
2539
  msgid "Delivery method"
2540
  msgstr ""
2541
 
2542
+ #: dashboard/settings/notifications.php:18
2543
  #, fuzzy
2544
  msgid "Email message."
2545
  msgstr "Stranica oglašivača"
2546
 
2547
+ #: dashboard/settings/notifications.php:19
2548
  msgid "Push notifications to your smartphone."
2549
  msgstr ""
2550
 
2551
+ #: dashboard/settings/notifications.php:20
2552
  msgid ""
2553
  "Push notifications are delivered through Pushover, a notification service "
2554
  "for Android and iOS"
2555
  msgstr ""
2556
 
2557
+ #: dashboard/settings/notifications.php:20
2558
  msgid ""
2559
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2560
  "information can be found on the pushover website;"
2561
  msgstr ""
2562
 
2563
+ #: dashboard/settings/notifications.php:24
2564
  msgid "Test notification"
2565
  msgstr ""
2566
 
2567
+ #: dashboard/settings/notifications.php:26
2568
  #, fuzzy
2569
  msgid ""
2570
  "This sends a test notification. Before you test, save the options first!"
2572
  "Ovaj test šalje obaveštenje . Pre nego što testirate , na primer , sa novim "
2573
  "email adresu. Sačuvajte prvi opcije !"
2574
 
2575
+ #: dashboard/settings/notifications.php:31
2576
  #, fuzzy
2577
  msgid "Dashboard Notifications"
2578
  msgstr "Notifikacije"
2579
 
2580
+ #: dashboard/settings/notifications.php:32
2581
  msgid "These show to every administrator who can edit adverts."
2582
  msgstr ""
2583
 
2584
+ #: dashboard/settings/notifications.php:35
2585
  msgid "Notification banners"
2586
  msgstr ""
2587
 
2588
+ #: dashboard/settings/notifications.php:36
2589
  msgid "Disable dashboard notifications."
2590
  msgstr ""
2591
 
2592
+ #: dashboard/settings/notifications.php:40
2593
  msgid "Email Notifications"
2594
  msgstr "Email Obaveštenja"
2595
 
2596
+ #: dashboard/settings/notifications.php:41
2597
  #, fuzzy
2598
  msgid "Set up who gets notification emails."
2599
  msgstr "Oglasi koje treba neposrednu pažnju"
2600
 
2601
+ #: dashboard/settings/notifications.php:44
2602
+ #: dashboard/settings/notifications.php:64
2603
  #, fuzzy
2604
  msgid "Publishers"
2605
  msgstr ""
2606
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
2607
  "samo izdavačima ."
2608
 
2609
+ #: dashboard/settings/notifications.php:47
2610
  msgid ""
2611
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2612
  "list to a minimum!"
2614
  "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
2615
  "ovu listu na minimum !"
2616
 
2617
+ #: dashboard/settings/notifications.php:48
2618
  #, fuzzy
2619
  msgid ""
2620
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2623
  "Poruke se šalju jednom u 24 sata kada je to potrebno . Ako ovo polje je "
2624
  "praznofunkcija će biti onemogućena "
2625
 
2626
+ #: dashboard/settings/notifications.php:52
2627
  msgid "Advertisers"
2628
  msgstr "Oglašivači"
2629
 
2630
+ #: dashboard/settings/notifications.php:55
2631
  #, fuzzy
2632
  msgid ""
2633
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2635
  msgstr ""
2636
  "Maksimalno 2 adrese. Odvojenu zarezima. Ovo polje ne može biti prazno !"
2637
 
2638
+ #: dashboard/settings/notifications.php:60
2639
  #, fuzzy
2640
  msgid "Push Notifications"
2641
  msgstr "Notifikacije"
2642
 
2643
+ #: dashboard/settings/notifications.php:61
2644
  msgid ""
2645
  "Receive information about what is happening with your AdRotate setup on your "
2646
  "smartphone via Pushover."
2647
  msgstr ""
2648
 
2649
+ #: dashboard/settings/notifications.php:66
2650
  msgid "When you are running out of Geo Targeting Lookups."
2651
  msgstr ""
2652
 
2653
+ #: dashboard/settings/notifications.php:67
2654
  msgid "Daily digest of any advert status other than normal."
2655
  msgstr ""
2656
 
2657
+ #: dashboard/settings/notifications.php:68
2658
  msgid "Any advertiser saving an advert in your moderation queue."
2659
  msgstr ""
2660
 
2661
+ #: dashboard/settings/notifications.php:69
2662
  #, fuzzy
2663
  msgid "A moderator approved an advert from the moderation queue."
2664
  msgstr "Odobri / odbaci reklame u red za uređivanje"
2665
 
2666
+ #: dashboard/settings/notifications.php:70
2667
  #, fuzzy
2668
  msgid "A moderator rejected an advert from the moderation queue."
2669
  msgstr "Odobri / odbaci reklame u red za uređivanje"
2670
 
2671
+ #: dashboard/settings/notifications.php:70
2672
  msgid ""
2673
  "If you have a lot of activity with many advertisers adding/changing adverts "
2674
  "you may get a lot of messages!"
2675
  msgstr ""
2676
 
2677
+ #: dashboard/settings/notifications.php:75
2678
  #, fuzzy
2679
  msgid "User Key"
2680
  msgstr "korisnici-agenti"
2681
 
2682
+ #: dashboard/settings/notifications.php:77
2683
  msgid "Get your user token"
2684
  msgstr ""
2685
 
2686
+ #: dashboard/settings/notifications.php:77
2687
+ #: dashboard/settings/notifications.php:83
2688
  msgid "here"
2689
  msgstr ""
2690
 
2691
+ #: dashboard/settings/notifications.php:81
2692
  msgid "Api Token"
2693
  msgstr ""
2694
 
2695
+ #: dashboard/settings/notifications.php:83
2696
  msgid "Create your"
2697
  msgstr ""
2698
 
2699
+ #: dashboard/settings/notifications.php:83
2700
  msgid "App"
2701
  msgstr ""
2702
 
2703
+ #: dashboard/settings/notifications.php:83
2704
  msgid "and get your API token"
2705
  msgstr ""
2706
 
2707
+ #: dashboard/settings/roles.php:12
2708
  msgid "Roles"
2709
  msgstr ""
2710
 
2711
+ #: dashboard/settings/roles.php:13
2712
  msgid "Who has access to what?"
2713
  msgstr ""
2714
 
2715
+ #: dashboard/settings/roles.php:16
2716
  msgid "Manage/Add/Edit adverts"
2717
  msgstr "Upravljanje / Add / Edit reklame"
2718
 
2719
+ #: dashboard/settings/roles.php:20
2720
  msgid "Role to see and add/edit ads."
2721
  msgstr "Uloga videti i add / edit oglase ."
2722
 
2723
+ #: dashboard/settings/roles.php:24
2724
  msgid "Delete/Reset adverts"
2725
  msgstr "Brisanje / Reset reklame"
2726
 
2727
+ #: dashboard/settings/roles.php:28
2728
  msgid "Role to delete ads and reset stats."
2729
  msgstr "Uloga obrisati oglase i resetovanje ."
2730
 
2731
+ #: dashboard/settings/roles.php:32
2732
  msgid "Manage/Add/Edit groups"
2733
  msgstr "Upravljanje / Add / Edit grupama"
2734
 
2735
+ #: dashboard/settings/roles.php:36
2736
  msgid "Role to see and add/edit groups."
2737
  msgstr "Uloga videti i add / edit grupe ."
2738
 
2739
+ #: dashboard/settings/roles.php:40
2740
  msgid "Delete groups"
2741
  msgstr "Brisanje grupe"
2742
 
2743
+ #: dashboard/settings/roles.php:44
2744
  msgid "Role to delete groups."
2745
  msgstr "Uloga za brisanje grupe ."
2746
 
2747
+ #: dashboard/settings/statistics.php:13
2748
  msgid "Track statistics for your adverts."
2749
  msgstr ""
2750
 
2751
+ #: dashboard/settings/statistics.php:16
2752
  msgid "How to track stats"
2753
  msgstr ""
2754
 
2755
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2756
  msgid "Tracks impressions and clicks internally"
2757
  msgstr ""
2758
 
2759
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2760
+ #: dashboard/settings/statistics.php:29
2761
  msgid "manual"
2762
  msgstr ""
2763
 
2764
+ #: dashboard/settings/statistics.php:26
2765
  msgid ""
2766
  "Click and Impression recording, Click and impression limits, impression "
2767
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2768
+ "will only track impressions."
2769
  msgstr ""
2770
 
2771
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2772
+ msgid "In AdRotate Pro!"
2773
+ msgstr ""
2774
+
2775
+ #: dashboard/settings/statistics.php:27
2776
  msgid ""
2777
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2778
  "attributes"
2779
  msgstr ""
2780
 
2781
+ #: dashboard/settings/statistics.php:28
2782
  msgid ""
2783
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2784
  "Contents."
2785
  msgstr ""
2786
 
2787
+ #: dashboard/settings/statistics.php:29
2788
  msgid ""
2789
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2790
  "uses onClick() and onload() in adverts"
2791
  msgstr ""
2792
 
2793
+ #: dashboard/settings/statistics.php:30
2794
  msgid ""
2795
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2796
+ "Banner."
2797
  msgstr ""
2798
 
2799
+ #: dashboard/settings/statistics.php:36
2800
  msgid "Internal Tracker"
2801
  msgstr ""
2802
 
2803
+ #: dashboard/settings/statistics.php:37
2804
  msgid ""
2805
  "The settings below are for the internal tracker and have no effect when "
2806
  "using Piwik/Google Analytics."
2807
  msgstr ""
2808
 
2809
+ #: dashboard/settings/statistics.php:40
2810
  #, fuzzy
2811
  msgid "Logged in impressions"
2812
  msgstr "Pratite utiske ulogovanih korisniika (Preporučeno)"
2813
 
2814
+ #: dashboard/settings/statistics.php:42
2815
  msgid "Track impressions from logged in users."
2816
  msgstr ""
2817
 
2818
+ #: dashboard/settings/statistics.php:46
2819
  #, fuzzy
2820
  msgid "Logged in clicks"
2821
  msgstr "Pratite klikove ulogovani korisnici ."
2822
 
2823
+ #: dashboard/settings/statistics.php:48
2824
  msgid "Track clicks from logged in users."
2825
  msgstr "Pratite klikove ulogovani korisnici ."
2826
 
2827
+ #: dashboard/settings/statistics.php:52
2828
+ msgid "Impression timer"
2829
+ msgstr ""
2830
 
2831
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2832
  msgid "Seconds."
2833
  msgstr "Sekunde."
2834
 
2835
+ #: dashboard/settings/statistics.php:55
2836
  #, fuzzy
2837
  msgid "Default: 60."
2838
  msgstr "Default - Prikazati po jedan oglas"
2839
 
2840
+ #: dashboard/settings/statistics.php:55
2841
  #, fuzzy
2842
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2843
  msgstr ""
2844
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2845
 
2846
+ #: dashboard/settings/statistics.php:59
2847
+ msgid "Click timer"
2848
+ msgstr ""
 
2849
 
2850
+ #: dashboard/settings/statistics.php:62
2851
  #, fuzzy
2852
  msgid "Default: 86400."
2853
  msgstr "Default - Prikazati po jedan oglas"
2854
 
2855
+ #: dashboard/settings/statistics.php:62
2856
  #, fuzzy
2857
  msgid ""
2858
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2859
  msgstr ""
2860
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2861
 
2862
+ #~ msgid "Find out more"
2863
+ #~ msgstr "Saznajte više"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid "Barely visible"
2867
+ #~ msgstr "Vidljivo do"
2868
+
2869
+ #, fuzzy
2870
+ #~ msgid "Less than average"
2871
+ #~ msgstr "Oglas ističe za manje od 2 dana !"
2872
+
2873
+ #, fuzzy
2874
+ #~ msgid "Normal coverage"
2875
+ #~ msgstr ""
2876
+ #~ "NAPOMENA : Slede opcije nisu namenjene za normalnu upotrebu , a tu su "
2877
+ #~ "samo za programere da pregledaju sačuvane postavke ili kako se oglasi "
2878
+ #~ "izabrani . To se može koristiti kao mera za rešavanje problema na "
2879
+ #~ "zahtev , ali za normalnu upotrebu oni treba da budu levo neprovereni "
2880
+
2881
+ #, fuzzy
2882
+ #~ msgid "More than average"
2883
+ #~ msgstr "Saznajte više"
2884
+
2885
+ #, fuzzy
2886
+ #~ msgid "Best visibility"
2887
+ #~ msgstr "Vidljivo do"
2888
+
2889
+ #, fuzzy
2890
+ #~ msgid "Ads in group"
2891
+ #~ msgstr "Gupni oglasi - Koristite grupni ID"
2892
+
2893
+ #~ msgid "Code"
2894
+ #~ msgstr "Kod"
2895
+
2896
+ #~ msgid "Impressions timer"
2897
+ #~ msgstr "Utisci tajmer"
2898
+
2899
+ #, fuzzy
2900
+ #~ msgid "Clicks timer"
2901
+ #~ msgstr "Utisci tajmer"
2902
+
2903
  #, fuzzy
2904
  #~ msgid "Learn More"
2905
  #~ msgstr "Saznajte više"
language/adrotate-sv_SV.mo CHANGED
Binary file
language/adrotate-sv_SV.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: 2015-08-23 20:09+0200\n"
6
- "PO-Revision-Date: 2015-08-23 20:09+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
@@ -240,10 +240,10 @@ msgstr "Lös det här så fort som möjligt"
240
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
241
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
242
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
243
- #: dashboard/adrotatepro.php:91 dashboard/info.php:138 dashboard/info.php:139
244
- #: dashboard/info.php:140 dashboard/info.php:141 dashboard/info.php:150
245
- #: dashboard/info.php:151 dashboard/info.php:152 dashboard/info.php:153
246
- #: dashboard/settings/geotargeting.php:16
247
  #, fuzzy
248
  msgid "Buy now"
249
  msgstr "Köp nu"
@@ -343,7 +343,7 @@ msgstr "Betygsätt och omdöme"
343
  msgid "on WordPress.org to help AdRotate grow in a positive way"
344
  msgstr ""
345
 
346
- #: adrotate-output.php:887 dashboard/publisher/adverts-edit.php:313
347
  msgid "Available in AdRotate Pro"
348
  msgstr "Tillgänglig i AdRotate Pro"
349
 
@@ -361,63 +361,63 @@ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
361
  msgid "Learn more"
362
  msgstr "Läs mer om"
363
 
364
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
365
- #: dashboard/publisher/adverts-edit.php:245
366
  msgid "January"
367
  msgstr "Januari"
368
 
369
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
370
- #: dashboard/publisher/adverts-edit.php:246
371
  msgid "February"
372
  msgstr "Februari"
373
 
374
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
375
- #: dashboard/publisher/adverts-edit.php:247
376
  msgid "March"
377
  msgstr "Mars"
378
 
379
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
380
- #: dashboard/publisher/adverts-edit.php:248
381
  msgid "April"
382
  msgstr "April"
383
 
384
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
385
- #: dashboard/publisher/adverts-edit.php:249
386
  msgid "May"
387
  msgstr "Maj"
388
 
389
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
390
- #: dashboard/publisher/adverts-edit.php:250
391
  msgid "June"
392
  msgstr "Juni"
393
 
394
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
395
- #: dashboard/publisher/adverts-edit.php:251
396
  msgid "July"
397
  msgstr "Juli"
398
 
399
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
400
- #: dashboard/publisher/adverts-edit.php:252
401
  msgid "August"
402
  msgstr "Augusti"
403
 
404
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:232
405
- #: dashboard/publisher/adverts-edit.php:253
406
  msgid "September"
407
  msgstr "September"
408
 
409
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:233
410
- #: dashboard/publisher/adverts-edit.php:254
411
  msgid "October"
412
  msgstr "Oktober"
413
 
414
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:234
415
- #: dashboard/publisher/adverts-edit.php:255
416
  msgid "November"
417
  msgstr "November"
418
 
419
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:235
420
- #: dashboard/publisher/adverts-edit.php:256
421
  msgid "December"
422
  msgstr "December"
423
 
@@ -534,7 +534,7 @@ msgid "Group Management"
534
  msgstr "Grupp Hantering"
535
 
536
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
537
- #: dashboard/publisher/groups-main.php:71
538
  msgid "Report"
539
  msgstr "Rapport"
540
 
@@ -550,10 +550,10 @@ msgid ""
550
  "AdRotate Pro."
551
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
552
 
553
- #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:177
554
  #: dashboard/publisher/adverts-main.php:114
555
  #: dashboard/publisher/groups-edit.php:75
556
- #: dashboard/publisher/groups-main.php:91
557
  #, fuzzy
558
  msgid "More information"
559
  msgstr "Mer info"
@@ -590,19 +590,19 @@ msgstr "Starttid (hh: mm):"
590
  msgid "End"
591
  msgstr "Avsluta tid (hh: mm):"
592
 
593
- #: adrotate.php:426 dashboard/publisher/adverts-edit.php:426
594
  #: dashboard/publisher/groups-main.php:34
595
  msgid "Ads"
596
  msgstr "Annonser"
597
 
598
  #: adrotate.php:428
599
- msgid "Max Clicks"
600
- msgstr "Max Klick"
601
-
602
- #: adrotate.php:429
603
  msgid "Max Impressions"
604
  msgstr "Max Intryck"
605
 
 
 
 
 
606
  #: adrotate.php:459
607
  #, fuzzy
608
  msgid "No schedules created yet!"
@@ -687,19 +687,19 @@ msgid ""
687
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
688
  msgstr ""
689
 
690
- #: adrotate.php:501 dashboard/publisher/adverts-edit.php:308
691
  msgid ""
692
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
693
  "filename instead of \".full\" for the various viewports."
694
  msgstr ""
695
 
696
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
697
  #: dashboard/publisher/groups-edit.php:312
698
  #: dashboard/publisher/groups-edit.php:320
699
  msgid "Example:"
700
  msgstr "Exempel:"
701
 
702
- #: adrotate.php:502 dashboard/publisher/adverts-edit.php:309
703
  msgid ""
704
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
705
  "for different viewports."
@@ -790,20 +790,16 @@ msgid ""
790
  "forum. Get a solution (usually) within a day."
791
  msgstr ""
792
 
793
- #: dashboard/adrotatepro.php:41 dashboard/info.php:160
794
  msgid "AdRotate is brought to you by"
795
  msgstr "AdRotate kommer till dig genom"
796
 
797
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
798
  msgid ""
799
- "Premium plugins, consultancy and anything WordPress! Visit my website for "
800
- "details!"
801
  msgstr ""
802
 
803
- #: dashboard/adrotatepro.php:45 dashboard/info.php:164
804
- msgid "Find out more"
805
- msgstr "Läs mer"
806
-
807
  #: dashboard/adrotatepro.php:58
808
  msgid "Schedule all campaigns with ease"
809
  msgstr ""
@@ -830,176 +826,172 @@ msgid ""
830
  msgstr ""
831
 
832
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
833
- #: dashboard/info.php:134 dashboard/info.php:146
834
  #, fuzzy
835
  msgid "Buy AdRotate Professional"
836
  msgstr "Köp nu"
837
 
838
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
839
  msgid "Single License"
840
  msgstr ""
841
 
842
- #: dashboard/adrotatepro.php:76 dashboard/info.php:138
843
  #, fuzzy
844
  msgid "For one WordPress installation."
845
  msgstr "Installation"
846
 
847
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
848
- #: dashboard/info.php:139 dashboard/info.php:151
849
  #, fuzzy
850
  msgid "Duo License"
851
  msgstr "AdRotate Licens"
852
 
853
- #: dashboard/adrotatepro.php:77 dashboard/info.php:139
854
  #, fuzzy
855
  msgid "For two WordPress installations."
856
  msgstr "Installation"
857
 
858
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
859
- #: dashboard/info.php:140 dashboard/info.php:152
860
  #, fuzzy
861
  msgid "Multi License"
862
  msgstr "AdRotate Licens"
863
 
864
- #: dashboard/adrotatepro.php:78 dashboard/info.php:140
865
  #, fuzzy
866
  msgid " For up to five WordPress installations."
867
  msgstr "Installation"
868
 
869
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
870
- #: dashboard/info.php:141 dashboard/info.php:153
871
  #, fuzzy
872
  msgid "Developer License"
873
  msgstr "Utvecklar Debug"
874
 
875
- #: dashboard/adrotatepro.php:79 dashboard/info.php:141
876
  msgid "Unlimited WordPress installations and/or networks."
877
  msgstr ""
878
 
879
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
880
- #: dashboard/info.php:142 dashboard/info.php:155
881
  msgid "Compare licenses"
882
  msgstr ""
883
 
884
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
885
  msgid "Not sure which license is for you? Compare them..."
886
  msgstr ""
887
 
888
- #: dashboard/adrotatepro.php:80 dashboard/info.php:142
889
  msgid "All Licenses"
890
  msgstr ""
891
 
892
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
893
  msgid "Lifetime License"
894
  msgstr ""
895
 
896
- #: dashboard/adrotatepro.php:88 dashboard/info.php:150
897
  msgid "Single installation."
898
  msgstr ""
899
 
900
- #: dashboard/adrotatepro.php:89 dashboard/info.php:151
901
  msgid "Up to 2 installations."
902
  msgstr ""
903
 
904
- #: dashboard/adrotatepro.php:90 dashboard/info.php:152
905
  msgid "Up to 10 installations."
906
  msgstr ""
907
 
908
- #: dashboard/adrotatepro.php:91 dashboard/info.php:153
909
  msgid "Up to 25 installations or multisite networks."
910
  msgstr ""
911
 
912
- #: dashboard/adrotatepro.php:92 dashboard/info.php:154
913
  msgid ""
914
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
915
  msgstr ""
916
 
917
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
918
  msgid "Not sure which license is for you?"
919
  msgstr ""
920
 
921
- #: dashboard/adrotatepro.php:93 dashboard/info.php:155
922
  msgid "Compare Licenses"
923
  msgstr ""
924
 
925
- #: dashboard/info.php:65
926
  msgid "Currently"
927
  msgstr "För närvarande"
928
 
929
- #: dashboard/info.php:71
930
  msgid "Your setup"
931
  msgstr "Din installation"
932
 
933
- #: dashboard/info.php:72
934
  msgid "Adverts that need you"
935
  msgstr "Annonser som behöver dig"
936
 
937
- #: dashboard/info.php:78
938
  msgid "Adverts"
939
  msgstr "Annonser"
940
 
941
- #: dashboard/info.php:79
942
  msgid "(Almost) Expired"
943
  msgstr "(Nästan) Expired"
944
 
945
- #: dashboard/info.php:82
946
  msgid "Groups"
947
  msgstr "Grupper"
948
 
949
- #: dashboard/info.php:83
950
  msgid "Have errors"
951
  msgstr "Har fel"
952
 
953
- #: dashboard/info.php:89
954
  msgid "Support AdRotate"
955
  msgstr "Support AdRotate"
956
 
957
- #: dashboard/info.php:96
958
  msgid "Your gift helps ensure the continued development of AdRotate!"
959
  msgstr ""
960
 
961
- #: dashboard/info.php:96
962
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
963
  msgstr ""
964
 
965
- #: dashboard/info.php:105
966
  msgid "AdRotate News and Developer Blog"
967
  msgstr "AdRotate Nyheter och Utvecklar Blog"
968
 
969
- #: dashboard/info.php:127
970
  #, fuzzy
971
  msgid "Get more features with AdRotate Pro"
972
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
973
 
974
- #: dashboard/info.php:130
975
  msgid ""
976
  "Benefit from extra features to reinforce your income with advertising "
977
  "campaigns. Make the most of your website with the powerful tools AdRotate "
978
  "Pro offers on top of the trusted features included in the free version."
979
  msgstr ""
980
 
981
- #: dashboard/info.php:130
982
  msgid "Want to know more about"
983
  msgstr ""
984
 
985
- #: dashboard/info.php:130
986
  msgid "Visit the"
987
  msgstr "Besök"
988
 
989
- #: dashboard/info.php:130
990
  msgid "website"
991
  msgstr "hemsida"
992
 
993
- #: dashboard/info.php:166
994
- msgid "Follow"
995
- msgstr ""
996
-
997
  #: dashboard/publisher/adverts-disabled.php:15
998
  msgid "Disabled Ads"
999
  msgstr "Inaktivera annonser"
1000
 
1001
  #: dashboard/publisher/adverts-disabled.php:21
1002
- #: dashboard/publisher/adverts-edit.php:165
1003
  msgid "Activate"
1004
  msgstr "Aktivera"
1005
 
@@ -1028,8 +1020,6 @@ msgstr "Titel"
1028
 
1029
  #: dashboard/publisher/adverts-disabled.php:38
1030
  #: dashboard/publisher/adverts-report.php:34
1031
- #: dashboard/publisher/groups-edit.php:333
1032
- #: dashboard/publisher/groups-main.php:36
1033
  #: dashboard/publisher/groups-report.php:40
1034
  msgid "Impressions"
1035
  msgstr "Intryck"
@@ -1053,7 +1043,7 @@ msgstr "CTR"
1053
  #: dashboard/publisher/adverts-disabled.php:74
1054
  #: dashboard/publisher/adverts-error.php:64
1055
  #: dashboard/publisher/adverts-main.php:87
1056
- #: dashboard/publisher/groups-main.php:71
1057
  msgid "Edit"
1058
  msgstr "Ändra"
1059
 
@@ -1176,35 +1166,53 @@ msgid ""
1176
  "click to add it."
1177
  msgstr ""
1178
 
1179
- #: dashboard/publisher/adverts-edit.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1180
  msgid "Banner asset"
1181
  msgstr ""
1182
 
1183
- #: dashboard/publisher/adverts-edit.php:142
1184
  msgid "WordPress media:"
1185
  msgstr ""
1186
 
1187
- #: dashboard/publisher/adverts-edit.php:142
1188
  msgid "Select Banner"
1189
  msgstr "Välj Banner"
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:144
1192
  msgid "- OR -"
1193
  msgstr "- ELLER -"
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:146
1196
  msgid "Banner folder:"
1197
  msgstr "Banner folder:"
1198
 
1199
- #: dashboard/publisher/adverts-edit.php:147
1200
  msgid "No image selected"
1201
  msgstr "Ingen bild vald"
1202
 
1203
- #: dashboard/publisher/adverts-edit.php:151
1204
  msgid "Use %image% in the adcode instead of the file path."
1205
  msgstr ""
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:151
1208
  msgid ""
1209
  "Use either the text field or the dropdown. If the textfield has content that "
1210
  "field has priority."
@@ -1212,256 +1220,211 @@ msgstr ""
1212
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1213
  "området har företräde."
1214
 
1215
- #: dashboard/publisher/adverts-edit.php:156
1216
- #: dashboard/settings/statistics.php:1
1217
  msgid "Statistics"
1218
  msgstr "Statistik"
1219
 
1220
- #: dashboard/publisher/adverts-edit.php:158
1221
  msgid "Enable click and impression tracking for this advert."
1222
  msgstr ""
1223
 
1224
- #: dashboard/publisher/adverts-edit.php:159
1225
  msgid ""
1226
  "Note: Clicktracking does not work for Javascript adverts such as those "
1227
- "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1228
- "supported."
1229
  msgstr ""
1230
 
1231
- #: dashboard/publisher/adverts-edit.php:169
1232
  msgid "Yes, this ad will be used"
1233
  msgstr "Ja, kommer denna annons att användas"
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:170
1236
  msgid "No, do not show this ad anywhere"
1237
  msgstr "Nej, inte visa denna annons någonstans"
1238
 
1239
- #: dashboard/publisher/adverts-edit.php:177
1240
  #: dashboard/publisher/adverts-main.php:114
1241
  #: dashboard/publisher/groups-edit.php:75
1242
- #: dashboard/publisher/groups-main.php:91
1243
  #, fuzzy
1244
  msgid "Get more features with AdRotate Pro."
1245
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:180
1248
- #: dashboard/publisher/adverts-edit.php:295
1249
- #: dashboard/publisher/adverts-edit.php:395
1250
- #: dashboard/publisher/adverts-edit.php:436
1251
  msgid "Save Advert"
1252
  msgstr "Spara annons"
1253
 
1254
- #: dashboard/publisher/adverts-edit.php:181
1255
- #: dashboard/publisher/adverts-edit.php:296
1256
- #: dashboard/publisher/adverts-edit.php:396
1257
- #: dashboard/publisher/adverts-edit.php:437
1258
  #: dashboard/publisher/groups-edit.php:154
1259
  #: dashboard/publisher/groups-edit.php:301
1260
  #: dashboard/publisher/groups-edit.php:393
1261
  msgid "Cancel"
1262
  msgstr "Avbryt"
1263
 
1264
- #: dashboard/publisher/adverts-edit.php:185
1265
- msgid "Preview"
1266
- msgstr "Förhandsgranska"
1267
-
1268
- #: dashboard/publisher/adverts-edit.php:191
1269
- msgid ""
1270
- "Note: While this preview is an accurate one, it might look different then it "
1271
- "does on the website."
1272
- msgstr ""
1273
- "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1274
- "gör på webbplatsen."
1275
-
1276
- #: dashboard/publisher/adverts-edit.php:192
1277
- msgid ""
1278
- "This is because of CSS differences. Your themes CSS file is not active here!"
1279
- msgstr ""
1280
- "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1281
-
1282
- #: dashboard/publisher/adverts-edit.php:199
1283
- #: dashboard/publisher/adverts-edit.php:378
1284
  #: dashboard/publisher/groups-edit.php:136
1285
  #: dashboard/publisher/groups-edit.php:283
1286
  msgid "Usage"
1287
  msgstr "Användning"
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:203
1290
- #: dashboard/publisher/adverts-edit.php:382
1291
  #: dashboard/publisher/groups-edit.php:140
1292
  #: dashboard/publisher/groups-edit.php:287
1293
  msgid "Widget"
1294
  msgstr ""
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:204
1297
- #: dashboard/publisher/adverts-edit.php:383
1298
  msgid ""
1299
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1300
  "and enter ID"
1301
  msgstr ""
1302
 
1303
- #: dashboard/publisher/adverts-edit.php:207
1304
- #: dashboard/publisher/adverts-edit.php:386
1305
  #: dashboard/publisher/groups-edit.php:144
1306
  #: dashboard/publisher/groups-edit.php:291
1307
  msgid "In a post or page"
1308
  msgstr ""
1309
 
1310
- #: dashboard/publisher/adverts-edit.php:209
1311
- #: dashboard/publisher/adverts-edit.php:388
1312
  #: dashboard/publisher/groups-edit.php:146
1313
  #: dashboard/publisher/groups-edit.php:293
1314
  msgid "Directly in a theme"
1315
  msgstr ""
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:215
1318
  msgid "Schedule your advert"
1319
  msgstr ""
1320
 
1321
- #: dashboard/publisher/adverts-edit.php:219
1322
  msgid "Start date (day/month/year)"
1323
  msgstr ""
1324
 
1325
- #: dashboard/publisher/adverts-edit.php:240
1326
  msgid "End date (day/month/year)"
1327
  msgstr ""
1328
 
1329
- #: dashboard/publisher/adverts-edit.php:263
1330
  msgid "Start time (hh:mm)"
1331
  msgstr ""
1332
 
1333
- #: dashboard/publisher/adverts-edit.php:270
1334
  msgid "End time (hh:mm)"
1335
  msgstr ""
1336
 
1337
- #: dashboard/publisher/adverts-edit.php:280
1338
  msgid "Maximum Clicks"
1339
  msgstr ""
1340
 
1341
- #: dashboard/publisher/adverts-edit.php:281
1342
- #: dashboard/publisher/adverts-edit.php:283
1343
  msgid "Leave empty or 0 to skip this."
1344
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1345
 
1346
- #: dashboard/publisher/adverts-edit.php:282
1347
  msgid "Maximum Impressions"
1348
  msgstr ""
1349
 
1350
- #: dashboard/publisher/adverts-edit.php:287
1351
  msgid "Important"
1352
  msgstr ""
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:288
1355
  msgid ""
1356
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1357
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1358
  "14:00 hours. 6AM is 6:00 hours."
1359
  msgstr ""
1360
 
1361
- #: dashboard/publisher/adverts-edit.php:292
1362
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1363
  msgstr ""
1364
 
1365
- #: dashboard/publisher/adverts-edit.php:292
1366
- #: dashboard/publisher/adverts-edit.php:332
1367
- #: dashboard/publisher/adverts-edit.php:376
1368
  #: dashboard/publisher/groups-edit.php:200
1369
  #, fuzzy
1370
  msgid "Upgrade today"
1371
  msgstr "i dag"
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:299
1374
  #: dashboard/publisher/groups-edit.php:157
1375
  msgid "Advanced"
1376
  msgstr "Utökad"
1377
 
1378
- #: dashboard/publisher/adverts-edit.php:300
1379
  msgid "Everything below is optional."
1380
  msgstr "Allt nedan är frivillig."
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:304
1383
  msgid "Responsive"
1384
  msgstr ""
1385
 
1386
- #: dashboard/publisher/adverts-edit.php:306
1387
  #, fuzzy
1388
  msgid "Enable responsive support for this advert."
1389
  msgstr "Aktivera klickspårning för denna annons."
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:307
1392
  msgid ""
1393
  "Upload your images to the banner folder and make sure the filename is in the "
1394
  "following format; \"imagename.full.ext\". A full set of sized images is "
1395
  "strongly recommended."
1396
  msgstr ""
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:313
1399
- #: dashboard/publisher/adverts-main.php:42
1400
- #: dashboard/publisher/groups-edit.php:336
1401
- msgid "Weight"
1402
- msgstr "Vikt"
1403
-
1404
- #: dashboard/publisher/adverts-edit.php:316
1405
- msgid "Barely visible"
1406
- msgstr "Knappt synlig"
1407
-
1408
- #: dashboard/publisher/adverts-edit.php:317
1409
- msgid "Less than average"
1410
- msgstr "Mindre än genomsnittet"
1411
-
1412
- #: dashboard/publisher/adverts-edit.php:318
1413
- msgid "Normal coverage"
1414
- msgstr "Normal täckning"
1415
-
1416
- #: dashboard/publisher/adverts-edit.php:319
1417
- msgid "More than average"
1418
- msgstr "Mer än genomsnittet"
1419
-
1420
- #: dashboard/publisher/adverts-edit.php:320
1421
- msgid "Best visibility"
1422
- msgstr "Bästa synlighet"
1423
-
1424
- #: dashboard/publisher/adverts-edit.php:325
1425
  #: dashboard/publisher/groups-edit.php:194
1426
  msgid "Sortorder"
1427
  msgstr ""
1428
 
1429
- #: dashboard/publisher/adverts-edit.php:327
1430
  #: dashboard/publisher/groups-edit.php:196
1431
  msgid "For administrative purposes set a sortorder."
1432
  msgstr "För administrativa ändamål sätt en sortorder."
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:327
1435
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1436
  msgstr ""
1437
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:332
1440
  msgid ""
1441
- "With AdRotate Pro you can set the weight to give adverts more or less "
1442
- "exposure."
1443
  msgstr ""
1444
 
1445
- #: dashboard/publisher/adverts-edit.php:334
1446
  msgid "Geo Targeting in AdRotate Pro"
1447
  msgstr ""
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:335
1450
  msgid ""
1451
  "Assign the advert to a group and enable that group to use Geo Targeting."
1452
  msgstr ""
1453
 
1454
- #: dashboard/publisher/adverts-edit.php:339
1455
  msgid "Cities/States"
1456
  msgstr ""
1457
 
1458
- #: dashboard/publisher/adverts-edit.php:342
1459
  msgid ""
1460
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1461
  "states ISO codes are supported)"
1462
  msgstr ""
1463
 
1464
- #: dashboard/publisher/adverts-edit.php:342
1465
  #, fuzzy
1466
  msgid ""
1467
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1470,79 +1433,75 @@ msgstr ""
1470
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1471
  "rätt!"
1472
 
1473
- #: dashboard/publisher/adverts-edit.php:346
1474
  msgid "Countries"
1475
  msgstr ""
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:371
1478
  #, fuzzy
1479
  msgid "Select the countries you want the adverts to show in."
1480
  msgstr "Välj de länder som du vill att annonser för att visa i."
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:371
1483
  #, fuzzy
1484
  msgid "Cities take priority and will be filtered first."
1485
  msgstr "Städer prioriteras och kommer att filtreras först."
1486
 
1487
- #: dashboard/publisher/adverts-edit.php:376
1488
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1489
  msgstr ""
1490
 
1491
- #: dashboard/publisher/adverts-edit.php:400
1492
  msgid "Select Groups"
1493
  msgstr "Välj Grupper"
1494
 
1495
- #: dashboard/publisher/adverts-edit.php:405
1496
  msgid "ID - Name"
1497
  msgstr "ID - Namn"
1498
 
1499
- #: dashboard/publisher/adverts-edit.php:406
1500
- msgid "Ads in group"
1501
- msgstr "Annonser i grupp"
1502
-
1503
- #: dashboard/publisher/adverts-edit.php:415
1504
- #: dashboard/publisher/groups-main.php:61
1505
- #: dashboard/settings/geotargeting.php:29
1506
  msgid "Default"
1507
  msgstr "Default"
1508
 
1509
- #: dashboard/publisher/adverts-edit.php:416
1510
- #: dashboard/publisher/groups-main.php:62
1511
  msgid "Dynamic"
1512
  msgstr "Dynamic"
1513
 
1514
- #: dashboard/publisher/adverts-edit.php:416
1515
- #: dashboard/publisher/groups-main.php:62
1516
  #, fuzzy
1517
  msgid "second rotation"
1518
  msgstr "Geo Location"
1519
 
1520
- #: dashboard/publisher/adverts-edit.php:417
1521
- #: dashboard/publisher/groups-main.php:63
1522
  msgid "Block"
1523
  msgstr "Block"
1524
 
1525
- #: dashboard/publisher/adverts-edit.php:417
1526
- #: dashboard/publisher/groups-main.php:63
1527
  #, fuzzy
1528
  msgid "grid"
1529
  msgstr ""
1530
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1531
  "(Standard: 2/2)"
1532
 
1533
- #: dashboard/publisher/adverts-edit.php:418
1534
  #: dashboard/publisher/groups-edit.php:202
1535
- #: dashboard/publisher/groups-main.php:64
1536
  msgid "Post Injection"
1537
  msgstr "Post injektion"
1538
 
1539
- #: dashboard/publisher/adverts-edit.php:419
1540
  msgid "Geolocation"
1541
  msgstr "Geolocation"
1542
 
1543
- #: dashboard/publisher/adverts-edit.php:425
1544
  #: dashboard/publisher/groups-edit.php:61
1545
- #: dashboard/publisher/groups-main.php:71
1546
  msgid "Mode"
1547
  msgstr "läge"
1548
 
@@ -1594,7 +1553,14 @@ msgstr "aktiva annonser"
1594
  msgid "Export to XML"
1595
  msgstr "Exportera"
1596
 
 
 
 
 
 
1597
  #: dashboard/publisher/adverts-main.php:44
 
 
1598
  msgid "Shown"
1599
  msgstr "Visa"
1600
 
@@ -1803,7 +1769,7 @@ msgid ""
1803
  msgstr ""
1804
 
1805
  #: dashboard/publisher/groups-edit.php:184
1806
- #: dashboard/settings/advertisers.php:17
1807
  msgid "Geo Targeting"
1808
  msgstr "Geo Targeting"
1809
 
@@ -1842,7 +1808,7 @@ msgstr ""
1842
 
1843
  #: dashboard/publisher/groups-edit.php:209
1844
  #: dashboard/publisher/groups-edit.php:247
1845
- #: dashboard/settings/geotargeting.php:8 dashboard/settings/statistics.php:8
1846
  #, fuzzy
1847
  msgid "Disabled"
1848
  msgstr "Inaktivera annonser"
@@ -1959,6 +1925,10 @@ msgstr ""
1959
  msgid "Select adverts"
1960
  msgstr ""
1961
 
 
 
 
 
1962
  #: dashboard/publisher/groups-edit.php:337
1963
  msgid "Visible until"
1964
  msgstr "Synlig tills"
@@ -1983,16 +1953,13 @@ msgstr "Du håller på att ta bort en grupp"
1983
  msgid "This action can not be undone!"
1984
  msgstr "Denna åtgärd kan inte ångras!"
1985
 
1986
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:7
1987
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
 
1988
  msgid "OK to continue, CANCEL to stop."
1989
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1990
 
1991
- #: dashboard/publisher/groups-main.php:41
1992
- msgid "Code"
1993
- msgstr "Kod"
1994
-
1995
- #: dashboard/publisher/groups-main.php:86
1996
  msgid "No groups created!"
1997
  msgstr "Inga grupper skapas!"
1998
 
@@ -2000,112 +1967,145 @@ msgstr "Inga grupper skapas!"
2000
  msgid "Statistics for group"
2001
  msgstr "Statistik för grupp"
2002
 
2003
- #: dashboard/settings/advertisers.php:1
2004
  msgid "Advertisers - Available in AdRotate Pro"
2005
  msgstr ""
2006
 
2007
- #: dashboard/settings/advertisers.php:2
2008
  #, fuzzy
2009
  msgid "Enable advertisers so they can review and manage their own ads."
2010
  msgstr "Aktivera Annonsörer"
2011
 
2012
- #: dashboard/settings/advertisers.php:5
2013
  msgid "Enable Advertisers"
2014
  msgstr "Aktivera Annonsörer"
2015
 
2016
- #: dashboard/settings/advertisers.php:7
2017
  msgid "Allow adverts to be coupled to users (Advertisers)."
2018
  msgstr "Tillåt reklam för att kopplas till användare (annonsörer)."
2019
 
2020
- #: dashboard/settings/advertisers.php:11
2021
  msgid "Edit/update adverts"
2022
  msgstr "Edit / update annonser"
2023
 
2024
- #: dashboard/settings/advertisers.php:13
2025
  msgid "Allow advertisers to add new or edit their adverts."
2026
  msgstr "Tillåt annonsörer att lägga till nya eller redigera sina annonser."
2027
 
2028
- #: dashboard/settings/advertisers.php:19
2029
  msgid ""
2030
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2031
  "be enabled, too."
2032
  msgstr ""
2033
 
2034
- #: dashboard/settings/advertisers.php:23
2035
  msgid "Advertiser role"
2036
  msgstr "Annonsören role"
2037
 
2038
- #: dashboard/settings/advertisers.php:25
2039
  msgid "Create a seperate user role for your advertisers."
2040
  msgstr ""
2041
 
2042
- #: dashboard/settings/advertisers.php:26
2043
  msgid ""
2044
  "Don't forget to give these users access to their advertiser dashboard via "
2045
  "the Roles tab."
2046
  msgstr ""
2047
 
2048
- #: dashboard/settings/general.php:1
2049
  msgid "General Settings"
2050
  msgstr ""
2051
 
2052
- #: dashboard/settings/general.php:2
2053
  msgid "General settings for AdRotate."
2054
  msgstr ""
2055
 
2056
- #: dashboard/settings/general.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2057
  #, fuzzy
2058
  msgid "Load jQuery"
2059
  msgstr ""
2060
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
2061
  "om andra plugins eller teman redan läsa här."
2062
 
2063
- #: dashboard/settings/general.php:6
2064
  msgid ""
2065
- "jQuery is required for dynamic groups, ad block detection and some other "
2066
- "features. Enable this if your theme does not load jQuery."
2067
  msgstr ""
2068
 
2069
- #: dashboard/settings/general.php:9
2070
  msgid "Load scripts in footer?"
2071
  msgstr ""
2072
 
2073
- #: dashboard/settings/general.php:10
2074
  msgid ""
2075
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2076
  "site."
2077
  msgstr ""
2078
 
2079
- #: dashboard/settings/general.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2080
  msgid "Banner Folder"
2081
  msgstr "Banner Folder"
2082
 
2083
- #: dashboard/settings/general.php:15
2084
  #, fuzzy
2085
  msgid "Set a location where your banner images will be stored."
2086
  msgstr ""
2087
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2088
  "banners /)."
2089
 
2090
- #: dashboard/settings/general.php:15 dashboard/settings/statistics.php:18
2091
- #: dashboard/settings/statistics.php:20 dashboard/settings/statistics.php:32
2092
- #: dashboard/settings/statistics.php:38
2093
- msgid "Available in AdRotate Pro!"
2094
- msgstr ""
2095
-
2096
- #: dashboard/settings/general.php:18
2097
  #, fuzzy
2098
  msgid "Location"
2099
  msgstr "Geo Location"
2100
 
2101
- #: dashboard/settings/general.php:20
2102
  #, fuzzy
2103
  msgid "(Default: wp-content/banners/)."
2104
  msgstr ""
2105
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2106
  "banners /)."
2107
 
2108
- #: dashboard/settings/general.php:21
2109
  msgid ""
2110
  "To try and trick ad blockers you could set the folder to something crazy "
2111
  "like:"
@@ -2113,7 +2113,7 @@ msgstr ""
2113
  "Att försöka lura annons blockerare som du kan ställa in mappen till något "
2114
  "galet som:"
2115
 
2116
- #: dashboard/settings/general.php:22
2117
  msgid ""
2118
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2119
  "will show errors when the folder is missing."
@@ -2121,131 +2121,127 @@ msgstr ""
2121
  "Denna mapp kommer inte automatiskt att skapas om den inte existerar. "
2122
  "AdRotate visar fel när mappen saknas."
2123
 
2124
- #: dashboard/settings/general.php:27
2125
  #, fuzzy
2126
  msgid "Bot filter"
2127
  msgstr "User-Agent Filter"
2128
 
2129
- #: dashboard/settings/general.php:28
2130
  msgid "The bot filter is used for the AdRotate stats tracker."
2131
  msgstr ""
2132
 
2133
- #: dashboard/settings/general.php:31
2134
  msgid "User-Agent Filter"
2135
  msgstr "User-Agent Filter"
2136
 
2137
- #: dashboard/settings/general.php:34
2138
  msgid ""
2139
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2140
  msgstr ""
2141
 
2142
- #: dashboard/settings/general.php:35
2143
  msgid ""
2144
  "Keep in mind that this might give false positives. The word 'fire' also "
2145
  "matches 'firefox', but not vice-versa. So be careful!"
2146
  msgstr ""
2147
 
2148
- #: dashboard/settings/general.php:36
2149
  msgid ""
2150
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2151
  "characters are stripped out."
2152
  msgstr ""
2153
 
2154
- #: dashboard/settings/general.php:37
2155
  msgid ""
2156
  "Additionally to the list specified here, empty User-Agents are blocked as "
2157
  "well."
2158
  msgstr ""
2159
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
2160
 
2161
- #: dashboard/settings/general.php:37
2162
  msgid "Learn more about"
2163
  msgstr "Läs mer om"
2164
 
2165
- #: dashboard/settings/general.php:37
2166
  msgid "user-agents"
2167
  msgstr "user-agents"
2168
 
2169
- #: dashboard/settings/geotargeting.php:1
2170
  msgid "Geo Targeting - Available in AdRotate Pro"
2171
  msgstr ""
2172
 
2173
- #: dashboard/settings/geotargeting.php:2
2174
  msgid "Target certain areas in the world for better advertising oppurtunities."
2175
  msgstr ""
2176
 
2177
- #: dashboard/settings/geotargeting.php:5
2178
  msgid "Which Geo Service"
2179
  msgstr ""
2180
 
2181
- #: dashboard/settings/geotargeting.php:15
2182
- msgid "No Geo Targeting is available for your adverts."
2183
- msgstr ""
2184
-
2185
- #: dashboard/settings/geotargeting.php:16
2186
  msgid ""
2187
  "The most complete and accurate geo targeting you can get for only $20 USD "
2188
  "per 50000 lookups."
2189
  msgstr ""
2190
 
2191
- #: dashboard/settings/geotargeting.php:18
2192
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2193
  msgstr ""
2194
 
2195
- #: dashboard/settings/geotargeting.php:20
2196
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2197
  msgstr ""
2198
 
2199
- #: dashboard/settings/geotargeting.php:26
2200
  msgid "Geo Cookie Lifespan"
2201
  msgstr ""
2202
 
2203
- #: dashboard/settings/geotargeting.php:35
2204
  msgid "Hours."
2205
  msgstr ""
2206
 
2207
- #: dashboard/settings/geotargeting.php:36
2208
  msgid ""
2209
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2210
  "cookie last? A longer period is less accurate for mobile users but may "
2211
  "reduce the usage of your lookups drastically."
2212
  msgstr ""
2213
 
2214
- #: dashboard/settings/geotargeting.php:42
2215
  msgid "MaxMind City/Country"
2216
  msgstr ""
2217
 
2218
- #: dashboard/settings/geotargeting.php:45
2219
  msgid "Username/Email"
2220
  msgstr ""
2221
 
2222
- #: dashboard/settings/geotargeting.php:49
2223
  msgid "Password/License Key"
2224
  msgstr ""
2225
 
2226
- #: dashboard/settings/maintenance.php:1
2227
  msgid "Maintenance"
2228
  msgstr "Underhåll"
2229
 
2230
- #: dashboard/settings/maintenance.php:2
2231
  msgid ""
2232
  "Use these functions when you notice your database is slow, unresponsive and "
2233
  "sluggish."
2234
  msgstr ""
2235
 
2236
- #: dashboard/settings/maintenance.php:5 dashboard/settings/maintenance.php:7
2237
  msgid "Optimize Database"
2238
  msgstr "Optimera Databas"
2239
 
2240
- #: dashboard/settings/maintenance.php:7
2241
  msgid "You are about to optimize the AdRotate database."
2242
  msgstr "Du håller på att optimera AdRotate databasen."
2243
 
2244
- #: dashboard/settings/maintenance.php:7
2245
  msgid "Did you make a backup of your database?"
2246
  msgstr "Har du gjort en säkerhetskopia av din databas?"
2247
 
2248
- #: dashboard/settings/maintenance.php:7
2249
  msgid ""
2250
  "This may take a moment and may cause your website to respond slow "
2251
  "temporarily!"
@@ -2253,11 +2249,11 @@ msgstr ""
2253
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2254
  "tillfälligt!"
2255
 
2256
- #: dashboard/settings/maintenance.php:8
2257
  msgid "Cleans up overhead data in the AdRotate tables."
2258
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
2259
 
2260
- #: dashboard/settings/maintenance.php:9
2261
  msgid ""
2262
  "Overhead data is accumulated garbage resulting from many changes you've "
2263
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2265,11 +2261,11 @@ msgstr ""
2265
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
2266
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
2267
 
2268
- #: dashboard/settings/maintenance.php:13 dashboard/settings/maintenance.php:15
2269
  msgid "Clean-up Database"
2270
  msgstr "Städa upp Databas"
2271
 
2272
- #: dashboard/settings/maintenance.php:15
2273
  msgid ""
2274
  "You are about to clean up your database. This may delete expired schedules "
2275
  "and older statistics."
@@ -2277,55 +2273,55 @@ msgstr ""
2277
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
2278
  "och äldre statistik."
2279
 
2280
- #: dashboard/settings/maintenance.php:15
2281
  msgid "Are you sure you want to continue?"
2282
  msgstr "Är du säker på att du vill fortsätta?"
2283
 
2284
- #: dashboard/settings/maintenance.php:15 dashboard/settings/maintenance.php:23
2285
  #, fuzzy
2286
  msgid "This might take a while and may slow down your site during this action!"
2287
  msgstr ""
2288
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2289
  "tillfälligt!"
2290
 
2291
- #: dashboard/settings/maintenance.php:16
2292
  msgid "Delete stats older than 356 days (Optional)."
2293
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2294
 
2295
- #: dashboard/settings/maintenance.php:17
2296
  msgid ""
2297
  "AdRotate creates empty records when you start making ads, groups or "
2298
  "schedules. In rare occasions these records are faulty."
2299
  msgstr ""
2300
 
2301
- #: dashboard/settings/maintenance.php:17
2302
  msgid ""
2303
  "If you made an ad, group or schedule that does not save when you make it use "
2304
  "this button to delete those empty records."
2305
  msgstr ""
2306
 
2307
- #: dashboard/settings/maintenance.php:17
2308
  msgid ""
2309
  "Additionally you can clean up old schedules and/or statistics. This will "
2310
  "improve the speed of your site."
2311
  msgstr ""
2312
 
2313
- #: dashboard/settings/maintenance.php:21
2314
  #, fuzzy
2315
  msgid "Re-evaluate Ads"
2316
  msgstr "Omvärdera annonser"
2317
 
2318
- #: dashboard/settings/maintenance.php:23
2319
  #, fuzzy
2320
  msgid "Re-evaluate all ads"
2321
  msgstr "Omvärdera alla annonser"
2322
 
2323
- #: dashboard/settings/maintenance.php:23
2324
  #, fuzzy
2325
  msgid "You are about to check all ads for errors."
2326
  msgstr "Du håller på att kolla alla annonser för fel."
2327
 
2328
- #: dashboard/settings/maintenance.php:24
2329
  #, fuzzy
2330
  msgid ""
2331
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -2334,7 +2330,7 @@ msgstr ""
2334
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
2335
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
2336
 
2337
- #: dashboard/settings/maintenance.php:28
2338
  msgid ""
2339
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2340
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2347,11 +2343,11 @@ msgid ""
2347
  "is not a valid point in any case."
2348
  msgstr ""
2349
 
2350
- #: dashboard/settings/maintenance.php:30
2351
  msgid "Troubleshooting"
2352
  msgstr "Felsökning"
2353
 
2354
- #: dashboard/settings/maintenance.php:31
2355
  msgid ""
2356
  "The below options are not meant for normal use and are only there for "
2357
  "developers to review saved settings or how ads are selected. These can be "
@@ -2359,100 +2355,95 @@ msgid ""
2359
  "SHOULD BE LEFT UNCHECKED!!"
2360
  msgstr ""
2361
 
2362
- #: dashboard/settings/maintenance.php:34
2363
  msgid "Developer Debug"
2364
  msgstr "Utvecklar Debug"
2365
 
2366
- #: dashboard/settings/maintenance.php:36
2367
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2368
  msgstr ""
2369
 
2370
- #: dashboard/settings/maintenance.php:37
2371
  msgid "View advert specs and (some) stats in the dashboard."
2372
  msgstr ""
2373
 
2374
- #: dashboard/settings/maintenance.php:38
2375
  #, fuzzy
2376
  msgid ""
2377
  "Disable timers for clicks and impressions and enable a alert window for "
2378
  "clicktracking."
2379
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2380
 
2381
- #: dashboard/settings/maintenance.php:39
2382
  msgid "Temporarily disable encryption on the redirect url."
2383
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
2384
 
2385
- #: dashboard/settings/maintenance.php:44
2386
  msgid "Status and Versions"
2387
  msgstr ""
2388
 
2389
- #: dashboard/settings/maintenance.php:47
2390
  msgid "Current version:"
2391
  msgstr "Aktuell version:"
2392
 
2393
- #: dashboard/settings/maintenance.php:48
2394
  msgid "Previous version:"
2395
  msgstr "Tidigare version:"
2396
 
2397
- #: dashboard/settings/maintenance.php:51
2398
  msgid "Current database version:"
2399
  msgstr "Nuvarande databasversion:"
2400
 
2401
- #: dashboard/settings/maintenance.php:52
2402
  msgid "Previous database version:"
2403
  msgstr "Tidigare databasversion:"
2404
 
2405
- #: dashboard/settings/maintenance.php:55
2406
  msgid "Current status of adverts"
2407
  msgstr "Aktuell status för annonser"
2408
 
2409
- #: dashboard/settings/maintenance.php:56
2410
  msgid "Normal"
2411
  msgstr "Normal"
2412
 
2413
- #: dashboard/settings/maintenance.php:56
2414
  msgid "Error"
2415
  msgstr "Error"
2416
 
2417
- #: dashboard/settings/maintenance.php:56
2418
  msgid "Expired"
2419
  msgstr "Utgånget"
2420
 
2421
- #: dashboard/settings/maintenance.php:56
2422
  msgid "Expires Soon"
2423
  msgstr "Utgår snart"
2424
 
2425
- #: dashboard/settings/maintenance.php:56
2426
  msgid "Unknown"
2427
  msgstr ""
2428
 
2429
- #: dashboard/settings/maintenance.php:59
2430
  #, fuzzy
2431
  msgid "Ad evaluation next run:"
2432
  msgstr "Annons Meddelanden nästa körning:"
2433
 
2434
- #: dashboard/settings/maintenance.php:60 dashboard/settings/maintenance.php:64
2435
- #: dashboard/settings/maintenance.php:68
2436
  msgid "Not scheduled!"
2437
  msgstr "Inte planerat!"
2438
 
2439
- #: dashboard/settings/maintenance.php:63
2440
- msgid "Ad Notifications next run:"
2441
- msgstr ""
2442
-
2443
- #: dashboard/settings/maintenance.php:67
2444
  msgid "Clean Trackerdata next run:"
2445
  msgstr "Rensa Trackerdata nästa körning:"
2446
 
2447
- #: dashboard/settings/misc.php:1
2448
  msgid "Miscellaneous"
2449
  msgstr "Diverse"
2450
 
2451
- #: dashboard/settings/misc.php:4
2452
  msgid "Widget alignment"
2453
  msgstr "widget inriktnings"
2454
 
2455
- #: dashboard/settings/misc.php:5
2456
  msgid ""
2457
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2458
  "not always help!)"
@@ -2460,11 +2451,11 @@ msgstr ""
2460
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
2461
  "alltid hjälper!)"
2462
 
2463
- #: dashboard/settings/misc.php:8
2464
  msgid "Widget padding"
2465
  msgstr "widget padding"
2466
 
2467
- #: dashboard/settings/misc.php:9
2468
  msgid ""
2469
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2470
  "not always work!)"
@@ -2472,12 +2463,12 @@ msgstr ""
2472
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
2473
  "widgets. (Fungerar inte alltid!)"
2474
 
2475
- #: dashboard/settings/misc.php:13
2476
  #, fuzzy
2477
  msgid "NOTICE:"
2478
  msgstr "Meddelande"
2479
 
2480
- #: dashboard/settings/misc.php:14
2481
  msgid ""
2482
  "You have enabled W3 Total Caching support but not defined the security hash. "
2483
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -2485,15 +2476,15 @@ msgid ""
2485
  "needs to be enabled in W3 Total Cache as well too."
2486
  msgstr ""
2487
 
2488
- #: dashboard/settings/misc.php:18
2489
  msgid "W3 Total Caching"
2490
  msgstr "W3 Total Caching"
2491
 
2492
- #: dashboard/settings/misc.php:19
2493
  msgid "Check this box if you use W3 Total Caching on your site."
2494
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
2495
 
2496
- #: dashboard/settings/misc.php:23
2497
  msgid ""
2498
  "It may take a while for the ad to start rotating. The caching plugin needs "
2499
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2502,7 +2493,7 @@ msgstr ""
2502
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
2503
  "manuellt."
2504
 
2505
- #: dashboard/settings/misc.php:23
2506
  msgid ""
2507
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2508
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2510,45 +2501,45 @@ msgstr ""
2510
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
2511
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
2512
 
2513
- #: dashboard/settings/notifications.php:1
2514
  msgid "Notifications - Available in AdRotate Pro"
2515
  msgstr ""
2516
 
2517
- #: dashboard/settings/notifications.php:2
2518
  #, fuzzy
2519
  msgid "Set up who gets notifications if ads need your attention."
2520
  msgstr "Annonser som behöver uppmärksammas"
2521
 
2522
- #: dashboard/settings/notifications.php:5
2523
  msgid "Delivery method"
2524
  msgstr ""
2525
 
2526
- #: dashboard/settings/notifications.php:7
2527
  #, fuzzy
2528
  msgid "Email message."
2529
  msgstr "E-post eller Remote sida:"
2530
 
2531
- #: dashboard/settings/notifications.php:8
2532
  msgid "Push notifications to your smartphone."
2533
  msgstr ""
2534
 
2535
- #: dashboard/settings/notifications.php:9
2536
  msgid ""
2537
  "Push notifications are delivered through Pushover, a notification service "
2538
  "for Android and iOS"
2539
  msgstr ""
2540
 
2541
- #: dashboard/settings/notifications.php:9
2542
  msgid ""
2543
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2544
  "information can be found on the pushover website;"
2545
  msgstr ""
2546
 
2547
- #: dashboard/settings/notifications.php:13
2548
  msgid "Test notification"
2549
  msgstr ""
2550
 
2551
- #: dashboard/settings/notifications.php:15
2552
  #, fuzzy
2553
  msgid ""
2554
  "This sends a test notification. Before you test, save the options first!"
@@ -2556,43 +2547,43 @@ msgstr ""
2556
  "Detta skickar en testanmälan. Innan du testar, till exempel med en ny e-"
2557
  "postadress. Spara alternativen först!"
2558
 
2559
- #: dashboard/settings/notifications.php:20
2560
  #, fuzzy
2561
  msgid "Dashboard Notifications"
2562
  msgstr ""
2563
  "Registrera ditt exemplar av AdRotate. Detta kommer att göra det möjligt för "
2564
  "ticket och uppdatera underrättelser direkt från din dashboard."
2565
 
2566
- #: dashboard/settings/notifications.php:21
2567
  msgid "These show to every administrator who can edit adverts."
2568
  msgstr ""
2569
 
2570
- #: dashboard/settings/notifications.php:24
2571
  msgid "Notification banners"
2572
  msgstr ""
2573
 
2574
- #: dashboard/settings/notifications.php:25
2575
  msgid "Disable dashboard notifications."
2576
  msgstr ""
2577
 
2578
- #: dashboard/settings/notifications.php:29
2579
  msgid "Email Notifications"
2580
  msgstr "E-postmeddelanden"
2581
 
2582
- #: dashboard/settings/notifications.php:30
2583
  #, fuzzy
2584
  msgid "Set up who gets notification emails."
2585
  msgstr "Annonser som behöver uppmärksammas"
2586
 
2587
- #: dashboard/settings/notifications.php:33
2588
- #: dashboard/settings/notifications.php:53
2589
  #, fuzzy
2590
  msgid "Publishers"
2591
  msgstr ""
2592
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
2593
  "endast till förlag."
2594
 
2595
- #: dashboard/settings/notifications.php:36
2596
  msgid ""
2597
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2598
  "list to a minimum!"
@@ -2600,7 +2591,7 @@ msgstr ""
2600
  "En kommaseparerad lista med e-postadresser. Maximalt av 5 adresser. Spara "
2601
  "denna lista till ett minimum!"
2602
 
2603
- #: dashboard/settings/notifications.php:37
2604
  #, fuzzy
2605
  msgid ""
2606
  "Messages are sent once every 24 hours when needed. If this field is empty no "
@@ -2609,240 +2600,272 @@ msgstr ""
2609
  "Meddelanden skickas en gång per 24 timmar när det behövs. Om detta fält är "
2610
  "tomt funktionen avaktiveras."
2611
 
2612
- #: dashboard/settings/notifications.php:41
2613
  msgid "Advertisers"
2614
  msgstr "Annonsörer"
2615
 
2616
- #: dashboard/settings/notifications.php:44
2617
  #, fuzzy
2618
  msgid ""
2619
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2620
  "This field may not be empty!"
2621
  msgstr "Max 2 adresser. Kommaseparerad. Detta fält kan inte vara tomt!"
2622
 
2623
- #: dashboard/settings/notifications.php:49
2624
  #, fuzzy
2625
  msgid "Push Notifications"
2626
  msgstr "Meddelanden"
2627
 
2628
- #: dashboard/settings/notifications.php:50
2629
  msgid ""
2630
  "Receive information about what is happening with your AdRotate setup on your "
2631
  "smartphone via Pushover."
2632
  msgstr ""
2633
 
2634
- #: dashboard/settings/notifications.php:55
2635
  msgid "When you are running out of Geo Targeting Lookups."
2636
  msgstr ""
2637
 
2638
- #: dashboard/settings/notifications.php:56
2639
  msgid "Daily digest of any advert status other than normal."
2640
  msgstr ""
2641
 
2642
- #: dashboard/settings/notifications.php:57
2643
  msgid "Any advertiser saving an advert in your moderation queue."
2644
  msgstr ""
2645
 
2646
- #: dashboard/settings/notifications.php:58
2647
  #, fuzzy
2648
  msgid "A moderator approved an advert from the moderation queue."
2649
  msgstr "Godkänn / avvisa annonser i moderation Queue"
2650
 
2651
- #: dashboard/settings/notifications.php:59
2652
  #, fuzzy
2653
  msgid "A moderator rejected an advert from the moderation queue."
2654
  msgstr "Godkänn / avvisa annonser i moderation Queue"
2655
 
2656
- #: dashboard/settings/notifications.php:59
2657
  msgid ""
2658
  "If you have a lot of activity with many advertisers adding/changing adverts "
2659
  "you may get a lot of messages!"
2660
  msgstr ""
2661
 
2662
- #: dashboard/settings/notifications.php:64
2663
  #, fuzzy
2664
  msgid "User Key"
2665
  msgstr "Licensnyckel"
2666
 
2667
- #: dashboard/settings/notifications.php:66
2668
  msgid "Get your user token"
2669
  msgstr ""
2670
 
2671
- #: dashboard/settings/notifications.php:66
2672
- #: dashboard/settings/notifications.php:72
2673
  msgid "here"
2674
  msgstr ""
2675
 
2676
- #: dashboard/settings/notifications.php:70
2677
  msgid "Api Token"
2678
  msgstr ""
2679
 
2680
- #: dashboard/settings/notifications.php:72
2681
  msgid "Create your"
2682
  msgstr ""
2683
 
2684
- #: dashboard/settings/notifications.php:72
2685
  msgid "App"
2686
  msgstr ""
2687
 
2688
- #: dashboard/settings/notifications.php:72
2689
  msgid "and get your API token"
2690
  msgstr ""
2691
 
2692
- #: dashboard/settings/roles.php:1
2693
  msgid "Roles"
2694
  msgstr ""
2695
 
2696
- #: dashboard/settings/roles.php:2
2697
  msgid "Who has access to what?"
2698
  msgstr ""
2699
 
2700
- #: dashboard/settings/roles.php:5
2701
  msgid "Manage/Add/Edit adverts"
2702
  msgstr "Hantera / Lägg till / redigera annonser"
2703
 
2704
- #: dashboard/settings/roles.php:9
2705
  msgid "Role to see and add/edit ads."
2706
  msgstr "Role för att se och lägga till / redigera annonser."
2707
 
2708
- #: dashboard/settings/roles.php:13
2709
  msgid "Delete/Reset adverts"
2710
  msgstr "Radera / Reset annonser"
2711
 
2712
- #: dashboard/settings/roles.php:17
2713
  msgid "Role to delete ads and reset stats."
2714
  msgstr "Role att ta bort annonser och återställ statistik."
2715
 
2716
- #: dashboard/settings/roles.php:21
2717
  msgid "Manage/Add/Edit groups"
2718
  msgstr "Hantera / Lägg till / Redigera grupper"
2719
 
2720
- #: dashboard/settings/roles.php:25
2721
  msgid "Role to see and add/edit groups."
2722
  msgstr "Role för att se och lägga till / redigera grupp."
2723
 
2724
- #: dashboard/settings/roles.php:29
2725
  msgid "Delete groups"
2726
  msgstr "Ta bort grupper"
2727
 
2728
- #: dashboard/settings/roles.php:33
2729
  msgid "Role to delete groups."
2730
  msgstr "Role att ta bort grupper."
2731
 
2732
- #: dashboard/settings/statistics.php:2
2733
  msgid "Track statistics for your adverts."
2734
  msgstr ""
2735
 
2736
- #: dashboard/settings/statistics.php:5
2737
  msgid "How to track stats"
2738
  msgstr ""
2739
 
2740
- #: dashboard/settings/statistics.php:14
2741
- msgid "No impressions and clicks can be recorded for any of your adverts."
2742
- msgstr ""
2743
-
2744
- #: dashboard/settings/statistics.php:15
2745
  msgid "Tracks impressions and clicks internally"
2746
  msgstr ""
2747
 
2748
- #: dashboard/settings/statistics.php:15 dashboard/settings/statistics.php:17
2749
- #: dashboard/settings/statistics.php:19
2750
  msgid "manual"
2751
  msgstr ""
2752
 
2753
- #: dashboard/settings/statistics.php:16
2754
  msgid ""
2755
  "Click and Impression recording, Click and impression limits, impression "
2756
- "spread for schedules, local stats display."
 
2757
  msgstr ""
2758
 
2759
- #: dashboard/settings/statistics.php:17
 
 
 
 
2760
  msgid ""
2761
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2762
  "attributes"
2763
  msgstr ""
2764
 
2765
- #: dashboard/settings/statistics.php:18
2766
  msgid ""
2767
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2768
  "Contents."
2769
  msgstr ""
2770
 
2771
- #: dashboard/settings/statistics.php:19
2772
  msgid ""
2773
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2774
  "uses onClick() and onload() in adverts"
2775
  msgstr ""
2776
 
2777
- #: dashboard/settings/statistics.php:20
2778
  msgid ""
2779
- "Click and Impression recording via Cookie, stats are displayed in Events."
 
2780
  msgstr ""
2781
 
2782
- #: dashboard/settings/statistics.php:26
2783
  msgid "Internal Tracker"
2784
  msgstr ""
2785
 
2786
- #: dashboard/settings/statistics.php:27
2787
  msgid ""
2788
  "The settings below are for the internal tracker and have no effect when "
2789
  "using Piwik/Google Analytics."
2790
  msgstr ""
2791
 
2792
- #: dashboard/settings/statistics.php:30
2793
  #, fuzzy
2794
  msgid "Logged in impressions"
2795
  msgstr "Spåra visningar från inloggade användare (rekommenderas)."
2796
 
2797
- #: dashboard/settings/statistics.php:32
2798
  msgid "Track impressions from logged in users."
2799
  msgstr ""
2800
 
2801
- #: dashboard/settings/statistics.php:36
2802
  #, fuzzy
2803
  msgid "Logged in clicks"
2804
  msgstr "Spår klick från inloggade användare."
2805
 
2806
- #: dashboard/settings/statistics.php:38
2807
  msgid "Track clicks from logged in users."
2808
  msgstr "Spår klick från inloggade användare."
2809
 
2810
- #: dashboard/settings/statistics.php:42
2811
- msgid "Impressions timer"
2812
- msgstr "Intryck timer"
2813
 
2814
- #: dashboard/settings/statistics.php:44 dashboard/settings/statistics.php:51
2815
  msgid "Seconds."
2816
  msgstr "Sekunder."
2817
 
2818
- #: dashboard/settings/statistics.php:45
2819
  #, fuzzy
2820
  msgid "Default: 60."
2821
  msgstr "Default"
2822
 
2823
- #: dashboard/settings/statistics.php:45
2824
  #, fuzzy
2825
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2826
  msgstr ""
2827
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2828
 
2829
- #: dashboard/settings/statistics.php:49
2830
- #, fuzzy
2831
- msgid "Clicks timer"
2832
- msgstr "Intryck timer"
2833
 
2834
- #: dashboard/settings/statistics.php:52
2835
  #, fuzzy
2836
  msgid "Default: 86400."
2837
  msgstr "Default"
2838
 
2839
- #: dashboard/settings/statistics.php:52
2840
  #, fuzzy
2841
  msgid ""
2842
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2843
  msgstr ""
2844
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2845
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2846
  #, fuzzy
2847
  #~ msgid "Learn More"
2848
  #~ msgstr "Läs mer om"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-11 01:37+0200\n"
6
+ "PO-Revision-Date: 2015-09-11 01:37+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
240
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:78
241
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:88
242
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:90
243
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:97 dashboard/info.php:98
244
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:109
245
+ #: dashboard/info.php:110 dashboard/info.php:111 dashboard/info.php:112
246
+ #: dashboard/settings/geotargeting.php:26
247
  #, fuzzy
248
  msgid "Buy now"
249
  msgstr "Köp nu"
343
  msgid "on WordPress.org to help AdRotate grow in a positive way"
344
  msgstr ""
345
 
346
+ #: adrotate-output.php:887
347
  msgid "Available in AdRotate Pro"
348
  msgstr "Tillgänglig i AdRotate Pro"
349
 
361
  msgid "Learn more"
362
  msgstr "Läs mer om"
363
 
364
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
365
+ #: dashboard/publisher/adverts-edit.php:240
366
  msgid "January"
367
  msgstr "Januari"
368
 
369
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
370
+ #: dashboard/publisher/adverts-edit.php:241
371
  msgid "February"
372
  msgstr "Februari"
373
 
374
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
375
+ #: dashboard/publisher/adverts-edit.php:242
376
  msgid "March"
377
  msgstr "Mars"
378
 
379
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
380
+ #: dashboard/publisher/adverts-edit.php:243
381
  msgid "April"
382
  msgstr "April"
383
 
384
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
385
+ #: dashboard/publisher/adverts-edit.php:244
386
  msgid "May"
387
  msgstr "Maj"
388
 
389
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
390
+ #: dashboard/publisher/adverts-edit.php:245
391
  msgid "June"
392
  msgstr "Juni"
393
 
394
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
395
+ #: dashboard/publisher/adverts-edit.php:246
396
  msgid "July"
397
  msgstr "Juli"
398
 
399
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
400
+ #: dashboard/publisher/adverts-edit.php:247
401
  msgid "August"
402
  msgstr "Augusti"
403
 
404
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
405
+ #: dashboard/publisher/adverts-edit.php:248
406
  msgid "September"
407
  msgstr "September"
408
 
409
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
410
+ #: dashboard/publisher/adverts-edit.php:249
411
  msgid "October"
412
  msgstr "Oktober"
413
 
414
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
415
+ #: dashboard/publisher/adverts-edit.php:250
416
  msgid "November"
417
  msgstr "November"
418
 
419
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
420
+ #: dashboard/publisher/adverts-edit.php:251
421
  msgid "December"
422
  msgstr "December"
423
 
534
  msgstr "Grupp Hantering"
535
 
536
  #: adrotate.php:345 dashboard/publisher/adverts-main.php:87
537
+ #: dashboard/publisher/groups-main.php:70
538
  msgid "Report"
539
  msgstr "Rapport"
540
 
550
  "AdRotate Pro."
551
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
552
 
553
+ #: adrotate.php:407 adrotate.php:494 dashboard/publisher/adverts-edit.php:187
554
  #: dashboard/publisher/adverts-main.php:114
555
  #: dashboard/publisher/groups-edit.php:75
556
+ #: dashboard/publisher/groups-main.php:89
557
  #, fuzzy
558
  msgid "More information"
559
  msgstr "Mer info"
590
  msgid "End"
591
  msgstr "Avsluta tid (hh: mm):"
592
 
593
+ #: adrotate.php:426 dashboard/publisher/adverts-edit.php:389
594
  #: dashboard/publisher/groups-main.php:34
595
  msgid "Ads"
596
  msgstr "Annonser"
597
 
598
  #: adrotate.php:428
 
 
 
 
599
  msgid "Max Impressions"
600
  msgstr "Max Intryck"
601
 
602
+ #: adrotate.php:429
603
+ msgid "Max Clicks"
604
+ msgstr "Max Klick"
605
+
606
  #: adrotate.php:459
607
  #, fuzzy
608
  msgid "No schedules created yet!"
687
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
688
  msgstr ""
689
 
690
+ #: adrotate.php:501 dashboard/publisher/adverts-edit.php:303
691
  msgid ""
692
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
693
  "filename instead of \".full\" for the various viewports."
694
  msgstr ""
695
 
696
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
697
  #: dashboard/publisher/groups-edit.php:312
698
  #: dashboard/publisher/groups-edit.php:320
699
  msgid "Example:"
700
  msgstr "Exempel:"
701
 
702
+ #: adrotate.php:502 dashboard/publisher/adverts-edit.php:304
703
  msgid ""
704
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
705
  "for different viewports."
790
  "forum. Get a solution (usually) within a day."
791
  msgstr ""
792
 
793
+ #: dashboard/adrotatepro.php:41 dashboard/info.php:119
794
  msgid "AdRotate is brought to you by"
795
  msgstr "AdRotate kommer till dig genom"
796
 
797
+ #: dashboard/adrotatepro.php:45 dashboard/info.php:123
798
  msgid ""
799
+ "Premium plugins for WordPress and WooCommerce. Providing business advise for "
800
+ "starters or people looking for a new direction!"
801
  msgstr ""
802
 
 
 
 
 
803
  #: dashboard/adrotatepro.php:58
804
  msgid "Schedule all campaigns with ease"
805
  msgstr ""
826
  msgstr ""
827
 
828
  #: dashboard/adrotatepro.php:72 dashboard/adrotatepro.php:84
829
+ #: dashboard/info.php:93 dashboard/info.php:105
830
  #, fuzzy
831
  msgid "Buy AdRotate Professional"
832
  msgstr "Köp nu"
833
 
834
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
835
  msgid "Single License"
836
  msgstr ""
837
 
838
+ #: dashboard/adrotatepro.php:76 dashboard/info.php:97
839
  #, fuzzy
840
  msgid "For one WordPress installation."
841
  msgstr "Installation"
842
 
843
  #: dashboard/adrotatepro.php:77 dashboard/adrotatepro.php:89
844
+ #: dashboard/info.php:98 dashboard/info.php:110
845
  #, fuzzy
846
  msgid "Duo License"
847
  msgstr "AdRotate Licens"
848
 
849
+ #: dashboard/adrotatepro.php:77 dashboard/info.php:98
850
  #, fuzzy
851
  msgid "For two WordPress installations."
852
  msgstr "Installation"
853
 
854
  #: dashboard/adrotatepro.php:78 dashboard/adrotatepro.php:90
855
+ #: dashboard/info.php:99 dashboard/info.php:111
856
  #, fuzzy
857
  msgid "Multi License"
858
  msgstr "AdRotate Licens"
859
 
860
+ #: dashboard/adrotatepro.php:78 dashboard/info.php:99
861
  #, fuzzy
862
  msgid " For up to five WordPress installations."
863
  msgstr "Installation"
864
 
865
  #: dashboard/adrotatepro.php:79 dashboard/adrotatepro.php:91
866
+ #: dashboard/info.php:100 dashboard/info.php:112
867
  #, fuzzy
868
  msgid "Developer License"
869
  msgstr "Utvecklar Debug"
870
 
871
+ #: dashboard/adrotatepro.php:79 dashboard/info.php:100
872
  msgid "Unlimited WordPress installations and/or networks."
873
  msgstr ""
874
 
875
  #: dashboard/adrotatepro.php:80 dashboard/adrotatepro.php:93
876
+ #: dashboard/info.php:101 dashboard/info.php:114
877
  msgid "Compare licenses"
878
  msgstr ""
879
 
880
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
881
  msgid "Not sure which license is for you? Compare them..."
882
  msgstr ""
883
 
884
+ #: dashboard/adrotatepro.php:80 dashboard/info.php:101
885
  msgid "All Licenses"
886
  msgstr ""
887
 
888
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
889
  msgid "Lifetime License"
890
  msgstr ""
891
 
892
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:109
893
  msgid "Single installation."
894
  msgstr ""
895
 
896
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:110
897
  msgid "Up to 2 installations."
898
  msgstr ""
899
 
900
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:111
901
  msgid "Up to 10 installations."
902
  msgstr ""
903
 
904
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:112
905
  msgid "Up to 25 installations or multisite networks."
906
  msgstr ""
907
 
908
+ #: dashboard/adrotatepro.php:92 dashboard/info.php:113
909
  msgid ""
910
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
911
  msgstr ""
912
 
913
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
914
  msgid "Not sure which license is for you?"
915
  msgstr ""
916
 
917
+ #: dashboard/adrotatepro.php:93 dashboard/info.php:114
918
  msgid "Compare Licenses"
919
  msgstr ""
920
 
921
+ #: dashboard/info.php:24
922
  msgid "Currently"
923
  msgstr "För närvarande"
924
 
925
+ #: dashboard/info.php:30
926
  msgid "Your setup"
927
  msgstr "Din installation"
928
 
929
+ #: dashboard/info.php:31
930
  msgid "Adverts that need you"
931
  msgstr "Annonser som behöver dig"
932
 
933
+ #: dashboard/info.php:37
934
  msgid "Adverts"
935
  msgstr "Annonser"
936
 
937
+ #: dashboard/info.php:38
938
  msgid "(Almost) Expired"
939
  msgstr "(Nästan) Expired"
940
 
941
+ #: dashboard/info.php:41
942
  msgid "Groups"
943
  msgstr "Grupper"
944
 
945
+ #: dashboard/info.php:42
946
  msgid "Have errors"
947
  msgstr "Har fel"
948
 
949
+ #: dashboard/info.php:48
950
  msgid "Support AdRotate"
951
  msgstr "Support AdRotate"
952
 
953
+ #: dashboard/info.php:55
954
  msgid "Your gift helps ensure the continued development of AdRotate!"
955
  msgstr ""
956
 
957
+ #: dashboard/info.php:55
958
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
959
  msgstr ""
960
 
961
+ #: dashboard/info.php:64
962
  msgid "AdRotate News and Developer Blog"
963
  msgstr "AdRotate Nyheter och Utvecklar Blog"
964
 
965
+ #: dashboard/info.php:86
966
  #, fuzzy
967
  msgid "Get more features with AdRotate Pro"
968
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
969
 
970
+ #: dashboard/info.php:89
971
  msgid ""
972
  "Benefit from extra features to reinforce your income with advertising "
973
  "campaigns. Make the most of your website with the powerful tools AdRotate "
974
  "Pro offers on top of the trusted features included in the free version."
975
  msgstr ""
976
 
977
+ #: dashboard/info.php:89
978
  msgid "Want to know more about"
979
  msgstr ""
980
 
981
+ #: dashboard/info.php:89
982
  msgid "Visit the"
983
  msgstr "Besök"
984
 
985
+ #: dashboard/info.php:89
986
  msgid "website"
987
  msgstr "hemsida"
988
 
 
 
 
 
989
  #: dashboard/publisher/adverts-disabled.php:15
990
  msgid "Disabled Ads"
991
  msgstr "Inaktivera annonser"
992
 
993
  #: dashboard/publisher/adverts-disabled.php:21
994
+ #: dashboard/publisher/adverts-edit.php:175
995
  msgid "Activate"
996
  msgstr "Aktivera"
997
 
1020
 
1021
  #: dashboard/publisher/adverts-disabled.php:38
1022
  #: dashboard/publisher/adverts-report.php:34
 
 
1023
  #: dashboard/publisher/groups-report.php:40
1024
  msgid "Impressions"
1025
  msgstr "Intryck"
1043
  #: dashboard/publisher/adverts-disabled.php:74
1044
  #: dashboard/publisher/adverts-error.php:64
1045
  #: dashboard/publisher/adverts-main.php:87
1046
+ #: dashboard/publisher/groups-main.php:70
1047
  msgid "Edit"
1048
  msgstr "Ändra"
1049
 
1166
  "click to add it."
1167
  msgstr ""
1168
 
1169
+ #: dashboard/publisher/adverts-edit.php:140
1170
+ msgid "Preview"
1171
+ msgstr "Förhandsgranska"
1172
+
1173
+ #: dashboard/publisher/adverts-edit.php:143
1174
+ msgid ""
1175
+ "Note: While this preview is an accurate one, it might look different then it "
1176
+ "does on the website."
1177
+ msgstr ""
1178
+ "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1179
+ "gör på webbplatsen."
1180
+
1181
+ #: dashboard/publisher/adverts-edit.php:144
1182
+ msgid ""
1183
+ "This is because of CSS differences. Your themes CSS file is not active here!"
1184
+ msgstr ""
1185
+ "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1186
+
1187
+ #: dashboard/publisher/adverts-edit.php:149
1188
  msgid "Banner asset"
1189
  msgstr ""
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:152
1192
  msgid "WordPress media:"
1193
  msgstr ""
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:152
1196
  msgid "Select Banner"
1197
  msgstr "Välj Banner"
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:154
1200
  msgid "- OR -"
1201
  msgstr "- ELLER -"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:156
1204
  msgid "Banner folder:"
1205
  msgstr "Banner folder:"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:157
1208
  msgid "No image selected"
1209
  msgstr "Ingen bild vald"
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:161
1212
  msgid "Use %image% in the adcode instead of the file path."
1213
  msgstr ""
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:161
1216
  msgid ""
1217
  "Use either the text field or the dropdown. If the textfield has content that "
1218
  "field has priority."
1220
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1221
  "området har företräde."
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:166
1224
+ #: dashboard/settings/statistics.php:12
1225
  msgid "Statistics"
1226
  msgstr "Statistik"
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:168
1229
  msgid "Enable click and impression tracking for this advert."
1230
  msgstr ""
1231
 
1232
+ #: dashboard/publisher/adverts-edit.php:169
1233
  msgid ""
1234
  "Note: Clicktracking does not work for Javascript adverts such as those "
1235
+ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1236
+ "always supported."
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:179
1240
  msgid "Yes, this ad will be used"
1241
  msgstr "Ja, kommer denna annons att användas"
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:180
1244
  msgid "No, do not show this ad anywhere"
1245
  msgstr "Nej, inte visa denna annons någonstans"
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:187
1248
  #: dashboard/publisher/adverts-main.php:114
1249
  #: dashboard/publisher/groups-edit.php:75
1250
+ #: dashboard/publisher/groups-main.php:89
1251
  #, fuzzy
1252
  msgid "Get more features with AdRotate Pro."
1253
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:190
1256
+ #: dashboard/publisher/adverts-edit.php:290
1257
+ #: dashboard/publisher/adverts-edit.php:378
1258
+ #: dashboard/publisher/adverts-edit.php:419
1259
  msgid "Save Advert"
1260
  msgstr "Spara annons"
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:191
1263
+ #: dashboard/publisher/adverts-edit.php:291
1264
+ #: dashboard/publisher/adverts-edit.php:379
1265
+ #: dashboard/publisher/adverts-edit.php:420
1266
  #: dashboard/publisher/groups-edit.php:154
1267
  #: dashboard/publisher/groups-edit.php:301
1268
  #: dashboard/publisher/groups-edit.php:393
1269
  msgid "Cancel"
1270
  msgstr "Avbryt"
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:194
1273
+ #: dashboard/publisher/adverts-edit.php:361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1274
  #: dashboard/publisher/groups-edit.php:136
1275
  #: dashboard/publisher/groups-edit.php:283
1276
  msgid "Usage"
1277
  msgstr "Användning"
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:198
1280
+ #: dashboard/publisher/adverts-edit.php:365
1281
  #: dashboard/publisher/groups-edit.php:140
1282
  #: dashboard/publisher/groups-edit.php:287
1283
  msgid "Widget"
1284
  msgstr ""
1285
 
1286
+ #: dashboard/publisher/adverts-edit.php:199
1287
+ #: dashboard/publisher/adverts-edit.php:366
1288
  msgid ""
1289
  "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1290
  "and enter ID"
1291
  msgstr ""
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:202
1294
+ #: dashboard/publisher/adverts-edit.php:369
1295
  #: dashboard/publisher/groups-edit.php:144
1296
  #: dashboard/publisher/groups-edit.php:291
1297
  msgid "In a post or page"
1298
  msgstr ""
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:204
1301
+ #: dashboard/publisher/adverts-edit.php:371
1302
  #: dashboard/publisher/groups-edit.php:146
1303
  #: dashboard/publisher/groups-edit.php:293
1304
  msgid "Directly in a theme"
1305
  msgstr ""
1306
 
1307
+ #: dashboard/publisher/adverts-edit.php:210
1308
  msgid "Schedule your advert"
1309
  msgstr ""
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:214
1312
  msgid "Start date (day/month/year)"
1313
  msgstr ""
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:235
1316
  msgid "End date (day/month/year)"
1317
  msgstr ""
1318
 
1319
+ #: dashboard/publisher/adverts-edit.php:258
1320
  msgid "Start time (hh:mm)"
1321
  msgstr ""
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:265
1324
  msgid "End time (hh:mm)"
1325
  msgstr ""
1326
 
1327
+ #: dashboard/publisher/adverts-edit.php:275
1328
  msgid "Maximum Clicks"
1329
  msgstr ""
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:276
1332
+ #: dashboard/publisher/adverts-edit.php:278
1333
  msgid "Leave empty or 0 to skip this."
1334
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1335
 
1336
+ #: dashboard/publisher/adverts-edit.php:277
1337
  msgid "Maximum Impressions"
1338
  msgstr ""
1339
 
1340
+ #: dashboard/publisher/adverts-edit.php:282
1341
  msgid "Important"
1342
  msgstr ""
1343
 
1344
+ #: dashboard/publisher/adverts-edit.php:283
1345
  msgid ""
1346
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1347
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1348
  "14:00 hours. 6AM is 6:00 hours."
1349
  msgstr ""
1350
 
1351
+ #: dashboard/publisher/adverts-edit.php:287
1352
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1353
  msgstr ""
1354
 
1355
+ #: dashboard/publisher/adverts-edit.php:287
1356
+ #: dashboard/publisher/adverts-edit.php:315
1357
+ #: dashboard/publisher/adverts-edit.php:359
1358
  #: dashboard/publisher/groups-edit.php:200
1359
  #, fuzzy
1360
  msgid "Upgrade today"
1361
  msgstr "i dag"
1362
 
1363
+ #: dashboard/publisher/adverts-edit.php:294
1364
  #: dashboard/publisher/groups-edit.php:157
1365
  msgid "Advanced"
1366
  msgstr "Utökad"
1367
 
1368
+ #: dashboard/publisher/adverts-edit.php:295
1369
  msgid "Everything below is optional."
1370
  msgstr "Allt nedan är frivillig."
1371
 
1372
+ #: dashboard/publisher/adverts-edit.php:299
1373
  msgid "Responsive"
1374
  msgstr ""
1375
 
1376
+ #: dashboard/publisher/adverts-edit.php:301
1377
  #, fuzzy
1378
  msgid "Enable responsive support for this advert."
1379
  msgstr "Aktivera klickspårning för denna annons."
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:302
1382
  msgid ""
1383
  "Upload your images to the banner folder and make sure the filename is in the "
1384
  "following format; \"imagename.full.ext\". A full set of sized images is "
1385
  "strongly recommended."
1386
  msgstr ""
1387
 
1388
+ #: dashboard/publisher/adverts-edit.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1389
  #: dashboard/publisher/groups-edit.php:194
1390
  msgid "Sortorder"
1391
  msgstr ""
1392
 
1393
+ #: dashboard/publisher/adverts-edit.php:310
1394
  #: dashboard/publisher/groups-edit.php:196
1395
  msgid "For administrative purposes set a sortorder."
1396
  msgstr "För administrativa ändamål sätt en sortorder."
1397
 
1398
+ #: dashboard/publisher/adverts-edit.php:310
1399
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1400
  msgstr ""
1401
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1402
 
1403
+ #: dashboard/publisher/adverts-edit.php:315
1404
  msgid ""
1405
+ "With AdRotate Pro you can set a weight to give adverts more or less exposure."
 
1406
  msgstr ""
1407
 
1408
+ #: dashboard/publisher/adverts-edit.php:317
1409
  msgid "Geo Targeting in AdRotate Pro"
1410
  msgstr ""
1411
 
1412
+ #: dashboard/publisher/adverts-edit.php:318
1413
  msgid ""
1414
  "Assign the advert to a group and enable that group to use Geo Targeting."
1415
  msgstr ""
1416
 
1417
+ #: dashboard/publisher/adverts-edit.php:322
1418
  msgid "Cities/States"
1419
  msgstr ""
1420
 
1421
+ #: dashboard/publisher/adverts-edit.php:325
1422
  msgid ""
1423
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1424
  "states ISO codes are supported)"
1425
  msgstr ""
1426
 
1427
+ #: dashboard/publisher/adverts-edit.php:325
1428
  #, fuzzy
1429
  msgid ""
1430
  "AdRotate does not check the validity of names so make sure you spell them "
1433
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1434
  "rätt!"
1435
 
1436
+ #: dashboard/publisher/adverts-edit.php:329
1437
  msgid "Countries"
1438
  msgstr ""
1439
 
1440
+ #: dashboard/publisher/adverts-edit.php:354
1441
  #, fuzzy
1442
  msgid "Select the countries you want the adverts to show in."
1443
  msgstr "Välj de länder som du vill att annonser för att visa i."
1444
 
1445
+ #: dashboard/publisher/adverts-edit.php:354
1446
  #, fuzzy
1447
  msgid "Cities take priority and will be filtered first."
1448
  msgstr "Städer prioriteras och kommer att filtreras först."
1449
 
1450
+ #: dashboard/publisher/adverts-edit.php:359
1451
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1452
  msgstr ""
1453
 
1454
+ #: dashboard/publisher/adverts-edit.php:383
1455
  msgid "Select Groups"
1456
  msgstr "Välj Grupper"
1457
 
1458
+ #: dashboard/publisher/adverts-edit.php:388
1459
  msgid "ID - Name"
1460
  msgstr "ID - Namn"
1461
 
1462
+ #: dashboard/publisher/adverts-edit.php:398
1463
+ #: dashboard/publisher/groups-main.php:60
1464
+ #: dashboard/settings/geotargeting.php:39
 
 
 
 
1465
  msgid "Default"
1466
  msgstr "Default"
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:399
1469
+ #: dashboard/publisher/groups-main.php:61
1470
  msgid "Dynamic"
1471
  msgstr "Dynamic"
1472
 
1473
+ #: dashboard/publisher/adverts-edit.php:399
1474
+ #: dashboard/publisher/groups-main.php:61
1475
  #, fuzzy
1476
  msgid "second rotation"
1477
  msgstr "Geo Location"
1478
 
1479
+ #: dashboard/publisher/adverts-edit.php:400
1480
+ #: dashboard/publisher/groups-main.php:62
1481
  msgid "Block"
1482
  msgstr "Block"
1483
 
1484
+ #: dashboard/publisher/adverts-edit.php:400
1485
+ #: dashboard/publisher/groups-main.php:62
1486
  #, fuzzy
1487
  msgid "grid"
1488
  msgstr ""
1489
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1490
  "(Standard: 2/2)"
1491
 
1492
+ #: dashboard/publisher/adverts-edit.php:401
1493
  #: dashboard/publisher/groups-edit.php:202
1494
+ #: dashboard/publisher/groups-main.php:63
1495
  msgid "Post Injection"
1496
  msgstr "Post injektion"
1497
 
1498
+ #: dashboard/publisher/adverts-edit.php:402
1499
  msgid "Geolocation"
1500
  msgstr "Geolocation"
1501
 
1502
+ #: dashboard/publisher/adverts-edit.php:408
1503
  #: dashboard/publisher/groups-edit.php:61
1504
+ #: dashboard/publisher/groups-main.php:70
1505
  msgid "Mode"
1506
  msgstr "läge"
1507
 
1553
  msgid "Export to XML"
1554
  msgstr "Exportera"
1555
 
1556
+ #: dashboard/publisher/adverts-main.php:42
1557
+ #: dashboard/publisher/groups-edit.php:336
1558
+ msgid "Weight"
1559
+ msgstr "Vikt"
1560
+
1561
  #: dashboard/publisher/adverts-main.php:44
1562
+ #: dashboard/publisher/groups-edit.php:333
1563
+ #: dashboard/publisher/groups-main.php:36
1564
  msgid "Shown"
1565
  msgstr "Visa"
1566
 
1769
  msgstr ""
1770
 
1771
  #: dashboard/publisher/groups-edit.php:184
1772
+ #: dashboard/settings/advertisers.php:28
1773
  msgid "Geo Targeting"
1774
  msgstr "Geo Targeting"
1775
 
1808
 
1809
  #: dashboard/publisher/groups-edit.php:209
1810
  #: dashboard/publisher/groups-edit.php:247
1811
+ #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1812
  #, fuzzy
1813
  msgid "Disabled"
1814
  msgstr "Inaktivera annonser"
1925
  msgid "Select adverts"
1926
  msgstr ""
1927
 
1928
+ #: dashboard/publisher/groups-edit.php:331
1929
+ msgid "Choose adverts"
1930
+ msgstr ""
1931
+
1932
  #: dashboard/publisher/groups-edit.php:337
1933
  msgid "Visible until"
1934
  msgstr "Synlig tills"
1953
  msgid "This action can not be undone!"
1954
  msgstr "Denna åtgärd kan inte ångras!"
1955
 
1956
+ #: dashboard/publisher/groups-main.php:24
1957
+ #: dashboard/settings/maintenance.php:18 dashboard/settings/maintenance.php:26
1958
+ #: dashboard/settings/maintenance.php:34
1959
  msgid "OK to continue, CANCEL to stop."
1960
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1961
 
1962
+ #: dashboard/publisher/groups-main.php:84
 
 
 
 
1963
  msgid "No groups created!"
1964
  msgstr "Inga grupper skapas!"
1965
 
1967
  msgid "Statistics for group"
1968
  msgstr "Statistik för grupp"
1969
 
1970
+ #: dashboard/settings/advertisers.php:12
1971
  msgid "Advertisers - Available in AdRotate Pro"
1972
  msgstr ""
1973
 
1974
+ #: dashboard/settings/advertisers.php:13
1975
  #, fuzzy
1976
  msgid "Enable advertisers so they can review and manage their own ads."
1977
  msgstr "Aktivera Annonsörer"
1978
 
1979
+ #: dashboard/settings/advertisers.php:16
1980
  msgid "Enable Advertisers"
1981
  msgstr "Aktivera Annonsörer"
1982
 
1983
+ #: dashboard/settings/advertisers.php:18
1984
  msgid "Allow adverts to be coupled to users (Advertisers)."
1985
  msgstr "Tillåt reklam för att kopplas till användare (annonsörer)."
1986
 
1987
+ #: dashboard/settings/advertisers.php:22
1988
  msgid "Edit/update adverts"
1989
  msgstr "Edit / update annonser"
1990
 
1991
+ #: dashboard/settings/advertisers.php:24
1992
  msgid "Allow advertisers to add new or edit their adverts."
1993
  msgstr "Tillåt annonsörer att lägga till nya eller redigera sina annonser."
1994
 
1995
+ #: dashboard/settings/advertisers.php:30
1996
  msgid ""
1997
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1998
  "be enabled, too."
1999
  msgstr ""
2000
 
2001
+ #: dashboard/settings/advertisers.php:34
2002
  msgid "Advertiser role"
2003
  msgstr "Annonsören role"
2004
 
2005
+ #: dashboard/settings/advertisers.php:36
2006
  msgid "Create a seperate user role for your advertisers."
2007
  msgstr ""
2008
 
2009
+ #: dashboard/settings/advertisers.php:37
2010
  msgid ""
2011
  "Don't forget to give these users access to their advertiser dashboard via "
2012
  "the Roles tab."
2013
  msgstr ""
2014
 
2015
+ #: dashboard/settings/general.php:12
2016
  msgid "General Settings"
2017
  msgstr ""
2018
 
2019
+ #: dashboard/settings/general.php:13
2020
  msgid "General settings for AdRotate."
2021
  msgstr ""
2022
 
2023
+ #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2024
+ msgid "Some options are only available in AdRotate Pro!"
2025
+ msgstr ""
2026
+
2027
+ #: dashboard/settings/general.php:16
2028
+ msgid "Text widgets"
2029
+ msgstr ""
2030
+
2031
+ #: dashboard/settings/general.php:17
2032
+ msgid ""
2033
+ "Enable if your theme does not support shortcodes in the WordPress text "
2034
+ "widget."
2035
+ msgstr ""
2036
+
2037
+ #: dashboard/settings/general.php:20
2038
  #, fuzzy
2039
  msgid "Load jQuery"
2040
  msgstr ""
2041
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
2042
  "om andra plugins eller teman redan läsa här."
2043
 
2044
+ #: dashboard/settings/general.php:21
2045
  msgid ""
2046
+ "Enable if your theme does not load jQuery. jQuery is required for dynamic "
2047
+ "groups, statistics and some other features."
2048
  msgstr ""
2049
 
2050
+ #: dashboard/settings/general.php:24
2051
  msgid "Load scripts in footer?"
2052
  msgstr ""
2053
 
2054
+ #: dashboard/settings/general.php:25
2055
  msgid ""
2056
  "Enable if you want to load all AdRotate Javascripts in the footer of your "
2057
  "site."
2058
  msgstr ""
2059
 
2060
+ #: dashboard/settings/general.php:28
2061
+ msgid "Adblock disguise"
2062
+ msgstr ""
2063
+
2064
+ #: dashboard/settings/general.php:30
2065
+ msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2066
+ msgstr ""
2067
+
2068
+ #: dashboard/settings/general.php:31
2069
+ msgid ""
2070
+ "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2071
+ msgstr ""
2072
+
2073
+ #: dashboard/settings/general.php:31
2074
+ msgid ""
2075
+ "To also apply this feature to widgets, use a text widget with a shortcode "
2076
+ "instead of the AdRotate widget."
2077
+ msgstr ""
2078
+
2079
+ #: dashboard/settings/general.php:31
2080
+ msgid ""
2081
+ "Avoid the use of obvious keywords or filenames in your adverts or this "
2082
+ "feature will have little effect!"
2083
+ msgstr ""
2084
+
2085
+ #: dashboard/settings/general.php:36
2086
  msgid "Banner Folder"
2087
  msgstr "Banner Folder"
2088
 
2089
+ #: dashboard/settings/general.php:37
2090
  #, fuzzy
2091
  msgid "Set a location where your banner images will be stored."
2092
  msgstr ""
2093
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2094
  "banners /)."
2095
 
2096
+ #: dashboard/settings/general.php:40
 
 
 
 
 
 
2097
  #, fuzzy
2098
  msgid "Location"
2099
  msgstr "Geo Location"
2100
 
2101
+ #: dashboard/settings/general.php:42
2102
  #, fuzzy
2103
  msgid "(Default: wp-content/banners/)."
2104
  msgstr ""
2105
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2106
  "banners /)."
2107
 
2108
+ #: dashboard/settings/general.php:43
2109
  msgid ""
2110
  "To try and trick ad blockers you could set the folder to something crazy "
2111
  "like:"
2113
  "Att försöka lura annons blockerare som du kan ställa in mappen till något "
2114
  "galet som:"
2115
 
2116
+ #: dashboard/settings/general.php:44
2117
  msgid ""
2118
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2119
  "will show errors when the folder is missing."
2121
  "Denna mapp kommer inte automatiskt att skapas om den inte existerar. "
2122
  "AdRotate visar fel när mappen saknas."
2123
 
2124
+ #: dashboard/settings/general.php:49
2125
  #, fuzzy
2126
  msgid "Bot filter"
2127
  msgstr "User-Agent Filter"
2128
 
2129
+ #: dashboard/settings/general.php:50
2130
  msgid "The bot filter is used for the AdRotate stats tracker."
2131
  msgstr ""
2132
 
2133
+ #: dashboard/settings/general.php:53
2134
  msgid "User-Agent Filter"
2135
  msgstr "User-Agent Filter"
2136
 
2137
+ #: dashboard/settings/general.php:56
2138
  msgid ""
2139
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2140
  msgstr ""
2141
 
2142
+ #: dashboard/settings/general.php:57
2143
  msgid ""
2144
  "Keep in mind that this might give false positives. The word 'fire' also "
2145
  "matches 'firefox', but not vice-versa. So be careful!"
2146
  msgstr ""
2147
 
2148
+ #: dashboard/settings/general.php:58
2149
  msgid ""
2150
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2151
  "characters are stripped out."
2152
  msgstr ""
2153
 
2154
+ #: dashboard/settings/general.php:59
2155
  msgid ""
2156
  "Additionally to the list specified here, empty User-Agents are blocked as "
2157
  "well."
2158
  msgstr ""
2159
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
2160
 
2161
+ #: dashboard/settings/general.php:59
2162
  msgid "Learn more about"
2163
  msgstr "Läs mer om"
2164
 
2165
+ #: dashboard/settings/general.php:59
2166
  msgid "user-agents"
2167
  msgstr "user-agents"
2168
 
2169
+ #: dashboard/settings/geotargeting.php:12
2170
  msgid "Geo Targeting - Available in AdRotate Pro"
2171
  msgstr ""
2172
 
2173
+ #: dashboard/settings/geotargeting.php:13
2174
  msgid "Target certain areas in the world for better advertising oppurtunities."
2175
  msgstr ""
2176
 
2177
+ #: dashboard/settings/geotargeting.php:16
2178
  msgid "Which Geo Service"
2179
  msgstr ""
2180
 
2181
+ #: dashboard/settings/geotargeting.php:26
 
 
 
 
2182
  msgid ""
2183
  "The most complete and accurate geo targeting you can get for only $20 USD "
2184
  "per 50000 lookups."
2185
  msgstr ""
2186
 
2187
+ #: dashboard/settings/geotargeting.php:28
2188
  msgid "50000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/geotargeting.php:30
2192
  msgid "Free service, uses GeoLite2 databases from MaxMind!"
2193
  msgstr ""
2194
 
2195
+ #: dashboard/settings/geotargeting.php:36
2196
  msgid "Geo Cookie Lifespan"
2197
  msgstr ""
2198
 
2199
+ #: dashboard/settings/geotargeting.php:45
2200
  msgid "Hours."
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/geotargeting.php:46
2204
  msgid ""
2205
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2206
  "cookie last? A longer period is less accurate for mobile users but may "
2207
  "reduce the usage of your lookups drastically."
2208
  msgstr ""
2209
 
2210
+ #: dashboard/settings/geotargeting.php:52
2211
  msgid "MaxMind City/Country"
2212
  msgstr ""
2213
 
2214
+ #: dashboard/settings/geotargeting.php:55
2215
  msgid "Username/Email"
2216
  msgstr ""
2217
 
2218
+ #: dashboard/settings/geotargeting.php:59
2219
  msgid "Password/License Key"
2220
  msgstr ""
2221
 
2222
+ #: dashboard/settings/maintenance.php:12
2223
  msgid "Maintenance"
2224
  msgstr "Underhåll"
2225
 
2226
+ #: dashboard/settings/maintenance.php:13
2227
  msgid ""
2228
  "Use these functions when you notice your database is slow, unresponsive and "
2229
  "sluggish."
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2233
  msgid "Optimize Database"
2234
  msgstr "Optimera Databas"
2235
 
2236
+ #: dashboard/settings/maintenance.php:18
2237
  msgid "You are about to optimize the AdRotate database."
2238
  msgstr "Du håller på att optimera AdRotate databasen."
2239
 
2240
+ #: dashboard/settings/maintenance.php:18
2241
  msgid "Did you make a backup of your database?"
2242
  msgstr "Har du gjort en säkerhetskopia av din databas?"
2243
 
2244
+ #: dashboard/settings/maintenance.php:18
2245
  msgid ""
2246
  "This may take a moment and may cause your website to respond slow "
2247
  "temporarily!"
2249
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2250
  "tillfälligt!"
2251
 
2252
+ #: dashboard/settings/maintenance.php:19
2253
  msgid "Cleans up overhead data in the AdRotate tables."
2254
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
2255
 
2256
+ #: dashboard/settings/maintenance.php:20
2257
  msgid ""
2258
  "Overhead data is accumulated garbage resulting from many changes you've "
2259
  "made. This can vary from nothing to hundreds of KiB of data."
2261
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
2262
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
2263
 
2264
+ #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2265
  msgid "Clean-up Database"
2266
  msgstr "Städa upp Databas"
2267
 
2268
+ #: dashboard/settings/maintenance.php:26
2269
  msgid ""
2270
  "You are about to clean up your database. This may delete expired schedules "
2271
  "and older statistics."
2273
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
2274
  "och äldre statistik."
2275
 
2276
+ #: dashboard/settings/maintenance.php:26
2277
  msgid "Are you sure you want to continue?"
2278
  msgstr "Är du säker på att du vill fortsätta?"
2279
 
2280
+ #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2281
  #, fuzzy
2282
  msgid "This might take a while and may slow down your site during this action!"
2283
  msgstr ""
2284
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2285
  "tillfälligt!"
2286
 
2287
+ #: dashboard/settings/maintenance.php:27
2288
  msgid "Delete stats older than 356 days (Optional)."
2289
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2290
 
2291
+ #: dashboard/settings/maintenance.php:28
2292
  msgid ""
2293
  "AdRotate creates empty records when you start making ads, groups or "
2294
  "schedules. In rare occasions these records are faulty."
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/maintenance.php:28
2298
  msgid ""
2299
  "If you made an ad, group or schedule that does not save when you make it use "
2300
  "this button to delete those empty records."
2301
  msgstr ""
2302
 
2303
+ #: dashboard/settings/maintenance.php:28
2304
  msgid ""
2305
  "Additionally you can clean up old schedules and/or statistics. This will "
2306
  "improve the speed of your site."
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:32
2310
  #, fuzzy
2311
  msgid "Re-evaluate Ads"
2312
  msgstr "Omvärdera annonser"
2313
 
2314
+ #: dashboard/settings/maintenance.php:34
2315
  #, fuzzy
2316
  msgid "Re-evaluate all ads"
2317
  msgstr "Omvärdera alla annonser"
2318
 
2319
+ #: dashboard/settings/maintenance.php:34
2320
  #, fuzzy
2321
  msgid "You are about to check all ads for errors."
2322
  msgstr "Du håller på att kolla alla annonser för fel."
2323
 
2324
+ #: dashboard/settings/maintenance.php:35
2325
  #, fuzzy
2326
  msgid ""
2327
  "This will apply all evaluation rules to all ads to see if any error slipped "
2330
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
2331
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
2332
 
2333
+ #: dashboard/settings/maintenance.php:39
2334
  msgid ""
2335
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2336
  "database. They only apply to your ads/groups and stats. Not to other "
2343
  "is not a valid point in any case."
2344
  msgstr ""
2345
 
2346
+ #: dashboard/settings/maintenance.php:41
2347
  msgid "Troubleshooting"
2348
  msgstr "Felsökning"
2349
 
2350
+ #: dashboard/settings/maintenance.php:42
2351
  msgid ""
2352
  "The below options are not meant for normal use and are only there for "
2353
  "developers to review saved settings or how ads are selected. These can be "
2355
  "SHOULD BE LEFT UNCHECKED!!"
2356
  msgstr ""
2357
 
2358
+ #: dashboard/settings/maintenance.php:45
2359
  msgid "Developer Debug"
2360
  msgstr "Utvecklar Debug"
2361
 
2362
+ #: dashboard/settings/maintenance.php:47
2363
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2364
  msgstr ""
2365
 
2366
+ #: dashboard/settings/maintenance.php:48
2367
  msgid "View advert specs and (some) stats in the dashboard."
2368
  msgstr ""
2369
 
2370
+ #: dashboard/settings/maintenance.php:49
2371
  #, fuzzy
2372
  msgid ""
2373
  "Disable timers for clicks and impressions and enable a alert window for "
2374
  "clicktracking."
2375
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2376
 
2377
+ #: dashboard/settings/maintenance.php:50
2378
  msgid "Temporarily disable encryption on the redirect url."
2379
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
2380
 
2381
+ #: dashboard/settings/maintenance.php:55
2382
  msgid "Status and Versions"
2383
  msgstr ""
2384
 
2385
+ #: dashboard/settings/maintenance.php:58
2386
  msgid "Current version:"
2387
  msgstr "Aktuell version:"
2388
 
2389
+ #: dashboard/settings/maintenance.php:59
2390
  msgid "Previous version:"
2391
  msgstr "Tidigare version:"
2392
 
2393
+ #: dashboard/settings/maintenance.php:62
2394
  msgid "Current database version:"
2395
  msgstr "Nuvarande databasversion:"
2396
 
2397
+ #: dashboard/settings/maintenance.php:63
2398
  msgid "Previous database version:"
2399
  msgstr "Tidigare databasversion:"
2400
 
2401
+ #: dashboard/settings/maintenance.php:66
2402
  msgid "Current status of adverts"
2403
  msgstr "Aktuell status för annonser"
2404
 
2405
+ #: dashboard/settings/maintenance.php:67
2406
  msgid "Normal"
2407
  msgstr "Normal"
2408
 
2409
+ #: dashboard/settings/maintenance.php:67
2410
  msgid "Error"
2411
  msgstr "Error"
2412
 
2413
+ #: dashboard/settings/maintenance.php:67
2414
  msgid "Expired"
2415
  msgstr "Utgånget"
2416
 
2417
+ #: dashboard/settings/maintenance.php:67
2418
  msgid "Expires Soon"
2419
  msgstr "Utgår snart"
2420
 
2421
+ #: dashboard/settings/maintenance.php:67
2422
  msgid "Unknown"
2423
  msgstr ""
2424
 
2425
+ #: dashboard/settings/maintenance.php:70
2426
  #, fuzzy
2427
  msgid "Ad evaluation next run:"
2428
  msgstr "Annons Meddelanden nästa körning:"
2429
 
2430
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:75
 
2431
  msgid "Not scheduled!"
2432
  msgstr "Inte planerat!"
2433
 
2434
+ #: dashboard/settings/maintenance.php:74
 
 
 
 
2435
  msgid "Clean Trackerdata next run:"
2436
  msgstr "Rensa Trackerdata nästa körning:"
2437
 
2438
+ #: dashboard/settings/misc.php:12
2439
  msgid "Miscellaneous"
2440
  msgstr "Diverse"
2441
 
2442
+ #: dashboard/settings/misc.php:15
2443
  msgid "Widget alignment"
2444
  msgstr "widget inriktnings"
2445
 
2446
+ #: dashboard/settings/misc.php:16
2447
  msgid ""
2448
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2449
  "not always help!)"
2451
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
2452
  "alltid hjälper!)"
2453
 
2454
+ #: dashboard/settings/misc.php:19
2455
  msgid "Widget padding"
2456
  msgstr "widget padding"
2457
 
2458
+ #: dashboard/settings/misc.php:20
2459
  msgid ""
2460
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2461
  "not always work!)"
2463
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
2464
  "widgets. (Fungerar inte alltid!)"
2465
 
2466
+ #: dashboard/settings/misc.php:24
2467
  #, fuzzy
2468
  msgid "NOTICE:"
2469
  msgstr "Meddelande"
2470
 
2471
+ #: dashboard/settings/misc.php:25
2472
  msgid ""
2473
  "You have enabled W3 Total Caching support but not defined the security hash. "
2474
  "You need to add the following line to your wp-config.php near the bottom or "
2476
  "needs to be enabled in W3 Total Cache as well too."
2477
  msgstr ""
2478
 
2479
+ #: dashboard/settings/misc.php:29
2480
  msgid "W3 Total Caching"
2481
  msgstr "W3 Total Caching"
2482
 
2483
+ #: dashboard/settings/misc.php:30
2484
  msgid "Check this box if you use W3 Total Caching on your site."
2485
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
2486
 
2487
+ #: dashboard/settings/misc.php:34
2488
  msgid ""
2489
  "It may take a while for the ad to start rotating. The caching plugin needs "
2490
  "to refresh the cache. This can take up to a week if not done manually."
2493
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
2494
  "manuellt."
2495
 
2496
+ #: dashboard/settings/misc.php:34
2497
  msgid ""
2498
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2499
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2501
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
2502
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
2503
 
2504
+ #: dashboard/settings/notifications.php:12
2505
  msgid "Notifications - Available in AdRotate Pro"
2506
  msgstr ""
2507
 
2508
+ #: dashboard/settings/notifications.php:13
2509
  #, fuzzy
2510
  msgid "Set up who gets notifications if ads need your attention."
2511
  msgstr "Annonser som behöver uppmärksammas"
2512
 
2513
+ #: dashboard/settings/notifications.php:16
2514
  msgid "Delivery method"
2515
  msgstr ""
2516
 
2517
+ #: dashboard/settings/notifications.php:18
2518
  #, fuzzy
2519
  msgid "Email message."
2520
  msgstr "E-post eller Remote sida:"
2521
 
2522
+ #: dashboard/settings/notifications.php:19
2523
  msgid "Push notifications to your smartphone."
2524
  msgstr ""
2525
 
2526
+ #: dashboard/settings/notifications.php:20
2527
  msgid ""
2528
  "Push notifications are delivered through Pushover, a notification service "
2529
  "for Android and iOS"
2530
  msgstr ""
2531
 
2532
+ #: dashboard/settings/notifications.php:20
2533
  msgid ""
2534
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2535
  "information can be found on the pushover website;"
2536
  msgstr ""
2537
 
2538
+ #: dashboard/settings/notifications.php:24
2539
  msgid "Test notification"
2540
  msgstr ""
2541
 
2542
+ #: dashboard/settings/notifications.php:26
2543
  #, fuzzy
2544
  msgid ""
2545
  "This sends a test notification. Before you test, save the options first!"
2547
  "Detta skickar en testanmälan. Innan du testar, till exempel med en ny e-"
2548
  "postadress. Spara alternativen först!"
2549
 
2550
+ #: dashboard/settings/notifications.php:31
2551
  #, fuzzy
2552
  msgid "Dashboard Notifications"
2553
  msgstr ""
2554
  "Registrera ditt exemplar av AdRotate. Detta kommer att göra det möjligt för "
2555
  "ticket och uppdatera underrättelser direkt från din dashboard."
2556
 
2557
+ #: dashboard/settings/notifications.php:32
2558
  msgid "These show to every administrator who can edit adverts."
2559
  msgstr ""
2560
 
2561
+ #: dashboard/settings/notifications.php:35
2562
  msgid "Notification banners"
2563
  msgstr ""
2564
 
2565
+ #: dashboard/settings/notifications.php:36
2566
  msgid "Disable dashboard notifications."
2567
  msgstr ""
2568
 
2569
+ #: dashboard/settings/notifications.php:40
2570
  msgid "Email Notifications"
2571
  msgstr "E-postmeddelanden"
2572
 
2573
+ #: dashboard/settings/notifications.php:41
2574
  #, fuzzy
2575
  msgid "Set up who gets notification emails."
2576
  msgstr "Annonser som behöver uppmärksammas"
2577
 
2578
+ #: dashboard/settings/notifications.php:44
2579
+ #: dashboard/settings/notifications.php:64
2580
  #, fuzzy
2581
  msgid "Publishers"
2582
  msgstr ""
2583
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
2584
  "endast till förlag."
2585
 
2586
+ #: dashboard/settings/notifications.php:47
2587
  msgid ""
2588
  "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2589
  "list to a minimum!"
2591
  "En kommaseparerad lista med e-postadresser. Maximalt av 5 adresser. Spara "
2592
  "denna lista till ett minimum!"
2593
 
2594
+ #: dashboard/settings/notifications.php:48
2595
  #, fuzzy
2596
  msgid ""
2597
  "Messages are sent once every 24 hours when needed. If this field is empty no "
2600
  "Meddelanden skickas en gång per 24 timmar när det behövs. Om detta fält är "
2601
  "tomt funktionen avaktiveras."
2602
 
2603
+ #: dashboard/settings/notifications.php:52
2604
  msgid "Advertisers"
2605
  msgstr "Annonsörer"
2606
 
2607
+ #: dashboard/settings/notifications.php:55
2608
  #, fuzzy
2609
  msgid ""
2610
  "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2611
  "This field may not be empty!"
2612
  msgstr "Max 2 adresser. Kommaseparerad. Detta fält kan inte vara tomt!"
2613
 
2614
+ #: dashboard/settings/notifications.php:60
2615
  #, fuzzy
2616
  msgid "Push Notifications"
2617
  msgstr "Meddelanden"
2618
 
2619
+ #: dashboard/settings/notifications.php:61
2620
  msgid ""
2621
  "Receive information about what is happening with your AdRotate setup on your "
2622
  "smartphone via Pushover."
2623
  msgstr ""
2624
 
2625
+ #: dashboard/settings/notifications.php:66
2626
  msgid "When you are running out of Geo Targeting Lookups."
2627
  msgstr ""
2628
 
2629
+ #: dashboard/settings/notifications.php:67
2630
  msgid "Daily digest of any advert status other than normal."
2631
  msgstr ""
2632
 
2633
+ #: dashboard/settings/notifications.php:68
2634
  msgid "Any advertiser saving an advert in your moderation queue."
2635
  msgstr ""
2636
 
2637
+ #: dashboard/settings/notifications.php:69
2638
  #, fuzzy
2639
  msgid "A moderator approved an advert from the moderation queue."
2640
  msgstr "Godkänn / avvisa annonser i moderation Queue"
2641
 
2642
+ #: dashboard/settings/notifications.php:70
2643
  #, fuzzy
2644
  msgid "A moderator rejected an advert from the moderation queue."
2645
  msgstr "Godkänn / avvisa annonser i moderation Queue"
2646
 
2647
+ #: dashboard/settings/notifications.php:70
2648
  msgid ""
2649
  "If you have a lot of activity with many advertisers adding/changing adverts "
2650
  "you may get a lot of messages!"
2651
  msgstr ""
2652
 
2653
+ #: dashboard/settings/notifications.php:75
2654
  #, fuzzy
2655
  msgid "User Key"
2656
  msgstr "Licensnyckel"
2657
 
2658
+ #: dashboard/settings/notifications.php:77
2659
  msgid "Get your user token"
2660
  msgstr ""
2661
 
2662
+ #: dashboard/settings/notifications.php:77
2663
+ #: dashboard/settings/notifications.php:83
2664
  msgid "here"
2665
  msgstr ""
2666
 
2667
+ #: dashboard/settings/notifications.php:81
2668
  msgid "Api Token"
2669
  msgstr ""
2670
 
2671
+ #: dashboard/settings/notifications.php:83
2672
  msgid "Create your"
2673
  msgstr ""
2674
 
2675
+ #: dashboard/settings/notifications.php:83
2676
  msgid "App"
2677
  msgstr ""
2678
 
2679
+ #: dashboard/settings/notifications.php:83
2680
  msgid "and get your API token"
2681
  msgstr ""
2682
 
2683
+ #: dashboard/settings/roles.php:12
2684
  msgid "Roles"
2685
  msgstr ""
2686
 
2687
+ #: dashboard/settings/roles.php:13
2688
  msgid "Who has access to what?"
2689
  msgstr ""
2690
 
2691
+ #: dashboard/settings/roles.php:16
2692
  msgid "Manage/Add/Edit adverts"
2693
  msgstr "Hantera / Lägg till / redigera annonser"
2694
 
2695
+ #: dashboard/settings/roles.php:20
2696
  msgid "Role to see and add/edit ads."
2697
  msgstr "Role för att se och lägga till / redigera annonser."
2698
 
2699
+ #: dashboard/settings/roles.php:24
2700
  msgid "Delete/Reset adverts"
2701
  msgstr "Radera / Reset annonser"
2702
 
2703
+ #: dashboard/settings/roles.php:28
2704
  msgid "Role to delete ads and reset stats."
2705
  msgstr "Role att ta bort annonser och återställ statistik."
2706
 
2707
+ #: dashboard/settings/roles.php:32
2708
  msgid "Manage/Add/Edit groups"
2709
  msgstr "Hantera / Lägg till / Redigera grupper"
2710
 
2711
+ #: dashboard/settings/roles.php:36
2712
  msgid "Role to see and add/edit groups."
2713
  msgstr "Role för att se och lägga till / redigera grupp."
2714
 
2715
+ #: dashboard/settings/roles.php:40
2716
  msgid "Delete groups"
2717
  msgstr "Ta bort grupper"
2718
 
2719
+ #: dashboard/settings/roles.php:44
2720
  msgid "Role to delete groups."
2721
  msgstr "Role att ta bort grupper."
2722
 
2723
+ #: dashboard/settings/statistics.php:13
2724
  msgid "Track statistics for your adverts."
2725
  msgstr ""
2726
 
2727
+ #: dashboard/settings/statistics.php:16
2728
  msgid "How to track stats"
2729
  msgstr ""
2730
 
2731
+ #: dashboard/settings/statistics.php:25
 
 
 
 
2732
  msgid "Tracks impressions and clicks internally"
2733
  msgstr ""
2734
 
2735
+ #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2736
+ #: dashboard/settings/statistics.php:29
2737
  msgid "manual"
2738
  msgstr ""
2739
 
2740
+ #: dashboard/settings/statistics.php:26
2741
  msgid ""
2742
  "Click and Impression recording, Click and impression limits, impression "
2743
+ "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2744
+ "will only track impressions."
2745
  msgstr ""
2746
 
2747
+ #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2748
+ msgid "In AdRotate Pro!"
2749
+ msgstr ""
2750
+
2751
+ #: dashboard/settings/statistics.php:27
2752
  msgid ""
2753
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2754
  "attributes"
2755
  msgstr ""
2756
 
2757
+ #: dashboard/settings/statistics.php:28
2758
  msgid ""
2759
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2760
  "Contents."
2761
  msgstr ""
2762
 
2763
+ #: dashboard/settings/statistics.php:29
2764
  msgid ""
2765
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2766
  "uses onClick() and onload() in adverts"
2767
  msgstr ""
2768
 
2769
+ #: dashboard/settings/statistics.php:30
2770
  msgid ""
2771
+ "Click and Impression recording via Cookie, stats are displayed in Events > "
2772
+ "Banner."
2773
  msgstr ""
2774
 
2775
+ #: dashboard/settings/statistics.php:36
2776
  msgid "Internal Tracker"
2777
  msgstr ""
2778
 
2779
+ #: dashboard/settings/statistics.php:37
2780
  msgid ""
2781
  "The settings below are for the internal tracker and have no effect when "
2782
  "using Piwik/Google Analytics."
2783
  msgstr ""
2784
 
2785
+ #: dashboard/settings/statistics.php:40
2786
  #, fuzzy
2787
  msgid "Logged in impressions"
2788
  msgstr "Spåra visningar från inloggade användare (rekommenderas)."
2789
 
2790
+ #: dashboard/settings/statistics.php:42
2791
  msgid "Track impressions from logged in users."
2792
  msgstr ""
2793
 
2794
+ #: dashboard/settings/statistics.php:46
2795
  #, fuzzy
2796
  msgid "Logged in clicks"
2797
  msgstr "Spår klick från inloggade användare."
2798
 
2799
+ #: dashboard/settings/statistics.php:48
2800
  msgid "Track clicks from logged in users."
2801
  msgstr "Spår klick från inloggade användare."
2802
 
2803
+ #: dashboard/settings/statistics.php:52
2804
+ msgid "Impression timer"
2805
+ msgstr ""
2806
 
2807
+ #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2808
  msgid "Seconds."
2809
  msgstr "Sekunder."
2810
 
2811
+ #: dashboard/settings/statistics.php:55
2812
  #, fuzzy
2813
  msgid "Default: 60."
2814
  msgstr "Default"
2815
 
2816
+ #: dashboard/settings/statistics.php:55
2817
  #, fuzzy
2818
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2819
  msgstr ""
2820
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2821
 
2822
+ #: dashboard/settings/statistics.php:59
2823
+ msgid "Click timer"
2824
+ msgstr ""
 
2825
 
2826
+ #: dashboard/settings/statistics.php:62
2827
  #, fuzzy
2828
  msgid "Default: 86400."
2829
  msgstr "Default"
2830
 
2831
+ #: dashboard/settings/statistics.php:62
2832
  #, fuzzy
2833
  msgid ""
2834
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2835
  msgstr ""
2836
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2837
 
2838
+ #~ msgid "Find out more"
2839
+ #~ msgstr "Läs mer"
2840
+
2841
+ #~ msgid "Barely visible"
2842
+ #~ msgstr "Knappt synlig"
2843
+
2844
+ #~ msgid "Less than average"
2845
+ #~ msgstr "Mindre än genomsnittet"
2846
+
2847
+ #~ msgid "Normal coverage"
2848
+ #~ msgstr "Normal täckning"
2849
+
2850
+ #~ msgid "More than average"
2851
+ #~ msgstr "Mer än genomsnittet"
2852
+
2853
+ #~ msgid "Best visibility"
2854
+ #~ msgstr "Bästa synlighet"
2855
+
2856
+ #~ msgid "Ads in group"
2857
+ #~ msgstr "Annonser i grupp"
2858
+
2859
+ #~ msgid "Code"
2860
+ #~ msgstr "Kod"
2861
+
2862
+ #~ msgid "Impressions timer"
2863
+ #~ msgstr "Intryck timer"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid "Clicks timer"
2867
+ #~ msgstr "Intryck timer"
2868
+
2869
  #, fuzzy
2870
  #~ msgid "Learn More"
2871
  #~ msgstr "Läs mer om"
library/dashboard.css CHANGED
@@ -25,6 +25,7 @@
25
  /* Dashboard styles */
26
  .postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
27
  .postbox-adrotate h3 { margin:0; padding:7px 10px 7px 10px; box-shadow:#ddd 0px 1px 0px 0px; -moz-box-shadow:inset 0 1px 0 #ddd; -webkit-box-shadow:#ddd 0px 1px 0px 0px; line-height:15px; }
28
- .postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:100px; position:relative; }
29
  .inside { padding:6px 10px 12px; clear:both; }
30
- .pro-image { padding: 0px 3px 0px 0px; }
 
25
  /* Dashboard styles */
26
  .postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
27
  .postbox-adrotate h3 { margin:0; padding:7px 10px 7px 10px; box-shadow:#ddd 0px 1px 0px 0px; -moz-box-shadow:inset 0 1px 0 #ddd; -webkit-box-shadow:#ddd 0px 1px 0px 0px; line-height:15px; }
28
+ .postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
29
  .inside { padding:6px 10px 12px; clear:both; }
30
+ .pro-image { padding:0px 3px 0px 0px; }
31
+ .adrotate-photo { border-radius: 5px; }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
5
  Requires at least: 3.8, PHP5.3
6
  Tested up to: 4.3
7
- Stable tag: 3.12.1
8
 
9
  Used on over a hundred thousand websites and by even more people! With over a million downloads AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
10
 
@@ -90,27 +90,37 @@ If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?
90
 
91
  == Changelog ==
92
 
93
- = 3.12.1 FREE =
94
- * [fix] Block width not applied correctly for some users
95
- * [fix] %title% variable not converted correctly
96
-
97
- = 3.12 FREE =
98
- * [change] Improved WordPress 4.3 compatibility
99
- * [new] Now uses the same status system as AdRotate Pro
100
- * [new] Complete overhaul of the settings page
101
- * [fix] Wrong variable used for default advert sizes
102
- * [change] Updated H2 tags to H1 for WordPress 4.3
103
- * [change] Updated Widget Class structure
104
- * [change] Tweaks to the dashboard
105
- * [change] Revised debug options
106
- * [i18n] New and updated translation strings
107
-
108
- = 3.15 PRO =
109
- * [change] Updated H2 tags to H1 for WordPress 4.3
110
- * [fix] User dropdown not loaded if advertisers are disabled
111
- * [fix] Better check if Geo Targeting cookie should be created
112
- * [fix] Better filter for mobile vs. desktop adverts
113
- * [i18n] New and updated translation strings
 
 
 
 
 
 
 
 
 
 
114
 
115
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
116
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme)!
@@ -119,20 +129,14 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
119
 
120
  == Upgrade Notice ==
121
 
122
- = 3.12.1 FREE =
123
- * [fix] Block width not applied correctly for some users
124
- * [fix] %title% variable not converted correctly
125
-
126
- = 3.12 FREE =
127
- * [change] Improved WordPress 4.3 compatibility
128
- * [new] Now uses the same status system as AdRotate Pro
129
- * [new] Complete overhaul of the settings page
130
- * [fix] Wrong variable used for default advert sizes
131
- * [change] Updated H2 tags to H1 for WordPress 4.3
132
- * [change] Updated Widget Class structure
133
- * [change] Tweaks to the dashboard
134
- * [change] Revised debug options
135
- * [i18n] New and updated translation strings
136
 
137
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
138
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme)!
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
5
  Requires at least: 3.8, PHP5.3
6
  Tested up to: 4.3
7
+ Stable tag: 3.13
8
 
9
  Used on over a hundred thousand websites and by even more people! With over a million downloads AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
10
 
90
 
91
  == Changelog ==
92
 
93
+ = 3.13 FREE =
94
+ * [change] Use ABSPATH for files instead of own function
95
+ * [change] Dashboard optimizations and improvements
96
+ * [fix] Table layout for adverts, groups and schedules
97
+ * [fix] Select box layout for Post Injection
98
+ * [fix] Tracking error when using HTML5/JS/Flash ads
99
+ * [fix] Rare error when using bulk actions
100
+ * [i18n] New and changed translation strings
101
+
102
+ = 3.16.1 PRO =
103
+ * [new] Duplicate adverts with bulk actions
104
+ * [change] Use ABSPATH for files instead of own function
105
+
106
+ = 3.16 PRO =
107
+ * [new] Select if Mobile adverts show on phones and/or tablets
108
+ * [new] Adblock disguise
109
+ * [new] Switch to enable shortcodes in text widgets
110
+ * [new] Current and last months clicks for adverts and groups
111
+ * [new] Current and last months impressions for adverts and groups
112
+ * [change] Use get_home_path() for files instead of own function
113
+ * [change] Better rendering of live preview
114
+ * [change] CSV exports of adverts no longer supported
115
+ * [change] Dashboard optimizations and improvements
116
+ * [fix] Rendering for live preview for advertisers
117
+ * [fix] Don't allow special characters in the banner folder name
118
+ * [fix] Belgium not listed for Geo Targeting
119
+ * [fix] Table layout for adverts, groups and schedules
120
+ * [fix] Select box layout for Post Injection and Geo Targeting
121
+ * [fix] Tracking error when using HTML5/JS/Flash ads
122
+ * [fix] Geo Cookie life not saving properly
123
+ * [i18n] New and changed translation strings
124
 
125
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
126
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme)!
129
 
130
  == Upgrade Notice ==
131
 
132
+ = 3.13 FREE =
133
+ * [change] Use ABSPATH for files instead of own function
134
+ * [change] Dashboard optimizations and improvements
135
+ * [fix] Table layout for adverts, groups and schedules
136
+ * [fix] Select box layout for Post Injection
137
+ * [fix] Tracking error when using HTML5/JS/Flash ads
138
+ * [fix] Rare error when using bulk actions
139
+ * [i18n] New and changed translation strings
 
 
 
 
 
 
140
 
141
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme).
142
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme)!