AdRotate Banner Manager - Version 3.11.3

Version Description

FREE = * [fix] Undefined notice for some setups when using Page Injection * [fix] Incorrect path for images on some setups * [fix] Max ads wrongly applied to Groups in block mode * [fix] Cleaned up irrelevant user roles * [change] No longer use 'ORDER BY RAND()' for groups * [change] Blocks can now have up to 32 rows * [new] More error notices for wrongly configured adverts * [new] Revised upgrade routine with manual trigger * [new] Revised installer routine better self-healing function * [i18n] Updated group settings descriptions and labels

NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to AdRotate PRO.

Download this release

Release Info

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

Code changes from version 3.11.2 to 3.11.3

adrotate-export.php CHANGED
@@ -45,8 +45,7 @@ function adrotate_export_ads($ids) {
45
  $node->addChild('tracker', $single['tracker']);
46
  $node->addChild('responsive', $single['responsive']);
47
  $node->addChild('weight', $single['weight']);
48
- $node->addChild('cbudget', $single['cbudget']);
49
- $node->addChild('ibudget', $single['ibudget']);
50
  $node->addChild('crate', $single['crate']);
51
  $node->addChild('irate', $single['irate']);
52
  $node->addChild('cities', implode(',', unserialize($single['cities'])));
45
  $node->addChild('tracker', $single['tracker']);
46
  $node->addChild('responsive', $single['responsive']);
47
  $node->addChild('weight', $single['weight']);
48
+ $node->addChild('budget', $single['budget']);
 
49
  $node->addChild('crate', $single['crate']);
50
  $node->addChild('irate', $single['irate']);
51
  $node->addChild('cities', implode(',', unserialize($single['cities'])));
adrotate-functions.php CHANGED
@@ -534,19 +534,21 @@ function adrotate_evaluate_ad($ad_id) {
534
  $in7days = $now + 604800;
535
 
536
  // Fetch ad
537
- $ad = $wpdb->get_row($wpdb->prepare("SELECT `id`, `bannercode`, `tracker`, `link`, `imagetype`, `image`, `cbudget`, `ibudget`, `crate`, `irate` FROM `".$wpdb->prefix."adrotate` WHERE `id` = %d;", $ad_id));
538
- $advertiser = $wpdb->get_var("SELECT `user` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `group` = 0 AND `user` > 0 AND `schedule` = 0;");
539
  $stoptime = $wpdb->get_var("SELECT `stoptime` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
 
540
 
541
  $bannercode = stripslashes(htmlspecialchars_decode($ad->bannercode, ENT_QUOTES));
542
  // Determine error states
543
  if(
544
  strlen($bannercode) < 1 // AdCode empty
545
- OR ($ad->tracker == 'N' AND $advertiser > 0) // Didn't enable click-tracking, didn't provide a link, DID set a advertiser
546
  OR (!preg_match_all('/<a[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link present
547
- OR (!preg_match("/%image%/i", $bannercode) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
548
  OR (preg_match("/%image%/i", $bannercode) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
549
- OR ($ad->image == '' AND $ad->imagetype != '') // Image and Imagetype mismatch
 
 
 
 
550
  ) {
551
  return 'error';
552
  } else if(
534
  $in7days = $now + 604800;
535
 
536
  // Fetch ad
537
+ $ad = $wpdb->get_row($wpdb->prepare("SELECT `id`, `bannercode`, `tracker`, `link`, `imagetype`, `image`, `responsive` FROM `".$wpdb->prefix."adrotate` WHERE `id` = %d;", $ad_id));
 
538
  $stoptime = $wpdb->get_var("SELECT `stoptime` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
539
+ $schedules = $wpdb->get_var("SELECT COUNT(`schedule`) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `group` = 0 AND `user` = 0;");
540
 
541
  $bannercode = stripslashes(htmlspecialchars_decode($ad->bannercode, ENT_QUOTES));
542
  // Determine error states
543
  if(
544
  strlen($bannercode) < 1 // AdCode empty
 
545
  OR (!preg_match_all('/<a[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link present
 
546
  OR (preg_match("/%image%/i", $bannercode) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
547
+ OR (!preg_match("/%image%/i", $bannercode) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
548
+ OR (!preg_match("/%image%/i", $bannercode) AND $ad->responsive == 'Y') // Didn't use %image% but enabled Responsive
549
+ OR (strlen($ad->image) > 0 AND !preg_match("/full/", $ad->image) AND $ad->responsive == 'Y') // Filename not correct for Responsive
550
+ OR (($ad->image == '' AND $ad->imagetype != '') OR ($ad->image != '' AND $ad->imagetype == '')) // Image and Imagetype mismatch
551
+ OR $schedules == 0 // No Schedules for this ad
552
  ) {
553
  return 'error';
554
  } else if(
adrotate-manage-publisher.php CHANGED
@@ -71,6 +71,14 @@ function adrotate_insert_input() {
71
  $title = 'Ad '.$id;
72
  }
73
 
 
 
 
 
 
 
 
 
74
  // Sort out start dates
75
  if(strlen($smonth) > 0 AND !is_numeric($smonth)) $smonth = date_i18n('m');
76
  if(strlen($sday) > 0 AND !is_numeric($sday)) $sday = date_i18n('d');
@@ -118,9 +126,6 @@ function adrotate_insert_input() {
118
  // Set responsive value
119
  if(isset($responsive) AND strlen($responsive) != 0) $responsive = 'Y';
120
  else $responsive = 'N';
121
-
122
- // Format the URL (assume agnostic)
123
- if((strlen($link) > 0 OR $link != "") AND preg_match("/%link%/i", $bannercode) AND strlen($link) > 0) $bannercode = str_replace('%link%', $link, $bannercode);
124
 
125
  // Determine image settings ($image_field has priority!)
126
  if(strlen($image_field) > 1) {
@@ -128,7 +133,7 @@ function adrotate_insert_input() {
128
  $image = $image_field;
129
  } else if(strlen($image_dropdown) > 1) {
130
  $imagetype = "dropdown";
131
- $image = home_url()."/wp-content/banners/".$image_dropdown;
132
  } else {
133
  $imagetype = "";
134
  $image = "";
71
  $title = 'Ad '.$id;
72
  }
73
 
74
+ // Clean up bannercode
75
+ if(preg_match("/%ID%/", $bannercode)) $bannercode = str_replace('%ID%', '%id%', $bannercode);
76
+ if(preg_match("/%IMAGE%/", $bannercode)) $bannercode = str_replace('%IMAGE%', '%image%', $bannercode);
77
+ if(preg_match("/%TITLE%/", $bannercode)) $bannercode = str_replace('%TITLE%', '%title%', $bannercode);
78
+ if(preg_match("/%RANDOM%/", $bannercode)) $bannercode = str_replace('%RANDOM%', '%random%', $bannercode);
79
+ // Replace %link% with the actual url (Deprecate $link)
80
+ if(strlen($link) > 0 AND preg_match("/%link%/i", $bannercode)) $bannercode = str_replace('%link%', $link, $bannercode);
81
+
82
  // Sort out start dates
83
  if(strlen($smonth) > 0 AND !is_numeric($smonth)) $smonth = date_i18n('m');
84
  if(strlen($sday) > 0 AND !is_numeric($sday)) $sday = date_i18n('d');
126
  // Set responsive value
127
  if(isset($responsive) AND strlen($responsive) != 0) $responsive = 'Y';
128
  else $responsive = 'N';
 
 
 
129
 
130
  // Determine image settings ($image_field has priority!)
131
  if(strlen($image_field) > 1) {
133
  $image = $image_field;
134
  } else if(strlen($image_dropdown) > 1) {
135
  $imagetype = "dropdown";
136
+ $image = site_url()."/wp-content/banners/".$image_dropdown;
137
  } else {
138
  $imagetype = "";
139
  $image = "";
adrotate-output.php CHANGED
@@ -25,8 +25,7 @@ function adrotate_ad($banner_id, $individual = true, $group = 0, $block = 0, $si
25
  if($banner_id) {
26
  $banner = $wpdb->get_row($wpdb->prepare(
27
  "SELECT
28
- `id`, `bannercode`, `tracker`, `link`, `image`, `responsive`,
29
- `crate`, `irate`, `cbudget`, `ibudget`
30
  FROM
31
  `".$wpdb->prefix."adrotate`
32
  WHERE
@@ -45,10 +44,6 @@ function adrotate_ad($banner_id, $individual = true, $group = 0, $block = 0, $si
45
 
46
  $selected = array($banner->id => 0);
47
  $selected = adrotate_filter_schedule($selected, $banner);
48
-
49
- if($adrotate_config['enable_advertisers'] > 0 AND ($banner->crate > 0 OR $banner->irate > 0)) {
50
- $selected = adrotate_filter_budget($selected, $banner);
51
- }
52
  } else {
53
  $selected = false;
54
  }
@@ -107,9 +102,6 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
107
  if($group) {
108
  if($fallback == 0) $fallback = $group->fallback;
109
  if($weight > 0) $weightoverride = " AND `{$wpdb->prefix}adrotate`.`weight` >= '{$weight}'";
110
-
111
- // Limit group to save resources
112
- $amount = ($group->adspeed >= 10000) ? 10 : 20;
113
 
114
  // Get all ads in all selected groups
115
  $ads = $wpdb->get_results(
@@ -132,8 +124,8 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
132
  OR `{$wpdb->prefix}adrotate`.`type` = '2days'
133
  OR `{$wpdb->prefix}adrotate`.`type` = '7days')
134
  {$weightoverride}
135
- GROUP BY `{$wpdb->prefix}adrotate`.`id`
136
- ORDER BY RAND() LIMIT {$amount};");
137
 
138
  if($ads) {
139
  if($adrotate_debug['general'] == true) {
@@ -165,14 +157,20 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
165
  if($group->modus == 1) { // Dynamic ads
166
  $i = 1;
167
 
 
 
 
 
168
  $selected = adrotate_shuffle($selected);
169
  foreach($selected as $key => $banner) {
170
- $image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
171
-
172
- $output .= '<div class="g-dyn a-'.$banner->id.' c-'.$i.'">';
173
- $output .= $before.adrotate_ad_output($banner->id, $group->id, $banner->bannercode, $banner->tracker, $banner->link, $image, $banner->responsive).$after;
174
- $output .= '</div>';
175
- $i++;
 
 
176
  }
177
  } else if($group->modus == 2) { // Block of ads
178
  $block_count = $group->gridcolumns * $group->gridrows;
@@ -274,7 +272,7 @@ function adrotate_inject_pages($post_content) {
274
  $paragraph_count = $group_count;
275
  }
276
  $group_choice = array_rand($group_array, $paragraph_count);
277
- if(!is_array($group_choice)) $group_choice = array($page_choice);
278
 
279
  shuffle($group_choice);
280
  } else {
@@ -747,7 +745,7 @@ function adrotate_nonce_error() {
747
  echo ' <h2 style="text-align: center;">'.__('Oh no! Something went wrong!', 'adrotate').'</h2>';
748
  echo ' <p style="text-align: center;">'.__('WordPress was unable to verify the authenticity of the url you have clicked. Verify if the url used is valid or log in via your browser.', 'adrotate').'</p>';
749
  echo ' <p style="text-align: center;">'.__('If you have received the url you want to visit via email, you are being tricked!', 'adrotate').'</p>';
750
- echo ' <p style="text-align: center;">'.__('Contact support if the issue persists:', 'adrotate').' <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/" title="AdRotate Support" target="_blank">AdRotate Support</a>.</p>';
751
  }
752
 
753
  /*-------------------------------------------------------------
@@ -822,7 +820,6 @@ function adrotate_error($action, $arg = null) {
822
  function adrotate_notifications_dashboard() {
823
  global $adrotate_advert_status;
824
  if(current_user_can('adrotate_ad_manage')) {
825
-
826
  if(!is_array($adrotate_advert_status)) {
827
  $data = unserialize($adrotate_advert_status);
828
  } else {
@@ -849,16 +846,10 @@ function adrotate_notifications_dashboard() {
849
  if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
850
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
851
  echo ' <div class="adrotate_banner">';
852
- echo ' <div class="button_div">';
853
- echo ' <a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_free_banner&utm_campaign=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a>';
854
- echo ' </div>';
855
- 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 />';
856
- echo ' <span>'.__('Get more features to even better run your advertising campaigns.', 'adrotate' ).' '.__('Thank you for your consideration!', 'adrotate' ).'</span>';
857
- echo ' </div>';
858
- echo ' <a class="close_banner" href="admin.php?page=adrotate-pro&hide=1"><small>dismiss</small></a>';
859
- echo ' <div class="icon">';
860
- echo ' <img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/>';
861
- echo ' </div>';
862
  echo ' </div>';
863
  echo '</div>';
864
  }
@@ -867,20 +858,27 @@ function adrotate_notifications_dashboard() {
867
  if($review_banner != 1 AND $review_banner < (adrotate_now() - 2419200) AND strpos($page, 'adrotate') !== false) {
868
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
869
  echo ' <div class="adrotate_banner">';
870
- echo ' <div class="button_div">';
871
- echo ' <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a>';
872
- echo ' </div>';
873
- echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br />';
874
- echo ' <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/?utm_source=adrotate_free&utm_medium=adrotate_review_banner&utm_campaign=get_help" target="_blank">get in touch</a>!</span>';
875
- echo ' </div>';
876
- echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><small>dismiss</small></a>';
877
- echo ' <div class="icon">';
878
- echo ' <img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/>';
879
- echo ' </div>';
880
  echo ' </div>';
881
  echo '</div>';
882
  }
883
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  }
885
 
886
  /*-------------------------------------------------------------
@@ -894,7 +892,7 @@ function adrotate_notifications_dashboard() {
894
  function adrotate_welcome_pointer() {
895
  $pointer_content = '<h3>AdRotate '.ADROTATE_DISPLAY.'</h3>';
896
  $pointer_content .= '<p>'.__('Welcome, and thanks for using AdRotate. Everything related to AdRotate is in this menu. Check out the', 'adrotate').' <a href="http:\/\/ajdg.solutions\/manuals\/adrotate\/" target="_blank">'.__('manuals', 'adrotate').'</a> '.__('and', 'adrotate').' <a href="https:\/\/ajdg.solutions\/forums\/forum\/adrotate-for-wordpress\/" target="_blank">'.__('forums', 'adrotate').'</a>.</p>';
897
- $pointer_content .= '<p><strong>AdRotate Professional</strong><br />Did you know there is also a premium version of AdRotate? Learn how you can benefit from the <a href="admin.php?page=adrotate-pro" target="_blank">extra features</a>.</p>';
898
  ?>
899
  <script type="text/javascript">
900
  jQuery(document).ready(function($) {
@@ -944,7 +942,7 @@ function adrotate_help_info() {
944
  'id' => 'adrotate_thanks',
945
  'title' => 'Thank You',
946
  '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>'.
947
- '<p><strong>Add me:</strong> <a href="http://twitter.com/ajdgsolutions/" target="_blank">Twitter</a>, <a href="https://www.facebook.com/adrotate" target="_blank">Facebook</a>. <strong>Business:</strong> <a href="https://ajdg.solutions/" target="_blank">ajdg.solutions</a> <strong>Blog:</strong> <a href="http://meandmymac.net/" target="_blank">meandmymac.net</a> and <strong>adventure:</strong> <a href="http://www.floatingcoconut.net/" target="_blank">floatingcoconut.net</a>.</p>'
948
  )
949
  );
950
  }
25
  if($banner_id) {
26
  $banner = $wpdb->get_row($wpdb->prepare(
27
  "SELECT
28
+ `id`, `bannercode`, `tracker`, `link`, `image`, `responsive`
 
29
  FROM
30
  `".$wpdb->prefix."adrotate`
31
  WHERE
44
 
45
  $selected = array($banner->id => 0);
46
  $selected = adrotate_filter_schedule($selected, $banner);
 
 
 
 
47
  } else {
48
  $selected = false;
49
  }
102
  if($group) {
103
  if($fallback == 0) $fallback = $group->fallback;
104
  if($weight > 0) $weightoverride = " AND `{$wpdb->prefix}adrotate`.`weight` >= '{$weight}'";
 
 
 
105
 
106
  // Get all ads in all selected groups
107
  $ads = $wpdb->get_results(
124
  OR `{$wpdb->prefix}adrotate`.`type` = '2days'
125
  OR `{$wpdb->prefix}adrotate`.`type` = '7days')
126
  {$weightoverride}
127
+ GROUP BY `{$wpdb->prefix}adrotate`.`id`
128
+ ORDER BY `{$wpdb->prefix}adrotate`.`id`;");
129
 
130
  if($ads) {
131
  if($adrotate_debug['general'] == true) {
157
  if($group->modus == 1) { // Dynamic ads
158
  $i = 1;
159
 
160
+ // Limit group to save resources
161
+ $amount = ($group->adspeed >= 10000) ? 10 : 20;
162
+
163
+ // Randomize and trim output
164
  $selected = adrotate_shuffle($selected);
165
  foreach($selected as $key => $banner) {
166
+ if($i <= $amount) {
167
+ $image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
168
+
169
+ $output .= '<div class="g-dyn a-'.$banner->id.' c-'.$i.'">';
170
+ $output .= $before.adrotate_ad_output($banner->id, $group->id, $banner->bannercode, $banner->tracker, $banner->link, $image, $banner->responsive).$after;
171
+ $output .= '</div>';
172
+ $i++;
173
+ }
174
  }
175
  } else if($group->modus == 2) { // Block of ads
176
  $block_count = $group->gridcolumns * $group->gridrows;
272
  $paragraph_count = $group_count;
273
  }
274
  $group_choice = array_rand($group_array, $paragraph_count);
275
+ if(!is_array($group_choice)) $group_choice = array($group_choice);
276
 
277
  shuffle($group_choice);
278
  } else {
745
  echo ' <h2 style="text-align: center;">'.__('Oh no! Something went wrong!', 'adrotate').'</h2>';
746
  echo ' <p style="text-align: center;">'.__('WordPress was unable to verify the authenticity of the url you have clicked. Verify if the url used is valid or log in via your browser.', 'adrotate').'</p>';
747
  echo ' <p style="text-align: center;">'.__('If you have received the url you want to visit via email, you are being tricked!', 'adrotate').'</p>';
748
+ echo ' <p style="text-align: center;">'.__('Contact support if the issue persists:', 'adrotate').' <a href="https://ajdg.solutions/forums/" title="AdRotate Support" target="_blank">AJdG Solutions Support</a>.</p>';
749
  }
750
 
751
  /*-------------------------------------------------------------
820
  function adrotate_notifications_dashboard() {
821
  global $adrotate_advert_status;
822
  if(current_user_can('adrotate_ad_manage')) {
 
823
  if(!is_array($adrotate_advert_status)) {
824
  $data = unserialize($adrotate_advert_status);
825
  } else {
846
  if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
847
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
848
  echo ' <div class="adrotate_banner">';
849
+ echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_free_banner&utm_campaign=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a></div>';
850
+ 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>'.__('Get more features to even better run your advertising campaigns.', 'adrotate' ).' '.__('Thank you for your consideration!', 'adrotate' ).'</span></div>';
851
+ echo ' <a class="close_banner" href="admin.php?page=adrotate-pro&hide=1"><img title="Close" src="'.plugins_url('images/close-icon.png', __FILE__).'" alt=""/></a>';
852
+ echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
 
 
 
 
 
 
853
  echo ' </div>';
854
  echo '</div>';
855
  }
858
  if($review_banner != 1 AND $review_banner < (adrotate_now() - 2419200) AND strpos($page, 'adrotate') !== false) {
859
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
860
  echo ' <div class="adrotate_banner">';
861
+ 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>';
862
+ 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/?utm_source=adrotate_free&utm_medium=adrotate_review_banner&utm_campaign=get_help" target="_blank">get in touch</a>!</span></div>';
863
+ echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><img title="Close" src="'.plugins_url('images/close-icon.png', __FILE__).'" alt=""/></a>';
864
+ echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
 
 
 
 
 
 
865
  echo ' </div>';
866
  echo '</div>';
867
  }
868
  }
869
+
870
+ if(isset($_GET['upgrade']) AND $_GET['upgrade'] == 1) adrotate_check_upgrade();
871
+ $adrotate_db_version = get_option("adrotate_db_version");
872
+ $adrotate_version = get_option("adrotate_version");
873
+ if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
874
+ echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
875
+ echo ' <div class="adrotate_banner">';
876
+ echo ' <div class="button_div"><a class="button" href="admin.php?page=adrotate&upgrade=1">Upgrade Now</a></div>';
877
+ echo ' <div class="text">You have almost finished upgrading <strong>AdRotate</strong> to version <strong>'.ADROTATE_DISPLAY.'</strong>!<br /><span>To complete the update click the button on the left. This may take a few seconds to complete!</span></div>';
878
+ echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
879
+ echo ' </div>';
880
+ echo '</div>';
881
+ }
882
  }
883
 
884
  /*-------------------------------------------------------------
892
  function adrotate_welcome_pointer() {
893
  $pointer_content = '<h3>AdRotate '.ADROTATE_DISPLAY.'</h3>';
894
  $pointer_content .= '<p>'.__('Welcome, and thanks for using AdRotate. Everything related to AdRotate is in this menu. Check out the', 'adrotate').' <a href="http:\/\/ajdg.solutions\/manuals\/adrotate\/" target="_blank">'.__('manuals', 'adrotate').'</a> '.__('and', 'adrotate').' <a href="https:\/\/ajdg.solutions\/forums\/forum\/adrotate-for-wordpress\/" target="_blank">'.__('forums', 'adrotate').'</a>.</p>';
895
+ $pointer_content .= '<p><strong>AdRotate Professional</strong><br />Did you know there is also a premium version of AdRotate? Find out how you can benefit from the <a href="admin.php?page=adrotate-pro" target="_blank">extra features</a>.</p>';
896
  ?>
897
  <script type="text/javascript">
898
  jQuery(document).ready(function($) {
942
  'id' => 'adrotate_thanks',
943
  'title' => 'Thank You',
944
  '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>'.
945
+ '<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/" target="_blank">ajdg.solutions</a> <strong>Blog:</strong> <a href="http://meandmymac.net/" target="_blank">meandmymac.net</a> and <strong>adventure:</strong> <a href="http://www.floatingcoconut.net/" target="_blank">floatingcoconut.net</a>.</p>'
946
  )
947
  );
948
  }
adrotate-setup.php CHANGED
@@ -48,63 +48,64 @@ function adrotate_activate($network_wide) {
48
  function adrotate_activate_setup() {
49
  global $wpdb, $current_user, $userdata;
50
 
51
- if(!current_user_can('activate_plugins')) {
52
  deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
53
- wp_die('You do not have appropriate access to activate this plugin! Contact your administrator!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to plugins</a>.');
54
  return;
55
  } else {
56
- // Set defaults for internal versions
57
- add_option('adrotate_db_version', array('current' => ADROTATE_DB_VERSION, 'previous' => ''));
58
- add_option('adrotate_version', array('current' => ADROTATE_VERSION, 'previous' => ''));
59
-
60
- // Install tables for AdRotate
61
- adrotate_check_upgrade();
62
-
63
- // Set default settings and values
64
- add_option('adrotate_config', array());
65
- add_option('adrotate_notifications', array());
66
- add_option('adrotate_crawlers', array());
67
- add_option('adrotate_db_timer', date('U'));
68
- add_option('adrotate_debug', array('general' => false, 'dashboard' => false, 'userroles' => false, 'userstats' => false, 'stats' => false, 'track' => false));
69
- add_option('adrotate_advert_status', array('error' => 0, 'expired' => 0, 'expiressoon' => 0, 'normal' => 0, 'total' => 0));
70
- add_option('adrotate_geo_required', 0);
71
- add_option('adrotate_geo_requests', 0);
72
- add_option('adrotate_responsive_required', 0);
73
- add_option('adrotate_dynamic_required', 0);
74
- add_option('adrotate_hide_banner', adrotate_now());
75
- add_option('adrotate_hide_review', adrotate_now());
76
-
77
- adrotate_check_config();
78
-
79
- // Set the capabilities for the administrator
80
- $role = get_role('administrator');
81
- $role->add_cap("adrotate_advertiser");
82
- $role->add_cap("adrotate_global_report");
83
- $role->add_cap("adrotate_ad_manage");
84
- $role->add_cap("adrotate_ad_delete");
85
- $role->add_cap("adrotate_group_manage");
86
- $role->add_cap("adrotate_group_delete");
87
- $role->add_cap("adrotate_moderate");
88
- $role->add_cap("adrotate_moderate_approve");
89
-
90
- // Switch additional roles off
91
- adrotate_remove_roles();
92
- update_option('adrotate_roles', '0');
93
-
94
-
95
- // Set up some schedules
96
- $firstrun = adrotate_date_start('day');
97
- if(!wp_next_scheduled('adrotate_clean_trackerdata')) { // Periodically clean trackerdata
98
- wp_schedule_event($firstrun, 'twicedaily', 'adrotate_clean_trackerdata');
99
- }
100
-
101
- if(!wp_next_scheduled('adrotate_evaluate_ads')) {// Periodically check ads
102
- wp_schedule_event($firstrun + 1800, 'twicedaily', 'adrotate_evaluate_ads');
 
 
 
 
 
103
  }
104
-
105
- // Attempt to make the some folders
106
- if(!is_dir(ABSPATH.'wp-content/banners')) mkdir(ABSPATH.'/wp-content/banners', 0755);
107
- if(!is_dir(ABSPATH.'wp-content/reports')) mkdir(ABSPATH.'/wp-content/reports', 0755);
108
  }
109
  }
110
 
@@ -139,16 +140,10 @@ function adrotate_deactivate_setup() {
139
  update_option('adrotate_hide_review', adrotate_now());
140
 
141
  // Clean up capabilities from ALL users
142
- adrotate_remove_capability("adrotate_advertiser");
143
- adrotate_remove_capability("adrotate_global_report");
144
  adrotate_remove_capability("adrotate_ad_manage");
145
  adrotate_remove_capability("adrotate_ad_delete");
146
  adrotate_remove_capability("adrotate_group_manage");
147
  adrotate_remove_capability("adrotate_group_delete");
148
- adrotate_remove_capability("adrotate_schedule_manage");
149
- adrotate_remove_capability("adrotate_schedule_delete");
150
- adrotate_remove_capability("adrotate_moderate");
151
- adrotate_remove_capability("adrotate_moderate_approve");
152
 
153
  // Clear out wp_cron
154
  wp_clear_scheduled_hook('adrotate_notification');
@@ -183,16 +178,16 @@ function adrotate_uninstall_setup() {
183
  adrotate_deactivate_setup();
184
 
185
  // Drop MySQL Tables
186
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate`");
187
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate_groups`");
188
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate_tracker`");
189
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate_blocks`"); // Obsolete in 3.9.10
190
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate_linkmeta`");
191
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate_stats`");
192
- $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."adrotate_schedule`");
193
 
194
  // Delete Options
195
- delete_option('adrotate_active');
196
  delete_option('adrotate_advert_status');
197
  delete_option('adrotate_config');
198
  delete_option('adrotate_crawlers');
@@ -204,6 +199,7 @@ function adrotate_uninstall_setup() {
204
  delete_option('adrotate_hide_review');
205
  delete_option('adrotate_notifications');
206
  delete_option('adrotate_geo_required');
 
207
  delete_option('adrotate_responsive_required');
208
  delete_option('adrotate_dynamic_required');
209
  delete_option('adrotate_roles');
@@ -241,77 +237,6 @@ function adrotate_network_propagate($pfunction, $network_wide) {
241
  call_user_func($pfunction, $network_wide);
242
  }
243
 
244
- /*-------------------------------------------------------------
245
- Name: adrotate_check_upgrade
246
-
247
- Purpose: Checks if the plugin needs to upgrade stuff upon activation
248
- Receive: -none-
249
- Return: -none-
250
- Since: 3.7.3
251
- -------------------------------------------------------------*/
252
- function adrotate_check_upgrade() {
253
- global $wpdb, $current_user, $userdata;
254
-
255
- if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
256
- deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
257
- wp_die('AdRotate 3.10.8 and up requires PHP 5.3 or higher. Your server reports version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to plugins</a>.');
258
- return;
259
- } else {
260
- $adrotate_db_version = get_option("adrotate_db_version");
261
- $adrotate_version = get_option("adrotate_version");
262
-
263
- // Check if there are tables with AdRotate in the name
264
- if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate%';")) {
265
-
266
- // Install missing bits in database
267
- adrotate_database_install();
268
-
269
- // Old version? Upgrade
270
- if(is_array($adrotate_db_version) AND $adrotate_db_version['current'] < ADROTATE_DB_VERSION) {
271
- adrotate_database_upgrade();
272
- // Verify all ads
273
- adrotate_prepare_evaluate_ads(false);
274
- }
275
- } else {
276
- // Install new database
277
- adrotate_database_install();
278
-
279
- // Initial data
280
- $now = adrotate_now();
281
- $in84days = $now + 7257600;
282
-
283
- // Demo ad 1
284
- $wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '&lt;a href=\&quot;https:\/\/ajdg.solutions\&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, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
285
- $ad_id = $wpdb->insert_id;
286
- $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));
287
- $schedule_id = $wpdb->insert_id;
288
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
289
- unset($ad_id, $schedule_id);
290
-
291
- // Demo ad 2
292
- $wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '&lt;a href=\&quot;http:\/\/ajdg.solutions\&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, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
293
- $ad_id = $wpdb->insert_id;
294
- $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));
295
- $schedule_id = $wpdb->insert_id;
296
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
297
- unset($ad_id, $schedule_id);
298
-
299
- // Demo ad 3 (Floating Coconut)
300
- $wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Visit floatingcoconut.net', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.floatingcoconut.net\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/banners/floatingcoconut-horizontal.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
301
- $ad_id = $wpdb->insert_id;
302
- $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));
303
- $schedule_id = $wpdb->insert_id;
304
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
305
- unset($ad_id, $schedule_id);
306
- }
307
-
308
- // Check if there are changes to core that need upgrading
309
- if(is_array($adrotate_version) AND $adrotate_version['current'] < ADROTATE_VERSION) {
310
- adrotate_core_upgrade();
311
- }
312
- }
313
- }
314
-
315
  /*-------------------------------------------------------------
316
  Name: adrotate_check_config
317
 
@@ -386,6 +311,52 @@ function adrotate_check_config() {
386
 
387
  }
388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  /*-------------------------------------------------------------
390
  Name: adrotate_database_install
391
 
@@ -399,22 +370,27 @@ function adrotate_database_install() {
399
 
400
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
401
 
402
- $tables = adrotate_list_tables();
 
 
 
403
 
404
- if ( $wpdb->has_cap( 'collation' ) ) {
405
- if ( ! empty($wpdb->charset) )
406
- $charset_collate = " DEFAULT CHARACTER SET $wpdb->charset";
407
- if ( ! empty($wpdb->collate) )
408
- $charset_collate .= " COLLATE $wpdb->collate";
409
  }
410
 
411
- $engine = '';
412
- $found_engine = $wpdb->get_var("SELECT ENGINE FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA` = '".DB_NAME."' AND `TABLE_NAME` = '".$wpdb->prefix."posts';");
413
  if(strtolower($found_engine) == 'innodb') {
414
  $engine = ' ENGINE=InnoDB';
415
  }
416
 
417
- dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate']."` (
 
 
 
418
  `id` mediumint(8) unsigned NOT NULL auto_increment,
419
  `title` varchar(255) NOT NULL DEFAULT '',
420
  `bannercode` longtext NOT NULL,
@@ -429,16 +405,17 @@ function adrotate_database_install() {
429
  `type` varchar(10) NOT NULL default '0',
430
  `weight` int(3) NOT NULL default '6',
431
  `sortorder` int(5) NOT NULL default '0',
432
- `cbudget` double NOT NULL default '0',
433
- `ibudget` double NOT NULL default '0',
434
  `crate` double NOT NULL default '0',
435
  `irate` double NOT NULL default '0',
436
  `cities` text NOT NULL,
437
  `countries` text NOT NULL,
438
  PRIMARY KEY (`id`)
439
  ) ".$charset_collate.$engine.";");
 
440
 
441
- dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_groups']."` (
 
442
  `id` mediumint(8) unsigned NOT NULL auto_increment,
443
  `name` varchar(255) NOT NULL default '',
444
  `modus` tinyint(1) NOT NULL default '0',
@@ -465,8 +442,10 @@ function adrotate_database_install() {
465
  `adspeed` int(5) NOT NULL DEFAULT '6000',
466
  PRIMARY KEY (`id`)
467
  ) ".$charset_collate.$engine.";");
 
468
 
469
- dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_linkmeta']."` (
 
470
  `id` mediumint(8) unsigned NOT NULL auto_increment,
471
  `ad` int(5) unsigned NOT NULL default '0',
472
  `group` int(5) unsigned NOT NULL default '0',
@@ -474,8 +453,10 @@ function adrotate_database_install() {
474
  `schedule` int(5) unsigned NOT NULL default '0',
475
  PRIMARY KEY (`id`)
476
  ) ".$charset_collate.$engine.";");
 
477
 
478
- dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_schedule']."` (
 
479
  `id` int(8) unsigned NOT NULL auto_increment,
480
  `name` varchar(255) NOT NULL default '',
481
  `starttime` int(15) unsigned NOT NULL default '0',
@@ -487,8 +468,10 @@ function adrotate_database_install() {
487
  PRIMARY KEY (`id`),
488
  KEY `starttime` (`starttime`)
489
  ) ".$charset_collate.$engine.";");
 
490
 
491
- dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_stats']."` (
 
492
  `id` bigint(9) unsigned NOT NULL auto_increment,
493
  `ad` int(5) unsigned NOT NULL default '0',
494
  `group` int(5) unsigned NOT NULL default '0',
@@ -499,8 +482,10 @@ function adrotate_database_install() {
499
  INDEX `ad` (`ad`),
500
  INDEX `thetime` (`thetime`)
501
  ) ".$charset_collate.$engine.";");
 
502
 
503
- dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_tracker']."` (
 
504
  `id` bigint(9) unsigned NOT NULL auto_increment,
505
  `ipaddress` varchar(15) NOT NULL default '0',
506
  `timer` int(15) unsigned NOT NULL default '0',
@@ -513,6 +498,39 @@ function adrotate_database_install() {
513
  KEY `ipaddress` (`ipaddress`),
514
  KEY `timer` (`timer`)
515
  ) ".$charset_collate.$engine.";");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
516
  }
517
 
518
  /*-------------------------------------------------------------
@@ -526,94 +544,89 @@ function adrotate_database_install() {
526
  function adrotate_database_upgrade() {
527
  global $wpdb;
528
 
529
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
530
-
531
- $tables = adrotate_list_tables();
532
-
533
  $adrotate_db_version = get_option("adrotate_db_version");
534
 
535
  // Database: 24
536
  // AdRotate: 3.8b412
537
  if($adrotate_db_version['current'] < 24) {
538
- if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_stats_tracker'")) {
539
- $wpdb->query("RENAME TABLE `".$wpdb->prefix."adrotate_stats_tracker` TO `".$wpdb->prefix."adrotate_stats`;");
540
  }
541
  }
542
 
543
  // Database: 25
544
  // AdRotate: 3.8b413
545
  if($adrotate_db_version['current'] < 25) {
546
- $wpdb->query("CREATE INDEX `timer` ON `".$tables['adrotate_tracker']."` (timer);");
547
- $wpdb->query("CREATE INDEX `ipaddress` ON `".$tables['adrotate_tracker']."` (ipaddress);");
548
- $wpdb->query("CREATE INDEX `ad` ON `".$tables['adrotate_stats']."` (ad);");
549
- $wpdb->query("CREATE INDEX `thetime` ON `".$tables['adrotate_stats']."` (thetime);");
550
  }
551
 
552
  // Database: 26
553
  // AdRotate: 3.8.1
554
  if($adrotate_db_version['current'] < 26) {
555
- adrotate_add_column($tables['adrotate'], 'cbudget', 'double NOT NULL default \'0\' AFTER `sortorder`');
556
- adrotate_add_column($tables['adrotate'], 'ibudget', 'double NOT NULL default \'0\' AFTER `cbudget`');
557
- adrotate_add_column($tables['adrotate'], 'crate', 'double NOT NULL default \'0\' AFTER `ibudget`');
558
- adrotate_add_column($tables['adrotate'], 'irate', 'double NOT NULL default \'0\' AFTER `crate`');
559
  }
560
 
561
  // Database: 30
562
  // AdRotate: 3.8.3.4
563
  if($adrotate_db_version['current'] < 30) {
564
- adrotate_add_column($tables['adrotate_groups'], 'wrapper_before', 'longtext NOT NULL AFTER `page_loc`');
565
- adrotate_add_column($tables['adrotate_groups'], 'wrapper_after', 'longtext NOT NULL AFTER `wrapper_before`');
566
  }
567
 
568
  // Database: 32
569
  // AdRotate: 3.8.4.4
570
  if($adrotate_db_version['current'] < 32) {
571
- adrotate_add_column($tables['adrotate'], 'cities', 'text NOT NULL AFTER `irate`');
572
- adrotate_add_column($tables['adrotate'], 'countries', 'text NOT NULL AFTER `cities`');
573
  $geo_array = serialize(array());
574
- $wpdb->query("UPDATE `".$tables['adrotate']."` SET `cities` = '$geo_array' WHERE `cities` = '';");
575
- $wpdb->query("UPDATE `".$tables['adrotate']."` SET `countries` = '$geo_array' WHERE `countries` = '';");
576
- adrotate_add_column($tables['adrotate_groups'], 'geo', 'tinyint(1) NOT NULL default \'0\' AFTER `page_loc`');
577
  }
578
 
579
  // Database: 33
580
  // AdRotate: 3.8.6
581
  if($adrotate_db_version['current'] < 33) {
582
- adrotate_del_column($tables['adrotate_groups'], 'token');
583
- adrotate_add_column($tables['adrotate_groups'], 'modus', 'tinyint(1) NOT NULL default \'0\' AFTER `name`');
584
- adrotate_add_column($tables['adrotate_groups'], 'gridrows', 'int(3) NOT NULL default \'2\' AFTER `wrapper_after`');
585
- adrotate_add_column($tables['adrotate_groups'], 'gridcolumns', 'int(3) NOT NULL default \'2\' AFTER `gridrows`');
586
- adrotate_add_column($tables['adrotate_groups'], 'admargin', 'int(3) NOT NULL default \'1\' AFTER `gridcolumns`');
587
- adrotate_add_column($tables['adrotate_groups'], 'adwidth', 'varchar(4) NOT NULL default \'125\' AFTER `admargin`');
588
- adrotate_add_column($tables['adrotate_groups'], 'adheight', 'varchar(4) NOT NULL default \'125\' AFTER `adwidth`');
589
- adrotate_add_column($tables['adrotate_groups'], 'adspeed', 'int(5) NOT NULL default \'6000\' AFTER `adheight`');
590
  }
591
 
592
 
593
  // Database: 36
594
  // AdRotate: 3.8.10
595
  if($adrotate_db_version['current'] < 36) {
596
- adrotate_add_column($tables['adrotate_groups'], 'admargin_bottom', 'int(3) NOT NULL default \'1\' AFTER `admargin`');
597
- adrotate_add_column($tables['adrotate_groups'], 'admargin_left', 'int(3) NOT NULL default \'1\' AFTER `admargin_bottom`');
598
- adrotate_add_column($tables['adrotate_groups'], 'admargin_right', 'int(3) NOT NULL default \'1\' AFTER `admargin_left`');
599
  }
600
 
601
  // Database: 38
602
  // AdRotate: 3.9
603
  if($adrotate_db_version['current'] < 38) {
604
- adrotate_add_column($tables['adrotate_linkmeta'], 'schedule', 'int(5) NOT NULL default \'0\' AFTER `user`');
605
- $schedules = $wpdb->get_results("SELECT `id`, `ad` FROM ".$tables['adrotate_schedule']." ORDER BY `id` ASC;");
606
  foreach($schedules as $schedule) {
607
- $wpdb->insert($tables['adrotate_linkmeta'], array('ad' => $schedule->ad, 'group' => 0, 'user' => 0, 'schedule' => $schedule->id), array('%d', '%d', '%d', '%d', '%d'));
608
  unset($schedule);
609
  }
610
  unset($schedules);
611
- adrotate_add_column($tables['adrotate_schedule'], 'name', 'varchar(255) NOT NULL default \'\' AFTER `id`');
612
- adrotate_del_column($tables['adrotate_schedule'], 'ad');
613
 
614
- $schedules = $wpdb->get_results("SELECT `id` FROM ".$tables['adrotate_schedule']." WHERE `name` = '' ORDER BY `id` ASC;");
615
  foreach($schedules as $schedule) {
616
- $wpdb->update($tables['adrotate_schedule'], array('name' => 'Schedule '.$schedule->id), array('id' => $schedule->id));
617
  unset($schedule);
618
  }
619
  unset($schedules);
@@ -622,101 +635,108 @@ function adrotate_database_upgrade() {
622
  // Database: 39
623
  // AdRotate: 3.9.1
624
  if($adrotate_db_version['current'] < 39) {
625
- adrotate_add_column($tables['adrotate_tracker'], 'country', 'text NOT NULL AFTER `useragent`');
626
- adrotate_add_column($tables['adrotate_tracker'], 'city', 'text NOT NULL AFTER `country`');
627
  }
628
 
629
  // Database: 40
630
  // AdRotate: 3.9.9
631
  if($adrotate_db_version['current'] < 40) {
632
- adrotate_add_column($tables['adrotate'], 'responsive', 'varchar(5) NOT NULL default \'N\' AFTER `tracker`');
633
  }
634
 
635
  // Database: 41
636
  // AdRotate: 3.9.12
637
  if($adrotate_db_version['current'] < 41) {
638
- adrotate_add_column($tables['adrotate_groups'], 'page_par', 'tinyint(1) NOT NULL default \'0\' AFTER `page_loc`');
639
- adrotate_add_column($tables['adrotate_groups'], 'cat_par', 'tinyint(1) NOT NULL default \'0\' AFTER `cat_loc`');
640
  }
641
 
642
  // Database: 42
643
  // AdRotate: 3.10
644
  if($adrotate_db_version['current'] < 42) {
645
- adrotate_add_column($tables['adrotate_schedule'], 'spread', 'varchar(5) NOT NULL default \'N\' AFTER `maximpressions`');
646
- adrotate_add_column($tables['adrotate_schedule'], 'hourimpressions', 'int(15) NOT NULL default \'0\' AFTER `spread`');
647
- $wpdb->query("ALTER TABLE `".$tables['adrotate_groups']."` CHANGE `page_par` `page_par` tinyint(2) NOT NULL default '0';");
648
- $wpdb->query("ALTER TABLE `".$tables['adrotate_groups']."` CHANGE `cat_par` `cat_par` tinyint(2) NOT NULL default '0';");
649
  }
650
 
651
  // Database: 43
652
  // AdRotate: 3.10.7
653
  if($adrotate_db_version['current'] < 43) {
654
- $wpdb->query("ALTER TABLE `".$tables['adrotate_groups']."` CHANGE `admargin` `admargin` int(2) NOT NULL default '0';");
655
- $wpdb->query("ALTER TABLE `".$tables['adrotate_groups']."` CHANGE `admargin_bottom` `admargin_bottom` int(2) NOT NULL default '0';");
656
- $wpdb->query("ALTER TABLE `".$tables['adrotate_groups']."` CHANGE `admargin_left` `admargin_left` int(2) NOT NULL default '0';");
657
- $wpdb->query("ALTER TABLE `".$tables['adrotate_groups']."` CHANGE `admargin_right` `admargin_right` int(2) NOT NULL default '0';");
658
  }
659
 
660
  // Database: 44
661
  // AdRotate: 3.10.8
662
  if($adrotate_db_version['current'] < 44) {
663
- adrotate_del_column($tables['adrotate'], 'timeframe');
664
- adrotate_del_column($tables['adrotate'], 'timeframelength');
665
- adrotate_del_column($tables['adrotate'], 'timeframeclicks');
666
- adrotate_del_column($tables['adrotate'], 'timeframeimpressions');
667
  }
668
 
669
  // Database: 46
670
  // AdRotate: 3.10.13
671
  if($adrotate_db_version['current'] < 46) {
672
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `hourimpressions` `dayimpressions` int(15) NOT NULL default '0';");
673
  }
674
 
675
  // Database: 47
676
  // AdRotate: 3.10.18
677
  if($adrotate_db_version['current'] < 47) {
678
- adrotate_add_column($tables['adrotate_groups'], 'align', 'tinyint(1) NOT NULL default \'0\' AFTER `wrapper_after`');
679
  }
680
 
681
  // Database: 48
682
  // AdRotate: 3.11.2b2
683
  if($adrotate_db_version['current'] < 48) {
684
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_tracker']."` WHERE Key_name = 'bannerid';") !== null) {
685
- $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` DROP KEY `bannerid`;");
686
  }
687
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_schedule']."` WHERE Key_name = 'stoptime';") !== null) {
688
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` DROP KEY `stoptime`;");
689
  }
690
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_schedule']."` WHERE Key_name = 'ad';") !== null) {
691
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` DROP KEY `ad`;");
692
  }
693
- adrotate_del_column($tables['adrotate_stats'], 'block');
694
- adrotate_del_column($tables['adrotate_linkmeta'], 'block');
695
  }
696
 
697
  // Database: 49
698
  // AdRotate: 3.11.2b3
699
  if($adrotate_db_version['current'] < 49) {
700
- $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `ad` `ad` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
701
- $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `group` `group` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
702
- $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `thetime` `thetime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
703
- $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `clicks` `clicks` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
704
- $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `impressions` `impressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
705
-
706
- $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` CHANGE `ipaddress` `ipaddress` char(15) NOT NULL DEFAULT '';");
707
- $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` CHANGE `timer` `timer` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
708
- $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` CHANGE `bannerid` `bannerid` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
709
-
710
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `starttime` `starttime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
711
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `stoptime` `stoptime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
712
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `maxclicks` `maxclicks` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
713
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `maximpressions` `maximpressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
714
- $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `dayimpressions` `dayimpressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
715
-
716
- $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `ad` `ad` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
717
- $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `group` `group` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
718
- $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `user` `user` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
719
- $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `schedule` `schedule` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
 
 
 
 
 
 
 
720
  }
721
 
722
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
@@ -881,10 +901,9 @@ function adrotate_optimize_database() {
881
 
882
  $adrotate_db_timer = get_option('adrotate_db_timer');
883
  $now = adrotate_now();
884
- $tables = adrotate_list_tables();
885
 
886
  if($adrotate_db_timer < ($now - 86400)) {
887
- dbDelta("OPTIMIZE TABLE `".$tables['adrotate']."`, `".$tables['adrotate_groups']."`, `".$tables['adrotate_linkmeta']."`, `".$tables['adrotate_stats']."`, `".$tables['adrotate_tracker']."`, `".$tables['adrotate_schedule']."`, ;");
888
  update_option('adrotate_db_timer', $now);
889
  adrotate_return('db_optimized');
890
  } else {
@@ -907,26 +926,26 @@ function adrotate_cleanup_database() {
907
 
908
  // Delete expired schedules
909
  if(isset($_POST['adrotate_db_cleanup_schedules'])) {
910
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_schedule` WHERE `stoptime` < $now;");
911
  }
912
 
913
  // Delete old stats
914
  if(isset($_POST['adrotate_db_cleanup_statistics'])) {
915
  $lastyear = $now - 30758400;
916
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_stats` WHERE `thetime` < $lastyear;");
917
  }
918
 
919
  // Clean up Tracker data
920
  $yesterday = $now - 2073600;
921
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_tracker` WHERE `timer` < $yesterday;");
922
 
923
  // Delete empty ads, groups and schedules
924
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'empty' OR `type` = 'a_empty';");
925
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` = '';");
926
 
927
  // Clean up meta data
928
- $ads = $wpdb->get_results("SELECT `id` FROM `".$wpdb->prefix."adrotate` ORDER BY `id`;");
929
- $metas = $wpdb->get_results("SELECT `id`, `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` != '0' ORDER BY `id`;");
930
 
931
  $adverts = $linkmeta = array();
932
  foreach($ads as $ad) {
@@ -938,13 +957,13 @@ function adrotate_cleanup_database() {
938
 
939
  $result = array_diff($linkmeta, $adverts);
940
  foreach($result as $key => $value) {
941
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `id` = $key;");
942
  unset($result[$key]);
943
  }
944
  unset($ads, $metas, $adverts, $linkmeta, $result);
945
 
946
  // Clean up stray linkmeta
947
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = 0 OR `ad` = '';");
948
 
949
  adrotate_return('db_cleaned');
950
  }
@@ -964,7 +983,7 @@ function adrotate_clean_trackerdata() {
964
  $clicks = $now - 86400;
965
  $impressions = $now - 3600;
966
 
967
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_tracker` WHERE (`timer` < ".$clicks." AND `stat` = 'c') OR (`timer` < ".$impressions." AND `stat` = 'i') OR `ipaddress` = 'unknown' OR `ipaddress` = '';");
968
  }
969
 
970
  /*-------------------------------------------------------------
@@ -1011,27 +1030,4 @@ function adrotate_del_column($table_name, $column_name) {
1011
 
1012
  return false;
1013
  }
1014
-
1015
- /*-------------------------------------------------------------
1016
- Name: adrotate_list_tables
1017
-
1018
- Purpose: List tables for AdRotate in an array
1019
- Receive: -None-
1020
- Return: -None-
1021
- Since: 3.4
1022
- -------------------------------------------------------------*/
1023
- function adrotate_list_tables() {
1024
- global $wpdb;
1025
-
1026
- $tables = array(
1027
- 'adrotate' => $wpdb->prefix . "adrotate", // Since 0.1
1028
- 'adrotate_groups' => $wpdb->prefix . "adrotate_groups", // Since 0.2
1029
- 'adrotate_tracker' => $wpdb->prefix . "adrotate_tracker", // Since 2.0
1030
- 'adrotate_linkmeta' => $wpdb->prefix . "adrotate_linkmeta", // Since 3.0
1031
- 'adrotate_stats' => $wpdb->prefix . "adrotate_stats", // Since 3.5 (renamed in 3.8)
1032
- 'adrotate_schedule' => $wpdb->prefix . "adrotate_schedule", // Since 3.6.11a1
1033
- );
1034
-
1035
- return $tables;
1036
- }
1037
  ?>
48
  function adrotate_activate_setup() {
49
  global $wpdb, $current_user, $userdata;
50
 
51
+ if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
52
  deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
53
+ wp_die('AdRotate 3.10.8 and newer requires PHP 5.3 or higher. Your server reports version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to dashboard</a>.');
54
  return;
55
  } else {
56
+ if(!current_user_can('activate_plugins')) {
57
+ deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
58
+ wp_die('You do not have appropriate access to activate this plugin! Contact your administrator!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to dashboard</a>.');
59
+ return;
60
+ } else {
61
+ // Set defaults for internal versions
62
+ add_option('adrotate_db_version', array('current' => ADROTATE_DB_VERSION, 'previous' => ''));
63
+ add_option('adrotate_version', array('current' => ADROTATE_VERSION, 'previous' => ''));
64
+
65
+ // Set default settings and values
66
+ add_option('adrotate_config', array());
67
+ add_option('adrotate_notifications', array());
68
+ add_option('adrotate_crawlers', array());
69
+ add_option('adrotate_db_timer', date('U'));
70
+ add_option('adrotate_debug', array('general' => false, 'dashboard' => false, 'userroles' => false, 'userstats' => false, 'stats' => false, 'track' => false));
71
+ add_option('adrotate_advert_status', array('error' => 0, 'expired' => 0, 'expiressoon' => 0, 'normal' => 0, 'total' => 0));
72
+ add_option('adrotate_geo_required', 0);
73
+ add_option('adrotate_geo_requests', 0);
74
+ add_option('adrotate_responsive_required', 0);
75
+ add_option('adrotate_dynamic_required', 0);
76
+ add_option('adrotate_hide_banner', adrotate_now());
77
+ add_option('adrotate_hide_review', adrotate_now());
78
+
79
+ // Install new database
80
+ adrotate_database_install();
81
+ adrotate_dummy_data();
82
+ adrotate_check_config();
83
+
84
+ // Set the capabilities for the administrator
85
+ $role = get_role('administrator');
86
+ $role->add_cap("adrotate_ad_manage");
87
+ $role->add_cap("adrotate_ad_delete");
88
+ $role->add_cap("adrotate_group_manage");
89
+ $role->add_cap("adrotate_group_delete");
90
+
91
+ // Switch additional roles off
92
+ adrotate_remove_roles();
93
+ update_option('adrotate_roles', '0');
94
+
95
+ // Set up some schedules
96
+ $firstrun = adrotate_date_start('day');
97
+ if(!wp_next_scheduled('adrotate_clean_trackerdata')) { // Periodically clean trackerdata
98
+ wp_schedule_event($firstrun, 'twicedaily', 'adrotate_clean_trackerdata');
99
+ }
100
+
101
+ if(!wp_next_scheduled('adrotate_evaluate_ads')) {// Periodically check ads
102
+ wp_schedule_event($firstrun + 1800, 'twicedaily', 'adrotate_evaluate_ads');
103
+ }
104
+
105
+ // Attempt to make the some folders
106
+ if(!is_dir(ABSPATH.'wp-content/banners')) mkdir(ABSPATH.'/wp-content/banners', 0755);
107
+ if(!is_dir(ABSPATH.'wp-content/reports')) mkdir(ABSPATH.'/wp-content/reports', 0755);
108
  }
 
 
 
 
109
  }
110
  }
111
 
140
  update_option('adrotate_hide_review', adrotate_now());
141
 
142
  // Clean up capabilities from ALL users
 
 
143
  adrotate_remove_capability("adrotate_ad_manage");
144
  adrotate_remove_capability("adrotate_ad_delete");
145
  adrotate_remove_capability("adrotate_group_manage");
146
  adrotate_remove_capability("adrotate_group_delete");
 
 
 
 
147
 
148
  // Clear out wp_cron
149
  wp_clear_scheduled_hook('adrotate_notification');
178
  adrotate_deactivate_setup();
179
 
180
  // Drop MySQL Tables
181
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate`");
182
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_groups`");
183
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_tracker`");
184
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_blocks`"); // Obsolete in 3.9.10
185
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_linkmeta`");
186
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_stats`");
187
+ $wpdb->query("DROP TABLE IF EXISTS `{$wpdb->prefix}adrotate_schedule`");
188
 
189
  // Delete Options
190
+ delete_option('adrotate_activate');
191
  delete_option('adrotate_advert_status');
192
  delete_option('adrotate_config');
193
  delete_option('adrotate_crawlers');
199
  delete_option('adrotate_hide_review');
200
  delete_option('adrotate_notifications');
201
  delete_option('adrotate_geo_required');
202
+ delete_option('adrotate_geo_requests');
203
  delete_option('adrotate_responsive_required');
204
  delete_option('adrotate_dynamic_required');
205
  delete_option('adrotate_roles');
237
  call_user_func($pfunction, $network_wide);
238
  }
239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  /*-------------------------------------------------------------
241
  Name: adrotate_check_config
242
 
311
 
312
  }
313
 
314
+ /*-------------------------------------------------------------
315
+ Name: adrotate_dummy_data
316
+
317
+ Purpose: Install dummy data in empty tables
318
+ Receive: -none-
319
+ Return: -none-
320
+ Since: 3.11.3
321
+ -------------------------------------------------------------*/
322
+ function adrotate_dummy_data() {
323
+ global $wpdb;
324
+
325
+ // Initial data
326
+ $now = adrotate_now();
327
+ $in84days = $now + 7257600;
328
+
329
+ $no_ads = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate` LIMIT 1;");
330
+ $no_schedules = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate_schedule` LIMIT 1;");
331
+ $no_linkmeta = $wpdb->get_var("SELECT `id` FROM `{$wpdb->prefix}adrotate_linkmeta` LIMIT 1;");
332
+
333
+ if(is_null($no_ads) AND is_null($no_schedules) AND is_null($no_linkmeta)) {
334
+ // Demo ad 1
335
+ $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '&lt;a href=\&quot;https:\/\/ajdg.solutions\&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())));
336
+ $ad_id = $wpdb->insert_id;
337
+ $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));
338
+ $schedule_id = $wpdb->insert_id;
339
+ $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
340
+ unset($ad_id, $schedule_id);
341
+
342
+ // Demo ad 2
343
+ $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '&lt;a href=\&quot;http:\/\/ajdg.solutions\&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())));
344
+ $ad_id = $wpdb->insert_id;
345
+ $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));
346
+ $schedule_id = $wpdb->insert_id;
347
+ $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
348
+ unset($ad_id, $schedule_id);
349
+
350
+ // Demo ad 3 (Floating Coconut)
351
+ $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Visit floatingcoconut.net', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.floatingcoconut.net\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/banners/floatingcoconut-horizontal.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
352
+ $ad_id = $wpdb->insert_id;
353
+ $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));
354
+ $schedule_id = $wpdb->insert_id;
355
+ $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
356
+ unset($ad_id, $schedule_id);
357
+ }
358
+ }
359
+
360
  /*-------------------------------------------------------------
361
  Name: adrotate_database_install
362
 
370
 
371
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
372
 
373
+ // Initial data
374
+ $charset_collate = $engine = '';
375
+ $now = adrotate_now();
376
+ $in84days = $now + 7257600;
377
 
378
+ if(!empty($wpdb->charset)) {
379
+ $charset_collate .= " DEFAULT CHARACTER SET {$wpdb->charset}";
380
+ }
381
+ if($wpdb->has_cap('collation') AND !empty($wpdb->collate)) {
382
+ $charset_collate .= " COLLATE {$wpdb->collate}";
383
  }
384
 
385
+ $found_engine = $wpdb->get_var("SELECT ENGINE FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA` = '".DB_NAME."' AND `TABLE_NAME` = '{$wpdb->prefix}posts';");
 
386
  if(strtolower($found_engine) == 'innodb') {
387
  $engine = ' ENGINE=InnoDB';
388
  }
389
 
390
+ $found_tables = $wpdb->get_col("SHOW TABLES LIKE '{$wpdb->prefix}adrotate';");
391
+
392
+ if(!in_array("{$wpdb->prefix}adrotate", $found_tables)) {
393
+ dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate` (
394
  `id` mediumint(8) unsigned NOT NULL auto_increment,
395
  `title` varchar(255) NOT NULL DEFAULT '',
396
  `bannercode` longtext NOT NULL,
405
  `type` varchar(10) NOT NULL default '0',
406
  `weight` int(3) NOT NULL default '6',
407
  `sortorder` int(5) NOT NULL default '0',
408
+ `budget` double NOT NULL default '0',
 
409
  `crate` double NOT NULL default '0',
410
  `irate` double NOT NULL default '0',
411
  `cities` text NOT NULL,
412
  `countries` text NOT NULL,
413
  PRIMARY KEY (`id`)
414
  ) ".$charset_collate.$engine.";");
415
+ }
416
 
417
+ if(!in_array("{$wpdb->prefix}adrotate_groups", $found_tables)) {
418
+ dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_groups` (
419
  `id` mediumint(8) unsigned NOT NULL auto_increment,
420
  `name` varchar(255) NOT NULL default '',
421
  `modus` tinyint(1) NOT NULL default '0',
442
  `adspeed` int(5) NOT NULL DEFAULT '6000',
443
  PRIMARY KEY (`id`)
444
  ) ".$charset_collate.$engine.";");
445
+ }
446
 
447
+ if(!in_array("{$wpdb->prefix}adrotate_linkmeta", $found_tables)) {
448
+ dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_linkmeta` (
449
  `id` mediumint(8) unsigned NOT NULL auto_increment,
450
  `ad` int(5) unsigned NOT NULL default '0',
451
  `group` int(5) unsigned NOT NULL default '0',
453
  `schedule` int(5) unsigned NOT NULL default '0',
454
  PRIMARY KEY (`id`)
455
  ) ".$charset_collate.$engine.";");
456
+ }
457
 
458
+ if(!in_array("{$wpdb->prefix}adrotate_schedule", $found_tables)) {
459
+ dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_schedule` (
460
  `id` int(8) unsigned NOT NULL auto_increment,
461
  `name` varchar(255) NOT NULL default '',
462
  `starttime` int(15) unsigned NOT NULL default '0',
468
  PRIMARY KEY (`id`),
469
  KEY `starttime` (`starttime`)
470
  ) ".$charset_collate.$engine.";");
471
+ }
472
 
473
+ if(!in_array("{$wpdb->prefix}adrotate_stats", $found_tables)) {
474
+ dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_stats` (
475
  `id` bigint(9) unsigned NOT NULL auto_increment,
476
  `ad` int(5) unsigned NOT NULL default '0',
477
  `group` int(5) unsigned NOT NULL default '0',
482
  INDEX `ad` (`ad`),
483
  INDEX `thetime` (`thetime`)
484
  ) ".$charset_collate.$engine.";");
485
+ }
486
 
487
+ if(!in_array("{$wpdb->prefix}adrotate_tracker", $found_tables)) {
488
+ dbDelta("CREATE TABLE `{$wpdb->prefix}adrotate_tracker` (
489
  `id` bigint(9) unsigned NOT NULL auto_increment,
490
  `ipaddress` varchar(15) NOT NULL default '0',
491
  `timer` int(15) unsigned NOT NULL default '0',
498
  KEY `ipaddress` (`ipaddress`),
499
  KEY `timer` (`timer`)
500
  ) ".$charset_collate.$engine.";");
501
+ }
502
+ }
503
+
504
+
505
+ /*-------------------------------------------------------------
506
+ Name: adrotate_check_upgrade
507
+
508
+ Purpose: Checks if the plugin needs to upgrade stuff upon activation
509
+ Receive: -none-
510
+ Return: -none-
511
+ Since: 3.7.3
512
+ -------------------------------------------------------------*/
513
+ function adrotate_check_upgrade() {
514
+ global $wpdb;
515
+
516
+ if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
517
+ deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
518
+ wp_die('AdRotate 3.10.8 and up requires PHP 5.3 or higher. Your server reports version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to plugins</a>.');
519
+ return;
520
+ } else {
521
+ // Old version? Upgrade
522
+ $adrotate_db_version = get_option("adrotate_db_version");
523
+ if($adrotate_db_version['current'] < ADROTATE_DB_VERSION) {
524
+ adrotate_database_upgrade();
525
+ adrotate_prepare_evaluate_ads(false);
526
+ }
527
+
528
+ // Check if there are changes to core that need upgrading
529
+ $adrotate_version = get_option("adrotate_version");
530
+ if($adrotate_version['current'] < ADROTATE_VERSION) {
531
+ adrotate_core_upgrade();
532
+ }
533
+ }
534
  }
535
 
536
  /*-------------------------------------------------------------
544
  function adrotate_database_upgrade() {
545
  global $wpdb;
546
 
 
 
 
 
547
  $adrotate_db_version = get_option("adrotate_db_version");
548
 
549
  // Database: 24
550
  // AdRotate: 3.8b412
551
  if($adrotate_db_version['current'] < 24) {
552
+ if($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}adrotate_stats_tracker'")) {
553
+ $wpdb->query("RENAME TABLE `{$wpdb->prefix}adrotate_stats_tracker` TO `{$wpdb->prefix}adrotate_stats`;");
554
  }
555
  }
556
 
557
  // Database: 25
558
  // AdRotate: 3.8b413
559
  if($adrotate_db_version['current'] < 25) {
560
+ $wpdb->query("CREATE INDEX `timer` ON `{$wpdb->prefix}adrotate_tracker` (timer);");
561
+ $wpdb->query("CREATE INDEX `ipaddress` ON `{$wpdb->prefix}adrotate_tracker` (ipaddress);");
562
+ $wpdb->query("CREATE INDEX `ad` ON `{$wpdb->prefix}adrotate_stats` (ad);");
563
+ $wpdb->query("CREATE INDEX `thetime` ON `{$wpdb->prefix}adrotate_stats` (thetime);");
564
  }
565
 
566
  // Database: 26
567
  // AdRotate: 3.8.1
568
  if($adrotate_db_version['current'] < 26) {
569
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'budget', 'double NOT NULL default \'0\' AFTER `sortorder`');
570
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'crate', 'double NOT NULL default \'0\' AFTER `budget`');
571
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'irate', 'double NOT NULL default \'0\' AFTER `crate`');
 
572
  }
573
 
574
  // Database: 30
575
  // AdRotate: 3.8.3.4
576
  if($adrotate_db_version['current'] < 30) {
577
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'wrapper_before', 'longtext NOT NULL AFTER `page_loc`');
578
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'wrapper_after', 'longtext NOT NULL AFTER `wrapper_before`');
579
  }
580
 
581
  // Database: 32
582
  // AdRotate: 3.8.4.4
583
  if($adrotate_db_version['current'] < 32) {
584
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'cities', 'text NOT NULL AFTER `irate`');
585
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'countries', 'text NOT NULL AFTER `cities`');
586
  $geo_array = serialize(array());
587
+ $wpdb->query("UPDATE `{$wpdb->prefix}adrotate` SET `cities` = '$geo_array' WHERE `cities` = '';");
588
+ $wpdb->query("UPDATE `{$wpdb->prefix}adrotate` SET `countries` = '$geo_array' WHERE `countries` = '';");
589
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'geo', 'tinyint(1) NOT NULL default \'0\' AFTER `page_loc`');
590
  }
591
 
592
  // Database: 33
593
  // AdRotate: 3.8.6
594
  if($adrotate_db_version['current'] < 33) {
595
+ adrotate_del_column("{$wpdb->prefix}adrotate_groups", 'token');
596
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'modus', 'tinyint(1) NOT NULL default \'0\' AFTER `name`');
597
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'gridrows', 'int(3) NOT NULL default \'2\' AFTER `wrapper_after`');
598
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'gridcolumns', 'int(3) NOT NULL default \'2\' AFTER `gridrows`');
599
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'admargin', 'int(3) NOT NULL default \'1\' AFTER `gridcolumns`');
600
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'adwidth', 'varchar(4) NOT NULL default \'125\' AFTER `admargin`');
601
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'adheight', 'varchar(4) NOT NULL default \'125\' AFTER `adwidth`');
602
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'adspeed', 'int(5) NOT NULL default \'6000\' AFTER `adheight`');
603
  }
604
 
605
 
606
  // Database: 36
607
  // AdRotate: 3.8.10
608
  if($adrotate_db_version['current'] < 36) {
609
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'admargin_bottom', 'int(3) NOT NULL default \'1\' AFTER `admargin`');
610
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'admargin_left', 'int(3) NOT NULL default \'1\' AFTER `admargin_bottom`');
611
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'admargin_right', 'int(3) NOT NULL default \'1\' AFTER `admargin_left`');
612
  }
613
 
614
  // Database: 38
615
  // AdRotate: 3.9
616
  if($adrotate_db_version['current'] < 38) {
617
+ adrotate_add_column("{$wpdb->prefix}adrotate_linkmeta", 'schedule', 'int(5) NOT NULL default \'0\' AFTER `user`');
618
+ $schedules = $wpdb->get_results("SELECT `id`, `ad` FROM {$wpdb->prefix}adrotate_schedule ORDER BY `id` ASC;");
619
  foreach($schedules as $schedule) {
620
+ $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $schedule->ad, 'group' => 0, 'user' => 0, 'schedule' => $schedule->id), array('%d', '%d', '%d', '%d', '%d'));
621
  unset($schedule);
622
  }
623
  unset($schedules);
624
+ adrotate_add_column("{$wpdb->prefix}adrotate_schedule", 'name', 'varchar(255) NOT NULL default \'\' AFTER `id`');
625
+ adrotate_del_column("{$wpdb->prefix}adrotate_schedule", 'ad');
626
 
627
+ $schedules = $wpdb->get_results("SELECT `id` FROM {$wpdb->prefix}adrotate_schedule WHERE `name` = '' ORDER BY `id` ASC;");
628
  foreach($schedules as $schedule) {
629
+ $wpdb->update("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule '.$schedule->id), array('id' => $schedule->id));
630
  unset($schedule);
631
  }
632
  unset($schedules);
635
  // Database: 39
636
  // AdRotate: 3.9.1
637
  if($adrotate_db_version['current'] < 39) {
638
+ adrotate_add_column("{$wpdb->prefix}adrotate_tracker", 'country', 'text NOT NULL AFTER `useragent`');
639
+ adrotate_add_column("{$wpdb->prefix}adrotate_tracker", 'city', 'text NOT NULL AFTER `country`');
640
  }
641
 
642
  // Database: 40
643
  // AdRotate: 3.9.9
644
  if($adrotate_db_version['current'] < 40) {
645
+ adrotate_add_column("{$wpdb->prefix}adrotate", 'responsive', 'varchar(5) NOT NULL default \'N\' AFTER `tracker`');
646
  }
647
 
648
  // Database: 41
649
  // AdRotate: 3.9.12
650
  if($adrotate_db_version['current'] < 41) {
651
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'page_par', 'tinyint(1) NOT NULL default \'0\' AFTER `page_loc`');
652
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'cat_par', 'tinyint(1) NOT NULL default \'0\' AFTER `cat_loc`');
653
  }
654
 
655
  // Database: 42
656
  // AdRotate: 3.10
657
  if($adrotate_db_version['current'] < 42) {
658
+ adrotate_add_column("{$wpdb->prefix}adrotate_schedule", 'spread', 'varchar(5) NOT NULL default \'N\' AFTER `maximpressions`');
659
+ adrotate_add_column("{$wpdb->prefix}adrotate_schedule", 'hourimpressions', 'int(15) NOT NULL default \'0\' AFTER `spread`');
660
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_groups` CHANGE `page_par` `page_par` tinyint(2) NOT NULL default '0';");
661
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_groups` CHANGE `cat_par` `cat_par` tinyint(2) NOT NULL default '0';");
662
  }
663
 
664
  // Database: 43
665
  // AdRotate: 3.10.7
666
  if($adrotate_db_version['current'] < 43) {
667
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_groups` CHANGE `admargin` `admargin` int(2) NOT NULL default '0';");
668
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_groups` CHANGE `admargin_bottom` `admargin_bottom` int(2) NOT NULL default '0';");
669
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_groups` CHANGE `admargin_left` `admargin_left` int(2) NOT NULL default '0';");
670
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_groups` CHANGE `admargin_right` `admargin_right` int(2) NOT NULL default '0';");
671
  }
672
 
673
  // Database: 44
674
  // AdRotate: 3.10.8
675
  if($adrotate_db_version['current'] < 44) {
676
+ adrotate_del_column("{$wpdb->prefix}adrotate", 'timeframe');
677
+ adrotate_del_column("{$wpdb->prefix}adrotate", 'timeframelength');
678
+ adrotate_del_column("{$wpdb->prefix}adrotate", 'timeframeclicks');
679
+ adrotate_del_column("{$wpdb->prefix}adrotate", 'timeframeimpressions');
680
  }
681
 
682
  // Database: 46
683
  // AdRotate: 3.10.13
684
  if($adrotate_db_version['current'] < 46) {
685
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `hourimpressions` `dayimpressions` int(15) NOT NULL default '0';");
686
  }
687
 
688
  // Database: 47
689
  // AdRotate: 3.10.18
690
  if($adrotate_db_version['current'] < 47) {
691
+ adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'align', 'tinyint(1) NOT NULL default \'0\' AFTER `wrapper_after`');
692
  }
693
 
694
  // Database: 48
695
  // AdRotate: 3.11.2b2
696
  if($adrotate_db_version['current'] < 48) {
697
+ if($wpdb->get_var("SHOW INDEX FROM `{$wpdb->prefix}adrotate_tracker` WHERE Key_name = 'bannerid';") !== null) {
698
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_tracker` DROP KEY `bannerid`;");
699
  }
700
+ if($wpdb->get_var("SHOW INDEX FROM `{$wpdb->prefix}adrotate_schedule` WHERE Key_name = 'stoptime';") !== null) {
701
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` DROP KEY `stoptime`;");
702
  }
703
+ if($wpdb->get_var("SHOW INDEX FROM `{$wpdb->prefix}adrotate_schedule` WHERE Key_name = 'ad';") !== null) {
704
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` DROP KEY `ad`;");
705
  }
706
+ adrotate_del_column("{$wpdb->prefix}adrotate_stats", 'block');
707
+ adrotate_del_column("{$wpdb->prefix}adrotate_linkmeta", 'block');
708
  }
709
 
710
  // Database: 49
711
  // AdRotate: 3.11.2b3
712
  if($adrotate_db_version['current'] < 49) {
713
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_stats` CHANGE `ad` `ad` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
714
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_stats` CHANGE `group` `group` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
715
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_stats` CHANGE `thetime` `thetime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
716
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_stats` CHANGE `clicks` `clicks` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
717
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_stats` CHANGE `impressions` `impressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
718
+
719
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_tracker` CHANGE `timer` `timer` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
720
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_tracker` CHANGE `bannerid` `bannerid` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
721
+
722
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `starttime` `starttime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
723
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `stoptime` `stoptime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
724
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `maxclicks` `maxclicks` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
725
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `maximpressions` `maximpressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
726
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `dayimpressions` `dayimpressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
727
+
728
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_linkmeta` CHANGE `ad` `ad` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
729
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_linkmeta` CHANGE `group` `group` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
730
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_linkmeta` CHANGE `user` `user` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
731
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_linkmeta` CHANGE `schedule` `schedule` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
732
+ }
733
+
734
+ // Database: 50
735
+ // AdRotate: 3.11.3b1
736
+ if($adrotate_db_version['current'] < 50) {
737
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_tracker` CHANGE `ipaddress` `ipaddress` varchar(15) NOT NULL DEFAULT '';");
738
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate` CHANGE `cbudget` `budget` double NOT NULL default '0';");
739
+ adrotate_del_column("{$wpdb->prefix}adrotate", 'ibudget');
740
  }
741
 
742
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
901
 
902
  $adrotate_db_timer = get_option('adrotate_db_timer');
903
  $now = adrotate_now();
 
904
 
905
  if($adrotate_db_timer < ($now - 86400)) {
906
+ dbDelta("OPTIMIZE TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`, ;");
907
  update_option('adrotate_db_timer', $now);
908
  adrotate_return('db_optimized');
909
  } else {
926
 
927
  // Delete expired schedules
928
  if(isset($_POST['adrotate_db_cleanup_schedules'])) {
929
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_schedule` WHERE `stoptime` < $now;");
930
  }
931
 
932
  // Delete old stats
933
  if(isset($_POST['adrotate_db_cleanup_statistics'])) {
934
  $lastyear = $now - 30758400;
935
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` < $lastyear;");
936
  }
937
 
938
  // Clean up Tracker data
939
  $yesterday = $now - 2073600;
940
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_tracker` WHERE `timer` < $yesterday;");
941
 
942
  // Delete empty ads, groups and schedules
943
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'empty' OR `type` = 'a_empty';");
944
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` = '';");
945
 
946
  // Clean up meta data
947
+ $ads = $wpdb->get_results("SELECT `id` FROM `{$wpdb->prefix}adrotate` ORDER BY `id`;");
948
+ $metas = $wpdb->get_results("SELECT `id`, `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` != '0' ORDER BY `id`;");
949
 
950
  $adverts = $linkmeta = array();
951
  foreach($ads as $ad) {
957
 
958
  $result = array_diff($linkmeta, $adverts);
959
  foreach($result as $key => $value) {
960
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `id` = $key;");
961
  unset($result[$key]);
962
  }
963
  unset($ads, $metas, $adverts, $linkmeta, $result);
964
 
965
  // Clean up stray linkmeta
966
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = 0 OR `ad` = '';");
967
 
968
  adrotate_return('db_cleaned');
969
  }
983
  $clicks = $now - 86400;
984
  $impressions = $now - 3600;
985
 
986
+ $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_tracker` WHERE (`timer` < ".$clicks." AND `stat` = 'c') OR (`timer` < ".$impressions." AND `stat` = 'i') OR `ipaddress` = 'unknown' OR `ipaddress` = '';");
987
  }
988
 
989
  /*-------------------------------------------------------------
1030
 
1031
  return false;
1032
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1033
  ?>
adrotate.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/
5
  Author: Arnan de Gans of AJdG Solutions
6
  Author URI: http://ajdg.solutions/
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.11.2
9
  License: GPLv3
10
  */
11
 
@@ -20,9 +20,9 @@ License: GPLv3
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
- define("ADROTATE_DISPLAY", '3.11.2');
24
  define("ADROTATE_VERSION", 378);
25
- define("ADROTATE_DB_VERSION", 49);
26
  define("ADROTATE_FOLDER", 'adrotate');
27
  /*-----------------------------------------------------------*/
28
 
@@ -75,7 +75,6 @@ if(!is_admin()) {
75
  /*--- Back End ----------------------------------------------*/
76
  if(is_admin()) {
77
  adrotate_check_config();
78
- add_action('admin_init', 'adrotate_check_upgrade');
79
  add_action('admin_menu', 'adrotate_dashboard');
80
  add_action("admin_enqueue_scripts", 'adrotate_dashboard_scripts');
81
  add_action("admin_print_styles", 'adrotate_dashboard_styles');
@@ -109,7 +108,7 @@ function adrotate_dashboard() {
109
  $adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
110
  $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
111
  $adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
112
- $adrotate_schedules = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_schedule_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
113
  $adrotate_media = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
114
  $adrotate_settings = add_submenu_page('adrotate', 'AdRotate > '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
115
 
@@ -229,7 +228,7 @@ function adrotate_manage() {
229
  <?php if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_groups';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_schedule';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_linkmeta';")) { ?>
230
 
231
  <?php
232
- $allbanners = $wpdb->get_results("SELECT `id`, `title`, `type`, `tracker`, `weight`, `cbudget`, `ibudget`, `crate`, `irate` FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'active' OR `type` = 'error' OR `type` = 'expired' OR `type` = '2days' OR `type` = '7days' OR `type` = 'disabled' ORDER BY `sortorder` ASC, `id` ASC;");
233
  $activebanners = $errorbanners = $disabledbanners = false;
234
  foreach($allbanners as $singlebanner) {
235
  $starttime = $stoptime = 0;
5
  Author: Arnan de Gans of AJdG Solutions
6
  Author URI: http://ajdg.solutions/
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.11.3
9
  License: GPLv3
10
  */
11
 
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
+ define("ADROTATE_DISPLAY", '3.11.3');
24
  define("ADROTATE_VERSION", 378);
25
+ define("ADROTATE_DB_VERSION", 50);
26
  define("ADROTATE_FOLDER", 'adrotate');
27
  /*-----------------------------------------------------------*/
28
 
75
  /*--- Back End ----------------------------------------------*/
76
  if(is_admin()) {
77
  adrotate_check_config();
 
78
  add_action('admin_menu', 'adrotate_dashboard');
79
  add_action("admin_enqueue_scripts", 'adrotate_dashboard_scripts');
80
  add_action("admin_print_styles", 'adrotate_dashboard_styles');
108
  $adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
109
  $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
110
  $adrotate_groups = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
111
+ $adrotate_schedules = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
112
  $adrotate_media = add_submenu_page('adrotate', 'AdRotate Pro > '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
113
  $adrotate_settings = add_submenu_page('adrotate', 'AdRotate > '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
114
 
228
  <?php if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_groups';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_schedule';") AND $wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_linkmeta';")) { ?>
229
 
230
  <?php
231
+ $allbanners = $wpdb->get_results("SELECT `id`, `title`, `type`, `tracker`, `weight` FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'active' OR `type` = 'error' OR `type` = 'expired' OR `type` = '2days' OR `type` = '7days' OR `type` = 'disabled' ORDER BY `sortorder` ASC, `id` ASC;");
232
  $activebanners = $errorbanners = $disabledbanners = false;
233
  foreach($allbanners as $singlebanner) {
234
  $starttime = $stoptime = 0;
dashboard/publisher/adrotate-ads-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', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 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;
@@ -46,7 +46,7 @@ if($ad_edit_id) {
46
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
47
 
48
  if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image != '')
49
- echo '<div class="error"><p>'. __('You didn\'t use %image% in your AdCode but did select an image!', 'adrotate').'</p></div>';
50
 
51
  if(preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image == '')
52
  echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select an image!', 'adrotate').'</p></div>';
@@ -54,21 +54,27 @@ if($ad_edit_id) {
54
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
55
  echo '<div class="error"><p>'. __('There is a problem saving the image specification. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
56
 
 
 
 
 
 
 
57
  if(!preg_match_all('/<a[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
58
  echo '<div class="error"><p>'. __("Clicktracking is enabled but no valid link was found in the adcode!", 'adrotate').'</p></div>';
59
 
60
  // Ad Notices
61
  $adstate = adrotate_evaluate_ad($edit_banner->id);
62
- if($edit_banner->type == 'error' AND $adstate == 'normal')
63
  echo '<div class="error"><p>'. __('AdRotate cannot find an error but the ad is marked erroneous, try re-saving the ad!', 'adrotate').'</p></div>';
64
 
65
  if($adstate == 'expired')
66
  echo '<div class="error"><p>'. __('This ad is expired and currently not shown on your website!', 'adrotate').'</p></div>';
67
 
68
- if($adstate == 'expires2days')
69
  echo '<div class="updated"><p>'. __('The ad will expire in less than 2 days!', 'adrotate').'</p></div>';
70
 
71
- if($adstate == 'expires7days')
72
  echo '<div class="updated"><p>'. __('This ad will expire in less than 7 days!', 'adrotate').'</p></div>';
73
 
74
  if($edit_banner->type == 'disabled')
@@ -103,37 +109,63 @@ if($edit_banner->imagetype == "field") {
103
  <h3><?php _e('Edit Advert', 'adrotate'); ?></h3>
104
  <?php } ?>
105
 
106
- <p><em><?php _e('These are required.', 'adrotate'); ?></em></p>
107
  <table class="widefat" style="margin-top: .5em">
108
  <tbody>
109
  <tr>
110
  <th width="15%"><?php _e('Title:', 'adrotate'); ?></th>
111
  <td colspan="2">
112
- <label for="adrotate_title"><input tabindex="1" name="adrotate_title" type="text" size="80" class="search-input" value="<?php echo stripslashes($edit_banner->title);?>" autocomplete="off" /></label>
113
  </td>
114
  </tr>
115
  <tr>
116
  <th valign="top"><?php _e('AdCode:', 'adrotate'); ?></th>
117
  <td>
118
- <label for="adrotate_bannercode"><textarea tabindex="2" id="adrotate_bannercode" name="adrotate_bannercode" cols="65" rows="15"><?php echo stripslashes($edit_banner->bannercode); ?></textarea></label>
119
  </td>
120
  <td width="40%">
121
- <p><?php _e('Copy your ad tag/code in this field if you have received ready to go adverts.', 'adrotate'); ?><br /><?php _e('Advertising and affiliate networks often use these.', 'adrotate'); ?></p>
122
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
123
  <p>1. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://ajdg.solutions/&quot;&gt;Buy AdRotate Pro here!&lt;/a&gt;');return false;">&lt;a href="https://ajdg.solutions/"&gt;Buy AdRotate Pro here!&lt;/a&gt;</a></em></p>
124
  <p>2. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.floatingcoconut.net&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.floatingcoconut.net"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
125
  <p>3. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.ajdg.net&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.ajdg.net"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
126
-
127
- <p><strong><?php _e('Options:', 'adrotate'); ?></strong></p>
128
- <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br />
129
- <p><?php _e('Place the cursor where you want to add a tag and click to add it to your AdCode.', 'adrotate'); ?></p>
130
  </td>
131
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  <tr>
133
  <th><?php _e('Activate:', 'adrotate'); ?></th>
134
  <td colspan="2">
135
  <label for="adrotate_active">
136
- <select tabindex="3" name="adrotate_active">
137
  <option value="active" <?php if($edit_banner->type == "active") { echo 'selected'; } ?>><?php _e('Yes, this ad will be used', 'adrotate'); ?></option>
138
  <option value="disabled" <?php if($edit_banner->type == "disabled") { echo 'selected'; } ?>><?php _e('No, do not show this ad anywhere', 'adrotate'); ?></option>
139
  </select>
@@ -145,7 +177,7 @@ if($edit_banner->imagetype == "field") {
145
  <center><?php _e('Get more features with AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('More information', 'adrotate'); ?></a>.</center>
146
 
147
  <p class="submit">
148
- <input tabindex="0" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
149
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
150
  </p>
151
 
@@ -165,145 +197,12 @@ if($edit_banner->imagetype == "field") {
165
  <?php } ?>
166
 
167
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
168
- <p><em><?php _e('Copy the shortcode in a post or page. The PHP code goes in a theme file where you want the advert to show up.', 'adrotate'); ?></em></p>
169
- <table class="widefat" style="margin-top: .5em">
170
- <tbody>
171
- <tr>
172
- <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
173
- <td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
174
- <th width="15%"><?php _e('Directly in a theme:', 'adrotate'); ?></th>
175
- <td>&lt;?php echo adrotate_ad(<?php echo $edit_banner->id; ?>); ?&gt;</td>
176
- </tr>
177
- </tbody>
178
- </table>
179
-
180
- <p class="submit">
181
- <input tabindex="10" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
182
- <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
183
- </p>
184
-
185
- <h3><?php _e('Advanced', 'adrotate'); ?></h3>
186
- <p><em><?php _e('Everything below is optional.', 'adrotate'); ?></em></p>
187
  <table class="widefat" style="margin-top: .5em">
188
  <tbody>
189
- <?php if($adrotate_config['enable_stats'] == 'Y') { ?>
190
- <tr>
191
- <th width="15%" valign="top"><?php _e('Clicktracking:', 'adrotate'); ?></th>
192
- <td colspan="3">
193
- <label for="adrotate_tracker"><input tabindex="4" type="checkbox" name="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click tracking for this advert.', 'adrotate'); ?> <br />
194
- <em><?php _e('Note: Clicktracking does generally not work for Javascript adverts such as those provided by Google AdSense.', 'adrotate'); ?></em><br />
195
- <em><?php _e('Place the target URL in your adcode - Similar to code example 1.', 'adrotate'); ?></em>
196
- </label>
197
- </td>
198
- </tr>
199
- <tr>
200
- <th valign="top"><?php _e('Target URL:', 'adrotate'); ?></th>
201
- <td colspan="3">
202
- <label for="adrotate_link_disabled"><input tabindex="5" name="adrotate_link_disabled" type="text" size="60" class="search-input" value="<?php echo $edit_banner->link;?>" disabled="1" /><br />
203
- <em><?php _e('This field is no longer required. You can place the URL directly in the adcode (above) instead of %link%.', 'adrotate'); ?></em></label>
204
- </td>
205
- </tr>
206
- <?php } ?>
207
- <tr>
208
- <th width="15%" valign="top"><?php _e('Responsive:', 'adrotate'); ?></th>
209
- <td colspan="3">
210
- <label for="adrotate_responsive"><input tabindex="6" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
211
- <em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext". A full set of sized images is strongly recommended.', 'adrotate'); ?></em><br />
212
- <em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
213
- <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. Requires jQuery.', 'adrotate'); ?></em></label>
214
- </td>
215
- </tr>
216
- <tr>
217
- <th valign="top"><?php _e('Banner image:', 'adrotate'); ?></th>
218
- <td colspan="3">
219
- <label for="adrotate_image">
220
- <?php _e('Media:', 'adrotate'); ?> <input tabindex="7" id="adrotate_image" type="text" size="50" name="adrotate_image" value="<?php echo $image_field; ?>" /> <input tabindex="8" id="adrotate_image_button" class="button" type="button" value="<?php _e('Select Banner', 'adrotate'); ?>" />
221
- </label><br />
222
- <?php _e('- OR -', 'adrotate'); ?><br />
223
- <label for="adrotate_image_dropdown">
224
- <?php _e('Banner folder:', 'adrotate'); ?> <select tabindex="9" name="adrotate_image_dropdown" style="min-width: 200px;">
225
- <option value=""><?php _e('No image selected', 'adrotate'); ?></option>
226
- <?php echo adrotate_folder_contents($image_dropdown); ?>
227
- </select><br />
228
- </label>
229
- <em><?php _e('Use %image% in the code. Accepted files are:', 'adrotate'); ?> jpg, jpeg, gif, png, swf <?php _e('and', 'adrotate'); ?> flv. <?php _e('Use either the text field or the dropdown. If the textfield has content that field has priority.', 'adrotate'); ?></em>
230
- </td>
231
- </tr>
232
- <tr>
233
- <th valign="top"><?php _e('Weight:', 'adrotate'); ?><br /><em><?php _e('AdRotate Pro only', 'adrotate'); ?></em></th>
234
- <td colspan="3">
235
- <label for="adrotate_weight">
236
- &nbsp;<input type="radio" name="adrotate_weight" value="2" disabled />&nbsp;&nbsp;&nbsp;2, <?php _e('Barely visible', 'adrotate'); ?><br />
237
- &nbsp;<input type="radio" name="adrotate_weight" value="4" disabled />&nbsp;&nbsp;&nbsp;4, <?php _e('Less than average', 'adrotate'); ?><br />
238
- &nbsp;<input type="radio" name="adrotate_weight" value="6" disabled checked />&nbsp;&nbsp;&nbsp;6, <?php _e('Normal coverage', 'adrotate'); ?><br />
239
- &nbsp;<input type="radio" name="adrotate_weight" value="8" disabled />&nbsp;&nbsp;&nbsp;8, <?php _e('More than average', 'adrotate'); ?><br />
240
- &nbsp;<input type="radio" name="adrotate_weight" value="10" disabled />&nbsp;&nbsp;&nbsp;10, <?php _e('Best visibility', 'adrotate'); ?>
241
- </label>
242
- </td>
243
- </tr>
244
  <tr>
245
- <th><?php _e('Sortorder:', 'adrotate'); ?></th>
246
- <td colspan="3">
247
- <label for="adrotate_sortorder"><input tabindex="4" 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>
248
- </td>
249
  </tr>
250
- </tbody>
251
- </table>
252
- <center><?php _e('With AdRotate Pro you can also set a weight to give adverts more or less attention.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>!</center>
253
-
254
- <h3><?php _e('Geo Location in AdRotate Pro', 'adrotate'); ?></h3>
255
- <p><em><?php _e('This works if you assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?></em></p>
256
- <table class="widefat" style="margin-top: .5em">
257
- <tbody>
258
- <tr>
259
- <th width="15%" valign="top"><?php _e('Cities/States:', 'adrotate'); ?></strong></th>
260
- <td colspan="2"><textarea tabindex="14" name="adrotate_geo_cities" cols="65" rows="3" disabled>Amsterdam, Noord Holland, New York, California, Tokyo, London</textarea></td>
261
- <td>
262
- <p><strong><?php _e('Usage:', 'adrotate'); ?></strong></p>
263
- <p><em><?php _e('A comma separated list of cities and/or states', 'adrotate'); ?> (Alkmaar, Philadelphia, Melbourne, ...)<br /><?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate'); ?></em></p>
264
- </td>
265
- </tr>
266
- <tr>
267
- <th valign="top"><?php _e('Countries:', 'adrotate'); ?></strong></th>
268
- <td colspan="2">
269
- <label for="adrotate_geo_countries">
270
- <div class="adrotate-select">
271
-
272
- <table width="100%">
273
- <tbody>
274
- <tr>
275
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">United States</td>
276
- </tr>
277
- <tr>
278
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Australia</td>
279
- </tr>
280
- <tr>
281
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Germany</td>
282
- </tr>
283
- <tr>
284
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Brazil</td>
285
- </tr>
286
- <tr>
287
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Japan</td>
288
- </tr>
289
- </tbody>
290
- </table>
291
- </div>
292
- </label>
293
- </td>
294
- <td>
295
- <p><strong><?php _e('Usage:', 'adrotate'); ?></strong></p>
296
- <p><em><?php _e('Select the countries you want the adverts to show in.', 'adrotate'); ?><br /><?php _e('Cities take priority and will be filtered first.', 'adrotate'); ?></em></p>
297
- </td>
298
- </tr>
299
- </tbody>
300
- </table>
301
- <center><?php _e('Target your audience with Geo Location in AdRotate Pro', 'adrotate'); ?>, <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
302
-
303
- <h3><?php _e('Usage', 'adrotate'); ?></h3>
304
- <p><em><?php _e('Copy the shortcode in a post or page. The PHP code goes in a theme file where you want the advert to show up.', 'adrotate'); ?></em></p>
305
- <table class="widefat" style="margin-top: .5em">
306
- <tbody>
307
  <tr>
308
  <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
309
  <td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
@@ -313,21 +212,15 @@ if($edit_banner->imagetype == "field") {
313
  </tbody>
314
  </table>
315
 
316
- <p class="submit">
317
- <input tabindex="10" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
318
- <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
319
- </p>
320
-
321
- <h3><?php _e('Schedule', 'adrotate'); ?></h3>
322
- <p><em><?php _e('From when to when is the advert visible?', 'adrotate'); ?></em></p>
323
  <table class="widefat" style="margin-top: .5em">
324
  <tbody>
325
  <tr>
326
  <th width="15%"><?php _e('Start date (day/month/year):', 'adrotate'); ?></th>
327
  <td>
328
  <label for="adrotate_sday">
329
- <input tabindex="11" name="adrotate_sday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $sday;?>" /> /
330
- <select tabindex="12" name="adrotate_smonth">
331
  <option value="01" <?php if($smonth == "01") { echo 'selected'; } ?>><?php _e('January', 'adrotate'); ?></option>
332
  <option value="02" <?php if($smonth == "02") { echo 'selected'; } ?>><?php _e('February', 'adrotate'); ?></option>
333
  <option value="03" <?php if($smonth == "03") { echo 'selected'; } ?>><?php _e('March', 'adrotate'); ?></option>
@@ -341,14 +234,14 @@ if($edit_banner->imagetype == "field") {
341
  <option value="11" <?php if($smonth == "11") { echo 'selected'; } ?>><?php _e('November', 'adrotate'); ?></option>
342
  <option value="12" <?php if($smonth == "12") { echo 'selected'; } ?>><?php _e('December', 'adrotate'); ?></option>
343
  </select> /
344
- <input tabindex="13" name="adrotate_syear" class="search-input" type="text" size="4" maxlength="4" value="<?php echo $syear;?>" />&nbsp;&nbsp;&nbsp;
345
  </label>
346
  </td>
347
  <th width="15%"><?php _e('End date (day/month/year):', 'adrotate'); ?></th>
348
  <td>
349
  <label for="adrotate_eday">
350
- <input tabindex="14" name="adrotate_eday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $eday;?>" /> /
351
- <select tabindex="15" name="adrotate_emonth">
352
  <option value="01" <?php if($emonth == "01") { echo 'selected'; } ?>><?php _e('January', 'adrotate'); ?></option>
353
  <option value="02" <?php if($emonth == "02") { echo 'selected'; } ?>><?php _e('February', 'adrotate'); ?></option>
354
  <option value="03" <?php if($emonth == "03") { echo 'selected'; } ?>><?php _e('March', 'adrotate'); ?></option>
@@ -362,7 +255,7 @@ if($edit_banner->imagetype == "field") {
362
  <option value="11" <?php if($emonth == "11") { echo 'selected'; } ?>><?php _e('November', 'adrotate'); ?></option>
363
  <option value="12" <?php if($emonth == "12") { echo 'selected'; } ?>><?php _e('December', 'adrotate'); ?></option>
364
  </select> /
365
- <input tabindex="16" name="adrotate_eyear" class="search-input" type="text" size="4" maxlength="4" value="<?php echo $eyear;?>" />&nbsp;&nbsp;&nbsp;
366
  </label>
367
  </td>
368
  </tr>
@@ -370,24 +263,24 @@ if($edit_banner->imagetype == "field") {
370
  <th><?php _e('Start time (hh:mm):', 'adrotate'); ?></th>
371
  <td>
372
  <label for="adrotate_sday">
373
- <input tabindex="17" name="adrotate_shour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $shour;?>" /> :
374
- <input tabindex="18" name="adrotate_sminute" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $sminute;?>" />
375
  </label>
376
  </td>
377
  <th><?php _e('End time (hh:mm):', 'adrotate'); ?></th>
378
  <td>
379
  <label for="adrotate_eday">
380
- <input tabindex="19" name="adrotate_ehour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $ehour;?>" /> :
381
- <input tabindex="20" name="adrotate_eminute" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $eminute;?>" />
382
  </label>
383
  </td>
384
  </tr>
385
  <?php if($adrotate_config['enable_stats'] == 'Y') { ?>
386
  <tr>
387
  <th><?php _e('Maximum Clicks:', 'adrotate'); ?></th>
388
- <td><input tabindex="21" name="adrotate_maxclicks" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maxclicks;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
389
  <th><?php _e('Maximum Impressions:', 'adrotate'); ?></th>
390
- <td><input tabindex="22" name="adrotate_maxshown" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maximpressions;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
391
  </tr>
392
  <?php } ?>
393
  <tr>
@@ -398,55 +291,113 @@ if($edit_banner->imagetype == "field") {
398
  </table>
399
  <center><?php _e('Create multiple schedules for each advert with AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
400
 
401
- <h3><?php _e('Choose Multiple Schedules in AdRotate Pro', 'adrotate'); ?></h3>
402
- <p><em><?php _e('You can add, edit or delete schedules from the', 'adrotate'); ?> '<a href="admin.php?page=adrotate-schedules"><?php _e('Manage Schedules', 'adrotate'); ?></a>' <?php _e('dashboard. Save your advert first!', 'adrotate'); ?></em></p>
 
 
 
 
 
403
  <table class="widefat" style="margin-top: .5em">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
 
405
- <thead>
406
- <tr>
407
- <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" disabled /></th>
408
- <th width="4%"><?php _e('ID', 'adrotate'); ?></th>
409
- <th width="17%"><?php _e('From / Until', 'adrotate'); ?></th>
410
- <th>&nbsp;</th>
411
- <th width="12%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
412
- <th width="12%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
 
 
413
  </tr>
414
- </thead>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
 
 
 
416
  <tbody>
417
- <tr id='schedule-1'>
418
- <th class="check-column"><input type="checkbox" name="scheduleselect[]" value="" disabled /></th>
419
- <td>1</td>
420
- <td><?php echo date_i18n("F d, Y H:i", $now-86400);?><br /><span style="color: <?php echo adrotate_prepare_color($now+604800);?>;"><?php echo date_i18n("F d, Y H:i", $now+604800);?></span></td>
421
- <td>Schedule for trekking campaign <span style="color:#999;"><br /><span style="font-weight:bold;">Spread:</span> Max. 342 <?php _e('impressions per day', 'adrotate'); ?></span></td>
422
- <td><center>100000</center></td>
423
- <td><center>Unlimited</center></td>
424
  </tr>
425
- <tr id='schedule-2' class='alternate'>
426
- <th class="check-column"><input type="checkbox" name="scheduleselect[]" value="" disabled /></th>
427
- <td>1</td>
428
- <td><?php echo date_i18n("F d, Y H:i", $now);?><br /><span style="color: <?php echo adrotate_prepare_color($now+1209600);?>;"><?php echo date_i18n("F d, Y H:i", $now+1209600);?></span></td>
429
- <td>Generic schedule</td>
430
- <td><center>Unlimited</center></td>
431
- <td><center>Unlimited</center></td>
432
  </tr>
433
- </tbody>
434
-
435
  </table>
436
- <p><center>
437
- <span style="border: 1px solid #518257; height: 12px; width: 12px; background-color: #e5faee">&nbsp;&nbsp;&nbsp;&nbsp;</span> <?php _e("In use by this advert.", "adrotate"); ?>
438
- &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"); ?>
439
- </center></p>
440
 
441
  <p class="submit">
442
- <input tabindex="23" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
443
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
444
  </p>
445
 
446
-
447
  <?php if($groups) { ?>
448
  <h3><?php _e('Select Groups', 'adrotate'); ?></h3>
449
- <p><em><?php _e('Optionally select the group(s) this ad belongs to.', 'adrotate'); ?></em></p>
450
  <table class="widefat" style="margin-top: .5em">
451
  <thead>
452
  <tr>
@@ -482,7 +433,7 @@ if($edit_banner->imagetype == "field") {
482
  </table>
483
 
484
  <p class="submit">
485
- <input tabindex="24" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
486
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
487
  </p>
488
  <?php } ?>
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', '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;
46
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
47
 
48
  if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image != '')
49
+ echo '<div class="error"><p>'. __('You did not use %image% in your AdCode but did select an image!', 'adrotate').'</p></div>';
50
 
51
  if(preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image == '')
52
  echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select an image!', 'adrotate').'</p></div>';
54
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
55
  echo '<div class="error"><p>'. __('There is a problem saving the image specification. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
56
 
57
+ if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->responsive == 'Y')
58
+ echo '<div class="error"><p>'. __(' You did not use %image% in your AdCode. The responsive checkbox will be ineffective.', 'adrotate').'</p></div>';
59
+
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>'. __('Your chosen banner image does not have the right name. Check the responsive description and try again.', '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);
68
+ if($edit_banner->type == 'error' AND $adstate == 'active')
69
  echo '<div class="error"><p>'. __('AdRotate cannot find an error but the ad is marked erroneous, try re-saving the ad!', 'adrotate').'</p></div>';
70
 
71
  if($adstate == 'expired')
72
  echo '<div class="error"><p>'. __('This ad is expired and currently not shown on your website!', 'adrotate').'</p></div>';
73
 
74
+ if($adstate == '2days')
75
  echo '<div class="updated"><p>'. __('The ad will expire in less than 2 days!', 'adrotate').'</p></div>';
76
 
77
+ if($adstate == '7days')
78
  echo '<div class="updated"><p>'. __('This ad will expire in less than 7 days!', 'adrotate').'</p></div>';
79
 
80
  if($edit_banner->type == 'disabled')
109
  <h3><?php _e('Edit Advert', 'adrotate'); ?></h3>
110
  <?php } ?>
111
 
 
112
  <table class="widefat" style="margin-top: .5em">
113
  <tbody>
114
  <tr>
115
  <th width="15%"><?php _e('Title:', 'adrotate'); ?></th>
116
  <td colspan="2">
117
+ <label for="adrotate_title"><input tabindex="1" name="adrotate_title" type="text" size="50" class="search-input" value="<?php echo stripslashes($edit_banner->title);?>" autocomplete="off" /></label>
118
  </td>
119
  </tr>
120
  <tr>
121
  <th valign="top"><?php _e('AdCode:', 'adrotate'); ?></th>
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>1. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://ajdg.solutions/&quot;&gt;Buy AdRotate Pro here!&lt;/a&gt;');return false;">&lt;a href="https://ajdg.solutions/"&gt;Buy AdRotate Pro here!&lt;/a&gt;</a></em></p>
128
  <p>2. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.floatingcoconut.net&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.floatingcoconut.net"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
129
  <p>3. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.ajdg.net&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.ajdg.net"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
 
 
 
 
130
  </td>
131
  </tr>
132
+ <tr>
133
+ <th valign="top"><?php _e('Useful tags:', 'adrotate'); ?></th>
134
+ <td colspan="2">
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('Insert the %image% tag. 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 image:', 'adrotate'); ?></th>
140
+ <td colspan="2">
141
+ <label for="adrotate_image">
142
+ <?php _e('WordPress media:', 'adrotate'); ?> <input tabindex="3" id="adrotate_image" type="text" size="50" name="adrotate_image" value="<?php echo $image_field; ?>" /> <input tabindex="4" id="adrotate_image_button" class="button" type="button" value="<?php _e('Select Banner', 'adrotate'); ?>" />
143
+ </label><br />
144
+ <?php _e('- OR -', 'adrotate'); ?><br />
145
+ <label for="adrotate_image_dropdown">
146
+ <?php _e('Banner folder:', 'adrotate'); ?> <select tabindex="5" name="adrotate_image_dropdown" style="min-width: 200px;">
147
+ <option value=""><?php _e('No image selected', 'adrotate'); ?></option>
148
+ <?php echo adrotate_folder_contents($image_dropdown); ?>
149
+ </select><br />
150
+ </label>
151
+ <em><?php _e('Use %image% in the code. Accepted files are:', 'adrotate'); ?> jpg, jpeg, gif, png, swf <?php _e('and', 'adrotate'); ?> flv. <?php _e('Use either the text field or the dropdown. If the textfield has content that field has priority.', 'adrotate'); ?></em>
152
+ </td>
153
+ </tr>
154
+ <?php if($adrotate_config['enable_stats'] == 'Y') { ?>
155
+ <tr>
156
+ <th width="15%" valign="top"><?php _e('Clicktracking:', '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 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 also are not supported.', 'adrotate'); ?></em>
160
+ </label>
161
+ </td>
162
+ </tr>
163
+ <?php } ?>
164
  <tr>
165
  <th><?php _e('Activate:', 'adrotate'); ?></th>
166
  <td colspan="2">
167
  <label for="adrotate_active">
168
+ <select tabindex="7" name="adrotate_active">
169
  <option value="active" <?php if($edit_banner->type == "active") { echo 'selected'; } ?>><?php _e('Yes, this ad will be used', 'adrotate'); ?></option>
170
  <option value="disabled" <?php if($edit_banner->type == "disabled") { echo 'selected'; } ?>><?php _e('No, do not show this ad anywhere', 'adrotate'); ?></option>
171
  </select>
177
  <center><?php _e('Get more features with AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('More information', 'adrotate'); ?></a>.</center>
178
 
179
  <p class="submit">
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
 
197
  <?php } ?>
198
 
199
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  <table class="widefat" style="margin-top: .5em">
201
  <tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  <tr>
203
+ <th width="15%"><?php _e('Widget:', 'adrotate'); ?></th>
204
+ <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
 
 
205
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  <tr>
207
  <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
208
  <td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
212
  </tbody>
213
  </table>
214
 
215
+ <h3><?php _e('Schedule your advert', 'adrotate'); ?></h3>
 
 
 
 
 
 
216
  <table class="widefat" style="margin-top: .5em">
217
  <tbody>
218
  <tr>
219
  <th width="15%"><?php _e('Start date (day/month/year):', 'adrotate'); ?></th>
220
  <td>
221
  <label for="adrotate_sday">
222
+ <input tabindex="9" name="adrotate_sday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $sday;?>" /> /
223
+ <select tabindex="10" name="adrotate_smonth">
224
  <option value="01" <?php if($smonth == "01") { echo 'selected'; } ?>><?php _e('January', 'adrotate'); ?></option>
225
  <option value="02" <?php if($smonth == "02") { echo 'selected'; } ?>><?php _e('February', 'adrotate'); ?></option>
226
  <option value="03" <?php if($smonth == "03") { echo 'selected'; } ?>><?php _e('March', 'adrotate'); ?></option>
234
  <option value="11" <?php if($smonth == "11") { echo 'selected'; } ?>><?php _e('November', 'adrotate'); ?></option>
235
  <option value="12" <?php if($smonth == "12") { echo 'selected'; } ?>><?php _e('December', 'adrotate'); ?></option>
236
  </select> /
237
+ <input tabindex="11" name="adrotate_syear" class="search-input" type="text" size="4" maxlength="4" value="<?php echo $syear;?>" />&nbsp;&nbsp;&nbsp;
238
  </label>
239
  </td>
240
  <th width="15%"><?php _e('End date (day/month/year):', 'adrotate'); ?></th>
241
  <td>
242
  <label for="adrotate_eday">
243
+ <input tabindex="12" name="adrotate_eday" class="search-input" type="text" size="4" maxlength="2" value="<?php echo $eday;?>" /> /
244
+ <select tabindex="13" name="adrotate_emonth">
245
  <option value="01" <?php if($emonth == "01") { echo 'selected'; } ?>><?php _e('January', 'adrotate'); ?></option>
246
  <option value="02" <?php if($emonth == "02") { echo 'selected'; } ?>><?php _e('February', 'adrotate'); ?></option>
247
  <option value="03" <?php if($emonth == "03") { echo 'selected'; } ?>><?php _e('March', 'adrotate'); ?></option>
255
  <option value="11" <?php if($emonth == "11") { echo 'selected'; } ?>><?php _e('November', 'adrotate'); ?></option>
256
  <option value="12" <?php if($emonth == "12") { echo 'selected'; } ?>><?php _e('December', 'adrotate'); ?></option>
257
  </select> /
258
+ <input tabindex="14" name="adrotate_eyear" class="search-input" type="text" size="4" maxlength="4" value="<?php echo $eyear;?>" />&nbsp;&nbsp;&nbsp;
259
  </label>
260
  </td>
261
  </tr>
263
  <th><?php _e('Start time (hh:mm):', 'adrotate'); ?></th>
264
  <td>
265
  <label for="adrotate_sday">
266
+ <input tabindex="15" name="adrotate_shour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $shour;?>" /> :
267
+ <input tabindex="16" name="adrotate_sminute" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $sminute;?>" />
268
  </label>
269
  </td>
270
  <th><?php _e('End time (hh:mm):', 'adrotate'); ?></th>
271
  <td>
272
  <label for="adrotate_eday">
273
+ <input tabindex="17" name="adrotate_ehour" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $ehour;?>" /> :
274
+ <input tabindex="18" name="adrotate_eminute" class="search-input" type="text" size="2" maxlength="4" value="<?php echo $eminute;?>" />
275
  </label>
276
  </td>
277
  </tr>
278
  <?php if($adrotate_config['enable_stats'] == 'Y') { ?>
279
  <tr>
280
  <th><?php _e('Maximum Clicks:', 'adrotate'); ?></th>
281
+ <td><input tabindex="19" name="adrotate_maxclicks" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maxclicks;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
282
  <th><?php _e('Maximum Impressions:', 'adrotate'); ?></th>
283
+ <td><input tabindex="20" name="adrotate_maxshown" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $schedules->maximpressions;?>" /> <em><?php _e('Leave empty or 0 to skip this.', 'adrotate'); ?></em></td>
284
  </tr>
285
  <?php } ?>
286
  <tr>
291
  </table>
292
  <center><?php _e('Create multiple schedules for each advert with AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
293
 
294
+ <p class="submit">
295
+ <input tabindex="21" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
296
+ <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
297
+ </p>
298
+
299
+ <h3><?php _e('Advanced', 'adrotate'); ?></h3>
300
+ <p><em><?php _e('Everything below is optional.', 'adrotate'); ?></em></p>
301
  <table class="widefat" style="margin-top: .5em">
302
+ <tbody>
303
+ <tr>
304
+ <th width="15%" valign="top"><?php _e('Responsive:', 'adrotate'); ?></th>
305
+ <td colspan="3">
306
+ <label for="adrotate_responsive"><input tabindex="22" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
307
+ <em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext". A full set of sized images is strongly recommended.', 'adrotate'); ?></em><br />
308
+ <em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
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('AdRotate Pro only', '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>
328
+ </td>
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>
336
+ <table class="widefat" style="margin-top: .5em">
337
+ <tbody>
338
+ <tr>
339
+ <th width="15%" valign="top"><?php _e('Cities/States:', 'adrotate'); ?></strong></th>
340
+ <td colspan="2">
341
+ <textarea name="adrotate_geo_cities" cols="85" rows="3" disabled>Amsterdam, Noord Holland, New York, California, Tokyo, London</textarea><br />
342
+ <p><em><?php _e('A comma separated list of cities (or the Metro ID) and/or states (Also the states ISO codes are supported)', 'adrotate'); ?> (Alkmaar, Philadelphia, Melbourne, ...)<br /><?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate'); ?></em></p>
343
+ </td>
344
  </tr>
345
+ <tr>
346
+ <th valign="top"><?php _e('Countries:', 'adrotate'); ?></strong></th>
347
+ <td colspan="2">
348
+ <label for="adrotate_geo_countries">
349
+ <div class="adrotate-select">
350
+ <table width="100%">
351
+ <tbody>
352
+ <tr>
353
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">United States</td>
354
+ </tr>
355
+ <tr>
356
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Australia</td>
357
+ </tr>
358
+ <tr>
359
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Germany</td>
360
+ </tr>
361
+ <tr>
362
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Brazil</td>
363
+ </tr>
364
+ <tr>
365
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Japan</td>
366
+ </tr>
367
+ </tbody>
368
+ </table>
369
+ </div>
370
+ </label>
371
+ <p><em><?php _e('Select the countries you want the adverts to show in.', 'adrotate'); ?> <?php _e('Cities take priority and will be filtered first.', 'adrotate'); ?></em></p>
372
+ </td>
373
+ </tr>
374
+ </tbody>
375
+ </table>
376
+ <center><?php _e('Target your audience with Geo Targeting in AdRotate Pro', 'adrotate'); ?>, <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
377
 
378
+ <h3><?php _e('Usage', 'adrotate'); ?></h3>
379
+ <table class="widefat" style="margin-top: .5em">
380
  <tbody>
381
+ <tr>
382
+ <th width="15%"><?php _e('Widget:', 'adrotate'); ?></th>
383
+ <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
 
 
 
 
384
  </tr>
385
+ <tr>
386
+ <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
387
+ <td>[adrotate banner="<?php echo $edit_banner->id; ?>"]</td>
388
+ <th width="15%"><?php _e('Directly in a theme:', 'adrotate'); ?></th>
389
+ <td>&lt;?php echo adrotate_ad(<?php echo $edit_banner->id; ?>); ?&gt;</td>
 
 
390
  </tr>
391
+ </tbody>
 
392
  </table>
 
 
 
 
393
 
394
  <p class="submit">
395
+ <input tabindex="24" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
396
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
397
  </p>
398
 
 
399
  <?php if($groups) { ?>
400
  <h3><?php _e('Select Groups', 'adrotate'); ?></h3>
 
401
  <table class="widefat" style="margin-top: .5em">
402
  <thead>
403
  <tr>
433
  </table>
434
 
435
  <p class="submit">
436
+ <input tabindex="25" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
437
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
438
  </p>
439
  <?php } ?>
dashboard/publisher/adrotate-groups-edit.php CHANGED
@@ -24,7 +24,7 @@
24
 
25
  $edit_group = $wpdb->get_row("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `id` = '$group_edit_id';");
26
  $groups = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
27
- $ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `crate`, `cbudget`, `irate`, `ibudget`, `type` FROM `".$wpdb->prefix."adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty') ORDER BY `id` ASC;");
28
  $linkmeta = $wpdb->get_results("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `user` = 0;");
29
 
30
  $meta_array = '';
@@ -45,7 +45,6 @@ if(!is_array($meta_array)) $meta_array = array();
45
  <h3><?php _e('Edit Group', 'adrotate'); ?></h3>
46
  <?php } ?>
47
 
48
- <p><em><?php _e('These are required.', 'adrotate'); ?></em></p>
49
  <table class="widefat" style="margin-top: .5em">
50
  <tbody>
51
  <tr>
@@ -55,7 +54,7 @@ if(!is_array($meta_array)) $meta_array = array();
55
  <tr>
56
  <th width="15%"><?php _e('Name:', 'adrotate'); ?></th>
57
  <td colspan="2">
58
- <label for="adrotate_groupname"><input tabindex="1" name="adrotate_groupname" type="text" class="search-input" size="80" value="<?php echo $edit_group->name; ?>" autocomplete="off" /></label>
59
  </td>
60
  </tr>
61
  <tr>
@@ -80,54 +79,24 @@ if(!is_array($meta_array)) $meta_array = array();
80
  <table class="widefat" style="margin-top: .5em">
81
  <tbody>
82
  <tr>
83
- <th width="15%"><?php _e('Block shape and border', 'adrotate'); ?></strong></th>
84
  <td width="35%">
85
  <label for="adrotate_gridrows"><select tabindex="3" name="adrotate_gridrows">
86
- <option value="1" <?php if($edit_group->gridrows == 1) { echo 'selected'; } ?>>1</option>
87
- <option value="2" <?php if($edit_group->gridrows == 2) { echo 'selected'; } ?>>2</option>
88
- <option value="3" <?php if($edit_group->gridrows == 3) { echo 'selected'; } ?>>3</option>
89
- <option value="4" <?php if($edit_group->gridrows == 4) { echo 'selected'; } ?>>4</option>
90
- <option value="5" <?php if($edit_group->gridrows == 5) { echo 'selected'; } ?>>5</option>
91
- <option value="6" <?php if($edit_group->gridrows == 6) { echo 'selected'; } ?>>6</option>
92
- <option value="7" <?php if($edit_group->gridrows == 7) { echo 'selected'; } ?>>7</option>
93
- <option value="8" <?php if($edit_group->gridrows == 8) { echo 'selected'; } ?>>8</option>
94
- <option value="9" <?php if($edit_group->gridrows == 9) { echo 'selected'; } ?>>9</option>
95
- <option value="10" <?php if($edit_group->gridrows == 10) { echo 'selected'; } ?>>10</option>
96
- <option value="11" <?php if($edit_group->gridrows == 11) { echo 'selected'; } ?>>11</option>
97
- <option value="12" <?php if($edit_group->gridrows == 12) { echo 'selected'; } ?>>12</option>
98
- <option value="13" <?php if($edit_group->gridrows == 13) { echo 'selected'; } ?>>13</option>
99
- <option value="14" <?php if($edit_group->gridrows == 14) { echo 'selected'; } ?>>14</option>
100
- <option value="15" <?php if($edit_group->gridrows == 15) { echo 'selected'; } ?>>15</option>
101
- <option value="16" <?php if($edit_group->gridrows == 16) { echo 'selected'; } ?>>16</option>
102
- <option value="17" <?php if($edit_group->gridrows == 17) { echo 'selected'; } ?>>17</option>
103
- <option value="18" <?php if($edit_group->gridrows == 18) { echo 'selected'; } ?>>18</option>
104
- <option value="19" <?php if($edit_group->gridrows == 19) { echo 'selected'; } ?>>19</option>
105
- <option value="20" <?php if($edit_group->gridrows == 20) { echo 'selected'; } ?>>20</option>
106
- <option value="21" <?php if($edit_group->gridrows == 21) { echo 'selected'; } ?>>21</option>
107
- <option value="22" <?php if($edit_group->gridrows == 22) { echo 'selected'; } ?>>22</option>
108
- <option value="23" <?php if($edit_group->gridrows == 23) { echo 'selected'; } ?>>23</option>
109
- <option value="24" <?php if($edit_group->gridrows == 24) { echo 'selected'; } ?>>24</option>
110
  </select> <?php _e('rows', 'adrotate'); ?>,</label> <label for="adrotate_gridcolumns"><select tabindex="4" name="adrotate_gridcolumns">
111
- <option value="1" <?php if($edit_group->gridcolumns == 1) { echo 'selected'; } ?>>1</option>
112
- <option value="2" <?php if($edit_group->gridcolumns == 2) { echo 'selected'; } ?>>2</option>
113
- <option value="3" <?php if($edit_group->gridcolumns == 3) { echo 'selected'; } ?>>3</option>
114
- <option value="4" <?php if($edit_group->gridcolumns == 4) { echo 'selected'; } ?>>4</option>
115
- <option value="5" <?php if($edit_group->gridcolumns == 5) { echo 'selected'; } ?>>5</option>
116
- <option value="6" <?php if($edit_group->gridcolumns == 6) { echo 'selected'; } ?>>6</option>
117
- <option value="7" <?php if($edit_group->gridcolumns == 7) { echo 'selected'; } ?>>7</option>
118
- <option value="8" <?php if($edit_group->gridcolumns == 8) { echo 'selected'; } ?>>8</option>
119
- <option value="9" <?php if($edit_group->gridcolumns == 9) { echo 'selected'; } ?>>9</option>
120
- <option value="10" <?php if($edit_group->gridcolumns == 10) { echo 'selected'; } ?>>10</option>
121
- <option value="11" <?php if($edit_group->gridcolumns == 11) { echo 'selected'; } ?>>11</option>
122
- <option value="12" <?php if($edit_group->gridcolumns == 12) { echo 'selected'; } ?>>12</option>
123
  </select> <?php _e('columns', 'adrotate'); ?>.</label>
124
  </td>
125
  <td colspan="2">
126
- <p><em><?php _e('Block Mode', 'adrotate'); ?> - <?php _e('Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns showing a maximum of 6 ads. Default: 2x2.', 'adrotate'); ?></em></p>
127
  </td>
128
  </tr>
129
  <tr>
130
- <th valign="top"><?php _e('Advert Width and Height', 'adrotate'); ?></strong></th>
131
  <td>
132
  <label for="adrotate_adwidth"><input tabindex="5" name="adrotate_adwidth" type="text" class="search-input" size="3" value="<?php echo $edit_group->adwidth; ?>" autocomplete="off" /> <?php _e('pixel(s) wide', 'adrotate'); ?>,</label> <label for="adrotate_adheight"><input tabindex="6" name="adrotate_adheight" type="text" class="search-input" size="3" value="<?php echo $edit_group->adheight; ?>" autocomplete="off" /> <?php _e('pixel(s) high.', 'adrotate'); ?></label>
133
  </td>
@@ -165,9 +134,12 @@ if(!is_array($meta_array)) $meta_array = array();
165
  </table>
166
 
167
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
168
- <p><em><?php _e('Copy the shortcode in a post or page. The PHP code goes in a theme file where you want the advert to show up.', 'adrotate'); ?></em></p>
169
  <table class="widefat" style="margin-top: .5em">
170
  <tbody>
 
 
 
 
171
  <tr>
172
  <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
173
  <td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
@@ -191,7 +163,7 @@ if(!is_array($meta_array)) $meta_array = array();
191
  <label for="adrotate_admargin"><input tabindex="9" name="adrotate_admargin" type="text" class="search-input" size="5" value="<?php echo $edit_group->admargin; ?>" autocomplete="off" /> <?php _e('pixel(s)', 'adrotate'); ?>.</label>
192
  </td>
193
  <td colspan="2">
194
- <p><em><?php _e('A transparent area outside the advert in pixels. Default: 0.', 'adrotate'); ?> <?php _e('Set to 0 to disable.', 'adrotate'); ?></em></p>
195
  </td>
196
  </tr>
197
  <tr>
@@ -210,7 +182,7 @@ if(!is_array($meta_array)) $meta_array = array();
210
  </tr>
211
  <tr>
212
  <th valign="top"><?php _e('Sortorder:', 'adrotate'); ?></th>
213
- <td><label for="adrotate_sortorder"><input tabindex="12" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_group->sortorder;?>" /></label></td>
214
  <td><em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to group id.', 'adrotate'); ?></em></td>
215
  </tr>
216
  </tbody>
@@ -218,13 +190,12 @@ if(!is_array($meta_array)) $meta_array = array();
218
  <center><?php _e('Set up a fallback group and use Geo Location in AdRotate Pro', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
219
 
220
  <h3><?php _e('Post Injection', 'adrotate'); ?></h3>
221
- <p><em><?php _e('Insert ads to the begin or end of a post/page.', 'adrotate'); ?></em></p>
222
  <table class="widefat" style="margin-top: .5em">
223
  <tr>
224
  <th width="15%"><?php _e('Include ads in categories?', 'adrotate'); ?></th>
225
  <td>
226
  <label for="adrotate_cat_location">
227
- <select tabindex="13" name="adrotate_cat_location">
228
  <option value="0" <?php if($edit_group->cat_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
229
  <option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
230
  <option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
@@ -233,7 +204,7 @@ if(!is_array($meta_array)) $meta_array = array();
233
  </select>
234
  </label>
235
  <label for="adrotate_cat_paragraph">
236
- <select tabindex="14" name="adrotate_cat_paragraph">
237
  <option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
238
  <option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('the first paragraph', 'adrotate'); ?></option>
239
  <option value="20" <?php if($edit_group->cat_par == 20) { echo 'selected'; } ?>><?php _e('the 2nd paragraph', 'adrotate'); ?></option>
@@ -265,7 +236,7 @@ if(!is_array($meta_array)) $meta_array = array();
265
  <th valign="top"><?php _e('Include ads in pages?', 'adrotate'); ?></th>
266
  <td>
267
  <label for="adrotate_page_location">
268
- <select tabindex="15" name="adrotate_page_location">
269
  <option value="0" <?php if($edit_group->page_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
270
  <option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
271
  <option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
@@ -274,7 +245,7 @@ if(!is_array($meta_array)) $meta_array = array();
274
  </select>
275
  </label>
276
  <label for="adrotate_page_paragraph">
277
- <select tabindex="16" name="adrotate_page_paragraph">
278
  <option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
279
  <option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('the first paragraph', 'adrotate'); ?></option>
280
  <option value="20" <?php if($edit_group->page_par == 20) { echo 'selected'; } ?>><?php _e('the 2nd paragraph', 'adrotate'); ?></option>
@@ -306,9 +277,12 @@ if(!is_array($meta_array)) $meta_array = array();
306
  </table>
307
 
308
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
309
- <p><em><?php _e('Copy the shortcode in a post or page. The PHP code goes in a theme file where you want the advert to show up.', 'adrotate'); ?></em></p>
310
  <table class="widefat" style="margin-top: .5em">
311
  <tbody>
 
 
 
 
312
  <tr>
313
  <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
314
  <td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
@@ -319,26 +293,25 @@ if(!is_array($meta_array)) $meta_array = array();
319
  </table>
320
 
321
  <p class="submit">
322
- <input tabindex="17" type="submit" name="adrotate_group_submit" class="button-primary" value="<?php _e('Save Group', 'adrotate'); ?>" />
323
  <a href="admin.php?page=adrotate-groups&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
324
  </p>
325
 
326
  <h3><?php _e('Wrapper code', 'adrotate'); ?></h3>
327
- <p><em><?php _e('Wraps around each ad.', 'adrotate'); ?></em></p>
328
  <table class="widefat" style="margin-top: .5em">
329
  <tbody>
330
  <tr>
331
  <th width="15%" valign="top"><?php _e('Before ad', 'adrotate'); ?></strong></th>
332
- <td colspan="2"><textarea tabindex="18" name="adrotate_wrapper_before" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_before); ?></textarea></td>
333
  <td width="35%">
334
  <p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em>&lt;span style="background-color:#aaa;"&gt;</em></p>
335
  <p><strong><?php _e('Options:', 'adrotate'); ?></strong> <em>%id%</em></p>
336
- <p><em><?php _e('HTML/JavaScript allowed, use with care!', 'adrotate'); ?></em></p>
337
  </td>
338
  </tr>
339
  <tr>
340
  <th valign="top"><?php _e('After ad', 'adrotate'); ?></strong></th>
341
- <td colspan="2"><textarea tabindex="19" name="adrotate_wrapper_after" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_after); ?></textarea></td>
342
  <td>
343
  <p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em>&lt;/span&gt;</em></p>
344
  </td>
@@ -401,7 +374,7 @@ if(!is_array($meta_array)) $meta_array = array();
401
  </center></p>
402
 
403
  <p class="submit">
404
- <input tabindex="20" type="submit" name="adrotate_group_submit" class="button-primary" value="<?php _e('Save Group', 'adrotate'); ?>" />
405
  <a href="admin.php?page=adrotate-groups&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
406
  </p>
407
  </form>
24
 
25
  $edit_group = $wpdb->get_row("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `id` = '$group_edit_id';");
26
  $groups = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
27
+ $ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `type` FROM `".$wpdb->prefix."adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty') ORDER BY `id` ASC;");
28
  $linkmeta = $wpdb->get_results("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `user` = 0;");
29
 
30
  $meta_array = '';
45
  <h3><?php _e('Edit Group', 'adrotate'); ?></h3>
46
  <?php } ?>
47
 
 
48
  <table class="widefat" style="margin-top: .5em">
49
  <tbody>
50
  <tr>
54
  <tr>
55
  <th width="15%"><?php _e('Name:', 'adrotate'); ?></th>
56
  <td colspan="2">
57
+ <label for="adrotate_groupname"><input tabindex="1" name="adrotate_groupname" type="text" class="search-input" size="50" value="<?php echo $edit_group->name; ?>" autocomplete="off" /></label>
58
  </td>
59
  </tr>
60
  <tr>
79
  <table class="widefat" style="margin-top: .5em">
80
  <tbody>
81
  <tr>
82
+ <th width="15%"><?php _e('Block size', 'adrotate'); ?></strong></th>
83
  <td width="35%">
84
  <label for="adrotate_gridrows"><select tabindex="3" name="adrotate_gridrows">
85
+ <?php for($rows=1;$rows<=32;$rows++) { ?>
86
+ <option value="<?php echo $rows; ?>" <?php if($edit_group->gridrows == $rows) { echo 'selected'; } ?>><?php echo $rows; ?></option>
87
+ <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  </select> <?php _e('rows', 'adrotate'); ?>,</label> <label for="adrotate_gridcolumns"><select tabindex="4" name="adrotate_gridcolumns">
89
+ <?php for($columns=1;$columns<=12;$columns++) { ?>
90
+ <option value="<?php echo $columns; ?>" <?php if($edit_group->gridcolumns == $columns) { echo 'selected'; } ?>><?php echo $columns; ?></option>
91
+ <?php } ?>
 
 
 
 
 
 
 
 
 
92
  </select> <?php _e('columns', 'adrotate'); ?>.</label>
93
  </td>
94
  <td colspan="2">
95
+ <p><em><?php _e('Block Mode', 'adrotate'); ?> - <?php _e('Larger blocks will degrade your sites performance! Default: 2/2.', 'adrotate'); ?></em></p>
96
  </td>
97
  </tr>
98
  <tr>
99
+ <th valign="top"><?php _e('Advert size', 'adrotate'); ?></strong></th>
100
  <td>
101
  <label for="adrotate_adwidth"><input tabindex="5" name="adrotate_adwidth" type="text" class="search-input" size="3" value="<?php echo $edit_group->adwidth; ?>" autocomplete="off" /> <?php _e('pixel(s) wide', 'adrotate'); ?>,</label> <label for="adrotate_adheight"><input tabindex="6" name="adrotate_adheight" type="text" class="search-input" size="3" value="<?php echo $edit_group->adheight; ?>" autocomplete="off" /> <?php _e('pixel(s) high.', 'adrotate'); ?></label>
102
  </td>
134
  </table>
135
 
136
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
 
137
  <table class="widefat" style="margin-top: .5em">
138
  <tbody>
139
+ <tr>
140
+ <th width="15%"><?php _e('Widget:', 'adrotate'); ?></th>
141
+ <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Ads" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
142
+ </tr>
143
  <tr>
144
  <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
145
  <td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
163
  <label for="adrotate_admargin"><input tabindex="9" name="adrotate_admargin" type="text" class="search-input" size="5" value="<?php echo $edit_group->admargin; ?>" autocomplete="off" /> <?php _e('pixel(s)', 'adrotate'); ?>.</label>
164
  </td>
165
  <td colspan="2">
166
+ <p><em><?php _e('A transparent area outside the advert in pixels. Default: 0.', 'adrotate'); ?> <?php _e('Set to 0 to disable.', 'adrotate'); ?> <?php _e('Margins are automatically disabled for blocks where required.', 'adrotate'); ?></em></p>
167
  </td>
168
  </tr>
169
  <tr>
182
  </tr>
183
  <tr>
184
  <th valign="top"><?php _e('Sortorder:', 'adrotate'); ?></th>
185
+ <td><label for="adrotate_sortorder"><input tabindex="11" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_group->sortorder;?>" /></label></td>
186
  <td><em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to group id.', 'adrotate'); ?></em></td>
187
  </tr>
188
  </tbody>
190
  <center><?php _e('Set up a fallback group and use Geo Location in AdRotate Pro', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
191
 
192
  <h3><?php _e('Post Injection', 'adrotate'); ?></h3>
 
193
  <table class="widefat" style="margin-top: .5em">
194
  <tr>
195
  <th width="15%"><?php _e('Include ads in categories?', 'adrotate'); ?></th>
196
  <td>
197
  <label for="adrotate_cat_location">
198
+ <select tabindex="12" name="adrotate_cat_location">
199
  <option value="0" <?php if($edit_group->cat_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
200
  <option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
201
  <option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
204
  </select>
205
  </label>
206
  <label for="adrotate_cat_paragraph">
207
+ <select tabindex="13" name="adrotate_cat_paragraph">
208
  <option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
209
  <option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('the first paragraph', 'adrotate'); ?></option>
210
  <option value="20" <?php if($edit_group->cat_par == 20) { echo 'selected'; } ?>><?php _e('the 2nd paragraph', 'adrotate'); ?></option>
236
  <th valign="top"><?php _e('Include ads in pages?', 'adrotate'); ?></th>
237
  <td>
238
  <label for="adrotate_page_location">
239
+ <select tabindex="14" name="adrotate_page_location">
240
  <option value="0" <?php if($edit_group->page_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
241
  <option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
242
  <option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
245
  </select>
246
  </label>
247
  <label for="adrotate_page_paragraph">
248
+ <select tabindex="15" name="adrotate_page_paragraph">
249
  <option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
250
  <option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('the first paragraph', 'adrotate'); ?></option>
251
  <option value="20" <?php if($edit_group->page_par == 20) { echo 'selected'; } ?>><?php _e('the 2nd paragraph', 'adrotate'); ?></option>
277
  </table>
278
 
279
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
 
280
  <table class="widefat" style="margin-top: .5em">
281
  <tbody>
282
+ <tr>
283
+ <th width="15%"><?php _e('Widget:', 'adrotate'); ?></th>
284
+ <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Group of Ads" and enter ID', 'adrotate'); ?> "<?php echo $edit_group->id; ?>".</td>
285
+ </tr>
286
  <tr>
287
  <th width="15%"><?php _e('In a post or page:', 'adrotate'); ?></th>
288
  <td width="35%">[adrotate group="<?php echo $edit_group->id; ?>"]</td>
293
  </table>
294
 
295
  <p class="submit">
296
+ <input tabindex="16" type="submit" name="adrotate_group_submit" class="button-primary" value="<?php _e('Save Group', 'adrotate'); ?>" />
297
  <a href="admin.php?page=adrotate-groups&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
298
  </p>
299
 
300
  <h3><?php _e('Wrapper code', 'adrotate'); ?></h3>
301
+ <p><em><?php _e('Wraps around each ad. HTML/JavaScript allowed, use with care!', 'adrotate'); ?></em></p>
302
  <table class="widefat" style="margin-top: .5em">
303
  <tbody>
304
  <tr>
305
  <th width="15%" valign="top"><?php _e('Before ad', 'adrotate'); ?></strong></th>
306
+ <td colspan="2"><textarea tabindex="17" name="adrotate_wrapper_before" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_before); ?></textarea></td>
307
  <td width="35%">
308
  <p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em>&lt;span style="background-color:#aaa;"&gt;</em></p>
309
  <p><strong><?php _e('Options:', 'adrotate'); ?></strong> <em>%id%</em></p>
 
310
  </td>
311
  </tr>
312
  <tr>
313
  <th valign="top"><?php _e('After ad', 'adrotate'); ?></strong></th>
314
+ <td colspan="2"><textarea tabindex="18" name="adrotate_wrapper_after" cols="65" rows="3"><?php echo stripslashes($edit_group->wrapper_after); ?></textarea></td>
315
  <td>
316
  <p><strong><?php _e('Example:', 'adrotate'); ?></strong> <em>&lt;/span&gt;</em></p>
317
  </td>
374
  </center></p>
375
 
376
  <p class="submit">
377
+ <input tabindex="19" type="submit" name="adrotate_group_submit" class="button-primary" value="<?php _e('Save Group', 'adrotate'); ?>" />
378
  <a href="admin.php?page=adrotate-groups&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
379
  </p>
380
  </form>
images/{close_icon.png → close-icon.png} RENAMED
File without changes
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -17,19 +17,19 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
- #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
@@ -38,17 +38,17 @@ msgstr ""
38
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
39
  "си."
40
 
41
- #: adrotate-output.php:749
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
46
 
47
- #: adrotate-output.php:750
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
- #: adrotate-output.php:768
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
@@ -56,33 +56,33 @@ msgstr ""
56
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
57
  "геолокацията или не съществува!"
58
 
59
- #: adrotate-output.php:770
60
  msgid ""
61
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "restrictions!"
63
  msgstr ""
64
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
65
 
66
- #: adrotate-output.php:777 adrotate-output.php:779
67
  msgid ""
68
  "Either there are no banners, they are disabled or none qualified for this "
69
  "location!"
70
  msgstr ""
71
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
72
 
73
- #: adrotate-output.php:785
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
- #: adrotate-output.php:791
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
- #: adrotate-output.php:796
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
- #: adrotate-output.php:802
86
  msgid ""
87
  "There was an error locating the database tables for AdRotate. Please "
88
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -90,59 +90,59 @@ msgstr ""
90
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
91
  "изключете и включете наново AdRotate от страницата с плъгините!!"
92
 
93
- #: adrotate-output.php:802
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
- #: adrotate-output.php:808
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
- #: adrotate-output.php:834
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
- #: adrotate-output.php:834
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
- #: adrotate-output.php:836
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
- #: adrotate-output.php:836
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
- #: adrotate-output.php:838
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
- #: adrotate-output.php:838
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
- #: adrotate-output.php:840
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
- #: adrotate-output.php:840
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
- #: adrotate-output.php:840
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
- #: adrotate-output.php:840
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
- #: adrotate-output.php:853
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
- #: adrotate-output.php:855
146
  msgid ""
147
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
148
  "to the <strong>PRO</strong> version"
@@ -150,71 +150,71 @@ msgstr ""
150
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
151
  "до <strong>PRO</strong> версията"
152
 
153
- #: adrotate-output.php:856
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
- #: adrotate-output.php:856
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
- #: adrotate-output.php:896
163
  msgid ""
164
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
165
- "Pro is in this menu. Check out the"
166
  msgstr ""
167
 
168
- #: adrotate-output.php:896
169
  msgid "manuals"
170
  msgstr "ръководства"
171
 
172
- #: adrotate-output.php:896 adrotate-output.php:973
173
- #: dashboard/publisher/adrotate-ads-edit.php:229
174
  msgid "and"
175
  msgstr "и"
176
 
177
- #: adrotate-output.php:896
178
  msgid "forums"
179
  msgstr ""
180
 
181
- #: adrotate-output.php:932
182
  msgid "Useful Links"
183
  msgstr "Полезни връзки"
184
 
185
- #: adrotate-output.php:933
186
  msgid "Useful links to learn more about AdRotate"
187
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
188
 
189
- #: adrotate-output.php:935
190
  msgid "AdRotate Page"
191
  msgstr ""
192
 
193
- #: adrotate-output.php:936
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Започнете от нулата с AdRotate Pro"
196
 
197
- #: adrotate-output.php:937
198
  msgid "AdRotate manuals"
199
  msgstr ""
200
 
201
- #: adrotate-output.php:938
202
  msgid "AdRotate Support Forum"
203
  msgstr "Форум за поддръжка на AdRotate"
204
 
205
- #: adrotate-output.php:939
206
  msgid "WordPress.org Forum"
207
  msgstr "WordPress.org форум"
208
 
209
- #: adrotate-output.php:965
210
  msgid "Help AdRotate Grow"
211
  msgstr "Помогнете за развитието на AdRotate"
212
 
213
- #: adrotate-output.php:966
214
  msgid "Brought to you by"
215
  msgstr "Достига до Вас благодарение на"
216
 
217
- #: adrotate-output.php:973
218
  msgid ""
219
  "A lot of users only think to review AdRotate when something goes wrong while "
220
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
@@ -223,23 +223,23 @@ msgstr ""
223
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
224
  "това да остане незабелязано."
225
 
226
- #: adrotate-output.php:973
227
  msgid "If you find AdRotate useful please leave your honest"
228
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
229
 
230
- #: adrotate-output.php:973
231
  msgid "rating"
232
  msgstr "оценка"
233
 
234
- #: adrotate-output.php:973
235
  msgid "review"
236
  msgstr "мнение"
237
 
238
- #: adrotate-output.php:973
239
  msgid "on WordPress.org to help AdRotate grow in a positive way"
240
  msgstr "на WordPress.org, за да се развива AdRotate"
241
 
242
- #: adrotate-output.php:976
243
  msgid ""
244
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
245
  "out more about what I can do for you!"
@@ -247,87 +247,87 @@ msgstr ""
247
  "Мястото, където да се консултирате и/или да поръчате разработка за "
248
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
249
 
250
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
251
  msgid "Visit the"
252
  msgstr "Посетете"
253
 
254
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
255
  msgid "website"
256
  msgstr "уебсайт"
257
 
258
- #: adrotate-output.php:1006
259
  msgid "Available in AdRotate Pro"
260
  msgstr "Налично в AdRotate Pro"
261
 
262
- #: adrotate-output.php:1006
263
  msgid "More information..."
264
  msgstr "Повече информация..."
265
 
266
- #: adrotate-output.php:1007
267
  msgid "This feature is available in AdRotate Pro"
268
  msgstr "Тази функционалност е налична в AdRotate Pro"
269
 
270
- #: adrotate-output.php:1007
271
  msgid "Learn more"
272
  msgstr "Повече информация"
273
 
274
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
275
- #: dashboard/publisher/adrotate-ads-edit.php:352
276
  msgid "January"
277
  msgstr "Януари"
278
 
279
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
280
- #: dashboard/publisher/adrotate-ads-edit.php:353
281
  msgid "February"
282
  msgstr "Февруари"
283
 
284
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
285
- #: dashboard/publisher/adrotate-ads-edit.php:354
286
  msgid "March"
287
  msgstr "Март"
288
 
289
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
290
- #: dashboard/publisher/adrotate-ads-edit.php:355
291
  msgid "April"
292
  msgstr "Април"
293
 
294
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
295
- #: dashboard/publisher/adrotate-ads-edit.php:356
296
  msgid "May"
297
  msgstr "Май"
298
 
299
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
300
- #: dashboard/publisher/adrotate-ads-edit.php:357
301
  msgid "June"
302
  msgstr "Юни"
303
 
304
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
305
- #: dashboard/publisher/adrotate-ads-edit.php:358
306
  msgid "July"
307
  msgstr "Юли"
308
 
309
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
310
- #: dashboard/publisher/adrotate-ads-edit.php:359
311
  msgid "August"
312
  msgstr "Август"
313
 
314
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
315
- #: dashboard/publisher/adrotate-ads-edit.php:360
316
  msgid "September"
317
  msgstr "Септември"
318
 
319
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
320
- #: dashboard/publisher/adrotate-ads-edit.php:361
321
  msgid "October"
322
  msgstr "Октомври"
323
 
324
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
325
- #: dashboard/publisher/adrotate-ads-edit.php:362
326
  msgid "November"
327
  msgstr "Ноември"
328
 
329
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
330
- #: dashboard/publisher/adrotate-ads-edit.php:363
331
  msgid "December"
332
  msgstr "Декември"
333
 
@@ -379,7 +379,7 @@ msgstr "Група реклами - Използване на ID на група
379
  msgid "Choose what you want to use this widget for"
380
  msgstr "Изберете за какво иската да използвате тази джаджа"
381
 
382
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
383
  msgid "ID:"
384
  msgstr "ID:"
385
 
@@ -387,76 +387,75 @@ msgstr "ID:"
387
  msgid "Fill in the ID of the type you want to display!"
388
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
389
 
390
- #: adrotate.php:108
391
  msgid "General Info"
392
  msgstr "Обща информация"
393
 
394
- #: adrotate.php:109
395
  msgid "AdRotate Pro"
396
  msgstr "AdRotate Pro"
397
 
398
- #: adrotate.php:110
399
  msgid "Manage Ads"
400
  msgstr "Управление на реклами"
401
 
402
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
403
  msgid "Manage Groups"
404
  msgstr "Управление на групи"
405
 
406
- #: adrotate.php:112 adrotate.php:441
407
- #: dashboard/publisher/adrotate-ads-edit.php:402
408
  msgid "Manage Schedules"
409
  msgstr "Управление на графици"
410
 
411
- #: adrotate.php:113
412
  msgid "Manage Media"
413
  msgstr "Управление на Медия"
414
 
415
- #: adrotate.php:114
416
  msgid "Settings"
417
  msgstr "Настройки"
418
 
419
- #: adrotate.php:137
420
  msgid "AdRotate Info"
421
  msgstr "AdRotate Info"
422
 
423
- #: adrotate.php:158
424
  msgid "AdRotate Professional"
425
  msgstr "AdRotate Professional"
426
 
427
- #: adrotate.php:201
428
  msgid "Ad Management"
429
  msgstr "Управление на реклами"
430
 
431
- #: adrotate.php:204
432
  msgid "Ad created"
433
  msgstr "Рекламата е създадена"
434
 
435
- #: adrotate.php:206
436
  msgid "Ad updated"
437
  msgstr "Рекламата е обновена"
438
 
439
- #: adrotate.php:208
440
  msgid "Ad(s) deleted"
441
  msgstr "Успешно изтриване"
442
 
443
- #: adrotate.php:210
444
  msgid "Ad(s) statistics reset"
445
  msgstr "Статистиката е нулирана"
446
 
447
- #: adrotate.php:212
448
  msgid "Ad(s) renewed"
449
  msgstr "Успешно подновяване"
450
 
451
- #: adrotate.php:214
452
  msgid "Ad(s) deactivated"
453
  msgstr "Успешно деактивиране"
454
 
455
- #: adrotate.php:216
456
  msgid "Ad(s) activated"
457
  msgstr "Успешно активиране"
458
 
459
- #: adrotate.php:218
460
  msgid ""
461
  "The ad was saved but has an issue which might prevent it from working "
462
  "properly. Review the yellow marked ad."
@@ -464,51 +463,51 @@ msgstr ""
464
  "Рекламата е запазена, но има проблеми, които могат да ѝ попречат да работи "
465
  "нормално. Прегледайте рекламата маркирана в жълто."
466
 
467
- #: adrotate.php:220
468
  msgid "Export created"
469
  msgstr "Експорта е завършен"
470
 
471
- #: adrotate.php:224
472
  msgid "Action prohibited"
473
  msgstr "Забранено действие"
474
 
475
- #: adrotate.php:226 adrotate.php:374
476
  msgid "No data found in selected time period"
477
  msgstr "Не е намерена информация за избрания период"
478
 
479
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
480
  msgid "Manage"
481
  msgstr "Управление"
482
 
483
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
484
  msgid "Add New"
485
  msgstr "Добавяне"
486
 
487
- #: adrotate.php:363
488
  msgid "Group Management"
489
  msgstr "Управление на групи"
490
 
491
- #: adrotate.php:366
492
  msgid "Group created"
493
  msgstr "Групата е създадена"
494
 
495
- #: adrotate.php:368
496
  msgid "Group updated"
497
  msgstr "Групата е обновена"
498
 
499
- #: adrotate.php:370
500
  msgid "Group deleted"
501
  msgstr "Групата е изтрита"
502
 
503
- #: adrotate.php:372
504
  msgid "Group including it's Ads deleted"
505
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
506
 
507
- #: adrotate.php:432
508
  msgid "Schedule Management available in AdRotate Pro"
509
  msgstr "Управление с графици е налично в AdRotate Pro"
510
 
511
- #: adrotate.php:442
512
  msgid ""
513
  "Schedule management and multiple schedules per advert is available in "
514
  "AdRotate Pro."
@@ -516,85 +515,83 @@ msgstr ""
516
  "Управлението на графици и множество графици за една реклама са налични в "
517
  "AdRotate Pro."
518
 
519
- #: adrotate.php:442 adrotate.php:529
520
- #: dashboard/publisher/adrotate-ads-edit.php:145
521
  #: dashboard/publisher/adrotate-ads-main.php:108
522
- #: dashboard/publisher/adrotate-groups-edit.php:76
523
  #: dashboard/publisher/adrotate-groups-main.php:87
524
  msgid "More information"
525
  msgstr "Повече информация"
526
 
527
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
528
  #: dashboard/publisher/adrotate-ads-main-error.php:19
529
  #: dashboard/publisher/adrotate-ads-main.php:20
530
  #: dashboard/publisher/adrotate-groups-main.php:20
531
  msgid "Bulk Actions"
532
  msgstr "Масови действия"
533
 
534
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
535
  #: dashboard/publisher/adrotate-ads-main-error.php:29
536
  #: dashboard/publisher/adrotate-ads-main.php:30
537
  #: dashboard/publisher/adrotate-groups-main.php:24
538
  msgid "Go"
539
  msgstr "Напред"
540
 
541
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
542
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
543
  #: dashboard/publisher/adrotate-ads-main-error.php:39
544
  #: dashboard/publisher/adrotate-ads-main.php:39
545
  #: dashboard/publisher/adrotate-groups-main.php:32
546
  msgid "ID"
547
  msgstr "ID"
548
 
549
- #: adrotate.php:460
550
  msgid "Start"
551
  msgstr "Начало"
552
 
553
- #: adrotate.php:460
554
  msgid "End"
555
  msgstr "Край"
556
 
557
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
558
  #: dashboard/publisher/adrotate-groups-main.php:34
559
  msgid "Ads"
560
  msgstr "Реклами"
561
 
562
- #: adrotate.php:463
563
  msgid "Max Clicks"
564
  msgstr "Максимум кликове"
565
 
566
- #: adrotate.php:464
567
  msgid "Max Impressions"
568
  msgstr "Максимум импресии"
569
 
570
- #: adrotate.php:494
571
  msgid "No schedules created yet!"
572
  msgstr "Все още няма създадени графици!"
573
 
574
- #: adrotate.php:499
575
  msgid "Easily manage your schedules from here with AdRotate Pro."
576
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
577
 
578
- #: adrotate.php:499 adrotate.php:562
579
  msgid "Upgrade today!"
580
  msgstr "Надградете днес!"
581
 
582
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
583
- #: dashboard/publisher/adrotate-ads-main-error.php:74
584
- #: dashboard/publisher/adrotate-groups-edit.php:399
585
  msgid "Expires soon."
586
  msgstr "Изтича скоро."
587
 
588
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
589
- #: dashboard/publisher/adrotate-groups-edit.php:400
590
  msgid "Has expired."
591
  msgstr "Изтекла."
592
 
593
- #: adrotate.php:527
594
  msgid "Media Management available in AdRotate Pro"
595
  msgstr "Управление на медия е налично в AdRotate Pro"
596
 
597
- #: adrotate.php:529
598
  msgid ""
599
  "Upload images to the AdRotate Pro banners folder from here. This is "
600
  "especially useful if you use responsive adverts with multiple images."
@@ -602,27 +599,27 @@ msgstr ""
602
  "Качете картинки в папката за банери на AdRotate Pro от тук. Това е особено "
603
  "полезно, ако използвате responsive реклами с няколко картинки."
604
 
605
- #: adrotate.php:529
606
  msgid "Media uploading and management is available in AdRotate Pro."
607
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
608
 
609
- #: adrotate.php:531
610
  msgid "Upload new banner image"
611
  msgstr "Качване на нова картинка на банера"
612
 
613
- #: adrotate.php:532
614
  msgid "Accepted files are:"
615
  msgstr "Приемат се следните файлове:"
616
 
617
- #: adrotate.php:532
618
  msgid "Maximum size is 512Kb."
619
  msgstr "Максималния размер е 512Kb."
620
 
621
- #: adrotate.php:532
622
  msgid "Important:"
623
  msgstr "Важно:"
624
 
625
- #: adrotate.php:532
626
  msgid ""
627
  "Make sure your file has no spaces or special characters in the name. Replace "
628
  "spaces with a - or _."
@@ -630,7 +627,7 @@ msgstr ""
630
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
631
  "интервалите с - или _."
632
 
633
- #: adrotate.php:534
634
  msgid ""
635
  "For responsive adverts make sure the filename is in the following format; "
636
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
@@ -639,7 +636,7 @@ msgstr ""
639
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
640
  "е строго препоръчителен."
641
 
642
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
643
  msgid ""
644
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
645
  "filename instead of \".full\" for the various viewports."
@@ -648,13 +645,13 @@ msgstr ""
648
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
649
  "файловете, вместо \".full\"."
650
 
651
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
652
- #: dashboard/publisher/adrotate-groups-edit.php:334
653
- #: dashboard/publisher/adrotate-groups-edit.php:343
654
  msgid "Example:"
655
  msgstr "Пример:"
656
 
657
- #: adrotate.php:536
658
  msgid ""
659
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
660
  "for different viewports."
@@ -662,171 +659,171 @@ msgstr ""
662
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
663
  "реклама в различни резолюции на екрана."
664
 
665
- #: adrotate.php:540
666
  msgid "Upload image"
667
  msgstr "Качването на картинка"
668
 
669
- #: adrotate.php:543
670
  msgid "Available banner images in"
671
  msgstr "Налични картинки за банери в"
672
 
673
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
674
  msgid "Name"
675
  msgstr "Име"
676
 
677
- #: adrotate.php:549
678
  msgid "Actions"
679
  msgstr "Действия"
680
 
681
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
682
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
683
  #: dashboard/publisher/adrotate-ads-main-error.php:21
684
  #: dashboard/publisher/adrotate-ads-main.php:22
685
  msgid "Delete"
686
  msgstr "Изтриване"
687
 
688
- #: adrotate.php:562
689
  msgid ""
690
  "Make sure the banner images are not in use by adverts when you delete them!"
691
  msgstr ""
692
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
693
  "изтриете!"
694
 
695
- #: adrotate.php:562
696
  msgid "Manage your banner folder from here with AdRotate Pro."
697
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
698
 
699
- #: adrotate.php:606
700
  msgid "AdRotate Settings"
701
  msgstr "AdRotate Настройки"
702
 
703
- #: adrotate.php:609
704
  msgid "Settings saved"
705
  msgstr "Настройките са запазени"
706
 
707
- #: adrotate.php:611
708
  msgid "Database optimized"
709
  msgstr "Базата данни е оптимизирана"
710
 
711
- #: adrotate.php:613
712
  msgid "Database repaired"
713
  msgstr "Базата данни е поправена"
714
 
715
- #: adrotate.php:615
716
  msgid "Ads evaluated and statuses have been corrected where required"
717
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
718
 
719
- #: adrotate.php:617
720
  msgid "Empty database records removed"
721
  msgstr "Празните записи в базата данни са премахнати"
722
 
723
- #: adrotate.php:619
724
  msgid "Database can only be optimized or cleaned once every hour"
725
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
726
 
727
- #: adrotate.php:627
728
  msgid "Access Rights"
729
  msgstr "Права на достъп"
730
 
731
- #: adrotate.php:628
732
  msgid "Who has access to what?"
733
  msgstr "Кой до какво има достъп?"
734
 
735
- #: adrotate.php:631
736
  msgid "Manage/Add/Edit adverts"
737
  msgstr "Управление/Добавяне/Редакция на обяви"
738
 
739
- #: adrotate.php:635
740
  msgid "Role to see and add/edit ads."
741
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
742
 
743
- #: adrotate.php:639
744
  msgid "Delete/Reset adverts"
745
  msgstr "Изтриване/Нулиране на реклами"
746
 
747
- #: adrotate.php:643
748
  msgid "Role to delete ads and reset stats."
749
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
750
 
751
- #: adrotate.php:647
752
  msgid "Manage/Add/Edit groups"
753
  msgstr "Управление/Добавяне/Редакция на групи"
754
 
755
- #: adrotate.php:651
756
  msgid "Role to see and add/edit groups."
757
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
758
 
759
- #: adrotate.php:655
760
  msgid "Delete groups"
761
  msgstr "Изтриване на групи"
762
 
763
- #: adrotate.php:659
764
  msgid "Role to delete groups."
765
  msgstr "Роля за изтриване на групи."
766
 
767
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
768
- #: adrotate.php:876
769
  msgid "Update Options"
770
  msgstr "Опции за обновяване"
771
 
772
- #: adrotate.php:691
773
  msgid "Statistics"
774
  msgstr "Статистики"
775
 
776
- #: adrotate.php:694
777
  msgid "Enable stats"
778
  msgstr "Включване на статистиката"
779
 
780
- #: adrotate.php:696
781
  msgid "Track clicks and impressions."
782
  msgstr "Проследяване на кликове и импресии."
783
 
784
- #: adrotate.php:696
785
  msgid "Disabling this also disables click and impression limits on schedules."
786
  msgstr ""
787
  "Ако деактивирате тази опция, ще бъдат деактивирани и лимитите за кликове и "
788
  "импресии на графици."
789
 
790
- #: adrotate.php:700
791
  msgid "Impressions timer"
792
  msgstr "Таймер за импресии"
793
 
794
- #: adrotate.php:702 adrotate.php:709
795
  msgid "Seconds."
796
  msgstr "Секудни."
797
 
798
- #: adrotate.php:703
799
  msgid "Default: 60."
800
  msgstr "По подразбиране: 60."
801
 
802
- #: adrotate.php:703
803
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
804
  msgstr ""
805
 
806
- #: adrotate.php:707
807
  msgid "Clicks timer"
808
  msgstr "Таймер за кликове"
809
 
810
- #: adrotate.php:710
811
  msgid "Default: 86400."
812
  msgstr "По подразбиране: 86400."
813
 
814
- #: adrotate.php:710
815
  msgid ""
816
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
817
  msgstr ""
818
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
819
  "(24 часа)."
820
 
821
- #: adrotate.php:715
822
  msgid "Bot filter"
823
  msgstr "Филтър на ботове"
824
 
825
- #: adrotate.php:718
826
  msgid "User-Agent Filter"
827
  msgstr "Филтър за агенти"
828
 
829
- #: adrotate.php:721
830
  msgid ""
831
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
832
  "prevent impressions and clicks counted on them."
@@ -834,7 +831,7 @@ msgstr ""
834
  "Списък с ключови думи, за разделител използвайте запетая. Филтриране на "
835
  "импресиите и кликовете от ботове/роботи/агенти."
836
 
837
- #: adrotate.php:722
838
  msgid ""
839
  "Keep in mind that this might give false positives. The word 'google' also "
840
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -842,11 +839,11 @@ msgstr ""
842
  "Имайте в предвид, че това може да даде фалшиви резултати. Думата 'google' ще "
843
  "включи и 'googlebot', но не и обратното. Бъдете внимателни!"
844
 
845
- #: adrotate.php:722
846
  msgid "Keep your list up-to-date"
847
  msgstr "Поддържайте списъка актуален"
848
 
849
- #: adrotate.php:723
850
  msgid ""
851
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
852
  "other characters are stripped out."
@@ -854,29 +851,29 @@ msgstr ""
854
  "Използвайте само думи с букви и цифри, тире и долно тире. Всички останали "
855
  "знаци са забранени."
856
 
857
- #: adrotate.php:724
858
  msgid ""
859
  "Additionally to the list specified here, empty User-Agents are blocked as "
860
  "well."
861
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
862
 
863
- #: adrotate.php:724
864
  msgid "Learn more about"
865
  msgstr "Научете повече за"
866
 
867
- #: adrotate.php:724
868
  msgid "user-agents"
869
  msgstr "агенти"
870
 
871
- #: adrotate.php:733
872
  msgid "Miscellaneous"
873
  msgstr "Разни"
874
 
875
- #: adrotate.php:736
876
  msgid "Widget alignment"
877
  msgstr "Подравняване на джаджата"
878
 
879
- #: adrotate.php:737
880
  msgid ""
881
  "Check this box if your widgets do not align in your themes sidebar. (Does "
882
  "not always help!)"
@@ -884,11 +881,11 @@ msgstr ""
884
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
885
  "темата Ви. (Не винаги помага)"
886
 
887
- #: adrotate.php:740
888
  msgid "Widget padding"
889
  msgstr "Padding за джаджата"
890
 
891
- #: adrotate.php:741
892
  msgid ""
893
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
894
  "not always work!)"
@@ -896,11 +893,11 @@ msgstr ""
896
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
897
  "джаджата. (Не винаги работи!)"
898
 
899
- #: adrotate.php:746 adrotate.php:757
900
  msgid "NOTICE:"
901
  msgstr "ЗАБЕЛЕЖКА:"
902
 
903
- #: adrotate.php:747
904
  msgid ""
905
  "You have enabled W3 Total Caching support but not defined the security hash. "
906
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -912,15 +909,15 @@ msgstr ""
912
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
913
  "включена в W3 Total Cache."
914
 
915
- #: adrotate.php:751
916
  msgid "W3 Total Caching"
917
  msgstr "W3 Total Caching"
918
 
919
- #: adrotate.php:752
920
  msgid "Check this box if you use W3 Total Caching on your site."
921
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
922
 
923
- #: adrotate.php:758
924
  msgid ""
925
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
926
  "this function will not work. WP Super Cache has discontinued support for "
@@ -930,15 +927,15 @@ msgstr ""
930
  "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
931
  "динамично съдържание."
932
 
933
- #: adrotate.php:762
934
  msgid "WP Super Cache"
935
  msgstr "WP Super Cache"
936
 
937
- #: adrotate.php:763
938
  msgid "Check this box if you use WP Super Cache on your site."
939
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
940
 
941
- #: adrotate.php:768
942
  msgid ""
943
  "It may take a while for the ad to start rotating. The caching plugin needs "
944
  "to refresh the cache. This can take up to a week if not done manually."
@@ -947,7 +944,7 @@ msgstr ""
947
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
948
  "седмица, ако не го направите ръчно."
949
 
950
- #: adrotate.php:768
951
  msgid ""
952
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
953
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -956,15 +953,15 @@ msgstr ""
956
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
957
  "сами."
958
 
959
- #: adrotate.php:772
960
  msgid "Javascript"
961
  msgstr ""
962
 
963
- #: adrotate.php:775
964
  msgid "Load jQuery"
965
  msgstr "Зареди jQuery"
966
 
967
- #: adrotate.php:776
968
  msgid ""
969
  "jQuery is required for all Javascript features below. Enable this if your "
970
  "theme does not load jQuery already."
@@ -972,11 +969,11 @@ msgstr ""
972
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
973
  "темата ви вече не го е заредила."
974
 
975
- #: adrotate.php:779
976
  msgid "Load in footer?"
977
  msgstr "Зареди във футера?"
978
 
979
- #: adrotate.php:780
980
  msgid ""
981
  "Enable if you want to load the above libraries in the footer. Your theme "
982
  "needs to call wp_footer() for this to work."
@@ -984,11 +981,11 @@ msgstr ""
984
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
985
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
986
 
987
- #: adrotate.php:788
988
  msgid "Maintenance"
989
  msgstr "Поддръжка"
990
 
991
- #: adrotate.php:789
992
  msgid ""
993
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
994
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1002,19 +999,19 @@ msgstr ""
1002
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1003
  "отговаря."
1004
 
1005
- #: adrotate.php:804 adrotate.php:806
1006
  msgid "Optimize Database"
1007
  msgstr "Оптимизиране на базата данни"
1008
 
1009
- #: adrotate.php:806
1010
  msgid "You are about to optimize the AdRotate database."
1011
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1012
 
1013
- #: adrotate.php:806
1014
  msgid "Did you make a backup of your database?"
1015
  msgstr "Направихте ли резервно копие на своята база данни?"
1016
 
1017
- #: adrotate.php:806
1018
  msgid ""
1019
  "This may take a moment and may cause your website to respond slow "
1020
  "temporarily!"
@@ -1022,16 +1019,16 @@ msgstr ""
1022
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1023
  "момент!"
1024
 
1025
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1026
  #: dashboard/publisher/adrotate-groups-main.php:24
1027
  msgid "OK to continue, CANCEL to stop."
1028
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1029
 
1030
- #: adrotate.php:807
1031
  msgid "Cleans up overhead data in the AdRotate tables."
1032
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1033
 
1034
- #: adrotate.php:808
1035
  msgid ""
1036
  "Overhead data is accumulated garbage resulting from many changes you've "
1037
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1039,11 +1036,11 @@ msgstr ""
1039
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1040
  "които правите. Те могар да варират от 0 до хиляди KB."
1041
 
1042
- #: adrotate.php:812 adrotate.php:814
1043
  msgid "Clean-up Database"
1044
  msgstr "Почистване на базата данни"
1045
 
1046
- #: adrotate.php:814
1047
  msgid ""
1048
  "You are about to clean up your database. This may delete expired schedules "
1049
  "and older statistics."
@@ -1051,21 +1048,21 @@ msgstr ""
1051
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1052
  "и стари статистики."
1053
 
1054
- #: adrotate.php:814
1055
  msgid "Are you sure you want to continue?"
1056
  msgstr "Сигурни ли сте, че искате да продължите?"
1057
 
1058
- #: adrotate.php:814 adrotate.php:822
1059
  msgid "This might take a while and may slow down your site during this action!"
1060
  msgstr ""
1061
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1062
  "изпълнението му!"
1063
 
1064
- #: adrotate.php:815
1065
  msgid "Delete stats older than 356 days (Optional)."
1066
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1067
 
1068
- #: adrotate.php:816
1069
  msgid ""
1070
  "AdRotate creates empty records when you start making ads or groups. In rare "
1071
  "occasions these records are faulty."
@@ -1073,7 +1070,7 @@ msgstr ""
1073
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1074
  "група. В редки случай тези записи са дефектни."
1075
 
1076
- #: adrotate.php:816
1077
  msgid ""
1078
  "If you made an ad or group that does not save when you make it use this "
1079
  "button to delete those empty records."
@@ -1081,7 +1078,7 @@ msgstr ""
1081
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1082
  "този бутон, за да изтриете празните полета."
1083
 
1084
- #: adrotate.php:816
1085
  msgid ""
1086
  "Additionally you can clean up old statistics. This will improve the speed of "
1087
  "your site."
@@ -1089,19 +1086,19 @@ msgstr ""
1089
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1090
  "скоростта на сайта Ви."
1091
 
1092
- #: adrotate.php:820
1093
  msgid "Re-evaluate Ads"
1094
  msgstr "Преоценка на реклами"
1095
 
1096
- #: adrotate.php:822
1097
  msgid "Re-evaluate all ads"
1098
  msgstr "Преоценка на всички реклами"
1099
 
1100
- #: adrotate.php:822
1101
  msgid "You are about to check all ads for errors."
1102
  msgstr "На път сте да проверите всички реклами за грешки."
1103
 
1104
- #: adrotate.php:823
1105
  msgid ""
1106
  "This will apply all evaluation rules to all ads to see if any error slipped "
1107
  "in. Normally you should not need this feature."
@@ -1109,7 +1106,7 @@ msgstr ""
1109
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1110
  "нужда от тази функция."
1111
 
1112
- #: adrotate.php:827
1113
  msgid ""
1114
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1115
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1126,65 +1123,65 @@ msgstr ""
1126
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1127
  "тези бутони е безсмислено."
1128
 
1129
- #: adrotate.php:835
1130
  msgid "Troubleshooting"
1131
  msgstr "Отстраняване на проблеми"
1132
 
1133
- #: adrotate.php:838
1134
  msgid "Current version:"
1135
  msgstr "Текуща версия:"
1136
 
1137
- #: adrotate.php:839
1138
  msgid "Previous version:"
1139
  msgstr "Предишна версия:"
1140
 
1141
- #: adrotate.php:842
1142
  msgid "Current database version:"
1143
  msgstr "Текуща верския на базата данни:"
1144
 
1145
- #: adrotate.php:843
1146
  msgid "Previous database version:"
1147
  msgstr "Предишна версия на базата данни:"
1148
 
1149
- #: adrotate.php:846
1150
  #, fuzzy
1151
  msgid "Ad evaluation next run:"
1152
  msgstr "Оценка на рекламата:"
1153
 
1154
- #: adrotate.php:847 adrotate.php:851
1155
  msgid "Not scheduled!"
1156
  msgstr "Не е планирано!"
1157
 
1158
- #: adrotate.php:850
1159
  #, fuzzy
1160
  msgid "Clean Trackerdata next run:"
1161
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
1162
 
1163
- #: adrotate.php:854
1164
  msgid "Current status of adverts"
1165
  msgstr "Настоящ статус на рекламите"
1166
 
1167
- #: adrotate.php:855
1168
  msgid "Normal"
1169
  msgstr "Нормално"
1170
 
1171
- #: adrotate.php:855
1172
  msgid "Error"
1173
  msgstr "Грешка"
1174
 
1175
- #: adrotate.php:855
1176
  msgid "Expired"
1177
  msgstr "Изтекло"
1178
 
1179
- #: adrotate.php:855
1180
  msgid "Expires Soon"
1181
  msgstr "Изтича скоро"
1182
 
1183
- #: adrotate.php:855
1184
  msgid "Unknown Status"
1185
  msgstr "Неизвестен статус"
1186
 
1187
- #: adrotate.php:858
1188
  msgid ""
1189
  "NOTE: The below options are not meant for normal use and are only there for "
1190
  "developers to review saved settings or how ads are selected. These can be "
@@ -1197,35 +1194,35 @@ msgstr ""
1197
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1198
  "ИЗКЛЮЧЕНИ!!"
1199
 
1200
- #: adrotate.php:862
1201
  msgid "Developer Debug"
1202
  msgstr "Developer Debug"
1203
 
1204
- #: adrotate.php:864
1205
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1206
  msgstr ""
1207
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1208
  "изглед."
1209
 
1210
- #: adrotate.php:865
1211
  msgid "Show all settings, dashboard routines and related values."
1212
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1213
 
1214
- #: adrotate.php:866
1215
  msgid "Show array of all userroles and capabilities."
1216
  msgstr "Покажи масив с всички потребителски роли и възможности."
1217
 
1218
- #: adrotate.php:867
1219
  msgid "Review saved advertisers! Visible to advertisers."
1220
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1221
 
1222
- #: adrotate.php:868
1223
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1224
  msgstr ""
1225
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1226
  "автори."
1227
 
1228
- #: adrotate.php:869
1229
  msgid ""
1230
  "Disable timers for clicks and impressions and enable a alert window for "
1231
  "clicktracking."
@@ -1233,7 +1230,7 @@ msgstr ""
1233
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1234
  "за проследяване на кликове."
1235
 
1236
- #: adrotate.php:870
1237
  msgid "Temporarily disable encryption on the redirect url."
1238
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1239
 
@@ -1478,8 +1475,8 @@ msgid "The AdCode cannot be empty!"
1478
  msgstr "AdCode не може да бъде празен!"
1479
 
1480
  #: dashboard/publisher/adrotate-ads-edit.php:49
1481
- msgid "You didn't use %image% in your AdCode but did select an image!"
1482
- msgstr "Не сте използвали %image% в своя AdCode, но сте избрали картинка!"
1483
 
1484
  #: dashboard/publisher/adrotate-ads-edit.php:52
1485
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1494,12 +1491,24 @@ msgstr ""
1494
  "нулирайте снимката и запишете рекламата наново!"
1495
 
1496
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1497
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1498
  msgstr ""
1499
  "Проследяването на кликове е включено, но не е намерен валиден линк в кода на "
1500
  "рекламата!"
1501
 
1502
- #: dashboard/publisher/adrotate-ads-edit.php:63
1503
  msgid ""
1504
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1505
  "the ad!"
@@ -1507,114 +1516,168 @@ msgstr ""
1507
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
1508
  "запишете я наново!"
1509
 
1510
- #: dashboard/publisher/adrotate-ads-edit.php:66
1511
  msgid "This ad is expired and currently not shown on your website!"
1512
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
1513
 
1514
- #: dashboard/publisher/adrotate-ads-edit.php:69
1515
  msgid "The ad will expire in less than 2 days!"
1516
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
1517
 
1518
- #: dashboard/publisher/adrotate-ads-edit.php:72
1519
  msgid "This ad will expire in less than 7 days!"
1520
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
1521
 
1522
- #: dashboard/publisher/adrotate-ads-edit.php:75
1523
  msgid "This ad has been disabled and does not rotate on your site!"
1524
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1525
 
1526
- #: dashboard/publisher/adrotate-ads-edit.php:101
1527
  msgid "New Advert"
1528
  msgstr "Нова реклама"
1529
 
1530
- #: dashboard/publisher/adrotate-ads-edit.php:103
1531
  msgid "Edit Advert"
1532
  msgstr "Редакция на реклама"
1533
 
1534
- #: dashboard/publisher/adrotate-ads-edit.php:106
1535
- #: dashboard/publisher/adrotate-groups-edit.php:48
1536
- msgid "These are required."
1537
- msgstr "Тези са задължителни."
1538
-
1539
- #: dashboard/publisher/adrotate-ads-edit.php:110
1540
  msgid "Title:"
1541
  msgstr "Заглавие:"
1542
 
1543
- #: dashboard/publisher/adrotate-ads-edit.php:116
1544
  msgid "AdCode:"
1545
  msgstr "AdCode:"
1546
 
1547
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1548
  msgid ""
1549
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1550
  msgstr ""
1551
- "Копирайте своя рекламен етикет/код в това поле ако сте получили готова "
1552
- "реклама."
1553
 
1554
- #: dashboard/publisher/adrotate-ads-edit.php:121
1555
- msgid "Advertising and affiliate networks often use these."
1556
- msgstr "Реклманите и партньорските мрежи често използват това."
1557
 
1558
- #: dashboard/publisher/adrotate-ads-edit.php:122
1559
- msgid "Basic Examples:"
1560
- msgstr "Основни примери:"
1561
 
1562
- #: dashboard/publisher/adrotate-ads-edit.php:127
1563
- #: dashboard/publisher/adrotate-groups-edit.php:335
1564
- msgid "Options:"
1565
- msgstr "Настройки:"
 
 
 
 
 
 
 
 
 
 
 
1566
 
1567
- #: dashboard/publisher/adrotate-ads-edit.php:129
 
 
 
 
1568
  msgid ""
1569
- "Place the cursor where you want to add a tag and click to add it to your "
1570
- "AdCode."
1571
  msgstr ""
1572
- "Поставете курсора там, където искате да добавите етикет и кликете, за да го "
1573
- "добавите към кода на рекламата."
1574
 
1575
- #: dashboard/publisher/adrotate-ads-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1576
  msgid "Activate:"
1577
  msgstr "Активиране:"
1578
 
1579
- #: dashboard/publisher/adrotate-ads-edit.php:137
1580
  msgid "Yes, this ad will be used"
1581
  msgstr "Да, тази реклама ще се използва"
1582
 
1583
- #: dashboard/publisher/adrotate-ads-edit.php:138
1584
  msgid "No, do not show this ad anywhere"
1585
  msgstr "Не, не показвай тази реклама никъде"
1586
 
1587
- #: dashboard/publisher/adrotate-ads-edit.php:145
1588
  #: dashboard/publisher/adrotate-ads-main.php:108
1589
- #: dashboard/publisher/adrotate-groups-edit.php:76
1590
  #: dashboard/publisher/adrotate-groups-main.php:87
1591
  msgid "Get more features with AdRotate Pro."
1592
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1593
 
1594
- #: dashboard/publisher/adrotate-ads-edit.php:148
1595
- #: dashboard/publisher/adrotate-ads-edit.php:181
1596
- #: dashboard/publisher/adrotate-ads-edit.php:317
1597
- #: dashboard/publisher/adrotate-ads-edit.php:442
1598
- #: dashboard/publisher/adrotate-ads-edit.php:485
1599
  msgid "Save Advert"
1600
  msgstr "Запиши рекламата"
1601
 
1602
- #: dashboard/publisher/adrotate-ads-edit.php:149
1603
- #: dashboard/publisher/adrotate-ads-edit.php:182
1604
- #: dashboard/publisher/adrotate-ads-edit.php:318
1605
- #: dashboard/publisher/adrotate-ads-edit.php:443
1606
- #: dashboard/publisher/adrotate-ads-edit.php:486
1607
- #: dashboard/publisher/adrotate-groups-edit.php:182
1608
- #: dashboard/publisher/adrotate-groups-edit.php:323
1609
- #: dashboard/publisher/adrotate-groups-edit.php:405
1610
  msgid "Cancel"
1611
  msgstr "Отказ"
1612
 
1613
- #: dashboard/publisher/adrotate-ads-edit.php:153
1614
  msgid "Preview"
1615
  msgstr "Преглед"
1616
 
1617
- #: dashboard/publisher/adrotate-ads-edit.php:159
1618
  msgid ""
1619
  "Note: While this preview is an accurate one, it might look different then it "
1620
  "does on the website."
@@ -1622,95 +1685,127 @@ msgstr ""
1622
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1623
  "изглежда по-различно, когато се показва на страницата Ви."
1624
 
1625
- #: dashboard/publisher/adrotate-ads-edit.php:160
1626
  msgid ""
1627
  "This is because of CSS differences. Your themes CSS file is not active here!"
1628
  msgstr ""
1629
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1630
 
1631
- #: dashboard/publisher/adrotate-ads-edit.php:167
1632
- #: dashboard/publisher/adrotate-ads-edit.php:303
1633
- #: dashboard/publisher/adrotate-groups-edit.php:167
1634
- #: dashboard/publisher/adrotate-groups-edit.php:308
1635
  msgid "Usage"
1636
  msgstr "Употреба"
1637
 
1638
- #: dashboard/publisher/adrotate-ads-edit.php:168
1639
- #: dashboard/publisher/adrotate-ads-edit.php:304
1640
- #: dashboard/publisher/adrotate-groups-edit.php:168
1641
- #: dashboard/publisher/adrotate-groups-edit.php:309
 
 
 
 
 
1642
  msgid ""
1643
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1644
- "where you want the advert to show up."
1645
  msgstr ""
1646
- "Копирайте shortcode-а в публикация или страница. PHP кода можете да "
1647
- "използвате във файловете на темата си, за да показвате рекламни карета "
1648
- "където са ви необходими."
1649
 
1650
- #: dashboard/publisher/adrotate-ads-edit.php:172
1651
- #: dashboard/publisher/adrotate-ads-edit.php:308
1652
- #: dashboard/publisher/adrotate-groups-edit.php:172
1653
- #: dashboard/publisher/adrotate-groups-edit.php:313
1654
  msgid "In a post or page:"
1655
  msgstr "И страница или публикация:"
1656
 
1657
- #: dashboard/publisher/adrotate-ads-edit.php:174
1658
- #: dashboard/publisher/adrotate-ads-edit.php:310
1659
- #: dashboard/publisher/adrotate-groups-edit.php:174
1660
- #: dashboard/publisher/adrotate-groups-edit.php:315
1661
  msgid "Directly in a theme:"
1662
  msgstr "Директно в темата:"
1663
 
1664
- #: dashboard/publisher/adrotate-ads-edit.php:185
1665
- #: dashboard/publisher/adrotate-groups-edit.php:185
1666
- msgid "Advanced"
1667
- msgstr "Разширени"
1668
 
1669
- #: dashboard/publisher/adrotate-ads-edit.php:186
1670
- msgid "Everything below is optional."
1671
- msgstr "Всичко по-долу е по желание."
1672
 
1673
- #: dashboard/publisher/adrotate-ads-edit.php:191
1674
- msgid "Clicktracking:"
1675
- msgstr "Проследяване на кликовете:"
1676
 
1677
- #: dashboard/publisher/adrotate-ads-edit.php:193
1678
- msgid "Enable click tracking for this advert."
1679
- msgstr "Активиране на проследяването на кликове за тази реклама."
1680
 
1681
- #: dashboard/publisher/adrotate-ads-edit.php:194
1682
- msgid ""
1683
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1684
- "those provided by Google AdSense."
1685
- msgstr ""
1686
- "Забележка: Проследяването на кликове не е съвместимо с Javascript реклами, "
1687
- "като напр. Google AdSense."
1688
 
1689
- #: dashboard/publisher/adrotate-ads-edit.php:195
1690
- msgid "Place the target URL in your adcode - Similar to code example 1."
1691
- msgstr "Поставете URL адрес в adcode - както е показано в пример 1."
 
 
 
 
 
1692
 
1693
- #: dashboard/publisher/adrotate-ads-edit.php:200
1694
- msgid "Target URL:"
1695
- msgstr "Целеви URL:"
1696
 
1697
- #: dashboard/publisher/adrotate-ads-edit.php:203
1698
  msgid ""
1699
- "This field is no longer required. You can place the URL directly in the "
1700
- "adcode (above) instead of %link%."
 
 
 
 
 
 
 
 
 
 
1701
  msgstr ""
1702
- "Това поле вече не е необходимо. Можете да поставите URL адреса директно в "
1703
- "полето adcore (по-горе), вместо %link%."
 
 
 
 
1704
 
1705
- #: dashboard/publisher/adrotate-ads-edit.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1706
  msgid "Responsive:"
1707
  msgstr "Responsive:"
1708
 
1709
- #: dashboard/publisher/adrotate-ads-edit.php:210
1710
  msgid "Enable responsive support for this advert."
1711
  msgstr "Активиране на responsive дизайн за тази реклама."
1712
 
1713
- #: dashboard/publisher/adrotate-ads-edit.php:211
1714
  msgid ""
1715
  "Upload your images to the banner folder and make sure the filename is in the "
1716
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1720,133 +1815,76 @@ msgstr ""
1720
  "правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
1721
  "картинки е строго препоръчителен."
1722
 
1723
- #: dashboard/publisher/adrotate-ads-edit.php:213
1724
- msgid ""
1725
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1726
- "for different viewports. Requires jQuery."
1727
- msgstr ""
1728
- "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
1729
- "реклама в различни резолюции на екрана. Изисква jQuery."
1730
-
1731
- #: dashboard/publisher/adrotate-ads-edit.php:217
1732
- msgid "Banner image:"
1733
- msgstr "Картинка на банера:"
1734
-
1735
- #: dashboard/publisher/adrotate-ads-edit.php:220
1736
- msgid "Media:"
1737
- msgstr "Медия:"
1738
-
1739
- #: dashboard/publisher/adrotate-ads-edit.php:220
1740
- msgid "Select Banner"
1741
- msgstr "Избор на банер"
1742
-
1743
- #: dashboard/publisher/adrotate-ads-edit.php:222
1744
- msgid "- OR -"
1745
- msgstr "- ИЛИ -"
1746
-
1747
- #: dashboard/publisher/adrotate-ads-edit.php:224
1748
- msgid "Banner folder:"
1749
- msgstr "Папка на банера:"
1750
-
1751
- #: dashboard/publisher/adrotate-ads-edit.php:225
1752
- msgid "No image selected"
1753
- msgstr "Не е избрана картинка"
1754
-
1755
- #: dashboard/publisher/adrotate-ads-edit.php:229
1756
- msgid "Use %image% in the code. Accepted files are:"
1757
- msgstr "Използвайте %image% в кода. Допустимите файлове са:"
1758
-
1759
- #: dashboard/publisher/adrotate-ads-edit.php:229
1760
- msgid ""
1761
- "Use either the text field or the dropdown. If the textfield has content that "
1762
- "field has priority."
1763
- msgstr ""
1764
- "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1765
- "попълнено, то ще бъде с преоритет."
1766
-
1767
- #: dashboard/publisher/adrotate-ads-edit.php:233
1768
  msgid "Weight:"
1769
  msgstr "Тежест:"
1770
 
1771
- #: dashboard/publisher/adrotate-ads-edit.php:233
1772
  msgid "AdRotate Pro only"
1773
  msgstr "Само AdRotate Pro"
1774
 
1775
- #: dashboard/publisher/adrotate-ads-edit.php:236
1776
  msgid "Barely visible"
1777
  msgstr "Почти видимо"
1778
 
1779
- #: dashboard/publisher/adrotate-ads-edit.php:237
1780
  msgid "Less than average"
1781
  msgstr "По-малко от нормалното"
1782
 
1783
- #: dashboard/publisher/adrotate-ads-edit.php:238
1784
  msgid "Normal coverage"
1785
  msgstr "Нормално покритие"
1786
 
1787
- #: dashboard/publisher/adrotate-ads-edit.php:239
1788
  msgid "More than average"
1789
  msgstr "Повече от нормалното"
1790
 
1791
- #: dashboard/publisher/adrotate-ads-edit.php:240
1792
  msgid "Best visibility"
1793
  msgstr "Най-добра видимост"
1794
 
1795
- #: dashboard/publisher/adrotate-ads-edit.php:245
1796
- #: dashboard/publisher/adrotate-groups-edit.php:212
1797
  msgid "Sortorder:"
1798
  msgstr "Сортиране:"
1799
 
1800
- #: dashboard/publisher/adrotate-ads-edit.php:247
1801
- #: dashboard/publisher/adrotate-groups-edit.php:214
1802
  msgid "For administrative purposes set a sortorder."
1803
  msgstr "За административни цели задайте критерий за сортиране."
1804
 
1805
- #: dashboard/publisher/adrotate-ads-edit.php:247
1806
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1807
  msgstr ""
1808
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1809
  "на рекламата по подразбиране."
1810
 
1811
- #: dashboard/publisher/adrotate-ads-edit.php:252
1812
  msgid ""
1813
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1814
- "attention."
1815
- msgstr "С AdRotate Pro можете да задавате тежест при показване на рекламите."
1816
-
1817
- #: dashboard/publisher/adrotate-ads-edit.php:252
1818
- #: dashboard/publisher/adrotate-ads-edit.php:301
1819
- #: dashboard/publisher/adrotate-ads-edit.php:399
1820
- #: dashboard/publisher/adrotate-groups-edit.php:218
1821
- msgid "Upgrade today"
1822
- msgstr "Надградете днес"
1823
 
1824
- #: dashboard/publisher/adrotate-ads-edit.php:254
1825
- msgid "Geo Location in AdRotate Pro"
1826
- msgstr "Геолокация с AdRotate Pro"
1827
 
1828
- #: dashboard/publisher/adrotate-ads-edit.php:255
1829
  msgid ""
1830
- "This works if you assign the advert to a group and enable that group to use "
1831
- "Geo Targeting."
1832
  msgstr ""
1833
- "Това работи ако закачите рекламата към група и включите таргетирането по "
1834
- "местоположение за тази група."
1835
 
1836
- #: dashboard/publisher/adrotate-ads-edit.php:259
1837
  msgid "Cities/States:"
1838
  msgstr "Градове/Щати:"
1839
 
1840
- #: dashboard/publisher/adrotate-ads-edit.php:262
1841
- #: dashboard/publisher/adrotate-ads-edit.php:295
1842
- msgid "Usage:"
1843
- msgstr "Употреба:"
1844
-
1845
- #: dashboard/publisher/adrotate-ads-edit.php:263
1846
- msgid "A comma separated list of cities and/or states"
1847
- msgstr "Списък с градове и/или щати, разделен със запетая"
1848
 
1849
- #: dashboard/publisher/adrotate-ads-edit.php:263
1850
  msgid ""
1851
  "AdRotate does not check the validity of names so make sure you spell them "
1852
  "correctly!"
@@ -1854,180 +1892,72 @@ msgstr ""
1854
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1855
  "правилно!"
1856
 
1857
- #: dashboard/publisher/adrotate-ads-edit.php:267
1858
  msgid "Countries:"
1859
  msgstr "Държави:"
1860
 
1861
- #: dashboard/publisher/adrotate-ads-edit.php:296
1862
  msgid "Select the countries you want the adverts to show in."
1863
  msgstr "Изберете страните, в които искате да се показват рекламите."
1864
 
1865
- #: dashboard/publisher/adrotate-ads-edit.php:296
1866
  msgid "Cities take priority and will be filtered first."
1867
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1868
 
1869
- #: dashboard/publisher/adrotate-ads-edit.php:301
1870
- msgid "Target your audience with Geo Location in AdRotate Pro"
1871
- msgstr ""
1872
- "Насочете рекламите си към правилната аудитория с услугата за местоположение "
1873
- "в AdRotate Pro"
1874
-
1875
- #: dashboard/publisher/adrotate-ads-edit.php:321
1876
- msgid "Schedule"
1877
- msgstr "График"
1878
-
1879
- #: dashboard/publisher/adrotate-ads-edit.php:322
1880
- msgid "From when to when is the advert visible?"
1881
- msgstr "От кога до кога да бъде видима тази обява?"
1882
-
1883
- #: dashboard/publisher/adrotate-ads-edit.php:326
1884
- msgid "Start date (day/month/year):"
1885
- msgstr "Начална дата (ден/месец/година):"
1886
-
1887
- #: dashboard/publisher/adrotate-ads-edit.php:347
1888
- msgid "End date (day/month/year):"
1889
- msgstr "Крайна дата (ден/месец/година):"
1890
-
1891
- #: dashboard/publisher/adrotate-ads-edit.php:370
1892
- msgid "Start time (hh:mm):"
1893
- msgstr "Начален час (hh:mm):"
1894
-
1895
- #: dashboard/publisher/adrotate-ads-edit.php:377
1896
- msgid "End time (hh:mm):"
1897
- msgstr "Краен час (hh:mm):"
1898
-
1899
- #: dashboard/publisher/adrotate-ads-edit.php:387
1900
- msgid "Maximum Clicks:"
1901
- msgstr "Максимален брой кликове:"
1902
-
1903
- #: dashboard/publisher/adrotate-ads-edit.php:388
1904
- #: dashboard/publisher/adrotate-ads-edit.php:390
1905
- msgid "Leave empty or 0 to skip this."
1906
- msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1907
-
1908
- #: dashboard/publisher/adrotate-ads-edit.php:389
1909
- msgid "Maximum Impressions:"
1910
- msgstr "Максимален брой импресии:"
1911
-
1912
- #: dashboard/publisher/adrotate-ads-edit.php:395
1913
- msgid ""
1914
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1915
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1916
- "hours. 6AM is 6:00 hours."
1917
- msgstr ""
1918
- "Времето използва 24 часов формат. Ако използвате 12 часов формат: За начален "
1919
- "или краен час след обяд, прибавете 12 часа. Напр. 2PM е 14:00 часа. 6AM e "
1920
- "18:00 часа. "
1921
-
1922
- #: dashboard/publisher/adrotate-ads-edit.php:395
1923
- msgid ""
1924
- "The maximum clicks and impressions are measured over the set schedule only. "
1925
- "Every schedule can have it's own limit!"
1926
  msgstr ""
1927
- "Максималния брой кликове и импресии се измерва в рамките на зададеното "
1928
- "време. Всеки график може да има собствен лимит!"
1929
-
1930
- #: dashboard/publisher/adrotate-ads-edit.php:399
1931
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1932
- msgstr "Създайте множество графици за всяка реклама с AdRotate Pro."
1933
 
1934
- #: dashboard/publisher/adrotate-ads-edit.php:401
1935
- msgid "Choose Multiple Schedules in AdRotate Pro"
1936
- msgstr "Изберете множество графици в AdRotate Pro"
1937
-
1938
- #: dashboard/publisher/adrotate-ads-edit.php:402
1939
- msgid "You can add, edit or delete schedules from the"
1940
- msgstr "Можете да триете, добавяте и редактирате графици от"
1941
-
1942
- #: dashboard/publisher/adrotate-ads-edit.php:402
1943
- msgid "dashboard. Save your advert first!"
1944
- msgstr "таблото. Първо запазете рекламата си!"
1945
-
1946
- #: dashboard/publisher/adrotate-ads-edit.php:409
1947
- msgid "From / Until"
1948
- msgstr "От / До"
1949
-
1950
- #: dashboard/publisher/adrotate-ads-edit.php:411
1951
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1952
- #: dashboard/publisher/adrotate-ads-main.php:45
1953
- #: dashboard/publisher/adrotate-ads-report.php:35
1954
- #: dashboard/publisher/adrotate-groups-edit.php:356
1955
- #: dashboard/publisher/adrotate-groups-main.php:37
1956
- #: dashboard/publisher/adrotate-groups-report.php:41
1957
- msgid "Clicks"
1958
- msgstr "Кликове"
1959
-
1960
- #: dashboard/publisher/adrotate-ads-edit.php:412
1961
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1962
- #: dashboard/publisher/adrotate-ads-report.php:34
1963
- #: dashboard/publisher/adrotate-groups-edit.php:355
1964
- #: dashboard/publisher/adrotate-groups-main.php:35
1965
- #: dashboard/publisher/adrotate-groups-report.php:40
1966
- msgid "Impressions"
1967
- msgstr "Импресии"
1968
-
1969
- #: dashboard/publisher/adrotate-ads-edit.php:421
1970
- msgid "impressions per day"
1971
- msgstr "импресии на ден"
1972
-
1973
- #: dashboard/publisher/adrotate-ads-edit.php:437
1974
- msgid "In use by this advert."
1975
- msgstr "Използва се с тази реклама."
1976
-
1977
- #: dashboard/publisher/adrotate-ads-edit.php:448
1978
  msgid "Select Groups"
1979
  msgstr "Избор на групи"
1980
 
1981
- #: dashboard/publisher/adrotate-ads-edit.php:449
1982
- msgid "Optionally select the group(s) this ad belongs to."
1983
- msgstr "По желание - изберете групата(ите) към които принадлежи рекламата."
1984
-
1985
- #: dashboard/publisher/adrotate-ads-edit.php:454
1986
  msgid "ID - Name"
1987
  msgstr "ID - Име"
1988
 
1989
- #: dashboard/publisher/adrotate-ads-edit.php:455
1990
  msgid "Ads in group"
1991
  msgstr "Реклами в група"
1992
 
1993
- #: dashboard/publisher/adrotate-ads-edit.php:464
1994
  #: dashboard/publisher/adrotate-groups-main.php:58
1995
  msgid "Default"
1996
  msgstr "По подразбиране"
1997
 
1998
- #: dashboard/publisher/adrotate-ads-edit.php:465
1999
  #: dashboard/publisher/adrotate-groups-main.php:59
2000
  msgid "Dynamic"
2001
  msgstr "Динамично"
2002
 
2003
- #: dashboard/publisher/adrotate-ads-edit.php:465
2004
  #: dashboard/publisher/adrotate-groups-main.php:59
2005
  msgid "second rotation"
2006
  msgstr "второ завъртане"
2007
 
2008
- #: dashboard/publisher/adrotate-ads-edit.php:466
2009
  #: dashboard/publisher/adrotate-groups-main.php:60
2010
  msgid "Block"
2011
  msgstr "Блок"
2012
 
2013
- #: dashboard/publisher/adrotate-ads-edit.php:466
2014
  #: dashboard/publisher/adrotate-groups-main.php:60
2015
  msgid "grid"
2016
  msgstr "решетка"
2017
 
2018
- #: dashboard/publisher/adrotate-ads-edit.php:467
2019
- #: dashboard/publisher/adrotate-groups-edit.php:220
2020
  #: dashboard/publisher/adrotate-groups-main.php:61
2021
  msgid "Post Injection"
2022
  msgstr "Вмъкване в публикации"
2023
 
2024
- #: dashboard/publisher/adrotate-ads-edit.php:468
2025
  #: dashboard/publisher/adrotate-groups-main.php:62
2026
  msgid "Geolocation"
2027
  msgstr "Геолокация"
2028
 
2029
- #: dashboard/publisher/adrotate-ads-edit.php:474
2030
- #: dashboard/publisher/adrotate-groups-edit.php:62
2031
  #: dashboard/publisher/adrotate-groups-main.php:69
2032
  msgid "Mode"
2033
  msgstr "Режим"
@@ -2058,6 +1988,23 @@ msgstr "Начало / Край"
2058
  msgid "Title"
2059
  msgstr "Заглавие"
2060
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2061
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2062
  #: dashboard/publisher/adrotate-ads-main.php:47
2063
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2118,7 +2065,7 @@ msgid "For 7 days"
2118
  msgstr "За 7 дни"
2119
 
2120
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2121
- #: dashboard/publisher/adrotate-groups-edit.php:398
2122
  msgid "Configuration errors."
2123
  msgstr "Грешки при конфигурирането."
2124
 
@@ -2131,7 +2078,7 @@ msgid "Export to XML"
2131
  msgstr "Експорт в XML"
2132
 
2133
  #: dashboard/publisher/adrotate-ads-main.php:42
2134
- #: dashboard/publisher/adrotate-groups-edit.php:357
2135
  msgid "Weight"
2136
  msgstr "Тежест"
2137
 
@@ -2196,75 +2143,71 @@ msgstr "Нова група"
2196
  msgid "Edit Group"
2197
  msgstr "Редакция на група"
2198
 
2199
- #: dashboard/publisher/adrotate-groups-edit.php:56
2200
  msgid "Name:"
2201
  msgstr "Име:"
2202
 
2203
- #: dashboard/publisher/adrotate-groups-edit.php:65
2204
  msgid "Default - Show one ad at a time"
2205
  msgstr "По подразбиране - показва се само една реклама"
2206
 
2207
- #: dashboard/publisher/adrotate-groups-edit.php:66
2208
  msgid "Dynamic Mode - Show a different ad every few seconds"
2209
  msgstr ""
2210
  "Динамичен Режим - показва се различна реклама на определен брой секунди"
2211
 
2212
- #: dashboard/publisher/adrotate-groups-edit.php:67
2213
  msgid "Block Mode - Show a block of ads"
2214
  msgstr "Блоков режим - показва се блок от реклами"
2215
 
2216
- #: dashboard/publisher/adrotate-groups-edit.php:71
2217
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2218
  msgstr ""
2219
  "Динамичен режим изисква jQuery. Можете да го включите от настройките на "
2220
  "AdRotate."
2221
 
2222
- #: dashboard/publisher/adrotate-groups-edit.php:78
2223
- #: dashboard/publisher/adrotate-groups-edit.php:135
2224
  msgid "Dynamic and Block Mode"
2225
  msgstr "Динамичен и блоков режим"
2226
 
2227
- #: dashboard/publisher/adrotate-groups-edit.php:79
2228
  msgid "Only required if your group is in Dynamic or Block mode."
2229
  msgstr "Необходимо е само ако групата Ви е в Динамичен или Блоков режим."
2230
 
2231
- #: dashboard/publisher/adrotate-groups-edit.php:83
2232
- msgid "Block shape and border"
2233
- msgstr "Форма и рамка на блока"
2234
 
2235
- #: dashboard/publisher/adrotate-groups-edit.php:110
2236
  msgid "rows"
2237
  msgstr "редове"
2238
 
2239
- #: dashboard/publisher/adrotate-groups-edit.php:123
2240
  msgid "columns"
2241
  msgstr "колони"
2242
 
2243
- #: dashboard/publisher/adrotate-groups-edit.php:126
2244
  msgid "Block Mode"
2245
  msgstr "Блоков режим"
2246
 
2247
- #: dashboard/publisher/adrotate-groups-edit.php:126
2248
- msgid ""
2249
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2250
- "showing a maximum of 6 ads. Default: 2x2."
2251
  msgstr ""
2252
- "Направете решетка от своите реклами. Ако попълните 3 и 2 ще създадете "
2253
- "решетка с 2 колони, показваща до 6 реклами. По подразбиране: 2х2."
2254
 
2255
- #: dashboard/publisher/adrotate-groups-edit.php:130
2256
- msgid "Advert Width and Height"
2257
- msgstr "Височина и ширина на рекламата"
2258
 
2259
- #: dashboard/publisher/adrotate-groups-edit.php:132
2260
  msgid "pixel(s) wide"
2261
  msgstr "пиксела ширитина"
2262
 
2263
- #: dashboard/publisher/adrotate-groups-edit.php:132
2264
  msgid "pixel(s) high."
2265
  msgstr "пиксела височина."
2266
 
2267
- #: dashboard/publisher/adrotate-groups-edit.php:135
2268
  msgid ""
2269
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2270
  "recommended). Default: 125/125."
@@ -2272,221 +2215,228 @@ msgstr ""
2272
  "Задайте максималния размер на рекламите в пиксели. Размера не може да е "
2273
  "'auto' (Не е препоръчително). По подразбиране: 125/125."
2274
 
2275
- #: dashboard/publisher/adrotate-groups-edit.php:139
2276
  msgid "Automated refresh"
2277
  msgstr "Автоматичен рефреш"
2278
 
2279
- #: dashboard/publisher/adrotate-groups-edit.php:158
2280
  msgid "seconds."
2281
  msgstr "секунди."
2282
 
2283
- #: dashboard/publisher/adrotate-groups-edit.php:161
2284
  msgid "Dynamic Mode"
2285
  msgstr "Динамичен режим"
2286
 
2287
- #: dashboard/publisher/adrotate-groups-edit.php:161
2288
  msgid ""
2289
  "Load a new advert in this interval without reloading the page. Default: 6."
2290
  msgstr ""
2291
  "Зареждане на нова реклама през този интервал, без презареждане на "
2292
  "страницата. По подразбиране: 6."
2293
 
2294
- #: dashboard/publisher/adrotate-groups-edit.php:181
2295
- #: dashboard/publisher/adrotate-groups-edit.php:322
2296
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2297
  msgid "Save Group"
2298
  msgstr "Запис на групата"
2299
 
2300
- #: dashboard/publisher/adrotate-groups-edit.php:189
2301
  msgid "Advert Margin"
2302
  msgstr "Margin на рекламата"
2303
 
2304
- #: dashboard/publisher/adrotate-groups-edit.php:191
2305
  msgid "pixel(s)"
2306
  msgstr "пиксел(а)"
2307
 
2308
- #: dashboard/publisher/adrotate-groups-edit.php:194
2309
  msgid "A transparent area outside the advert in pixels. Default: 0."
2310
  msgstr "Прозрачна зона около рекламата, в пиксели. По подразбиране: 0."
2311
 
2312
- #: dashboard/publisher/adrotate-groups-edit.php:194
2313
  msgid "Set to 0 to disable."
2314
  msgstr "Въведете 0 за деактивация."
2315
 
2316
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2317
  msgid "Align the group"
2318
  msgstr ""
2319
 
2320
- #: dashboard/publisher/adrotate-groups-edit.php:201
2321
  msgid "None (Default)"
2322
  msgstr ""
2323
 
2324
- #: dashboard/publisher/adrotate-groups-edit.php:202
2325
  msgid "Left"
2326
  msgstr ""
2327
 
2328
- #: dashboard/publisher/adrotate-groups-edit.php:203
2329
  msgid "Right"
2330
  msgstr ""
2331
 
2332
- #: dashboard/publisher/adrotate-groups-edit.php:204
2333
  msgid "Center"
2334
  msgstr ""
2335
 
2336
- #: dashboard/publisher/adrotate-groups-edit.php:208
2337
  msgid ""
2338
  "Align the group in your post or page. Using 'center' may affect your margin "
2339
  "setting. Not every theme supports this feature."
2340
  msgstr ""
2341
 
2342
- #: dashboard/publisher/adrotate-groups-edit.php:214
2343
  msgid "Leave empty or 0 to skip this. Will default to group id."
2344
  msgstr ""
2345
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
2346
  "на групата."
2347
 
2348
- #: dashboard/publisher/adrotate-groups-edit.php:218
2349
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2350
  msgstr ""
2351
  "Задайте резервна група и използвайте услуга за местоположение с AdRotate Pro"
2352
 
2353
- #: dashboard/publisher/adrotate-groups-edit.php:221
2354
- msgid "Insert ads to the begin or end of a post/page."
2355
- msgstr "Вмъкване на реклами в началото или в края на публикация/страница."
2356
-
2357
- #: dashboard/publisher/adrotate-groups-edit.php:224
2358
  msgid "Include ads in categories?"
2359
  msgstr "Включване на реклами в категориите?"
2360
 
2361
- #: dashboard/publisher/adrotate-groups-edit.php:228
2362
- #: dashboard/publisher/adrotate-groups-edit.php:269
2363
  msgid "Disabled"
2364
  msgstr "Изключено"
2365
 
2366
- #: dashboard/publisher/adrotate-groups-edit.php:229
2367
- #: dashboard/publisher/adrotate-groups-edit.php:270
2368
  msgid "Before content"
2369
  msgstr "Преди съдържанието"
2370
 
2371
- #: dashboard/publisher/adrotate-groups-edit.php:230
2372
- #: dashboard/publisher/adrotate-groups-edit.php:271
2373
  msgid "After content"
2374
  msgstr "След съдържанието"
2375
 
2376
- #: dashboard/publisher/adrotate-groups-edit.php:231
2377
- #: dashboard/publisher/adrotate-groups-edit.php:272
2378
  msgid "Before and after content"
2379
  msgstr "Преди и след съдържанието"
2380
 
2381
- #: dashboard/publisher/adrotate-groups-edit.php:232
2382
- #: dashboard/publisher/adrotate-groups-edit.php:273
2383
  msgid "After..."
2384
  msgstr "След..."
2385
 
2386
- #: dashboard/publisher/adrotate-groups-edit.php:238
2387
- #: dashboard/publisher/adrotate-groups-edit.php:279
2388
  msgid "the first paragraph"
2389
  msgstr "първия параграф"
2390
 
2391
- #: dashboard/publisher/adrotate-groups-edit.php:239
2392
- #: dashboard/publisher/adrotate-groups-edit.php:280
2393
  msgid "the 2nd paragraph"
2394
  msgstr "2-рия параграф"
2395
 
2396
- #: dashboard/publisher/adrotate-groups-edit.php:240
2397
- #: dashboard/publisher/adrotate-groups-edit.php:281
2398
  msgid "the 3rd paragraph"
2399
  msgstr "3-тия параграф"
2400
 
2401
- #: dashboard/publisher/adrotate-groups-edit.php:241
2402
- #: dashboard/publisher/adrotate-groups-edit.php:282
2403
  msgid "the 4th paragraph"
2404
  msgstr "4-тия параграф"
2405
 
2406
- #: dashboard/publisher/adrotate-groups-edit.php:243
2407
- #: dashboard/publisher/adrotate-groups-edit.php:284
2408
  msgid "every 2nd paragraph"
2409
  msgstr "всеки 2-ри параграф"
2410
 
2411
- #: dashboard/publisher/adrotate-groups-edit.php:244
2412
- #: dashboard/publisher/adrotate-groups-edit.php:285
2413
  msgid "every 3rd paragraph"
2414
  msgstr "всеки 3-ти параграф"
2415
 
2416
- #: dashboard/publisher/adrotate-groups-edit.php:245
2417
- #: dashboard/publisher/adrotate-groups-edit.php:286
2418
  msgid "every 4th paragraph"
2419
  msgstr "всеки 4-ти параграф"
2420
 
2421
- #: dashboard/publisher/adrotate-groups-edit.php:246
2422
- #: dashboard/publisher/adrotate-groups-edit.php:287
2423
  msgid "every 5th paragraph"
2424
  msgstr "всеки 5-ти параграф"
2425
 
2426
- #: dashboard/publisher/adrotate-groups-edit.php:247
2427
- #: dashboard/publisher/adrotate-groups-edit.php:288
2428
  msgid "every 6th paragraph"
2429
  msgstr "всеки 6-ти параграф"
2430
 
2431
- #: dashboard/publisher/adrotate-groups-edit.php:248
2432
- #: dashboard/publisher/adrotate-groups-edit.php:289
2433
  msgid "every 7th paragraph"
2434
  msgstr "всеки 7-ми параграф"
2435
 
2436
- #: dashboard/publisher/adrotate-groups-edit.php:249
2437
- #: dashboard/publisher/adrotate-groups-edit.php:290
2438
  msgid "every 8th paragraph"
2439
  msgstr "всеки 8-ми параграф"
2440
 
2441
- #: dashboard/publisher/adrotate-groups-edit.php:255
2442
  msgid "Which categories?"
2443
  msgstr "Кои категории?"
2444
 
2445
- #: dashboard/publisher/adrotate-groups-edit.php:260
2446
  msgid "Click the categories posts you want the adverts to show in."
2447
  msgstr "Изберете категориите, на които искате да се показват рекламите."
2448
 
2449
- #: dashboard/publisher/adrotate-groups-edit.php:265
2450
  msgid "Include ads in pages?"
2451
  msgstr "Включване на реклами в страниците?"
2452
 
2453
- #: dashboard/publisher/adrotate-groups-edit.php:296
2454
  msgid "Which pages?"
2455
  msgstr "Кои страници?"
2456
 
2457
- #: dashboard/publisher/adrotate-groups-edit.php:301
2458
  msgid "Click the pages you want the adverts to show in."
2459
  msgstr "Изберете страниците, на които искате да се показват рекламите."
2460
 
2461
- #: dashboard/publisher/adrotate-groups-edit.php:326
2462
  msgid "Wrapper code"
2463
  msgstr "Код за обвивката"
2464
 
2465
- #: dashboard/publisher/adrotate-groups-edit.php:327
2466
- msgid "Wraps around each ad."
2467
- msgstr "Обвивка около всяка реклама."
2468
 
2469
- #: dashboard/publisher/adrotate-groups-edit.php:331
2470
  msgid "Before ad"
2471
  msgstr "Преди реклама"
2472
 
2473
- #: dashboard/publisher/adrotate-groups-edit.php:336
2474
- msgid "HTML/JavaScript allowed, use with care!"
2475
- msgstr "HTML/JavaScript са позволени, използвайте внимателно!"
2476
 
2477
- #: dashboard/publisher/adrotate-groups-edit.php:340
2478
  msgid "After ad"
2479
  msgstr "След реклама"
2480
 
2481
- #: dashboard/publisher/adrotate-groups-edit.php:349
2482
  msgid "Select Ads"
2483
  msgstr "Избор на реклами"
2484
 
2485
- #: dashboard/publisher/adrotate-groups-edit.php:358
2486
  msgid "Visible until"
2487
  msgstr "Да се вижда до"
2488
 
2489
- #: dashboard/publisher/adrotate-groups-edit.php:391
2490
  msgid "No ads created!"
2491
  msgstr "Няма създадени реклами!"
2492
 
@@ -2518,6 +2468,143 @@ msgstr "Няма създадени групи!"
2518
  msgid "Statistics for group"
2519
  msgstr "Статистика за групи"
2520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2521
  #~ msgid "AdRotate Website"
2522
  #~ msgstr "Уебсайт на AdRotate"
2523
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:809
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:812
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-output.php:745
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
+ #: adrotate-output.php:746
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
38
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
39
  "си."
40
 
41
+ #: adrotate-output.php:747
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
46
 
47
+ #: adrotate-output.php:748
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
+ #: adrotate-output.php:766
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
56
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
57
  "геолокацията или не съществува!"
58
 
59
+ #: adrotate-output.php:768
60
  msgid ""
61
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "restrictions!"
63
  msgstr ""
64
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
65
 
66
+ #: adrotate-output.php:775 adrotate-output.php:777
67
  msgid ""
68
  "Either there are no banners, they are disabled or none qualified for this "
69
  "location!"
70
  msgstr ""
71
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
72
 
73
+ #: adrotate-output.php:783
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
+ #: adrotate-output.php:789
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
+ #: adrotate-output.php:794
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
+ #: adrotate-output.php:800
86
  msgid ""
87
  "There was an error locating the database tables for AdRotate. Please "
88
  "deactivate and re-activate AdRotate from the plugin page!!"
90
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
91
  "изключете и включете наново AdRotate от страницата с плъгините!!"
92
 
93
+ #: adrotate-output.php:800
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
+ #: adrotate-output.php:806
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
+ #: adrotate-output.php:831
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
+ #: adrotate-output.php:831
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
+ #: adrotate-output.php:833
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
+ #: adrotate-output.php:833
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
+ #: adrotate-output.php:835
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
+ #: adrotate-output.php:835
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
+ #: adrotate-output.php:837
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
+ #: adrotate-output.php:837
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
+ #: adrotate-output.php:837
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
+ #: adrotate-output.php:837
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
+ #: adrotate-output.php:849
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
+ #: adrotate-output.php:850
146
  msgid ""
147
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
148
  "to the <strong>PRO</strong> version"
150
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
151
  "до <strong>PRO</strong> версията"
152
 
153
+ #: adrotate-output.php:850
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
+ #: adrotate-output.php:850
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
+ #: adrotate-output.php:894
163
  msgid ""
164
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
165
+ "this menu. Check out the"
166
  msgstr ""
167
 
168
+ #: adrotate-output.php:894
169
  msgid "manuals"
170
  msgstr "ръководства"
171
 
172
+ #: adrotate-output.php:894 adrotate-output.php:971
173
+ #: dashboard/publisher/adrotate-ads-edit.php:151
174
  msgid "and"
175
  msgstr "и"
176
 
177
+ #: adrotate-output.php:894
178
  msgid "forums"
179
  msgstr ""
180
 
181
+ #: adrotate-output.php:930
182
  msgid "Useful Links"
183
  msgstr "Полезни връзки"
184
 
185
+ #: adrotate-output.php:931
186
  msgid "Useful links to learn more about AdRotate"
187
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
188
 
189
+ #: adrotate-output.php:933
190
  msgid "AdRotate Page"
191
  msgstr ""
192
 
193
+ #: adrotate-output.php:934
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Започнете от нулата с AdRotate Pro"
196
 
197
+ #: adrotate-output.php:935
198
  msgid "AdRotate manuals"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:936
202
  msgid "AdRotate Support Forum"
203
  msgstr "Форум за поддръжка на AdRotate"
204
 
205
+ #: adrotate-output.php:937
206
  msgid "WordPress.org Forum"
207
  msgstr "WordPress.org форум"
208
 
209
+ #: adrotate-output.php:963
210
  msgid "Help AdRotate Grow"
211
  msgstr "Помогнете за развитието на AdRotate"
212
 
213
+ #: adrotate-output.php:964
214
  msgid "Brought to you by"
215
  msgstr "Достига до Вас благодарение на"
216
 
217
+ #: adrotate-output.php:971
218
  msgid ""
219
  "A lot of users only think to review AdRotate when something goes wrong while "
220
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
223
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
224
  "това да остане незабелязано."
225
 
226
+ #: adrotate-output.php:971
227
  msgid "If you find AdRotate useful please leave your honest"
228
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
229
 
230
+ #: adrotate-output.php:971
231
  msgid "rating"
232
  msgstr "оценка"
233
 
234
+ #: adrotate-output.php:971
235
  msgid "review"
236
  msgstr "мнение"
237
 
238
+ #: adrotate-output.php:971
239
  msgid "on WordPress.org to help AdRotate grow in a positive way"
240
  msgstr "на WordPress.org, за да се развива AdRotate"
241
 
242
+ #: adrotate-output.php:974
243
  msgid ""
244
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
245
  "out more about what I can do for you!"
247
  "Мястото, където да се консултирате и/или да поръчате разработка за "
248
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
249
 
250
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
251
  msgid "Visit the"
252
  msgstr "Посетете"
253
 
254
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
255
  msgid "website"
256
  msgstr "уебсайт"
257
 
258
+ #: adrotate-output.php:1004
259
  msgid "Available in AdRotate Pro"
260
  msgstr "Налично в AdRotate Pro"
261
 
262
+ #: adrotate-output.php:1004
263
  msgid "More information..."
264
  msgstr "Повече информация..."
265
 
266
+ #: adrotate-output.php:1005
267
  msgid "This feature is available in AdRotate Pro"
268
  msgstr "Тази функционалност е налична в AdRotate Pro"
269
 
270
+ #: adrotate-output.php:1005
271
  msgid "Learn more"
272
  msgstr "Повече информация"
273
 
274
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
275
+ #: dashboard/publisher/adrotate-ads-edit.php:245
276
  msgid "January"
277
  msgstr "Януари"
278
 
279
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
280
+ #: dashboard/publisher/adrotate-ads-edit.php:246
281
  msgid "February"
282
  msgstr "Февруари"
283
 
284
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
285
+ #: dashboard/publisher/adrotate-ads-edit.php:247
286
  msgid "March"
287
  msgstr "Март"
288
 
289
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
290
+ #: dashboard/publisher/adrotate-ads-edit.php:248
291
  msgid "April"
292
  msgstr "Април"
293
 
294
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
295
+ #: dashboard/publisher/adrotate-ads-edit.php:249
296
  msgid "May"
297
  msgstr "Май"
298
 
299
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
300
+ #: dashboard/publisher/adrotate-ads-edit.php:250
301
  msgid "June"
302
  msgstr "Юни"
303
 
304
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
305
+ #: dashboard/publisher/adrotate-ads-edit.php:251
306
  msgid "July"
307
  msgstr "Юли"
308
 
309
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
310
+ #: dashboard/publisher/adrotate-ads-edit.php:252
311
  msgid "August"
312
  msgstr "Август"
313
 
314
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
315
+ #: dashboard/publisher/adrotate-ads-edit.php:253
316
  msgid "September"
317
  msgstr "Септември"
318
 
319
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
320
+ #: dashboard/publisher/adrotate-ads-edit.php:254
321
  msgid "October"
322
  msgstr "Октомври"
323
 
324
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
325
+ #: dashboard/publisher/adrotate-ads-edit.php:255
326
  msgid "November"
327
  msgstr "Ноември"
328
 
329
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
330
+ #: dashboard/publisher/adrotate-ads-edit.php:256
331
  msgid "December"
332
  msgstr "Декември"
333
 
379
  msgid "Choose what you want to use this widget for"
380
  msgstr "Изберете за какво иската да използвате тази джаджа"
381
 
382
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
383
  msgid "ID:"
384
  msgstr "ID:"
385
 
387
  msgid "Fill in the ID of the type you want to display!"
388
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
389
 
390
+ #: adrotate.php:107
391
  msgid "General Info"
392
  msgstr "Обща информация"
393
 
394
+ #: adrotate.php:108
395
  msgid "AdRotate Pro"
396
  msgstr "AdRotate Pro"
397
 
398
+ #: adrotate.php:109
399
  msgid "Manage Ads"
400
  msgstr "Управление на реклами"
401
 
402
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
403
  msgid "Manage Groups"
404
  msgstr "Управление на групи"
405
 
406
+ #: adrotate.php:111 adrotate.php:440
 
407
  msgid "Manage Schedules"
408
  msgstr "Управление на графици"
409
 
410
+ #: adrotate.php:112
411
  msgid "Manage Media"
412
  msgstr "Управление на Медия"
413
 
414
+ #: adrotate.php:113
415
  msgid "Settings"
416
  msgstr "Настройки"
417
 
418
+ #: adrotate.php:136
419
  msgid "AdRotate Info"
420
  msgstr "AdRotate Info"
421
 
422
+ #: adrotate.php:157
423
  msgid "AdRotate Professional"
424
  msgstr "AdRotate Professional"
425
 
426
+ #: adrotate.php:200
427
  msgid "Ad Management"
428
  msgstr "Управление на реклами"
429
 
430
+ #: adrotate.php:203
431
  msgid "Ad created"
432
  msgstr "Рекламата е създадена"
433
 
434
+ #: adrotate.php:205
435
  msgid "Ad updated"
436
  msgstr "Рекламата е обновена"
437
 
438
+ #: adrotate.php:207
439
  msgid "Ad(s) deleted"
440
  msgstr "Успешно изтриване"
441
 
442
+ #: adrotate.php:209
443
  msgid "Ad(s) statistics reset"
444
  msgstr "Статистиката е нулирана"
445
 
446
+ #: adrotate.php:211
447
  msgid "Ad(s) renewed"
448
  msgstr "Успешно подновяване"
449
 
450
+ #: adrotate.php:213
451
  msgid "Ad(s) deactivated"
452
  msgstr "Успешно деактивиране"
453
 
454
+ #: adrotate.php:215
455
  msgid "Ad(s) activated"
456
  msgstr "Успешно активиране"
457
 
458
+ #: adrotate.php:217
459
  msgid ""
460
  "The ad was saved but has an issue which might prevent it from working "
461
  "properly. Review the yellow marked ad."
463
  "Рекламата е запазена, но има проблеми, които могат да ѝ попречат да работи "
464
  "нормално. Прегледайте рекламата маркирана в жълто."
465
 
466
+ #: adrotate.php:219
467
  msgid "Export created"
468
  msgstr "Експорта е завършен"
469
 
470
+ #: adrotate.php:223
471
  msgid "Action prohibited"
472
  msgstr "Забранено действие"
473
 
474
+ #: adrotate.php:225 adrotate.php:373
475
  msgid "No data found in selected time period"
476
  msgstr "Не е намерена информация за избрания период"
477
 
478
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
479
  msgid "Manage"
480
  msgstr "Управление"
481
 
482
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
483
  msgid "Add New"
484
  msgstr "Добавяне"
485
 
486
+ #: adrotate.php:362
487
  msgid "Group Management"
488
  msgstr "Управление на групи"
489
 
490
+ #: adrotate.php:365
491
  msgid "Group created"
492
  msgstr "Групата е създадена"
493
 
494
+ #: adrotate.php:367
495
  msgid "Group updated"
496
  msgstr "Групата е обновена"
497
 
498
+ #: adrotate.php:369
499
  msgid "Group deleted"
500
  msgstr "Групата е изтрита"
501
 
502
+ #: adrotate.php:371
503
  msgid "Group including it's Ads deleted"
504
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
505
 
506
+ #: adrotate.php:431
507
  msgid "Schedule Management available in AdRotate Pro"
508
  msgstr "Управление с графици е налично в AdRotate Pro"
509
 
510
+ #: adrotate.php:441
511
  msgid ""
512
  "Schedule management and multiple schedules per advert is available in "
513
  "AdRotate Pro."
515
  "Управлението на графици и множество графици за една реклама са налични в "
516
  "AdRotate Pro."
517
 
518
+ #: adrotate.php:441 adrotate.php:528
519
+ #: dashboard/publisher/adrotate-ads-edit.php:177
520
  #: dashboard/publisher/adrotate-ads-main.php:108
521
+ #: dashboard/publisher/adrotate-groups-edit.php:75
522
  #: dashboard/publisher/adrotate-groups-main.php:87
523
  msgid "More information"
524
  msgstr "Повече информация"
525
 
526
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
527
  #: dashboard/publisher/adrotate-ads-main-error.php:19
528
  #: dashboard/publisher/adrotate-ads-main.php:20
529
  #: dashboard/publisher/adrotate-groups-main.php:20
530
  msgid "Bulk Actions"
531
  msgstr "Масови действия"
532
 
533
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
534
  #: dashboard/publisher/adrotate-ads-main-error.php:29
535
  #: dashboard/publisher/adrotate-ads-main.php:30
536
  #: dashboard/publisher/adrotate-groups-main.php:24
537
  msgid "Go"
538
  msgstr "Напред"
539
 
540
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
541
  #: dashboard/publisher/adrotate-ads-main-error.php:39
542
  #: dashboard/publisher/adrotate-ads-main.php:39
543
  #: dashboard/publisher/adrotate-groups-main.php:32
544
  msgid "ID"
545
  msgstr "ID"
546
 
547
+ #: adrotate.php:459
548
  msgid "Start"
549
  msgstr "Начало"
550
 
551
+ #: adrotate.php:459
552
  msgid "End"
553
  msgstr "Край"
554
 
555
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
556
  #: dashboard/publisher/adrotate-groups-main.php:34
557
  msgid "Ads"
558
  msgstr "Реклами"
559
 
560
+ #: adrotate.php:462
561
  msgid "Max Clicks"
562
  msgstr "Максимум кликове"
563
 
564
+ #: adrotate.php:463
565
  msgid "Max Impressions"
566
  msgstr "Максимум импресии"
567
 
568
+ #: adrotate.php:493
569
  msgid "No schedules created yet!"
570
  msgstr "Все още няма създадени графици!"
571
 
572
+ #: adrotate.php:498
573
  msgid "Easily manage your schedules from here with AdRotate Pro."
574
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
575
 
576
+ #: adrotate.php:498 adrotate.php:561
577
  msgid "Upgrade today!"
578
  msgstr "Надградете днес!"
579
 
580
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
581
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
582
  msgid "Expires soon."
583
  msgstr "Изтича скоро."
584
 
585
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
586
+ #: dashboard/publisher/adrotate-groups-edit.php:373
587
  msgid "Has expired."
588
  msgstr "Изтекла."
589
 
590
+ #: adrotate.php:526
591
  msgid "Media Management available in AdRotate Pro"
592
  msgstr "Управление на медия е налично в AdRotate Pro"
593
 
594
+ #: adrotate.php:528
595
  msgid ""
596
  "Upload images to the AdRotate Pro banners folder from here. This is "
597
  "especially useful if you use responsive adverts with multiple images."
599
  "Качете картинки в папката за банери на AdRotate Pro от тук. Това е особено "
600
  "полезно, ако използвате responsive реклами с няколко картинки."
601
 
602
+ #: adrotate.php:528
603
  msgid "Media uploading and management is available in AdRotate Pro."
604
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
605
 
606
+ #: adrotate.php:530
607
  msgid "Upload new banner image"
608
  msgstr "Качване на нова картинка на банера"
609
 
610
+ #: adrotate.php:531
611
  msgid "Accepted files are:"
612
  msgstr "Приемат се следните файлове:"
613
 
614
+ #: adrotate.php:531
615
  msgid "Maximum size is 512Kb."
616
  msgstr "Максималния размер е 512Kb."
617
 
618
+ #: adrotate.php:531
619
  msgid "Important:"
620
  msgstr "Важно:"
621
 
622
+ #: adrotate.php:531
623
  msgid ""
624
  "Make sure your file has no spaces or special characters in the name. Replace "
625
  "spaces with a - or _."
627
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
628
  "интервалите с - или _."
629
 
630
+ #: adrotate.php:533
631
  msgid ""
632
  "For responsive adverts make sure the filename is in the following format; "
633
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
636
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
637
  "е строго препоръчителен."
638
 
639
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
640
  msgid ""
641
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
642
  "filename instead of \".full\" for the various viewports."
645
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
646
  "файловете, вместо \".full\"."
647
 
648
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
649
+ #: dashboard/publisher/adrotate-groups-edit.php:308
650
+ #: dashboard/publisher/adrotate-groups-edit.php:316
651
  msgid "Example:"
652
  msgstr "Пример:"
653
 
654
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
655
  msgid ""
656
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
657
  "for different viewports."
659
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
660
  "реклама в различни резолюции на екрана."
661
 
662
+ #: adrotate.php:539
663
  msgid "Upload image"
664
  msgstr "Качването на картинка"
665
 
666
+ #: adrotate.php:542
667
  msgid "Available banner images in"
668
  msgstr "Налични картинки за банери в"
669
 
670
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
671
  msgid "Name"
672
  msgstr "Име"
673
 
674
+ #: adrotate.php:548
675
  msgid "Actions"
676
  msgstr "Действия"
677
 
678
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
679
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
680
  #: dashboard/publisher/adrotate-ads-main-error.php:21
681
  #: dashboard/publisher/adrotate-ads-main.php:22
682
  msgid "Delete"
683
  msgstr "Изтриване"
684
 
685
+ #: adrotate.php:561
686
  msgid ""
687
  "Make sure the banner images are not in use by adverts when you delete them!"
688
  msgstr ""
689
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
690
  "изтриете!"
691
 
692
+ #: adrotate.php:561
693
  msgid "Manage your banner folder from here with AdRotate Pro."
694
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
695
 
696
+ #: adrotate.php:605
697
  msgid "AdRotate Settings"
698
  msgstr "AdRotate Настройки"
699
 
700
+ #: adrotate.php:608
701
  msgid "Settings saved"
702
  msgstr "Настройките са запазени"
703
 
704
+ #: adrotate.php:610
705
  msgid "Database optimized"
706
  msgstr "Базата данни е оптимизирана"
707
 
708
+ #: adrotate.php:612
709
  msgid "Database repaired"
710
  msgstr "Базата данни е поправена"
711
 
712
+ #: adrotate.php:614
713
  msgid "Ads evaluated and statuses have been corrected where required"
714
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
715
 
716
+ #: adrotate.php:616
717
  msgid "Empty database records removed"
718
  msgstr "Празните записи в базата данни са премахнати"
719
 
720
+ #: adrotate.php:618
721
  msgid "Database can only be optimized or cleaned once every hour"
722
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
723
 
724
+ #: adrotate.php:626
725
  msgid "Access Rights"
726
  msgstr "Права на достъп"
727
 
728
+ #: adrotate.php:627
729
  msgid "Who has access to what?"
730
  msgstr "Кой до какво има достъп?"
731
 
732
+ #: adrotate.php:630
733
  msgid "Manage/Add/Edit adverts"
734
  msgstr "Управление/Добавяне/Редакция на обяви"
735
 
736
+ #: adrotate.php:634
737
  msgid "Role to see and add/edit ads."
738
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
739
 
740
+ #: adrotate.php:638
741
  msgid "Delete/Reset adverts"
742
  msgstr "Изтриване/Нулиране на реклами"
743
 
744
+ #: adrotate.php:642
745
  msgid "Role to delete ads and reset stats."
746
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
747
 
748
+ #: adrotate.php:646
749
  msgid "Manage/Add/Edit groups"
750
  msgstr "Управление/Добавяне/Редакция на групи"
751
 
752
+ #: adrotate.php:650
753
  msgid "Role to see and add/edit groups."
754
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
755
 
756
+ #: adrotate.php:654
757
  msgid "Delete groups"
758
  msgstr "Изтриване на групи"
759
 
760
+ #: adrotate.php:658
761
  msgid "Role to delete groups."
762
  msgstr "Роля за изтриване на групи."
763
 
764
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
765
+ #: adrotate.php:875
766
  msgid "Update Options"
767
  msgstr "Опции за обновяване"
768
 
769
+ #: adrotate.php:690
770
  msgid "Statistics"
771
  msgstr "Статистики"
772
 
773
+ #: adrotate.php:693
774
  msgid "Enable stats"
775
  msgstr "Включване на статистиката"
776
 
777
+ #: adrotate.php:695
778
  msgid "Track clicks and impressions."
779
  msgstr "Проследяване на кликове и импресии."
780
 
781
+ #: adrotate.php:695
782
  msgid "Disabling this also disables click and impression limits on schedules."
783
  msgstr ""
784
  "Ако деактивирате тази опция, ще бъдат деактивирани и лимитите за кликове и "
785
  "импресии на графици."
786
 
787
+ #: adrotate.php:699
788
  msgid "Impressions timer"
789
  msgstr "Таймер за импресии"
790
 
791
+ #: adrotate.php:701 adrotate.php:708
792
  msgid "Seconds."
793
  msgstr "Секудни."
794
 
795
+ #: adrotate.php:702
796
  msgid "Default: 60."
797
  msgstr "По подразбиране: 60."
798
 
799
+ #: adrotate.php:702
800
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
801
  msgstr ""
802
 
803
+ #: adrotate.php:706
804
  msgid "Clicks timer"
805
  msgstr "Таймер за кликове"
806
 
807
+ #: adrotate.php:709
808
  msgid "Default: 86400."
809
  msgstr "По подразбиране: 86400."
810
 
811
+ #: adrotate.php:709
812
  msgid ""
813
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
814
  msgstr ""
815
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
816
  "(24 часа)."
817
 
818
+ #: adrotate.php:714
819
  msgid "Bot filter"
820
  msgstr "Филтър на ботове"
821
 
822
+ #: adrotate.php:717
823
  msgid "User-Agent Filter"
824
  msgstr "Филтър за агенти"
825
 
826
+ #: adrotate.php:720
827
  msgid ""
828
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
829
  "prevent impressions and clicks counted on them."
831
  "Списък с ключови думи, за разделител използвайте запетая. Филтриране на "
832
  "импресиите и кликовете от ботове/роботи/агенти."
833
 
834
+ #: adrotate.php:721
835
  msgid ""
836
  "Keep in mind that this might give false positives. The word 'google' also "
837
  "matches 'googlebot', but not vice-versa. So be careful!"
839
  "Имайте в предвид, че това може да даде фалшиви резултати. Думата 'google' ще "
840
  "включи и 'googlebot', но не и обратното. Бъдете внимателни!"
841
 
842
+ #: adrotate.php:721
843
  msgid "Keep your list up-to-date"
844
  msgstr "Поддържайте списъка актуален"
845
 
846
+ #: adrotate.php:722
847
  msgid ""
848
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
849
  "other characters are stripped out."
851
  "Използвайте само думи с букви и цифри, тире и долно тире. Всички останали "
852
  "знаци са забранени."
853
 
854
+ #: adrotate.php:723
855
  msgid ""
856
  "Additionally to the list specified here, empty User-Agents are blocked as "
857
  "well."
858
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
859
 
860
+ #: adrotate.php:723
861
  msgid "Learn more about"
862
  msgstr "Научете повече за"
863
 
864
+ #: adrotate.php:723
865
  msgid "user-agents"
866
  msgstr "агенти"
867
 
868
+ #: adrotate.php:732
869
  msgid "Miscellaneous"
870
  msgstr "Разни"
871
 
872
+ #: adrotate.php:735
873
  msgid "Widget alignment"
874
  msgstr "Подравняване на джаджата"
875
 
876
+ #: adrotate.php:736
877
  msgid ""
878
  "Check this box if your widgets do not align in your themes sidebar. (Does "
879
  "not always help!)"
881
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
882
  "темата Ви. (Не винаги помага)"
883
 
884
+ #: adrotate.php:739
885
  msgid "Widget padding"
886
  msgstr "Padding за джаджата"
887
 
888
+ #: adrotate.php:740
889
  msgid ""
890
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
891
  "not always work!)"
893
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
894
  "джаджата. (Не винаги работи!)"
895
 
896
+ #: adrotate.php:745 adrotate.php:756
897
  msgid "NOTICE:"
898
  msgstr "ЗАБЕЛЕЖКА:"
899
 
900
+ #: adrotate.php:746
901
  msgid ""
902
  "You have enabled W3 Total Caching support but not defined the security hash. "
903
  "You need to add the following line to your wp-config.php near the bottom or "
909
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
910
  "включена в W3 Total Cache."
911
 
912
+ #: adrotate.php:750
913
  msgid "W3 Total Caching"
914
  msgstr "W3 Total Caching"
915
 
916
+ #: adrotate.php:751
917
  msgid "Check this box if you use W3 Total Caching on your site."
918
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
919
 
920
+ #: adrotate.php:757
921
  msgid ""
922
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
923
  "this function will not work. WP Super Cache has discontinued support for "
927
  "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
928
  "динамично съдържание."
929
 
930
+ #: adrotate.php:761
931
  msgid "WP Super Cache"
932
  msgstr "WP Super Cache"
933
 
934
+ #: adrotate.php:762
935
  msgid "Check this box if you use WP Super Cache on your site."
936
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
937
 
938
+ #: adrotate.php:767
939
  msgid ""
940
  "It may take a while for the ad to start rotating. The caching plugin needs "
941
  "to refresh the cache. This can take up to a week if not done manually."
944
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
945
  "седмица, ако не го направите ръчно."
946
 
947
+ #: adrotate.php:767
948
  msgid ""
949
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
950
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
953
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
954
  "сами."
955
 
956
+ #: adrotate.php:771
957
  msgid "Javascript"
958
  msgstr ""
959
 
960
+ #: adrotate.php:774
961
  msgid "Load jQuery"
962
  msgstr "Зареди jQuery"
963
 
964
+ #: adrotate.php:775
965
  msgid ""
966
  "jQuery is required for all Javascript features below. Enable this if your "
967
  "theme does not load jQuery already."
969
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
970
  "темата ви вече не го е заредила."
971
 
972
+ #: adrotate.php:778
973
  msgid "Load in footer?"
974
  msgstr "Зареди във футера?"
975
 
976
+ #: adrotate.php:779
977
  msgid ""
978
  "Enable if you want to load the above libraries in the footer. Your theme "
979
  "needs to call wp_footer() for this to work."
981
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
982
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
983
 
984
+ #: adrotate.php:787
985
  msgid "Maintenance"
986
  msgstr "Поддръжка"
987
 
988
+ #: adrotate.php:788
989
  msgid ""
990
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
991
  "They only apply to your ads/groups and stats. Not to other settings or other "
999
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1000
  "отговаря."
1001
 
1002
+ #: adrotate.php:803 adrotate.php:805
1003
  msgid "Optimize Database"
1004
  msgstr "Оптимизиране на базата данни"
1005
 
1006
+ #: adrotate.php:805
1007
  msgid "You are about to optimize the AdRotate database."
1008
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1009
 
1010
+ #: adrotate.php:805
1011
  msgid "Did you make a backup of your database?"
1012
  msgstr "Направихте ли резервно копие на своята база данни?"
1013
 
1014
+ #: adrotate.php:805
1015
  msgid ""
1016
  "This may take a moment and may cause your website to respond slow "
1017
  "temporarily!"
1019
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1020
  "момент!"
1021
 
1022
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1023
  #: dashboard/publisher/adrotate-groups-main.php:24
1024
  msgid "OK to continue, CANCEL to stop."
1025
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1026
 
1027
+ #: adrotate.php:806
1028
  msgid "Cleans up overhead data in the AdRotate tables."
1029
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1030
 
1031
+ #: adrotate.php:807
1032
  msgid ""
1033
  "Overhead data is accumulated garbage resulting from many changes you've "
1034
  "made. This can vary from nothing to hundreds of KiB of data."
1036
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1037
  "които правите. Те могар да варират от 0 до хиляди KB."
1038
 
1039
+ #: adrotate.php:811 adrotate.php:813
1040
  msgid "Clean-up Database"
1041
  msgstr "Почистване на базата данни"
1042
 
1043
+ #: adrotate.php:813
1044
  msgid ""
1045
  "You are about to clean up your database. This may delete expired schedules "
1046
  "and older statistics."
1048
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1049
  "и стари статистики."
1050
 
1051
+ #: adrotate.php:813
1052
  msgid "Are you sure you want to continue?"
1053
  msgstr "Сигурни ли сте, че искате да продължите?"
1054
 
1055
+ #: adrotate.php:813 adrotate.php:821
1056
  msgid "This might take a while and may slow down your site during this action!"
1057
  msgstr ""
1058
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1059
  "изпълнението му!"
1060
 
1061
+ #: adrotate.php:814
1062
  msgid "Delete stats older than 356 days (Optional)."
1063
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1064
 
1065
+ #: adrotate.php:815
1066
  msgid ""
1067
  "AdRotate creates empty records when you start making ads or groups. In rare "
1068
  "occasions these records are faulty."
1070
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1071
  "група. В редки случай тези записи са дефектни."
1072
 
1073
+ #: adrotate.php:815
1074
  msgid ""
1075
  "If you made an ad or group that does not save when you make it use this "
1076
  "button to delete those empty records."
1078
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1079
  "този бутон, за да изтриете празните полета."
1080
 
1081
+ #: adrotate.php:815
1082
  msgid ""
1083
  "Additionally you can clean up old statistics. This will improve the speed of "
1084
  "your site."
1086
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1087
  "скоростта на сайта Ви."
1088
 
1089
+ #: adrotate.php:819
1090
  msgid "Re-evaluate Ads"
1091
  msgstr "Преоценка на реклами"
1092
 
1093
+ #: adrotate.php:821
1094
  msgid "Re-evaluate all ads"
1095
  msgstr "Преоценка на всички реклами"
1096
 
1097
+ #: adrotate.php:821
1098
  msgid "You are about to check all ads for errors."
1099
  msgstr "На път сте да проверите всички реклами за грешки."
1100
 
1101
+ #: adrotate.php:822
1102
  msgid ""
1103
  "This will apply all evaluation rules to all ads to see if any error slipped "
1104
  "in. Normally you should not need this feature."
1106
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1107
  "нужда от тази функция."
1108
 
1109
+ #: adrotate.php:826
1110
  msgid ""
1111
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1112
  "becomes unusable in any way or by any means in whichever way I will not take "
1123
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1124
  "тези бутони е безсмислено."
1125
 
1126
+ #: adrotate.php:834
1127
  msgid "Troubleshooting"
1128
  msgstr "Отстраняване на проблеми"
1129
 
1130
+ #: adrotate.php:837
1131
  msgid "Current version:"
1132
  msgstr "Текуща версия:"
1133
 
1134
+ #: adrotate.php:838
1135
  msgid "Previous version:"
1136
  msgstr "Предишна версия:"
1137
 
1138
+ #: adrotate.php:841
1139
  msgid "Current database version:"
1140
  msgstr "Текуща верския на базата данни:"
1141
 
1142
+ #: adrotate.php:842
1143
  msgid "Previous database version:"
1144
  msgstr "Предишна версия на базата данни:"
1145
 
1146
+ #: adrotate.php:845
1147
  #, fuzzy
1148
  msgid "Ad evaluation next run:"
1149
  msgstr "Оценка на рекламата:"
1150
 
1151
+ #: adrotate.php:846 adrotate.php:850
1152
  msgid "Not scheduled!"
1153
  msgstr "Не е планирано!"
1154
 
1155
+ #: adrotate.php:849
1156
  #, fuzzy
1157
  msgid "Clean Trackerdata next run:"
1158
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
1159
 
1160
+ #: adrotate.php:853
1161
  msgid "Current status of adverts"
1162
  msgstr "Настоящ статус на рекламите"
1163
 
1164
+ #: adrotate.php:854
1165
  msgid "Normal"
1166
  msgstr "Нормално"
1167
 
1168
+ #: adrotate.php:854
1169
  msgid "Error"
1170
  msgstr "Грешка"
1171
 
1172
+ #: adrotate.php:854
1173
  msgid "Expired"
1174
  msgstr "Изтекло"
1175
 
1176
+ #: adrotate.php:854
1177
  msgid "Expires Soon"
1178
  msgstr "Изтича скоро"
1179
 
1180
+ #: adrotate.php:854
1181
  msgid "Unknown Status"
1182
  msgstr "Неизвестен статус"
1183
 
1184
+ #: adrotate.php:857
1185
  msgid ""
1186
  "NOTE: The below options are not meant for normal use and are only there for "
1187
  "developers to review saved settings or how ads are selected. These can be "
1194
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1195
  "ИЗКЛЮЧЕНИ!!"
1196
 
1197
+ #: adrotate.php:861
1198
  msgid "Developer Debug"
1199
  msgstr "Developer Debug"
1200
 
1201
+ #: adrotate.php:863
1202
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1203
  msgstr ""
1204
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1205
  "изглед."
1206
 
1207
+ #: adrotate.php:864
1208
  msgid "Show all settings, dashboard routines and related values."
1209
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1210
 
1211
+ #: adrotate.php:865
1212
  msgid "Show array of all userroles and capabilities."
1213
  msgstr "Покажи масив с всички потребителски роли и възможности."
1214
 
1215
+ #: adrotate.php:866
1216
  msgid "Review saved advertisers! Visible to advertisers."
1217
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1218
 
1219
+ #: adrotate.php:867
1220
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1221
  msgstr ""
1222
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1223
  "автори."
1224
 
1225
+ #: adrotate.php:868
1226
  msgid ""
1227
  "Disable timers for clicks and impressions and enable a alert window for "
1228
  "clicktracking."
1230
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1231
  "за проследяване на кликове."
1232
 
1233
+ #: adrotate.php:869
1234
  msgid "Temporarily disable encryption on the redirect url."
1235
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1236
 
1475
  msgstr "AdCode не може да бъде празен!"
1476
 
1477
  #: dashboard/publisher/adrotate-ads-edit.php:49
1478
+ msgid "You did not use %image% in your AdCode but did select an image!"
1479
+ msgstr ""
1480
 
1481
  #: dashboard/publisher/adrotate-ads-edit.php:52
1482
  msgid "You did use %image% in your AdCode but did not select an image!"
1491
  "нулирайте снимката и запишете рекламата наново!"
1492
 
1493
  #: dashboard/publisher/adrotate-ads-edit.php:58
1494
+ msgid ""
1495
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1496
+ "ineffective."
1497
+ msgstr ""
1498
+
1499
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1500
+ msgid ""
1501
+ "Your chosen banner image does not have the right name. Check the responsive "
1502
+ "description and try again."
1503
+ msgstr ""
1504
+
1505
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1506
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1507
  msgstr ""
1508
  "Проследяването на кликове е включено, но не е намерен валиден линк в кода на "
1509
  "рекламата!"
1510
 
1511
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1512
  msgid ""
1513
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1514
  "the ad!"
1516
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
1517
  "запишете я наново!"
1518
 
1519
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1520
  msgid "This ad is expired and currently not shown on your website!"
1521
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
1522
 
1523
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1524
  msgid "The ad will expire in less than 2 days!"
1525
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
1526
 
1527
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1528
  msgid "This ad will expire in less than 7 days!"
1529
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
1530
 
1531
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1532
  msgid "This ad has been disabled and does not rotate on your site!"
1533
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1534
 
1535
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1536
  msgid "New Advert"
1537
  msgstr "Нова реклама"
1538
 
1539
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1540
  msgid "Edit Advert"
1541
  msgstr "Редакция на реклама"
1542
 
1543
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
1544
  msgid "Title:"
1545
  msgstr "Заглавие:"
1546
 
1547
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1548
  msgid "AdCode:"
1549
  msgstr "AdCode:"
1550
 
1551
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1552
+ msgid "Basic Examples:"
1553
+ msgstr "Основни примери:"
1554
+
1555
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1556
+ msgid "Useful tags:"
1557
+ msgstr ""
1558
+
1559
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1560
+ msgid "Insert the advert ID Number."
1561
+ msgstr ""
1562
+
1563
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1564
+ msgid "Insert the %image% tag. Required when selecting a image below."
1565
+ msgstr ""
1566
+
1567
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1568
+ msgid "Insert the advert name."
1569
+ msgstr ""
1570
+
1571
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1572
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1573
+ msgstr ""
1574
+
1575
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1576
+ msgid "Add inside the <a> tag to open advert in a new window."
1577
+ msgstr ""
1578
+
1579
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1580
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1581
+ msgstr ""
1582
+
1583
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1584
  msgid ""
1585
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1586
+ "click to add it."
1587
  msgstr ""
 
 
1588
 
1589
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1590
+ msgid "Banner image:"
1591
+ msgstr "Картинка на банера:"
1592
 
1593
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1594
+ msgid "WordPress media:"
1595
+ msgstr ""
1596
 
1597
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1598
+ msgid "Select Banner"
1599
+ msgstr "Избор на банер"
1600
+
1601
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1602
+ msgid "- OR -"
1603
+ msgstr "- ИЛИ -"
1604
+
1605
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1606
+ msgid "Banner folder:"
1607
+ msgstr "Папка на банера:"
1608
+
1609
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1610
+ msgid "No image selected"
1611
+ msgstr "Не е избрана картинка"
1612
 
1613
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1614
+ msgid "Use %image% in the code. Accepted files are:"
1615
+ msgstr "Използвайте %image% в кода. Допустимите файлове са:"
1616
+
1617
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1618
  msgid ""
1619
+ "Use either the text field or the dropdown. If the textfield has content that "
1620
+ "field has priority."
1621
  msgstr ""
1622
+ "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1623
+ "попълнено, то ще бъде с преоритет."
1624
 
1625
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1626
+ msgid "Clicktracking:"
1627
+ msgstr "Проследяване на кликовете:"
1628
+
1629
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1630
+ msgid "Enable click tracking for this advert."
1631
+ msgstr "Активиране на проследяването на кликове за тази реклама."
1632
+
1633
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1634
+ msgid ""
1635
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1636
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1637
+ "supported."
1638
+ msgstr ""
1639
+
1640
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1641
  msgid "Activate:"
1642
  msgstr "Активиране:"
1643
 
1644
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1645
  msgid "Yes, this ad will be used"
1646
  msgstr "Да, тази реклама ще се използва"
1647
 
1648
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1649
  msgid "No, do not show this ad anywhere"
1650
  msgstr "Не, не показвай тази реклама никъде"
1651
 
1652
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1653
  #: dashboard/publisher/adrotate-ads-main.php:108
1654
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1655
  #: dashboard/publisher/adrotate-groups-main.php:87
1656
  msgid "Get more features with AdRotate Pro."
1657
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1658
 
1659
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1660
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1661
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1662
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1663
  msgid "Save Advert"
1664
  msgstr "Запиши рекламата"
1665
 
1666
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1667
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1668
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1669
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1670
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1671
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1672
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1673
  msgid "Cancel"
1674
  msgstr "Отказ"
1675
 
1676
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1677
  msgid "Preview"
1678
  msgstr "Преглед"
1679
 
1680
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1681
  msgid ""
1682
  "Note: While this preview is an accurate one, it might look different then it "
1683
  "does on the website."
1685
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1686
  "изглежда по-различно, когато се показва на страницата Ви."
1687
 
1688
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1689
  msgid ""
1690
  "This is because of CSS differences. Your themes CSS file is not active here!"
1691
  msgstr ""
1692
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1693
 
1694
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1695
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1696
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1697
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1698
  msgid "Usage"
1699
  msgstr "Употреба"
1700
 
1701
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1702
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1703
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1704
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1705
+ msgid "Widget:"
1706
+ msgstr ""
1707
+
1708
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1709
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1710
  msgid ""
1711
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1712
+ "and enter ID"
1713
  msgstr ""
 
 
 
1714
 
1715
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1716
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1717
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1718
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1719
  msgid "In a post or page:"
1720
  msgstr "И страница или публикация:"
1721
 
1722
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1723
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1724
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1725
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1726
  msgid "Directly in a theme:"
1727
  msgstr "Директно в темата:"
1728
 
1729
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1730
+ msgid "Schedule your advert"
1731
+ msgstr ""
 
1732
 
1733
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1734
+ msgid "Start date (day/month/year):"
1735
+ msgstr "Начална дата (ден/месец/година):"
1736
 
1737
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1738
+ msgid "End date (day/month/year):"
1739
+ msgstr "Крайна дата (ден/месец/година):"
1740
 
1741
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1742
+ msgid "Start time (hh:mm):"
1743
+ msgstr "Начален час (hh:mm):"
1744
 
1745
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1746
+ msgid "End time (hh:mm):"
1747
+ msgstr "Краен час (hh:mm):"
 
 
 
 
1748
 
1749
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1750
+ msgid "Maximum Clicks:"
1751
+ msgstr "Максимален брой кликове:"
1752
+
1753
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1754
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1755
+ msgid "Leave empty or 0 to skip this."
1756
+ msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1757
 
1758
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1759
+ msgid "Maximum Impressions:"
1760
+ msgstr "Максимален брой импресии:"
1761
 
1762
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1763
  msgid ""
1764
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1765
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1766
+ "hours. 6AM is 6:00 hours."
1767
+ msgstr ""
1768
+ "Времето използва 24 часов формат. Ако използвате 12 часов формат: За начален "
1769
+ "или краен час след обяд, прибавете 12 часа. Напр. 2PM е 14:00 часа. 6AM e "
1770
+ "18:00 часа. "
1771
+
1772
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1773
+ msgid ""
1774
+ "The maximum clicks and impressions are measured over the set schedule only. "
1775
+ "Every schedule can have it's own limit!"
1776
  msgstr ""
1777
+ "Максималния брой кликове и импресии се измерва в рамките на зададеното "
1778
+ "време. Всеки график може да има собствен лимит!"
1779
+
1780
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1781
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
1782
+ msgstr "Създайте множество графици за всяка реклама с AdRotate Pro."
1783
 
1784
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1785
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1786
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1787
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1788
+ msgid "Upgrade today"
1789
+ msgstr "Надградете днес"
1790
+
1791
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1792
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1793
+ msgid "Advanced"
1794
+ msgstr "Разширени"
1795
+
1796
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1797
+ msgid "Everything below is optional."
1798
+ msgstr "Всичко по-долу е по желание."
1799
+
1800
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1801
  msgid "Responsive:"
1802
  msgstr "Responsive:"
1803
 
1804
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1805
  msgid "Enable responsive support for this advert."
1806
  msgstr "Активиране на responsive дизайн за тази реклама."
1807
 
1808
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1809
  msgid ""
1810
  "Upload your images to the banner folder and make sure the filename is in the "
1811
  "following format; \"imagename.full.ext\". A full set of sized images is "
1815
  "правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
1816
  "картинки е строго препоръчителен."
1817
 
1818
+ #: dashboard/publisher/adrotate-ads-edit.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1819
  msgid "Weight:"
1820
  msgstr "Тежест:"
1821
 
1822
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1823
  msgid "AdRotate Pro only"
1824
  msgstr "Само AdRotate Pro"
1825
 
1826
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1827
  msgid "Barely visible"
1828
  msgstr "Почти видимо"
1829
 
1830
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1831
  msgid "Less than average"
1832
  msgstr "По-малко от нормалното"
1833
 
1834
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1835
  msgid "Normal coverage"
1836
  msgstr "Нормално покритие"
1837
 
1838
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1839
  msgid "More than average"
1840
  msgstr "Повече от нормалното"
1841
 
1842
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1843
  msgid "Best visibility"
1844
  msgstr "Най-добра видимост"
1845
 
1846
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1847
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1848
  msgid "Sortorder:"
1849
  msgstr "Сортиране:"
1850
 
1851
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1852
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1853
  msgid "For administrative purposes set a sortorder."
1854
  msgstr "За административни цели задайте критерий за сортиране."
1855
 
1856
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1857
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1858
  msgstr ""
1859
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1860
  "на рекламата по подразбиране."
1861
 
1862
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1863
  msgid ""
1864
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1865
+ "exposure."
1866
+ msgstr ""
 
 
 
 
 
 
 
1867
 
1868
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1869
+ msgid "Geo Targeting in AdRotate Pro"
1870
+ msgstr ""
1871
 
1872
+ #: dashboard/publisher/adrotate-ads-edit.php:335
1873
  msgid ""
1874
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1875
  msgstr ""
 
 
1876
 
1877
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1878
  msgid "Cities/States:"
1879
  msgstr "Градове/Щати:"
1880
 
1881
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1882
+ msgid ""
1883
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1884
+ "states ISO codes are supported)"
1885
+ msgstr ""
 
 
 
1886
 
1887
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1888
  msgid ""
1889
  "AdRotate does not check the validity of names so make sure you spell them "
1890
  "correctly!"
1892
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1893
  "правилно!"
1894
 
1895
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1896
  msgid "Countries:"
1897
  msgstr "Държави:"
1898
 
1899
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1900
  msgid "Select the countries you want the adverts to show in."
1901
  msgstr "Изберете страните, в които искате да се показват рекламите."
1902
 
1903
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1904
  msgid "Cities take priority and will be filtered first."
1905
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1906
 
1907
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1908
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1909
  msgstr ""
 
 
 
 
 
 
1910
 
1911
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1912
  msgid "Select Groups"
1913
  msgstr "Избор на групи"
1914
 
1915
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
1916
  msgid "ID - Name"
1917
  msgstr "ID - Име"
1918
 
1919
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1920
  msgid "Ads in group"
1921
  msgstr "Реклами в група"
1922
 
1923
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1924
  #: dashboard/publisher/adrotate-groups-main.php:58
1925
  msgid "Default"
1926
  msgstr "По подразбиране"
1927
 
1928
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1929
  #: dashboard/publisher/adrotate-groups-main.php:59
1930
  msgid "Dynamic"
1931
  msgstr "Динамично"
1932
 
1933
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1934
  #: dashboard/publisher/adrotate-groups-main.php:59
1935
  msgid "second rotation"
1936
  msgstr "второ завъртане"
1937
 
1938
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1939
  #: dashboard/publisher/adrotate-groups-main.php:60
1940
  msgid "Block"
1941
  msgstr "Блок"
1942
 
1943
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1944
  #: dashboard/publisher/adrotate-groups-main.php:60
1945
  msgid "grid"
1946
  msgstr "решетка"
1947
 
1948
+ #: dashboard/publisher/adrotate-ads-edit.php:418
1949
+ #: dashboard/publisher/adrotate-groups-edit.php:192
1950
  #: dashboard/publisher/adrotate-groups-main.php:61
1951
  msgid "Post Injection"
1952
  msgstr "Вмъкване в публикации"
1953
 
1954
+ #: dashboard/publisher/adrotate-ads-edit.php:419
1955
  #: dashboard/publisher/adrotate-groups-main.php:62
1956
  msgid "Geolocation"
1957
  msgstr "Геолокация"
1958
 
1959
+ #: dashboard/publisher/adrotate-ads-edit.php:425
1960
+ #: dashboard/publisher/adrotate-groups-edit.php:61
1961
  #: dashboard/publisher/adrotate-groups-main.php:69
1962
  msgid "Mode"
1963
  msgstr "Режим"
1988
  msgid "Title"
1989
  msgstr "Заглавие"
1990
 
1991
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1992
+ #: dashboard/publisher/adrotate-ads-report.php:34
1993
+ #: dashboard/publisher/adrotate-groups-edit.php:328
1994
+ #: dashboard/publisher/adrotate-groups-main.php:35
1995
+ #: dashboard/publisher/adrotate-groups-report.php:40
1996
+ msgid "Impressions"
1997
+ msgstr "Импресии"
1998
+
1999
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2000
+ #: dashboard/publisher/adrotate-ads-main.php:45
2001
+ #: dashboard/publisher/adrotate-ads-report.php:35
2002
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2003
+ #: dashboard/publisher/adrotate-groups-main.php:37
2004
+ #: dashboard/publisher/adrotate-groups-report.php:41
2005
+ msgid "Clicks"
2006
+ msgstr "Кликове"
2007
+
2008
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2009
  #: dashboard/publisher/adrotate-ads-main.php:47
2010
  #: dashboard/publisher/adrotate-ads-report.php:38
2065
  msgstr "За 7 дни"
2066
 
2067
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2068
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2069
  msgid "Configuration errors."
2070
  msgstr "Грешки при конфигурирането."
2071
 
2078
  msgstr "Експорт в XML"
2079
 
2080
  #: dashboard/publisher/adrotate-ads-main.php:42
2081
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2082
  msgid "Weight"
2083
  msgstr "Тежест"
2084
 
2143
  msgid "Edit Group"
2144
  msgstr "Редакция на група"
2145
 
2146
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2147
  msgid "Name:"
2148
  msgstr "Име:"
2149
 
2150
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2151
  msgid "Default - Show one ad at a time"
2152
  msgstr "По подразбиране - показва се само една реклама"
2153
 
2154
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2155
  msgid "Dynamic Mode - Show a different ad every few seconds"
2156
  msgstr ""
2157
  "Динамичен Режим - показва се различна реклама на определен брой секунди"
2158
 
2159
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2160
  msgid "Block Mode - Show a block of ads"
2161
  msgstr "Блоков режим - показва се блок от реклами"
2162
 
2163
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2164
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2165
  msgstr ""
2166
  "Динамичен режим изисква jQuery. Можете да го включите от настройките на "
2167
  "AdRotate."
2168
 
2169
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2170
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2171
  msgid "Dynamic and Block Mode"
2172
  msgstr "Динамичен и блоков режим"
2173
 
2174
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2175
  msgid "Only required if your group is in Dynamic or Block mode."
2176
  msgstr "Необходимо е само ако групата Ви е в Динамичен или Блоков режим."
2177
 
2178
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2179
+ msgid "Block size"
2180
+ msgstr ""
2181
 
2182
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2183
  msgid "rows"
2184
  msgstr "редове"
2185
 
2186
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2187
  msgid "columns"
2188
  msgstr "колони"
2189
 
2190
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2191
  msgid "Block Mode"
2192
  msgstr "Блоков режим"
2193
 
2194
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2195
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
2196
  msgstr ""
 
 
2197
 
2198
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2199
+ msgid "Advert size"
2200
+ msgstr ""
2201
 
2202
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2203
  msgid "pixel(s) wide"
2204
  msgstr "пиксела ширитина"
2205
 
2206
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2207
  msgid "pixel(s) high."
2208
  msgstr "пиксела височина."
2209
 
2210
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2211
  msgid ""
2212
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2213
  "recommended). Default: 125/125."
2215
  "Задайте максималния размер на рекламите в пиксели. Размера не може да е "
2216
  "'auto' (Не е препоръчително). По подразбиране: 125/125."
2217
 
2218
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2219
  msgid "Automated refresh"
2220
  msgstr "Автоматичен рефреш"
2221
 
2222
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2223
  msgid "seconds."
2224
  msgstr "секунди."
2225
 
2226
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2227
  msgid "Dynamic Mode"
2228
  msgstr "Динамичен режим"
2229
 
2230
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2231
  msgid ""
2232
  "Load a new advert in this interval without reloading the page. Default: 6."
2233
  msgstr ""
2234
  "Зареждане на нова реклама през този интервал, без презареждане на "
2235
  "страницата. По подразбиране: 6."
2236
 
2237
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2238
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2239
+ msgid ""
2240
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2241
+ "\" and enter ID"
2242
+ msgstr ""
2243
+
2244
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2245
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2246
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2247
  msgid "Save Group"
2248
  msgstr "Запис на групата"
2249
 
2250
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2251
  msgid "Advert Margin"
2252
  msgstr "Margin на рекламата"
2253
 
2254
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2255
  msgid "pixel(s)"
2256
  msgstr "пиксел(а)"
2257
 
2258
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2259
  msgid "A transparent area outside the advert in pixels. Default: 0."
2260
  msgstr "Прозрачна зона около рекламата, в пиксели. По подразбиране: 0."
2261
 
2262
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2263
  msgid "Set to 0 to disable."
2264
  msgstr "Въведете 0 за деактивация."
2265
 
2266
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2267
+ msgid "Margins are automatically disabled for blocks where required."
2268
+ msgstr ""
2269
+
2270
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2271
  msgid "Align the group"
2272
  msgstr ""
2273
 
2274
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2275
  msgid "None (Default)"
2276
  msgstr ""
2277
 
2278
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2279
  msgid "Left"
2280
  msgstr ""
2281
 
2282
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2283
  msgid "Right"
2284
  msgstr ""
2285
 
2286
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2287
  msgid "Center"
2288
  msgstr ""
2289
 
2290
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2291
  msgid ""
2292
  "Align the group in your post or page. Using 'center' may affect your margin "
2293
  "setting. Not every theme supports this feature."
2294
  msgstr ""
2295
 
2296
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2297
  msgid "Leave empty or 0 to skip this. Will default to group id."
2298
  msgstr ""
2299
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
2300
  "на групата."
2301
 
2302
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2303
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2304
  msgstr ""
2305
  "Задайте резервна група и използвайте услуга за местоположение с AdRotate Pro"
2306
 
2307
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2308
  msgid "Include ads in categories?"
2309
  msgstr "Включване на реклами в категориите?"
2310
 
2311
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2312
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2313
  msgid "Disabled"
2314
  msgstr "Изключено"
2315
 
2316
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2317
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2318
  msgid "Before content"
2319
  msgstr "Преди съдържанието"
2320
 
2321
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2322
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2323
  msgid "After content"
2324
  msgstr "След съдържанието"
2325
 
2326
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2327
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2328
  msgid "Before and after content"
2329
  msgstr "Преди и след съдържанието"
2330
 
2331
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2332
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2333
  msgid "After..."
2334
  msgstr "След..."
2335
 
2336
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2337
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2338
  msgid "the first paragraph"
2339
  msgstr "първия параграф"
2340
 
2341
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2342
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2343
  msgid "the 2nd paragraph"
2344
  msgstr "2-рия параграф"
2345
 
2346
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2347
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2348
  msgid "the 3rd paragraph"
2349
  msgstr "3-тия параграф"
2350
 
2351
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2352
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2353
  msgid "the 4th paragraph"
2354
  msgstr "4-тия параграф"
2355
 
2356
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2357
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2358
  msgid "every 2nd paragraph"
2359
  msgstr "всеки 2-ри параграф"
2360
 
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2362
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2363
  msgid "every 3rd paragraph"
2364
  msgstr "всеки 3-ти параграф"
2365
 
2366
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2367
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2368
  msgid "every 4th paragraph"
2369
  msgstr "всеки 4-ти параграф"
2370
 
2371
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2372
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2373
  msgid "every 5th paragraph"
2374
  msgstr "всеки 5-ти параграф"
2375
 
2376
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2377
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2378
  msgid "every 6th paragraph"
2379
  msgstr "всеки 6-ти параграф"
2380
 
2381
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2382
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2383
  msgid "every 7th paragraph"
2384
  msgstr "всеки 7-ми параграф"
2385
 
2386
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2387
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2388
  msgid "every 8th paragraph"
2389
  msgstr "всеки 8-ми параграф"
2390
 
2391
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2392
  msgid "Which categories?"
2393
  msgstr "Кои категории?"
2394
 
2395
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2396
  msgid "Click the categories posts you want the adverts to show in."
2397
  msgstr "Изберете категориите, на които искате да се показват рекламите."
2398
 
2399
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2400
  msgid "Include ads in pages?"
2401
  msgstr "Включване на реклами в страниците?"
2402
 
2403
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2404
  msgid "Which pages?"
2405
  msgstr "Кои страници?"
2406
 
2407
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2408
  msgid "Click the pages you want the adverts to show in."
2409
  msgstr "Изберете страниците, на които искате да се показват рекламите."
2410
 
2411
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2412
  msgid "Wrapper code"
2413
  msgstr "Код за обвивката"
2414
 
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2416
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2417
+ msgstr ""
2418
 
2419
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2420
  msgid "Before ad"
2421
  msgstr "Преди реклама"
2422
 
2423
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2424
+ msgid "Options:"
2425
+ msgstr "Настройки:"
2426
 
2427
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2428
  msgid "After ad"
2429
  msgstr "След реклама"
2430
 
2431
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2432
  msgid "Select Ads"
2433
  msgstr "Избор на реклами"
2434
 
2435
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2436
  msgid "Visible until"
2437
  msgstr "Да се вижда до"
2438
 
2439
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2440
  msgid "No ads created!"
2441
  msgstr "Няма създадени реклами!"
2442
 
2468
  msgid "Statistics for group"
2469
  msgstr "Статистика за групи"
2470
 
2471
+ #~ msgid "Usage:"
2472
+ #~ msgstr "Употреба:"
2473
+
2474
+ #~ msgid "A comma separated list of cities and/or states"
2475
+ #~ msgstr "Списък с градове и/или щати, разделен със запетая"
2476
+
2477
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2478
+ #~ msgstr "Не сте използвали %image% в своя AdCode, но сте избрали картинка!"
2479
+
2480
+ #~ msgid "These are required."
2481
+ #~ msgstr "Тези са задължителни."
2482
+
2483
+ #~ msgid ""
2484
+ #~ "Copy your ad tag/code in this field if you have received ready to go "
2485
+ #~ "adverts."
2486
+ #~ msgstr ""
2487
+ #~ "Копирайте своя рекламен етикет/код в това поле ако сте получили готова "
2488
+ #~ "реклама."
2489
+
2490
+ #~ msgid "Advertising and affiliate networks often use these."
2491
+ #~ msgstr "Реклманите и партньорските мрежи често използват това."
2492
+
2493
+ #~ msgid ""
2494
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2495
+ #~ "AdCode."
2496
+ #~ msgstr ""
2497
+ #~ "Поставете курсора там, където искате да добавите етикет и кликете, за да "
2498
+ #~ "го добавите към кода на рекламата."
2499
+
2500
+ #~ msgid ""
2501
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2502
+ #~ "where you want the advert to show up."
2503
+ #~ msgstr ""
2504
+ #~ "Копирайте shortcode-а в публикация или страница. PHP кода можете да "
2505
+ #~ "използвате във файловете на темата си, за да показвате рекламни карета "
2506
+ #~ "където са ви необходими."
2507
+
2508
+ #~ msgid ""
2509
+ #~ "Note: Clicktracking does generally not work for Javascript adverts such "
2510
+ #~ "as those provided by Google AdSense."
2511
+ #~ msgstr ""
2512
+ #~ "Забележка: Проследяването на кликове не е съвместимо с Javascript "
2513
+ #~ "реклами, като напр. Google AdSense."
2514
+
2515
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2516
+ #~ msgstr "Поставете URL адрес в adcode - както е показано в пример 1."
2517
+
2518
+ #~ msgid "Target URL:"
2519
+ #~ msgstr "Целеви URL:"
2520
+
2521
+ #~ msgid ""
2522
+ #~ "This field is no longer required. You can place the URL directly in the "
2523
+ #~ "adcode (above) instead of %link%."
2524
+ #~ msgstr ""
2525
+ #~ "Това поле вече не е необходимо. Можете да поставите URL адреса директно в "
2526
+ #~ "полето adcore (по-горе), вместо %link%."
2527
+
2528
+ #~ msgid ""
2529
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2530
+ #~ "advert for different viewports. Requires jQuery."
2531
+ #~ msgstr ""
2532
+ #~ "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и "
2533
+ #~ "съща реклама в различни резолюции на екрана. Изисква jQuery."
2534
+
2535
+ #~ msgid "Media:"
2536
+ #~ msgstr "Медия:"
2537
+
2538
+ #~ msgid ""
2539
+ #~ "With AdRotate Pro you can also set a weight to give adverts more or less "
2540
+ #~ "attention."
2541
+ #~ msgstr ""
2542
+ #~ "С AdRotate Pro можете да задавате тежест при показване на рекламите."
2543
+
2544
+ #~ msgid "Geo Location in AdRotate Pro"
2545
+ #~ msgstr "Геолокация с AdRotate Pro"
2546
+
2547
+ #~ msgid ""
2548
+ #~ "This works if you assign the advert to a group and enable that group to "
2549
+ #~ "use Geo Targeting."
2550
+ #~ msgstr ""
2551
+ #~ "Това работи ако закачите рекламата към група и включите таргетирането по "
2552
+ #~ "местоположение за тази група."
2553
+
2554
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2555
+ #~ msgstr ""
2556
+ #~ "Насочете рекламите си към правилната аудитория с услугата за "
2557
+ #~ "местоположение в AdRotate Pro"
2558
+
2559
+ #~ msgid "Schedule"
2560
+ #~ msgstr "График"
2561
+
2562
+ #~ msgid "From when to when is the advert visible?"
2563
+ #~ msgstr "От кога до кога да бъде видима тази обява?"
2564
+
2565
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2566
+ #~ msgstr "Изберете множество графици в AdRotate Pro"
2567
+
2568
+ #~ msgid "You can add, edit or delete schedules from the"
2569
+ #~ msgstr "Можете да триете, добавяте и редактирате графици от"
2570
+
2571
+ #~ msgid "dashboard. Save your advert first!"
2572
+ #~ msgstr "таблото. Първо запазете рекламата си!"
2573
+
2574
+ #~ msgid "From / Until"
2575
+ #~ msgstr "От / До"
2576
+
2577
+ #~ msgid "impressions per day"
2578
+ #~ msgstr "импресии на ден"
2579
+
2580
+ #~ msgid "In use by this advert."
2581
+ #~ msgstr "Използва се с тази реклама."
2582
+
2583
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2584
+ #~ msgstr "По желание - изберете групата(ите) към които принадлежи рекламата."
2585
+
2586
+ #~ msgid "Block shape and border"
2587
+ #~ msgstr "Форма и рамка на блока"
2588
+
2589
+ #~ msgid ""
2590
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2591
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2592
+ #~ msgstr ""
2593
+ #~ "Направете решетка от своите реклами. Ако попълните 3 и 2 ще създадете "
2594
+ #~ "решетка с 2 колони, показваща до 6 реклами. По подразбиране: 2х2."
2595
+
2596
+ #~ msgid "Advert Width and Height"
2597
+ #~ msgstr "Височина и ширина на рекламата"
2598
+
2599
+ #~ msgid "Insert ads to the begin or end of a post/page."
2600
+ #~ msgstr "Вмъкване на реклами в началото или в края на публикация/страница."
2601
+
2602
+ #~ msgid "Wraps around each ad."
2603
+ #~ msgstr "Обвивка около всяка реклама."
2604
+
2605
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2606
+ #~ msgstr "HTML/JavaScript са позволени, използвайте внимателно!"
2607
+
2608
  #~ msgid "AdRotate Website"
2609
  #~ msgstr "Уебсайт на AdRotate"
2610
 
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -18,19 +18,19 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:807
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:810
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-output.php:747
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
- #: adrotate-output.php:748
34
  msgid ""
35
  "WordPress was unable to verify the authenticity of the url you have clicked. "
36
  "Verify if the url used is valid or log in via your browser."
@@ -39,7 +39,7 @@ msgstr ""
39
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
40
  "browser σας."
41
 
42
- #: adrotate-output.php:749
43
  msgid ""
44
  "If you have received the url you want to visit via email, you are being "
45
  "tricked!"
@@ -47,11 +47,11 @@ msgstr ""
47
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
48
  "ξεγέλασαν!"
49
 
50
- #: adrotate-output.php:750
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
- #: adrotate-output.php:768
55
  msgid ""
56
  "Error, Ad is not available at this time due to schedule/geolocation "
57
  "restrictions or does not exist!"
@@ -59,7 +59,7 @@ msgstr ""
59
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
60
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
61
 
62
- #: adrotate-output.php:770
63
  msgid ""
64
  "Error, Ad is not available at this time due to schedule/geolocation "
65
  "restrictions!"
@@ -67,7 +67,7 @@ msgstr ""
67
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
68
  "χρονικών περιορισμών."
69
 
70
- #: adrotate-output.php:777 adrotate-output.php:779
71
  msgid ""
72
  "Either there are no banners, they are disabled or none qualified for this "
73
  "location!"
@@ -75,20 +75,20 @@ msgstr ""
75
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
76
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
77
 
78
- #: adrotate-output.php:785
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
- #: adrotate-output.php:791
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
- #: adrotate-output.php:796
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
- #: adrotate-output.php:802
92
  msgid ""
93
  "There was an error locating the database tables for AdRotate. Please "
94
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -97,159 +97,159 @@ msgstr ""
97
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
98
  "προσθέτων!!"
99
 
100
- #: adrotate-output.php:802
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
- #: adrotate-output.php:808
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
- #: adrotate-output.php:834
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
- #: adrotate-output.php:834
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
- #: adrotate-output.php:836
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
- #: adrotate-output.php:836
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
- #: adrotate-output.php:838
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
- #: adrotate-output.php:838
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
- #: adrotate-output.php:840
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
- #: adrotate-output.php:840
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
- #: adrotate-output.php:840
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
- #: adrotate-output.php:840
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
- #: adrotate-output.php:853
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
- #: adrotate-output.php:855
154
  msgid ""
155
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
156
  "to the <strong>PRO</strong> version"
157
  msgstr ""
158
 
159
- #: adrotate-output.php:856
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
- #: adrotate-output.php:856
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
- #: adrotate-output.php:896
169
  msgid ""
170
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
171
- "Pro is in this menu. Check out the"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:896
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
- #: adrotate-output.php:896 adrotate-output.php:973
179
- #: dashboard/publisher/adrotate-ads-edit.php:229
180
  msgid "and"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:896
184
  msgid "forums"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:932
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
- #: adrotate-output.php:933
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:935
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
- #: adrotate-output.php:936
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
- #: adrotate-output.php:937
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
- #: adrotate-output.php:938
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
- #: adrotate-output.php:939
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
- #: adrotate-output.php:965
221
  #, fuzzy
222
  msgid "Help AdRotate Grow"
223
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
224
 
225
- #: adrotate-output.php:966
226
  msgid "Brought to you by"
227
  msgstr "Σας προσφέρεται από"
228
 
229
- #: adrotate-output.php:973
230
  msgid ""
231
  "A lot of users only think to review AdRotate when something goes wrong while "
232
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
233
  msgstr ""
234
 
235
- #: adrotate-output.php:973
236
  msgid "If you find AdRotate useful please leave your honest"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:973
240
  msgid "rating"
241
  msgstr ""
242
 
243
- #: adrotate-output.php:973
244
  #, fuzzy
245
  msgid "review"
246
  msgstr "Αξιολογήστε και σχολιάστε"
247
 
248
- #: adrotate-output.php:973
249
  msgid "on WordPress.org to help AdRotate grow in a positive way"
250
  msgstr ""
251
 
252
- #: adrotate-output.php:976
253
  msgid ""
254
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
255
  "out more about what I can do for you!"
@@ -257,89 +257,89 @@ msgstr ""
257
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
258
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
259
 
260
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
261
  msgid "Visit the"
262
  msgstr "Επισκεφθείτε το"
263
 
264
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
265
  msgid "website"
266
  msgstr "ιστοσελίδα"
267
 
268
- #: adrotate-output.php:1006
269
  msgid "Available in AdRotate Pro"
270
  msgstr "Διαθέσιμο στο AdRotate Pro"
271
 
272
- #: adrotate-output.php:1006
273
  #, fuzzy
274
  msgid "More information..."
275
  msgstr "Περισσότερες πληροφορίες"
276
 
277
- #: adrotate-output.php:1007
278
  msgid "This feature is available in AdRotate Pro"
279
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
280
 
281
- #: adrotate-output.php:1007
282
  #, fuzzy
283
  msgid "Learn more"
284
  msgstr "Μάθετε περισσότερα σχετικά"
285
 
286
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
287
- #: dashboard/publisher/adrotate-ads-edit.php:352
288
  msgid "January"
289
  msgstr "Ιανουάριος"
290
 
291
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
292
- #: dashboard/publisher/adrotate-ads-edit.php:353
293
  msgid "February"
294
  msgstr "Φεβρουάριος"
295
 
296
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
297
- #: dashboard/publisher/adrotate-ads-edit.php:354
298
  msgid "March"
299
  msgstr "Μάρτιος"
300
 
301
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
302
- #: dashboard/publisher/adrotate-ads-edit.php:355
303
  msgid "April"
304
  msgstr "Απρίλιος"
305
 
306
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
307
- #: dashboard/publisher/adrotate-ads-edit.php:356
308
  msgid "May"
309
  msgstr "Μάιος"
310
 
311
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
312
- #: dashboard/publisher/adrotate-ads-edit.php:357
313
  msgid "June"
314
  msgstr "Ιούνιος"
315
 
316
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
317
- #: dashboard/publisher/adrotate-ads-edit.php:358
318
  msgid "July"
319
  msgstr "Ιούλιος"
320
 
321
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
322
- #: dashboard/publisher/adrotate-ads-edit.php:359
323
  msgid "August"
324
  msgstr "Αύγουστος"
325
 
326
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
327
- #: dashboard/publisher/adrotate-ads-edit.php:360
328
  msgid "September"
329
  msgstr "Σεπτέμβριος"
330
 
331
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
332
- #: dashboard/publisher/adrotate-ads-edit.php:361
333
  msgid "October"
334
  msgstr "Οκτώβριος"
335
 
336
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
337
- #: dashboard/publisher/adrotate-ads-edit.php:362
338
  msgid "November"
339
  msgstr "Νοέμβριος"
340
 
341
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
342
- #: dashboard/publisher/adrotate-ads-edit.php:363
343
  msgid "December"
344
  msgstr "Δεκέμβριος"
345
 
@@ -393,7 +393,7 @@ msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
393
  msgid "Choose what you want to use this widget for"
394
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
395
 
396
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
397
  msgid "ID:"
398
  msgstr "Κωδ:"
399
 
@@ -401,79 +401,78 @@ msgstr "Κωδ:"
401
  msgid "Fill in the ID of the type you want to display!"
402
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
403
 
404
- #: adrotate.php:108
405
  msgid "General Info"
406
  msgstr "Γενικές Πληροφορίες"
407
 
408
- #: adrotate.php:109
409
  msgid "AdRotate Pro"
410
  msgstr "AdRotate Pro"
411
 
412
- #: adrotate.php:110
413
  msgid "Manage Ads"
414
  msgstr "Διαχείριση Διαφημίσεων"
415
 
416
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
417
  msgid "Manage Groups"
418
  msgstr "Διαχείριση Ομάδων"
419
 
420
- #: adrotate.php:112 adrotate.php:441
421
- #: dashboard/publisher/adrotate-ads-edit.php:402
422
  #, fuzzy
423
  msgid "Manage Schedules"
424
  msgstr "Διαχείριση"
425
 
426
- #: adrotate.php:113
427
  #, fuzzy
428
  msgid "Manage Media"
429
  msgstr "Media:"
430
 
431
- #: adrotate.php:114
432
  msgid "Settings"
433
  msgstr "Ρυθμίσεις"
434
 
435
- #: adrotate.php:137
436
  msgid "AdRotate Info"
437
  msgstr "Πληροφορίες του AdRotate"
438
 
439
- #: adrotate.php:158
440
  #, fuzzy
441
  msgid "AdRotate Professional"
442
  msgstr "AdRotate Pro"
443
 
444
- #: adrotate.php:201
445
  msgid "Ad Management"
446
  msgstr "Διαχείριση Διαφημίσεων"
447
 
448
- #: adrotate.php:204
449
  msgid "Ad created"
450
  msgstr "Η διαφήμιση δημιουργήθηκε"
451
 
452
- #: adrotate.php:206
453
  msgid "Ad updated"
454
  msgstr "Η διαφήμιση ανανεώθηκε"
455
 
456
- #: adrotate.php:208
457
  msgid "Ad(s) deleted"
458
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
459
 
460
- #: adrotate.php:210
461
  msgid "Ad(s) statistics reset"
462
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
463
 
464
- #: adrotate.php:212
465
  msgid "Ad(s) renewed"
466
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
467
 
468
- #: adrotate.php:214
469
  msgid "Ad(s) deactivated"
470
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
471
 
472
- #: adrotate.php:216
473
  msgid "Ad(s) activated"
474
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
475
 
476
- #: adrotate.php:218
477
  msgid ""
478
  "The ad was saved but has an issue which might prevent it from working "
479
  "properly. Review the yellow marked ad."
@@ -481,366 +480,364 @@ msgstr ""
481
  "Η διαφήμιση αποθηκεύτηκε αλλά υπάρχει ένα θέμα που πιθανώς δεν θα επιτρέψει "
482
  "τη λειτουγία της. Εξετάστε την υπογραμμισμένη με κίτρινο διαφήμιση."
483
 
484
- #: adrotate.php:220
485
  #, fuzzy
486
  msgid "Export created"
487
  msgstr "Επιλογές εξαγωγής"
488
 
489
- #: adrotate.php:224
490
  msgid "Action prohibited"
491
  msgstr "Η ενέργεια απαγορεύεται"
492
 
493
- #: adrotate.php:226 adrotate.php:374
494
  msgid "No data found in selected time period"
495
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
496
 
497
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
498
  msgid "Manage"
499
  msgstr "Διαχείριση"
500
 
501
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
502
  msgid "Add New"
503
  msgstr "Προσθήκη Νέας"
504
 
505
- #: adrotate.php:363
506
  msgid "Group Management"
507
  msgstr "Διαχείριση Ομάδας"
508
 
509
- #: adrotate.php:366
510
  msgid "Group created"
511
  msgstr "Η Ομάδα δημιουργήθηκε"
512
 
513
- #: adrotate.php:368
514
  msgid "Group updated"
515
  msgstr "Η Ομάδα ανανεώθηκε"
516
 
517
- #: adrotate.php:370
518
  msgid "Group deleted"
519
  msgstr "Η Ομάδα διαγράφηκε"
520
 
521
- #: adrotate.php:372
522
  msgid "Group including it's Ads deleted"
523
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
524
 
525
- #: adrotate.php:432
526
  #, fuzzy
527
  msgid "Schedule Management available in AdRotate Pro"
528
  msgstr "Διαθέσιμο στο AdRotate Pro"
529
 
530
- #: adrotate.php:442
531
  #, fuzzy
532
  msgid ""
533
  "Schedule management and multiple schedules per advert is available in "
534
  "AdRotate Pro."
535
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
536
 
537
- #: adrotate.php:442 adrotate.php:529
538
- #: dashboard/publisher/adrotate-ads-edit.php:145
539
  #: dashboard/publisher/adrotate-ads-main.php:108
540
- #: dashboard/publisher/adrotate-groups-edit.php:76
541
  #: dashboard/publisher/adrotate-groups-main.php:87
542
  #, fuzzy
543
  msgid "More information"
544
  msgstr "Περισσότερες πληροφορίες"
545
 
546
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
547
  #: dashboard/publisher/adrotate-ads-main-error.php:19
548
  #: dashboard/publisher/adrotate-ads-main.php:20
549
  #: dashboard/publisher/adrotate-groups-main.php:20
550
  msgid "Bulk Actions"
551
  msgstr "Μαζικές Ενέργειες"
552
 
553
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
554
  #: dashboard/publisher/adrotate-ads-main-error.php:29
555
  #: dashboard/publisher/adrotate-ads-main.php:30
556
  #: dashboard/publisher/adrotate-groups-main.php:24
557
  msgid "Go"
558
  msgstr "Go"
559
 
560
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
561
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
562
  #: dashboard/publisher/adrotate-ads-main-error.php:39
563
  #: dashboard/publisher/adrotate-ads-main.php:39
564
  #: dashboard/publisher/adrotate-groups-main.php:32
565
  msgid "ID"
566
  msgstr "Κωδ."
567
 
568
- #: adrotate.php:460
569
  #, fuzzy
570
  msgid "Start"
571
  msgstr "Ώρα έναρξης (ωω: λλ):"
572
 
573
- #: adrotate.php:460
574
  #, fuzzy
575
  msgid "End"
576
  msgstr "Ώρα λήξης (ωω: λλ):"
577
 
578
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
579
  #: dashboard/publisher/adrotate-groups-main.php:34
580
  msgid "Ads"
581
  msgstr "Διαφημίσεις"
582
 
583
- #: adrotate.php:463
584
  msgid "Max Clicks"
585
  msgstr "Max Clicks"
586
 
587
- #: adrotate.php:464
588
  msgid "Max Impressions"
589
  msgstr "Max Impressions"
590
 
591
- #: adrotate.php:494
592
  #, fuzzy
593
  msgid "No schedules created yet!"
594
  msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
595
 
596
- #: adrotate.php:499
597
  #, fuzzy
598
  msgid "Easily manage your schedules from here with AdRotate Pro."
599
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
600
 
601
- #: adrotate.php:499 adrotate.php:562
602
  #, fuzzy
603
  msgid "Upgrade today!"
604
  msgstr "Σήμερα"
605
 
606
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
607
- #: dashboard/publisher/adrotate-ads-main-error.php:74
608
- #: dashboard/publisher/adrotate-groups-edit.php:399
609
  msgid "Expires soon."
610
  msgstr "Λήγει σύντομα."
611
 
612
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
613
- #: dashboard/publisher/adrotate-groups-edit.php:400
614
  msgid "Has expired."
615
  msgstr "Έχει λήξει."
616
 
617
- #: adrotate.php:527
618
  #, fuzzy
619
  msgid "Media Management available in AdRotate Pro"
620
  msgstr "Διαθέσιμο στο AdRotate Pro"
621
 
622
- #: adrotate.php:529
623
  msgid ""
624
  "Upload images to the AdRotate Pro banners folder from here. This is "
625
  "especially useful if you use responsive adverts with multiple images."
626
  msgstr ""
627
 
628
- #: adrotate.php:529
629
  #, fuzzy
630
  msgid "Media uploading and management is available in AdRotate Pro."
631
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
632
 
633
- #: adrotate.php:531
634
  #, fuzzy
635
  msgid "Upload new banner image"
636
  msgstr "Εικόνα Banner:"
637
 
638
- #: adrotate.php:532
639
  #, fuzzy
640
  msgid "Accepted files are:"
641
  msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
642
 
643
- #: adrotate.php:532
644
  msgid "Maximum size is 512Kb."
645
  msgstr ""
646
 
647
- #: adrotate.php:532
648
  msgid "Important:"
649
  msgstr ""
650
 
651
- #: adrotate.php:532
652
  msgid ""
653
  "Make sure your file has no spaces or special characters in the name. Replace "
654
  "spaces with a - or _."
655
  msgstr ""
656
 
657
- #: adrotate.php:534
658
  msgid ""
659
  "For responsive adverts make sure the filename is in the following format; "
660
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
661
  msgstr ""
662
 
663
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
664
  msgid ""
665
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
666
  "filename instead of \".full\" for the various viewports."
667
  msgstr ""
668
 
669
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
670
- #: dashboard/publisher/adrotate-groups-edit.php:334
671
- #: dashboard/publisher/adrotate-groups-edit.php:343
672
  msgid "Example:"
673
  msgstr "Παράδειγμα:"
674
 
675
- #: adrotate.php:536
676
  msgid ""
677
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
678
  "for different viewports."
679
  msgstr ""
680
 
681
- #: adrotate.php:540
682
  #, fuzzy
683
  msgid "Upload image"
684
  msgstr "Εικόνα Banner:"
685
 
686
- #: adrotate.php:543
687
  msgid "Available banner images in"
688
  msgstr ""
689
 
690
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
691
  msgid "Name"
692
  msgstr "Όνομα"
693
 
694
- #: adrotate.php:549
695
  #, fuzzy
696
  msgid "Actions"
697
  msgstr "Μαζικές Ενέργειες"
698
 
699
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
700
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
701
  #: dashboard/publisher/adrotate-ads-main-error.php:21
702
  #: dashboard/publisher/adrotate-ads-main.php:22
703
  msgid "Delete"
704
  msgstr "Διαγραφή"
705
 
706
- #: adrotate.php:562
707
  msgid ""
708
  "Make sure the banner images are not in use by adverts when you delete them!"
709
  msgstr ""
710
 
711
- #: adrotate.php:562
712
  #, fuzzy
713
  msgid "Manage your banner folder from here with AdRotate Pro."
714
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
715
 
716
- #: adrotate.php:606
717
  msgid "AdRotate Settings"
718
  msgstr "Ρυθμίσεις AdRotate"
719
 
720
- #: adrotate.php:609
721
  msgid "Settings saved"
722
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
723
 
724
- #: adrotate.php:611
725
  msgid "Database optimized"
726
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
727
 
728
- #: adrotate.php:613
729
  msgid "Database repaired"
730
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
731
 
732
- #: adrotate.php:615
733
  msgid "Ads evaluated and statuses have been corrected where required"
734
  msgstr ""
735
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
736
  "χρειάστηκε"
737
 
738
- #: adrotate.php:617
739
  msgid "Empty database records removed"
740
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
741
 
742
- #: adrotate.php:619
743
  msgid "Database can only be optimized or cleaned once every hour"
744
  msgstr ""
745
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
746
  "ώρα"
747
 
748
- #: adrotate.php:627
749
  msgid "Access Rights"
750
  msgstr "Δικαιώματα Πρόσβασης"
751
 
752
- #: adrotate.php:628
753
  msgid "Who has access to what?"
754
  msgstr ""
755
 
756
- #: adrotate.php:631
757
  msgid "Manage/Add/Edit adverts"
758
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
759
 
760
- #: adrotate.php:635
761
  msgid "Role to see and add/edit ads."
762
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
763
 
764
- #: adrotate.php:639
765
  msgid "Delete/Reset adverts"
766
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
767
 
768
- #: adrotate.php:643
769
  msgid "Role to delete ads and reset stats."
770
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
771
 
772
- #: adrotate.php:647
773
  msgid "Manage/Add/Edit groups"
774
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
775
 
776
- #: adrotate.php:651
777
  msgid "Role to see and add/edit groups."
778
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
779
 
780
- #: adrotate.php:655
781
  msgid "Delete groups"
782
  msgstr "Διαγραφή ομάδων"
783
 
784
- #: adrotate.php:659
785
  msgid "Role to delete groups."
786
  msgstr "Ρόλος για τη διαγραφή ομάδων."
787
 
788
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
789
- #: adrotate.php:876
790
  msgid "Update Options"
791
  msgstr "Επιλογές Ανανέωσης"
792
 
793
- #: adrotate.php:691
794
  msgid "Statistics"
795
  msgstr "Στατιστικά"
796
 
797
- #: adrotate.php:694
798
  #, fuzzy
799
  msgid "Enable stats"
800
  msgstr "Στατιστικά"
801
 
802
- #: adrotate.php:696
803
  msgid "Track clicks and impressions."
804
  msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
805
 
806
- #: adrotate.php:696
807
  #, fuzzy
808
  msgid "Disabling this also disables click and impression limits on schedules."
809
  msgstr ""
810
  "Η απενεργοποίηση του χαρακτηριστικού απενεργοποιεί επίσης τα όρια των κλικ "
811
  "και εμφανίσεων στα προγράμματα και απενεργοποιεί τα χρονοδιαγράμματα."
812
 
813
- #: adrotate.php:700
814
  msgid "Impressions timer"
815
  msgstr "Χρονομετρητής εμφανίσεων"
816
 
817
- #: adrotate.php:702 adrotate.php:709
818
  msgid "Seconds."
819
  msgstr "Δευτερόλεπτα."
820
 
821
- #: adrotate.php:703
822
  #, fuzzy
823
  msgid "Default: 60."
824
  msgstr "Προεπιλογή"
825
 
826
- #: adrotate.php:703
827
  #, fuzzy
828
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
829
  msgstr ""
830
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
831
  "ώρα)."
832
 
833
- #: adrotate.php:707
834
  #, fuzzy
835
  msgid "Clicks timer"
836
  msgstr "Χρονομετρητής εμφανίσεων"
837
 
838
- #: adrotate.php:710
839
  #, fuzzy
840
  msgid "Default: 86400."
841
  msgstr "Προεπιλογή"
842
 
843
- #: adrotate.php:710
844
  #, fuzzy
845
  msgid ""
846
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
@@ -848,16 +845,16 @@ msgstr ""
848
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
849
  "ώρα)."
850
 
851
- #: adrotate.php:715
852
  #, fuzzy
853
  msgid "Bot filter"
854
  msgstr "Φίλτρο προγράμματος περιήγησης"
855
 
856
- #: adrotate.php:718
857
  msgid "User-Agent Filter"
858
  msgstr "Φίλτρο προγράμματος περιήγησης"
859
 
860
- #: adrotate.php:721
861
  msgid ""
862
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
863
  "prevent impressions and clicks counted on them."
@@ -866,7 +863,7 @@ msgstr ""
866
  "μηχανές περιήγησης για να αποτρέπει την καταγραφή εμφανίσεων και κλικ από "
867
  "αυτές."
868
 
869
- #: adrotate.php:722
870
  msgid ""
871
  "Keep in mind that this might give false positives. The word 'google' also "
872
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -874,11 +871,11 @@ msgstr ""
874
  "Να θυμάστε ότι αυτό μπορεί να δώσει λανθασμένα αποτελέσματα. Η λέξη 'google' "
875
  "περιέχεται στην λέξη 'googlebot', αλλά όχι το αντίθετο. Προσοχή!"
876
 
877
- #: adrotate.php:722
878
  msgid "Keep your list up-to-date"
879
  msgstr "Διατηρήστε τον κατάλογο ενημερωμένο"
880
 
881
- #: adrotate.php:723
882
  msgid ""
883
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
884
  "other characters are stripped out."
@@ -886,7 +883,7 @@ msgstr ""
886
  "Χρησιμοποιήστε λέξεις μόνο με αλφαριθμητικούς χαρακτήρες. Τα [ - _ ] είναι "
887
  "επίσης επιτρεπτά. Όλοι οι άλλοι χαρακτήρες αφαιρούνται."
888
 
889
- #: adrotate.php:724
890
  msgid ""
891
  "Additionally to the list specified here, empty User-Agents are blocked as "
892
  "well."
@@ -894,23 +891,23 @@ msgstr ""
894
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
895
  "απορίπτονται επίσης."
896
 
897
- #: adrotate.php:724
898
  msgid "Learn more about"
899
  msgstr "Μάθετε περισσότερα σχετικά"
900
 
901
- #: adrotate.php:724
902
  msgid "user-agents"
903
  msgstr "πρόγραμμα περιήγησης"
904
 
905
- #: adrotate.php:733
906
  msgid "Miscellaneous"
907
  msgstr "Διάφορα"
908
 
909
- #: adrotate.php:736
910
  msgid "Widget alignment"
911
  msgstr "Ευθυγράμμιση μονάδας"
912
 
913
- #: adrotate.php:737
914
  msgid ""
915
  "Check this box if your widgets do not align in your themes sidebar. (Does "
916
  "not always help!)"
@@ -918,11 +915,11 @@ msgstr ""
918
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
919
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
920
 
921
- #: adrotate.php:740
922
  msgid "Widget padding"
923
  msgstr "Κενά περιθώρια μονάδων"
924
 
925
- #: adrotate.php:741
926
  msgid ""
927
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
928
  "not always work!)"
@@ -930,11 +927,11 @@ msgstr ""
930
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
931
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
932
 
933
- #: adrotate.php:746 adrotate.php:757
934
  msgid "NOTICE:"
935
  msgstr ""
936
 
937
- #: adrotate.php:747
938
  msgid ""
939
  "You have enabled W3 Total Caching support but not defined the security hash. "
940
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -942,34 +939,34 @@ msgid ""
942
  "needs to be enabled in W3 Total Cache as well too."
943
  msgstr ""
944
 
945
- #: adrotate.php:751
946
  msgid "W3 Total Caching"
947
  msgstr "W3 Total Caching"
948
 
949
- #: adrotate.php:752
950
  msgid "Check this box if you use W3 Total Caching on your site."
951
  msgstr ""
952
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
953
  "σας."
954
 
955
- #: adrotate.php:758
956
  msgid ""
957
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
958
  "this function will not work. WP Super Cache has discontinued support for "
959
  "dynamic content."
960
  msgstr ""
961
 
962
- #: adrotate.php:762
963
  msgid "WP Super Cache"
964
  msgstr "WP Super Cache"
965
 
966
- #: adrotate.php:763
967
  msgid "Check this box if you use WP Super Cache on your site."
968
  msgstr ""
969
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην ιστοσελίδα "
970
  "σας."
971
 
972
- #: adrotate.php:768
973
  msgid ""
974
  "It may take a while for the ad to start rotating. The caching plugin needs "
975
  "to refresh the cache. This can take up to a week if not done manually."
@@ -978,7 +975,7 @@ msgstr ""
978
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
979
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
980
 
981
- #: adrotate.php:768
982
  msgid ""
983
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
984
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -987,16 +984,16 @@ msgstr ""
987
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
988
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
989
 
990
- #: adrotate.php:772
991
  msgid "Javascript"
992
  msgstr ""
993
 
994
- #: adrotate.php:775
995
  #, fuzzy
996
  msgid "Load jQuery"
997
  msgstr "Να περιληφθεί η jQuery"
998
 
999
- #: adrotate.php:776
1000
  #, fuzzy
1001
  msgid ""
1002
  "jQuery is required for all Javascript features below. Enable this if your "
@@ -1005,21 +1002,21 @@ msgstr ""
1005
  "Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
1006
  "επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
1007
 
1008
- #: adrotate.php:779
1009
  msgid "Load in footer?"
1010
  msgstr ""
1011
 
1012
- #: adrotate.php:780
1013
  msgid ""
1014
  "Enable if you want to load the above libraries in the footer. Your theme "
1015
  "needs to call wp_footer() for this to work."
1016
  msgstr ""
1017
 
1018
- #: adrotate.php:788
1019
  msgid "Maintenance"
1020
  msgstr "Συντήρηση"
1021
 
1022
- #: adrotate.php:789
1023
  #, fuzzy
1024
  msgid ""
1025
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1035,19 +1032,19 @@ msgstr ""
1035
  "χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
1036
  "ανταποκρίνεται καλά."
1037
 
1038
- #: adrotate.php:804 adrotate.php:806
1039
  msgid "Optimize Database"
1040
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
1041
 
1042
- #: adrotate.php:806
1043
  msgid "You are about to optimize the AdRotate database."
1044
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
1045
 
1046
- #: adrotate.php:806
1047
  msgid "Did you make a backup of your database?"
1048
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
1049
 
1050
- #: adrotate.php:806
1051
  msgid ""
1052
  "This may take a moment and may cause your website to respond slow "
1053
  "temporarily!"
@@ -1055,16 +1052,16 @@ msgstr ""
1055
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
1056
  "σας να είναι προσωρινά αργή!"
1057
 
1058
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1059
  #: dashboard/publisher/adrotate-groups-main.php:24
1060
  msgid "OK to continue, CANCEL to stop."
1061
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1062
 
1063
- #: adrotate.php:807
1064
  msgid "Cleans up overhead data in the AdRotate tables."
1065
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
1066
 
1067
- #: adrotate.php:808
1068
  msgid ""
1069
  "Overhead data is accumulated garbage resulting from many changes you've "
1070
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1073,11 +1070,11 @@ msgstr ""
1073
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
1074
  "μέχρι εκατοντάδες kilobytes δεδομένων."
1075
 
1076
- #: adrotate.php:812 adrotate.php:814
1077
  msgid "Clean-up Database"
1078
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
1079
 
1080
- #: adrotate.php:814
1081
  msgid ""
1082
  "You are about to clean up your database. This may delete expired schedules "
1083
  "and older statistics."
@@ -1085,19 +1082,19 @@ msgstr ""
1085
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
1086
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
1087
 
1088
- #: adrotate.php:814
1089
  msgid "Are you sure you want to continue?"
1090
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
1091
 
1092
- #: adrotate.php:814 adrotate.php:822
1093
  msgid "This might take a while and may slow down your site during this action!"
1094
  msgstr ""
1095
 
1096
- #: adrotate.php:815
1097
  msgid "Delete stats older than 356 days (Optional)."
1098
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
1099
 
1100
- #: adrotate.php:816
1101
  #, fuzzy
1102
  msgid ""
1103
  "AdRotate creates empty records when you start making ads or groups. In rare "
@@ -1107,7 +1104,7 @@ msgstr ""
1107
  "διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
1108
  "λανθασμένες."
1109
 
1110
- #: adrotate.php:816
1111
  msgid ""
1112
  "If you made an ad or group that does not save when you make it use this "
1113
  "button to delete those empty records."
@@ -1115,7 +1112,7 @@ msgstr ""
1115
  "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
1116
  "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
1117
 
1118
- #: adrotate.php:816
1119
  msgid ""
1120
  "Additionally you can clean up old statistics. This will improve the speed of "
1121
  "your site."
@@ -1123,27 +1120,27 @@ msgstr ""
1123
  "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
1124
  "ταχύτητα της ιστοσελίδας σας."
1125
 
1126
- #: adrotate.php:820
1127
  #, fuzzy
1128
  msgid "Re-evaluate Ads"
1129
  msgstr "Διαφημίσεις"
1130
 
1131
- #: adrotate.php:822
1132
  msgid "Re-evaluate all ads"
1133
  msgstr ""
1134
 
1135
- #: adrotate.php:822
1136
  #, fuzzy
1137
  msgid "You are about to check all ads for errors."
1138
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1139
 
1140
- #: adrotate.php:823
1141
  msgid ""
1142
  "This will apply all evaluation rules to all ads to see if any error slipped "
1143
  "in. Normally you should not need this feature."
1144
  msgstr ""
1145
 
1146
- #: adrotate.php:827
1147
  msgid ""
1148
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1149
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1160,64 +1157,64 @@ msgstr ""
1160
  "ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
1161
  "καμμία περίπτωση. "
1162
 
1163
- #: adrotate.php:835
1164
  msgid "Troubleshooting"
1165
  msgstr "Αντιμετώπιση προβλημάτων"
1166
 
1167
- #: adrotate.php:838
1168
  msgid "Current version:"
1169
  msgstr "Τρέχουσα έκδοση:"
1170
 
1171
- #: adrotate.php:839
1172
  msgid "Previous version:"
1173
  msgstr "Προηγούμενη έκδοση:"
1174
 
1175
- #: adrotate.php:842
1176
  msgid "Current database version:"
1177
  msgstr "Τρέχουσα έκδοση βάσης:"
1178
 
1179
- #: adrotate.php:843
1180
  msgid "Previous database version:"
1181
  msgstr "Προηγούμενη έκδοση βάσης:"
1182
 
1183
- #: adrotate.php:846
1184
  #, fuzzy
1185
  msgid "Ad evaluation next run:"
1186
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1187
 
1188
- #: adrotate.php:847 adrotate.php:851
1189
  msgid "Not scheduled!"
1190
  msgstr "Δεν έχει προγραμματιστεί!"
1191
 
1192
- #: adrotate.php:850
1193
  msgid "Clean Trackerdata next run:"
1194
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1195
 
1196
- #: adrotate.php:854
1197
  msgid "Current status of adverts"
1198
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
1199
 
1200
- #: adrotate.php:855
1201
  msgid "Normal"
1202
  msgstr "Φυσιολογική"
1203
 
1204
- #: adrotate.php:855
1205
  msgid "Error"
1206
  msgstr "Σφάλμα"
1207
 
1208
- #: adrotate.php:855
1209
  msgid "Expired"
1210
  msgstr "Έληξε"
1211
 
1212
- #: adrotate.php:855
1213
  msgid "Expires Soon"
1214
  msgstr "Λήγει Σύντομα"
1215
 
1216
- #: adrotate.php:855
1217
  msgid "Unknown Status"
1218
  msgstr "Άγνωστη Κατάσταση"
1219
 
1220
- #: adrotate.php:858
1221
  msgid ""
1222
  "NOTE: The below options are not meant for normal use and are only there for "
1223
  "developers to review saved settings or how ads are selected. These can be "
@@ -1231,46 +1228,46 @@ msgstr ""
1231
  "σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
1232
  "ΕΠΙΛΕΓΜΕΝΕΣ!! "
1233
 
1234
- #: adrotate.php:862
1235
  msgid "Developer Debug"
1236
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1237
 
1238
- #: adrotate.php:864
1239
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1240
  msgstr ""
1241
  "Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
1242
  "έξοδο στην ιστοσελίδα δίνουν."
1243
 
1244
- #: adrotate.php:865
1245
  msgid "Show all settings, dashboard routines and related values."
1246
  msgstr ""
1247
  "Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
1248
  "τιμών."
1249
 
1250
- #: adrotate.php:866
1251
  msgid "Show array of all userroles and capabilities."
1252
  msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
1253
 
1254
- #: adrotate.php:867
1255
  msgid "Review saved advertisers! Visible to advertisers."
1256
  msgstr ""
1257
  "Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
1258
 
1259
- #: adrotate.php:868
1260
  #, fuzzy
1261
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1262
  msgstr ""
1263
  "Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
1264
  "Ορατό μόνο σε εκδότες."
1265
 
1266
- #: adrotate.php:869
1267
  #, fuzzy
1268
  msgid ""
1269
  "Disable timers for clicks and impressions and enable a alert window for "
1270
  "clicktracking."
1271
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
1272
 
1273
- #: adrotate.php:870
1274
  msgid "Temporarily disable encryption on the redirect url."
1275
  msgstr ""
1276
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
@@ -1499,8 +1496,8 @@ msgid "The AdCode cannot be empty!"
1499
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
1500
 
1501
  #: dashboard/publisher/adrotate-ads-edit.php:49
1502
- msgid "You didn't use %image% in your AdCode but did select an image!"
1503
- msgstr "Δεν χρησιμοποιήσατε το %image% στον AdCode, αλλά επιλέξατε μια εικόνα!"
1504
 
1505
  #: dashboard/publisher/adrotate-ads-edit.php:52
1506
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1515,10 +1512,22 @@ msgstr ""
1515
  "επαναφέρετε την εικόνα και σώστε πάλι τη διαφήμιση!"
1516
 
1517
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1518
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1519
  msgstr ""
1520
 
1521
- #: dashboard/publisher/adrotate-ads-edit.php:63
1522
  msgid ""
1523
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1524
  "the ad!"
@@ -1526,116 +1535,172 @@ msgstr ""
1526
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
1527
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
1528
 
1529
- #: dashboard/publisher/adrotate-ads-edit.php:66
1530
  msgid "This ad is expired and currently not shown on your website!"
1531
  msgstr ""
1532
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
1533
  "σας!"
1534
 
1535
- #: dashboard/publisher/adrotate-ads-edit.php:69
1536
  msgid "The ad will expire in less than 2 days!"
1537
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
1538
 
1539
- #: dashboard/publisher/adrotate-ads-edit.php:72
1540
  msgid "This ad will expire in less than 7 days!"
1541
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
1542
 
1543
- #: dashboard/publisher/adrotate-ads-edit.php:75
1544
  msgid "This ad has been disabled and does not rotate on your site!"
1545
  msgstr ""
1546
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
1547
 
1548
- #: dashboard/publisher/adrotate-ads-edit.php:101
1549
  msgid "New Advert"
1550
  msgstr "Νέα Διαφήμιση"
1551
 
1552
- #: dashboard/publisher/adrotate-ads-edit.php:103
1553
  msgid "Edit Advert"
1554
  msgstr "Επεξεργασία Διαφήμισης"
1555
 
1556
- #: dashboard/publisher/adrotate-ads-edit.php:106
1557
- #: dashboard/publisher/adrotate-groups-edit.php:48
1558
- msgid "These are required."
1559
- msgstr "Αυτά είναι απαραίτητα."
1560
-
1561
- #: dashboard/publisher/adrotate-ads-edit.php:110
1562
  msgid "Title:"
1563
  msgstr "Τίτλος:"
1564
 
1565
- #: dashboard/publisher/adrotate-ads-edit.php:116
1566
  msgid "AdCode:"
1567
  msgstr "AdCode:"
1568
 
1569
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1570
  msgid ""
1571
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1572
  msgstr ""
1573
 
1574
- #: dashboard/publisher/adrotate-ads-edit.php:121
1575
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1576
  msgstr ""
1577
 
1578
- #: dashboard/publisher/adrotate-ads-edit.php:122
1579
- msgid "Basic Examples:"
1580
- msgstr "Βασικά παραδείγματα:"
1581
 
1582
- #: dashboard/publisher/adrotate-ads-edit.php:127
1583
- #: dashboard/publisher/adrotate-groups-edit.php:335
1584
- msgid "Options:"
1585
- msgstr "Επιλογές:"
 
 
 
 
 
 
 
 
 
 
 
1586
 
1587
- #: dashboard/publisher/adrotate-ads-edit.php:129
1588
  msgid ""
1589
- "Place the cursor where you want to add a tag and click to add it to your "
1590
- "AdCode."
1591
  msgstr ""
1592
- "Τοποθετήστε τον κέρσορα στο σημείο όπου θέλετε να προσθέσετε μια ετικέτα και "
1593
- "κάντε κλικ για να το προσθέσετε στο AdCode σας."
1594
 
1595
- #: dashboard/publisher/adrotate-ads-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1596
  msgid "Activate:"
1597
  msgstr "Ενεργοποίηση:"
1598
 
1599
- #: dashboard/publisher/adrotate-ads-edit.php:137
1600
  msgid "Yes, this ad will be used"
1601
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1602
 
1603
- #: dashboard/publisher/adrotate-ads-edit.php:138
1604
  msgid "No, do not show this ad anywhere"
1605
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1606
 
1607
- #: dashboard/publisher/adrotate-ads-edit.php:145
1608
  #: dashboard/publisher/adrotate-ads-main.php:108
1609
- #: dashboard/publisher/adrotate-groups-edit.php:76
1610
  #: dashboard/publisher/adrotate-groups-main.php:87
1611
  #, fuzzy
1612
  msgid "Get more features with AdRotate Pro."
1613
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1614
 
1615
- #: dashboard/publisher/adrotate-ads-edit.php:148
1616
- #: dashboard/publisher/adrotate-ads-edit.php:181
1617
- #: dashboard/publisher/adrotate-ads-edit.php:317
1618
- #: dashboard/publisher/adrotate-ads-edit.php:442
1619
- #: dashboard/publisher/adrotate-ads-edit.php:485
1620
  msgid "Save Advert"
1621
  msgstr "Αποθήκευση Διαφήμισης"
1622
 
1623
- #: dashboard/publisher/adrotate-ads-edit.php:149
1624
- #: dashboard/publisher/adrotate-ads-edit.php:182
1625
- #: dashboard/publisher/adrotate-ads-edit.php:318
1626
- #: dashboard/publisher/adrotate-ads-edit.php:443
1627
- #: dashboard/publisher/adrotate-ads-edit.php:486
1628
- #: dashboard/publisher/adrotate-groups-edit.php:182
1629
- #: dashboard/publisher/adrotate-groups-edit.php:323
1630
- #: dashboard/publisher/adrotate-groups-edit.php:405
1631
  msgid "Cancel"
1632
  msgstr "Ακύρωση"
1633
 
1634
- #: dashboard/publisher/adrotate-ads-edit.php:153
1635
  msgid "Preview"
1636
  msgstr "Προεπισκόπηση"
1637
 
1638
- #: dashboard/publisher/adrotate-ads-edit.php:159
1639
  msgid ""
1640
  "Note: While this preview is an accurate one, it might look different then it "
1641
  "does on the website."
@@ -1643,399 +1708,267 @@ msgstr ""
1643
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1644
  "διαφορετική από ό, τι στην ιστοσελίδα."
1645
 
1646
- #: dashboard/publisher/adrotate-ads-edit.php:160
1647
  msgid ""
1648
  "This is because of CSS differences. Your themes CSS file is not active here!"
1649
  msgstr ""
1650
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1651
 
1652
- #: dashboard/publisher/adrotate-ads-edit.php:167
1653
- #: dashboard/publisher/adrotate-ads-edit.php:303
1654
- #: dashboard/publisher/adrotate-groups-edit.php:167
1655
- #: dashboard/publisher/adrotate-groups-edit.php:308
1656
  msgid "Usage"
1657
  msgstr "Χρήση"
1658
 
1659
- #: dashboard/publisher/adrotate-ads-edit.php:168
1660
- #: dashboard/publisher/adrotate-ads-edit.php:304
1661
- #: dashboard/publisher/adrotate-groups-edit.php:168
1662
- #: dashboard/publisher/adrotate-groups-edit.php:309
 
 
 
 
 
1663
  msgid ""
1664
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1665
- "where you want the advert to show up."
1666
  msgstr ""
1667
- "Αντιγράψτε το shortcode σε ένα ποστ ή σελίδα. Ο κώδικας PHP μπαίνει μέσα σε "
1668
- "ένα αρχείο θέματος όπου θέλετε να εμφανιστεί η διαφήμιση."
1669
 
1670
- #: dashboard/publisher/adrotate-ads-edit.php:172
1671
- #: dashboard/publisher/adrotate-ads-edit.php:308
1672
- #: dashboard/publisher/adrotate-groups-edit.php:172
1673
- #: dashboard/publisher/adrotate-groups-edit.php:313
1674
  msgid "In a post or page:"
1675
  msgstr "Σε ένα ποστ ή σελίδα:"
1676
 
1677
- #: dashboard/publisher/adrotate-ads-edit.php:174
1678
- #: dashboard/publisher/adrotate-ads-edit.php:310
1679
- #: dashboard/publisher/adrotate-groups-edit.php:174
1680
- #: dashboard/publisher/adrotate-groups-edit.php:315
1681
  msgid "Directly in a theme:"
1682
  msgstr "Άμεσα σε ένα θέμα:"
1683
 
1684
- #: dashboard/publisher/adrotate-ads-edit.php:185
1685
- #: dashboard/publisher/adrotate-groups-edit.php:185
1686
- msgid "Advanced"
1687
- msgstr "Προχωρημένος"
1688
 
1689
- #: dashboard/publisher/adrotate-ads-edit.php:186
1690
- msgid "Everything below is optional."
1691
- msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1692
 
1693
- #: dashboard/publisher/adrotate-ads-edit.php:191
1694
- msgid "Clicktracking:"
1695
- msgstr "κλικ στην επιλογή Παρακολούθηση:"
1696
 
1697
- #: dashboard/publisher/adrotate-ads-edit.php:193
1698
- msgid "Enable click tracking for this advert."
1699
- msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
 
 
 
 
 
 
 
 
 
 
 
 
 
1700
 
1701
- #: dashboard/publisher/adrotate-ads-edit.php:194
 
 
 
 
1702
  msgid ""
1703
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1704
- "those provided by Google AdSense."
 
1705
  msgstr ""
 
 
 
 
1706
 
1707
- #: dashboard/publisher/adrotate-ads-edit.php:195
1708
- #, fuzzy
1709
- msgid "Place the target URL in your adcode - Similar to code example 1."
 
1710
  msgstr ""
1711
- "Το πεδίο διεύθυνσης URL δεν είναι πλέον απαραίτητο. Τοποθετώντας το URL στο "
1712
- "adcode σας και τη δυνατότητα παρακολούθησης κλικ είναι αρκετό."
1713
 
1714
- #: dashboard/publisher/adrotate-ads-edit.php:200
1715
- msgid "Target URL:"
1716
  msgstr ""
1717
 
1718
- #: dashboard/publisher/adrotate-ads-edit.php:203
1719
- msgid ""
1720
- "This field is no longer required. You can place the URL directly in the "
1721
- "adcode (above) instead of %link%."
1722
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
1723
 
1724
- #: dashboard/publisher/adrotate-ads-edit.php:208
1725
  msgid "Responsive:"
1726
  msgstr ""
1727
 
1728
- #: dashboard/publisher/adrotate-ads-edit.php:210
1729
  #, fuzzy
1730
  msgid "Enable responsive support for this advert."
1731
  msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
1732
 
1733
- #: dashboard/publisher/adrotate-ads-edit.php:211
1734
  msgid ""
1735
  "Upload your images to the banner folder and make sure the filename is in the "
1736
  "following format; \"imagename.full.ext\". A full set of sized images is "
1737
  "strongly recommended."
1738
  msgstr ""
1739
 
1740
- #: dashboard/publisher/adrotate-ads-edit.php:213
1741
- msgid ""
1742
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1743
- "for different viewports. Requires jQuery."
1744
- msgstr ""
1745
 
1746
- #: dashboard/publisher/adrotate-ads-edit.php:217
1747
- msgid "Banner image:"
1748
- msgstr "Εικόνα Banner:"
1749
-
1750
- #: dashboard/publisher/adrotate-ads-edit.php:220
1751
- msgid "Media:"
1752
- msgstr "Media:"
1753
-
1754
- #: dashboard/publisher/adrotate-ads-edit.php:220
1755
- msgid "Select Banner"
1756
- msgstr "Επιλέξτε Banner"
1757
-
1758
- #: dashboard/publisher/adrotate-ads-edit.php:222
1759
- msgid "- OR -"
1760
- msgstr "- Ή -"
1761
-
1762
- #: dashboard/publisher/adrotate-ads-edit.php:224
1763
- msgid "Banner folder:"
1764
- msgstr "Φάκελος Banner:"
1765
-
1766
- #: dashboard/publisher/adrotate-ads-edit.php:225
1767
- msgid "No image selected"
1768
- msgstr "Καμία επιλεγμένη εικόνα"
1769
-
1770
- #: dashboard/publisher/adrotate-ads-edit.php:229
1771
- msgid "Use %image% in the code. Accepted files are:"
1772
- msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
1773
-
1774
- #: dashboard/publisher/adrotate-ads-edit.php:229
1775
- msgid ""
1776
- "Use either the text field or the dropdown. If the textfield has content that "
1777
- "field has priority."
1778
- msgstr ""
1779
- "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1780
- "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1781
-
1782
- #: dashboard/publisher/adrotate-ads-edit.php:233
1783
- msgid "Weight:"
1784
- msgstr "Βάρος:"
1785
-
1786
- #: dashboard/publisher/adrotate-ads-edit.php:233
1787
  #, fuzzy
1788
  msgid "AdRotate Pro only"
1789
  msgstr "AdRotate Pro"
1790
 
1791
- #: dashboard/publisher/adrotate-ads-edit.php:236
1792
  msgid "Barely visible"
1793
  msgstr "μόλις ορατό"
1794
 
1795
- #: dashboard/publisher/adrotate-ads-edit.php:237
1796
  msgid "Less than average"
1797
  msgstr "Λιγότερο από το μέσο όρο"
1798
 
1799
- #: dashboard/publisher/adrotate-ads-edit.php:238
1800
  msgid "Normal coverage"
1801
  msgstr "Κανονική κάλυψη"
1802
 
1803
- #: dashboard/publisher/adrotate-ads-edit.php:239
1804
  msgid "More than average"
1805
  msgstr "Περισσότερο από μέσο"
1806
 
1807
- #: dashboard/publisher/adrotate-ads-edit.php:240
1808
  msgid "Best visibility"
1809
  msgstr "Καλύτερη ορατότητα"
1810
 
1811
- #: dashboard/publisher/adrotate-ads-edit.php:245
1812
- #: dashboard/publisher/adrotate-groups-edit.php:212
1813
  msgid "Sortorder:"
1814
  msgstr "Σειρά ταξινόμησης:"
1815
 
1816
- #: dashboard/publisher/adrotate-ads-edit.php:247
1817
- #: dashboard/publisher/adrotate-groups-edit.php:214
1818
  msgid "For administrative purposes set a sortorder."
1819
  msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1820
 
1821
- #: dashboard/publisher/adrotate-ads-edit.php:247
1822
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1823
  msgstr ""
1824
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1825
  "διαφήμισης."
1826
 
1827
- #: dashboard/publisher/adrotate-ads-edit.php:252
1828
  msgid ""
1829
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1830
- "attention."
1831
  msgstr ""
1832
 
1833
- #: dashboard/publisher/adrotate-ads-edit.php:252
1834
- #: dashboard/publisher/adrotate-ads-edit.php:301
1835
- #: dashboard/publisher/adrotate-ads-edit.php:399
1836
- #: dashboard/publisher/adrotate-groups-edit.php:218
1837
- #, fuzzy
1838
- msgid "Upgrade today"
1839
- msgstr "Σήμερα"
1840
-
1841
- #: dashboard/publisher/adrotate-ads-edit.php:254
1842
- #, fuzzy
1843
- msgid "Geo Location in AdRotate Pro"
1844
- msgstr "Γεωγραφική Τοποθεσία"
1845
 
1846
- #: dashboard/publisher/adrotate-ads-edit.php:255
1847
  msgid ""
1848
- "This works if you assign the advert to a group and enable that group to use "
1849
- "Geo Targeting."
1850
  msgstr ""
1851
- "Αυτό λειτουργεί, εάν αντιστοιχίσετε την αγγελία σε μια ομάδα και επιτρέψετε "
1852
- "αυτή την ομάδα να χρησιμοποιήσει Γεωγραφική Στόχευση."
1853
 
1854
- #: dashboard/publisher/adrotate-ads-edit.php:259
1855
  #, fuzzy
1856
  msgid "Cities/States:"
1857
  msgstr "Πόλεις:"
1858
 
1859
- #: dashboard/publisher/adrotate-ads-edit.php:262
1860
- #: dashboard/publisher/adrotate-ads-edit.php:295
1861
- #, fuzzy
1862
- msgid "Usage:"
1863
- msgstr "Χρήση"
1864
-
1865
- #: dashboard/publisher/adrotate-ads-edit.php:263
1866
- msgid "A comma separated list of cities and/or states"
1867
  msgstr ""
1868
 
1869
- #: dashboard/publisher/adrotate-ads-edit.php:263
1870
  msgid ""
1871
  "AdRotate does not check the validity of names so make sure you spell them "
1872
  "correctly!"
1873
  msgstr ""
1874
 
1875
- #: dashboard/publisher/adrotate-ads-edit.php:267
1876
  #, fuzzy
1877
  msgid "Countries:"
1878
  msgstr "Πόλεις:"
1879
 
1880
- #: dashboard/publisher/adrotate-ads-edit.php:296
1881
  #, fuzzy
1882
  msgid "Select the countries you want the adverts to show in."
1883
  msgstr ""
1884
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1885
  "εμφανίζονται"
1886
 
1887
- #: dashboard/publisher/adrotate-ads-edit.php:296
1888
  msgid "Cities take priority and will be filtered first."
1889
  msgstr ""
1890
 
1891
- #: dashboard/publisher/adrotate-ads-edit.php:301
1892
- #, fuzzy
1893
- msgid "Target your audience with Geo Location in AdRotate Pro"
1894
- msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1895
-
1896
- #: dashboard/publisher/adrotate-ads-edit.php:321
1897
- msgid "Schedule"
1898
- msgstr "Πρόγραμμα"
1899
-
1900
- #: dashboard/publisher/adrotate-ads-edit.php:322
1901
- msgid "From when to when is the advert visible?"
1902
- msgstr "Από πότε έως πότε είναι ορατή η διαφήμιση;"
1903
-
1904
- #: dashboard/publisher/adrotate-ads-edit.php:326
1905
- msgid "Start date (day/month/year):"
1906
- msgstr "Ημερομηνία Έναρξης (ημέρα / μήνας / έτος):"
1907
-
1908
- #: dashboard/publisher/adrotate-ads-edit.php:347
1909
- msgid "End date (day/month/year):"
1910
- msgstr "Ημερομηνία λήξης (ημέρα / μήνας / έτος):"
1911
-
1912
- #: dashboard/publisher/adrotate-ads-edit.php:370
1913
- msgid "Start time (hh:mm):"
1914
- msgstr "Ώρα έναρξης (ωω: λλ):"
1915
-
1916
- #: dashboard/publisher/adrotate-ads-edit.php:377
1917
- msgid "End time (hh:mm):"
1918
- msgstr "Ώρα λήξης (ωω: λλ):"
1919
-
1920
- #: dashboard/publisher/adrotate-ads-edit.php:387
1921
- msgid "Maximum Clicks:"
1922
- msgstr "Μέγιστα Κλικ:"
1923
-
1924
- #: dashboard/publisher/adrotate-ads-edit.php:388
1925
- #: dashboard/publisher/adrotate-ads-edit.php:390
1926
- msgid "Leave empty or 0 to skip this."
1927
- msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1928
-
1929
- #: dashboard/publisher/adrotate-ads-edit.php:389
1930
- msgid "Maximum Impressions:"
1931
- msgstr "Μέγιστες Εμφανίσεις:"
1932
-
1933
- #: dashboard/publisher/adrotate-ads-edit.php:395
1934
- msgid ""
1935
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1936
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1937
- "hours. 6AM is 6:00 hours."
1938
- msgstr ""
1939
- "Η ώρα χρησιμοποιεί ένα ρολόι 24 ωρών. Αν έχεις συνηθίσει στο AM / PM σύστημα "
1940
- "θυμήσου αυτό: Εάν η ώρα έναρξης ή λήξης είναι μετά το μεσημεριανό γεύμα, "
1941
- "πρόσθεσε 12 ώρες. 2ΡΜ είναι 14:00 ώρες το μεσημέρι. 6ΑΜ είναι 6:00 ώρες το "
1942
- "πρωί."
1943
-
1944
- #: dashboard/publisher/adrotate-ads-edit.php:395
1945
- msgid ""
1946
- "The maximum clicks and impressions are measured over the set schedule only. "
1947
- "Every schedule can have it's own limit!"
1948
- msgstr ""
1949
- "Τα μέγιστα κλικ και οι εμφανίσεις μετρώνται κατά τη ρύθμιση του "
1950
- "προγράμματος. Κάθε πρόγραμμα μπορεί να έχει το δικό του όριο!"
1951
-
1952
- #: dashboard/publisher/adrotate-ads-edit.php:399
1953
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1954
  msgstr ""
1955
 
1956
- #: dashboard/publisher/adrotate-ads-edit.php:401
1957
- #, fuzzy
1958
- msgid "Choose Multiple Schedules in AdRotate Pro"
1959
- msgstr "Διαθέσιμο στο AdRotate Pro"
1960
-
1961
- #: dashboard/publisher/adrotate-ads-edit.php:402
1962
- msgid "You can add, edit or delete schedules from the"
1963
- msgstr ""
1964
-
1965
- #: dashboard/publisher/adrotate-ads-edit.php:402
1966
- msgid "dashboard. Save your advert first!"
1967
- msgstr ""
1968
-
1969
- #: dashboard/publisher/adrotate-ads-edit.php:409
1970
- msgid "From / Until"
1971
- msgstr "Από / Έως"
1972
-
1973
- #: dashboard/publisher/adrotate-ads-edit.php:411
1974
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1975
- #: dashboard/publisher/adrotate-ads-main.php:45
1976
- #: dashboard/publisher/adrotate-ads-report.php:35
1977
- #: dashboard/publisher/adrotate-groups-edit.php:356
1978
- #: dashboard/publisher/adrotate-groups-main.php:37
1979
- #: dashboard/publisher/adrotate-groups-report.php:41
1980
- msgid "Clicks"
1981
- msgstr "Clicks"
1982
-
1983
- #: dashboard/publisher/adrotate-ads-edit.php:412
1984
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1985
- #: dashboard/publisher/adrotate-ads-report.php:34
1986
- #: dashboard/publisher/adrotate-groups-edit.php:355
1987
- #: dashboard/publisher/adrotate-groups-main.php:35
1988
- #: dashboard/publisher/adrotate-groups-report.php:40
1989
- msgid "Impressions"
1990
- msgstr "Εμφανίσεις"
1991
-
1992
- #: dashboard/publisher/adrotate-ads-edit.php:421
1993
- #, fuzzy
1994
- msgid "impressions per day"
1995
- msgstr "Εμφανίσεις"
1996
-
1997
- #: dashboard/publisher/adrotate-ads-edit.php:437
1998
- msgid "In use by this advert."
1999
- msgstr ""
2000
-
2001
- #: dashboard/publisher/adrotate-ads-edit.php:448
2002
  msgid "Select Groups"
2003
  msgstr "Επιλέξτε Ομάδες"
2004
 
2005
- #: dashboard/publisher/adrotate-ads-edit.php:449
2006
- msgid "Optionally select the group(s) this ad belongs to."
2007
- msgstr "Προαιρετικά, επιλέξτε την ομάδα (-ες) όπου ανήκει αυτή η διαφήμιση."
2008
-
2009
- #: dashboard/publisher/adrotate-ads-edit.php:454
2010
  msgid "ID - Name"
2011
  msgstr "ID - Όνομα"
2012
 
2013
- #: dashboard/publisher/adrotate-ads-edit.php:455
2014
  msgid "Ads in group"
2015
  msgstr "Διαφημίσεις στην ομάδα"
2016
 
2017
- #: dashboard/publisher/adrotate-ads-edit.php:464
2018
  #: dashboard/publisher/adrotate-groups-main.php:58
2019
  msgid "Default"
2020
  msgstr "Προεπιλογή"
2021
 
2022
- #: dashboard/publisher/adrotate-ads-edit.php:465
2023
  #: dashboard/publisher/adrotate-groups-main.php:59
2024
  msgid "Dynamic"
2025
  msgstr "Δυναμική"
2026
 
2027
- #: dashboard/publisher/adrotate-ads-edit.php:465
2028
  #: dashboard/publisher/adrotate-groups-main.php:59
2029
  #, fuzzy
2030
  msgid "second rotation"
2031
  msgstr "Γεωγραφική Τοποθεσία"
2032
 
2033
- #: dashboard/publisher/adrotate-ads-edit.php:466
2034
  #: dashboard/publisher/adrotate-groups-main.php:60
2035
  msgid "Block"
2036
  msgstr "Απαγόρευση"
2037
 
2038
- #: dashboard/publisher/adrotate-ads-edit.php:466
2039
  #: dashboard/publisher/adrotate-groups-main.php:60
2040
  #, fuzzy
2041
  msgid "grid"
@@ -2043,19 +1976,19 @@ msgstr ""
2043
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
2044
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
2045
 
2046
- #: dashboard/publisher/adrotate-ads-edit.php:467
2047
- #: dashboard/publisher/adrotate-groups-edit.php:220
2048
  #: dashboard/publisher/adrotate-groups-main.php:61
2049
  msgid "Post Injection"
2050
  msgstr "Εμβολιασμός Δημοσίευσης"
2051
 
2052
- #: dashboard/publisher/adrotate-ads-edit.php:468
2053
  #: dashboard/publisher/adrotate-groups-main.php:62
2054
  msgid "Geolocation"
2055
  msgstr "Γεωγραφική τοποθεσία"
2056
 
2057
- #: dashboard/publisher/adrotate-ads-edit.php:474
2058
- #: dashboard/publisher/adrotate-groups-edit.php:62
2059
  #: dashboard/publisher/adrotate-groups-main.php:69
2060
  msgid "Mode"
2061
  msgstr "Λειτουργία"
@@ -2091,6 +2024,23 @@ msgstr ""
2091
  msgid "Title"
2092
  msgstr "Τίτλος"
2093
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2094
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2095
  #: dashboard/publisher/adrotate-ads-main.php:47
2096
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2152,7 +2102,7 @@ msgid "For 7 days"
2152
  msgstr "Για 7 ημέρες"
2153
 
2154
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2155
- #: dashboard/publisher/adrotate-groups-edit.php:398
2156
  msgid "Configuration errors."
2157
  msgstr "Σφάλματα Διαμόρφωσης."
2158
 
@@ -2166,7 +2116,7 @@ msgid "Export to XML"
2166
  msgstr "Επιλογές εξαγωγής"
2167
 
2168
  #: dashboard/publisher/adrotate-ads-main.php:42
2169
- #: dashboard/publisher/adrotate-groups-edit.php:357
2170
  msgid "Weight"
2171
  msgstr "Βαρύτητα"
2172
 
@@ -2231,24 +2181,24 @@ msgstr "Νέα Ομάδα"
2231
  msgid "Edit Group"
2232
  msgstr "Επεξεργασία Ομάδας"
2233
 
2234
- #: dashboard/publisher/adrotate-groups-edit.php:56
2235
  msgid "Name:"
2236
  msgstr "Όνομα:"
2237
 
2238
- #: dashboard/publisher/adrotate-groups-edit.php:65
2239
  msgid "Default - Show one ad at a time"
2240
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
2241
 
2242
- #: dashboard/publisher/adrotate-groups-edit.php:66
2243
  msgid "Dynamic Mode - Show a different ad every few seconds"
2244
  msgstr ""
2245
  "Δυναμική Λειτουργία - Εμφάνισε διαφορετική διαφήμιση κάθε λίγα δευτερόλεπτα"
2246
 
2247
- #: dashboard/publisher/adrotate-groups-edit.php:67
2248
  msgid "Block Mode - Show a block of ads"
2249
  msgstr "Λειτουργία Πεδίου - Εμφάνισε ένα μπλοκ διαφημίσεων"
2250
 
2251
- #: dashboard/publisher/adrotate-groups-edit.php:71
2252
  #, fuzzy
2253
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2254
  msgstr ""
@@ -2256,53 +2206,48 @@ msgstr ""
2256
  "showoff\" να φορτωθούν. Μπορείτε να τα ενεργοποιήσετε στις Ρυθμίσεις "
2257
  "AdRotate."
2258
 
2259
- #: dashboard/publisher/adrotate-groups-edit.php:78
2260
- #: dashboard/publisher/adrotate-groups-edit.php:135
2261
  msgid "Dynamic and Block Mode"
2262
  msgstr "Δυναμική και Πεδίου Λειτουργία"
2263
 
2264
- #: dashboard/publisher/adrotate-groups-edit.php:79
2265
  msgid "Only required if your group is in Dynamic or Block mode."
2266
  msgstr "Απαιτείται μόνο εάν η ομάδα σας είναι σε Δυναμική ή λειτουργία Πεδίου."
2267
 
2268
- #: dashboard/publisher/adrotate-groups-edit.php:83
2269
- msgid "Block shape and border"
2270
- msgstr "Σχήμα και περίγραμμα Πεδίου"
2271
 
2272
- #: dashboard/publisher/adrotate-groups-edit.php:110
2273
  msgid "rows"
2274
  msgstr "γραμμές"
2275
 
2276
- #: dashboard/publisher/adrotate-groups-edit.php:123
2277
  msgid "columns"
2278
  msgstr "στήλες"
2279
 
2280
- #: dashboard/publisher/adrotate-groups-edit.php:126
2281
  msgid "Block Mode"
2282
  msgstr "Λειτουργία Πεδίου"
2283
 
2284
- #: dashboard/publisher/adrotate-groups-edit.php:126
2285
- #, fuzzy
2286
- msgid ""
2287
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2288
- "showing a maximum of 6 ads. Default: 2x2."
2289
  msgstr ""
2290
- "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
2291
- "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
2292
 
2293
- #: dashboard/publisher/adrotate-groups-edit.php:130
2294
- msgid "Advert Width and Height"
2295
- msgstr "Πλάτος και Ύψος Διαφήμισης"
2296
 
2297
- #: dashboard/publisher/adrotate-groups-edit.php:132
2298
  msgid "pixel(s) wide"
2299
  msgstr "πλάτος εικονοστοιχείου (ων) "
2300
 
2301
- #: dashboard/publisher/adrotate-groups-edit.php:132
2302
  msgid "pixel(s) high."
2303
  msgstr "ύψος εικονοστοιχείου(ων)."
2304
 
2305
- #: dashboard/publisher/adrotate-groups-edit.php:135
2306
  #, fuzzy
2307
  msgid ""
2308
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2311,235 +2256,242 @@ msgstr ""
2311
  "Καθορίστε το μέγιστο μέγεθος των διαφημίσεων σε pixels πλυν περιθωρίου. Το "
2312
  "μέγεθος μπορεί να είναι «αυτόματο» (Δεν συνίσταται). Προεπιλογή: 125/125."
2313
 
2314
- #: dashboard/publisher/adrotate-groups-edit.php:139
2315
  msgid "Automated refresh"
2316
  msgstr "Αυτόματη ανανέωση"
2317
 
2318
- #: dashboard/publisher/adrotate-groups-edit.php:158
2319
  msgid "seconds."
2320
  msgstr "δευτερόλεπτα."
2321
 
2322
- #: dashboard/publisher/adrotate-groups-edit.php:161
2323
  msgid "Dynamic Mode"
2324
  msgstr "Δυναμική Λειτουργία"
2325
 
2326
- #: dashboard/publisher/adrotate-groups-edit.php:161
2327
  msgid ""
2328
  "Load a new advert in this interval without reloading the page. Default: 6."
2329
  msgstr ""
2330
  "Τοποθετήστε μια νέα διαφήμιση σε αυτό το διάστημα, χωρίς επαναφόρτωση της "
2331
  "σελίδας. Προεπιλογή: 6."
2332
 
2333
- #: dashboard/publisher/adrotate-groups-edit.php:181
2334
- #: dashboard/publisher/adrotate-groups-edit.php:322
2335
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2336
  #, fuzzy
2337
  msgid "Save Group"
2338
  msgstr "Αποθήκευση"
2339
 
2340
- #: dashboard/publisher/adrotate-groups-edit.php:189
2341
  msgid "Advert Margin"
2342
  msgstr "Περιθώριο διαφήμισης"
2343
 
2344
- #: dashboard/publisher/adrotate-groups-edit.php:191
2345
  msgid "pixel(s)"
2346
  msgstr "εικονοστοιχείο(α)"
2347
 
2348
- #: dashboard/publisher/adrotate-groups-edit.php:194
2349
  #, fuzzy
2350
  msgid "A transparent area outside the advert in pixels. Default: 0."
2351
  msgstr ""
2352
  "Ένα διαφαωές περίγραμμα έξω από την διαφήμιση σε pixels. Προεπιλογή: 1."
2353
 
2354
- #: dashboard/publisher/adrotate-groups-edit.php:194
2355
  #, fuzzy
2356
  msgid "Set to 0 to disable."
2357
  msgstr ""
2358
  "Προεπιλογή: 10. Βάλτε το στο 0 για να απενεργοποιήσετε τον χρονομετρητή."
2359
 
2360
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2361
  #, fuzzy
2362
  msgid "Align the group"
2363
  msgstr "Διαφημίσεις στην ομάδα"
2364
 
2365
- #: dashboard/publisher/adrotate-groups-edit.php:201
2366
  #, fuzzy
2367
  msgid "None (Default)"
2368
  msgstr "Προεπιλογή"
2369
 
2370
- #: dashboard/publisher/adrotate-groups-edit.php:202
2371
  msgid "Left"
2372
  msgstr ""
2373
 
2374
- #: dashboard/publisher/adrotate-groups-edit.php:203
2375
  #, fuzzy
2376
  msgid "Right"
2377
  msgstr "Βαρύτητα"
2378
 
2379
- #: dashboard/publisher/adrotate-groups-edit.php:204
2380
  msgid "Center"
2381
  msgstr ""
2382
 
2383
- #: dashboard/publisher/adrotate-groups-edit.php:208
2384
  msgid ""
2385
  "Align the group in your post or page. Using 'center' may affect your margin "
2386
  "setting. Not every theme supports this feature."
2387
  msgstr ""
2388
 
2389
- #: dashboard/publisher/adrotate-groups-edit.php:214
2390
  msgid "Leave empty or 0 to skip this. Will default to group id."
2391
  msgstr ""
2392
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
2393
  "ομάδας."
2394
 
2395
- #: dashboard/publisher/adrotate-groups-edit.php:218
2396
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2397
  msgstr ""
2398
 
2399
- #: dashboard/publisher/adrotate-groups-edit.php:221
2400
- msgid "Insert ads to the begin or end of a post/page."
2401
- msgstr ""
2402
-
2403
- #: dashboard/publisher/adrotate-groups-edit.php:224
2404
  msgid "Include ads in categories?"
2405
  msgstr "Να συμπεριληφθούν οι διαφημίσεις σε κατηγορίες;"
2406
 
2407
- #: dashboard/publisher/adrotate-groups-edit.php:228
2408
- #: dashboard/publisher/adrotate-groups-edit.php:269
2409
  #, fuzzy
2410
  msgid "Disabled"
2411
  msgstr "Απενεργοποιημένες διαφημίσεις"
2412
 
2413
- #: dashboard/publisher/adrotate-groups-edit.php:229
2414
- #: dashboard/publisher/adrotate-groups-edit.php:270
2415
  #, fuzzy
2416
  msgid "Before content"
2417
  msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
2418
 
2419
- #: dashboard/publisher/adrotate-groups-edit.php:230
2420
- #: dashboard/publisher/adrotate-groups-edit.php:271
2421
  #, fuzzy
2422
  msgid "After content"
2423
  msgstr "Πριν και μετά το περιεχόμενο"
2424
 
2425
- #: dashboard/publisher/adrotate-groups-edit.php:231
2426
- #: dashboard/publisher/adrotate-groups-edit.php:272
2427
  #, fuzzy
2428
  msgid "Before and after content"
2429
  msgstr "Πριν και μετά το περιεχόμενο"
2430
 
2431
- #: dashboard/publisher/adrotate-groups-edit.php:232
2432
- #: dashboard/publisher/adrotate-groups-edit.php:273
2433
  #, fuzzy
2434
  msgid "After..."
2435
  msgstr "Μετά τη διαφήμιση"
2436
 
2437
- #: dashboard/publisher/adrotate-groups-edit.php:238
2438
- #: dashboard/publisher/adrotate-groups-edit.php:279
2439
  msgid "the first paragraph"
2440
  msgstr ""
2441
 
2442
- #: dashboard/publisher/adrotate-groups-edit.php:239
2443
- #: dashboard/publisher/adrotate-groups-edit.php:280
2444
  msgid "the 2nd paragraph"
2445
  msgstr ""
2446
 
2447
- #: dashboard/publisher/adrotate-groups-edit.php:240
2448
- #: dashboard/publisher/adrotate-groups-edit.php:281
2449
  msgid "the 3rd paragraph"
2450
  msgstr ""
2451
 
2452
- #: dashboard/publisher/adrotate-groups-edit.php:241
2453
- #: dashboard/publisher/adrotate-groups-edit.php:282
2454
  msgid "the 4th paragraph"
2455
  msgstr ""
2456
 
2457
- #: dashboard/publisher/adrotate-groups-edit.php:243
2458
- #: dashboard/publisher/adrotate-groups-edit.php:284
2459
  msgid "every 2nd paragraph"
2460
  msgstr ""
2461
 
2462
- #: dashboard/publisher/adrotate-groups-edit.php:244
2463
- #: dashboard/publisher/adrotate-groups-edit.php:285
2464
  msgid "every 3rd paragraph"
2465
  msgstr ""
2466
 
2467
- #: dashboard/publisher/adrotate-groups-edit.php:245
2468
- #: dashboard/publisher/adrotate-groups-edit.php:286
2469
  msgid "every 4th paragraph"
2470
  msgstr ""
2471
 
2472
- #: dashboard/publisher/adrotate-groups-edit.php:246
2473
- #: dashboard/publisher/adrotate-groups-edit.php:287
2474
  msgid "every 5th paragraph"
2475
  msgstr ""
2476
 
2477
- #: dashboard/publisher/adrotate-groups-edit.php:247
2478
- #: dashboard/publisher/adrotate-groups-edit.php:288
2479
  msgid "every 6th paragraph"
2480
  msgstr ""
2481
 
2482
- #: dashboard/publisher/adrotate-groups-edit.php:248
2483
- #: dashboard/publisher/adrotate-groups-edit.php:289
2484
  msgid "every 7th paragraph"
2485
  msgstr ""
2486
 
2487
- #: dashboard/publisher/adrotate-groups-edit.php:249
2488
- #: dashboard/publisher/adrotate-groups-edit.php:290
2489
  msgid "every 8th paragraph"
2490
  msgstr ""
2491
 
2492
- #: dashboard/publisher/adrotate-groups-edit.php:255
2493
  msgid "Which categories?"
2494
  msgstr "Ποιες κατηγορίες;"
2495
 
2496
- #: dashboard/publisher/adrotate-groups-edit.php:260
2497
  msgid "Click the categories posts you want the adverts to show in."
2498
  msgstr ""
2499
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
2500
  "εμφανίζονται"
2501
 
2502
- #: dashboard/publisher/adrotate-groups-edit.php:265
2503
  msgid "Include ads in pages?"
2504
  msgstr "Περιλογή διαφημίσεων στις σελίδες;"
2505
 
2506
- #: dashboard/publisher/adrotate-groups-edit.php:296
2507
  msgid "Which pages?"
2508
  msgstr "Ποιες σελίδες;"
2509
 
2510
- #: dashboard/publisher/adrotate-groups-edit.php:301
2511
  msgid "Click the pages you want the adverts to show in."
2512
  msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
2513
 
2514
- #: dashboard/publisher/adrotate-groups-edit.php:326
2515
  msgid "Wrapper code"
2516
  msgstr "Κώδικας περιτύλιγμα"
2517
 
2518
- #: dashboard/publisher/adrotate-groups-edit.php:327
2519
- msgid "Wraps around each ad."
2520
- msgstr "Αναδιπλώνεται γύρω από κάθε διαφήμιση."
2521
 
2522
- #: dashboard/publisher/adrotate-groups-edit.php:331
2523
  msgid "Before ad"
2524
  msgstr "Πριν τη διαφήμιση"
2525
 
2526
- #: dashboard/publisher/adrotate-groups-edit.php:336
2527
- msgid "HTML/JavaScript allowed, use with care!"
2528
- msgstr "HTML / JavaScript επιτρέπεται, χρησιμοποιήστε με προσοχή!"
2529
 
2530
- #: dashboard/publisher/adrotate-groups-edit.php:340
2531
  msgid "After ad"
2532
  msgstr "Μετά τη διαφήμιση"
2533
 
2534
- #: dashboard/publisher/adrotate-groups-edit.php:349
2535
  msgid "Select Ads"
2536
  msgstr "Επιλέξτε Διαφημίσεις"
2537
 
2538
- #: dashboard/publisher/adrotate-groups-edit.php:358
2539
  msgid "Visible until"
2540
  msgstr "Ορατό μέχρι"
2541
 
2542
- #: dashboard/publisher/adrotate-groups-edit.php:391
2543
  msgid "No ads created!"
2544
  msgstr "Δεν δημιουργήθηκαν διαφημίσεις!"
2545
 
@@ -2571,6 +2523,95 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2571
  msgid "Statistics for group"
2572
  msgstr "Στατιστικά για την ομάδα"
2573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2574
  #, fuzzy
2575
  #~ msgid "AdRotate Website."
2576
  #~ msgstr "Κατάστημα του AdRotate"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:809
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:812
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-output.php:745
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
+ #: adrotate-output.php:746
34
  msgid ""
35
  "WordPress was unable to verify the authenticity of the url you have clicked. "
36
  "Verify if the url used is valid or log in via your browser."
39
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
40
  "browser σας."
41
 
42
+ #: adrotate-output.php:747
43
  msgid ""
44
  "If you have received the url you want to visit via email, you are being "
45
  "tricked!"
47
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
48
  "ξεγέλασαν!"
49
 
50
+ #: adrotate-output.php:748
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
+ #: adrotate-output.php:766
55
  msgid ""
56
  "Error, Ad is not available at this time due to schedule/geolocation "
57
  "restrictions or does not exist!"
59
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
60
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
61
 
62
+ #: adrotate-output.php:768
63
  msgid ""
64
  "Error, Ad is not available at this time due to schedule/geolocation "
65
  "restrictions!"
67
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
68
  "χρονικών περιορισμών."
69
 
70
+ #: adrotate-output.php:775 adrotate-output.php:777
71
  msgid ""
72
  "Either there are no banners, they are disabled or none qualified for this "
73
  "location!"
75
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
76
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
77
 
78
+ #: adrotate-output.php:783
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
+ #: adrotate-output.php:789
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
+ #: adrotate-output.php:794
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
+ #: adrotate-output.php:800
92
  msgid ""
93
  "There was an error locating the database tables for AdRotate. Please "
94
  "deactivate and re-activate AdRotate from the plugin page!!"
97
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
98
  "προσθέτων!!"
99
 
100
+ #: adrotate-output.php:800
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
+ #: adrotate-output.php:806
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
+ #: adrotate-output.php:831
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
+ #: adrotate-output.php:831
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
+ #: adrotate-output.php:833
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
+ #: adrotate-output.php:833
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
+ #: adrotate-output.php:835
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
+ #: adrotate-output.php:835
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
+ #: adrotate-output.php:837
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
+ #: adrotate-output.php:837
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
+ #: adrotate-output.php:837
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
+ #: adrotate-output.php:837
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
+ #: adrotate-output.php:849
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
+ #: adrotate-output.php:850
154
  msgid ""
155
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
156
  "to the <strong>PRO</strong> version"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:850
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:850
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
+ #: adrotate-output.php:894
169
  msgid ""
170
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
171
+ "this menu. Check out the"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:894
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
+ #: adrotate-output.php:894 adrotate-output.php:971
179
+ #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:894
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:930
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
+ #: adrotate-output.php:931
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:933
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:934
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
+ #: adrotate-output.php:935
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
+ #: adrotate-output.php:936
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
+ #: adrotate-output.php:937
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:963
221
  #, fuzzy
222
  msgid "Help AdRotate Grow"
223
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
224
 
225
+ #: adrotate-output.php:964
226
  msgid "Brought to you by"
227
  msgstr "Σας προσφέρεται από"
228
 
229
+ #: adrotate-output.php:971
230
  msgid ""
231
  "A lot of users only think to review AdRotate when something goes wrong while "
232
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:971
236
  msgid "If you find AdRotate useful please leave your honest"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:971
240
  msgid "rating"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:971
244
  #, fuzzy
245
  msgid "review"
246
  msgstr "Αξιολογήστε και σχολιάστε"
247
 
248
+ #: adrotate-output.php:971
249
  msgid "on WordPress.org to help AdRotate grow in a positive way"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:974
253
  msgid ""
254
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
255
  "out more about what I can do for you!"
257
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
258
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
259
 
260
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
261
  msgid "Visit the"
262
  msgstr "Επισκεφθείτε το"
263
 
264
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
265
  msgid "website"
266
  msgstr "ιστοσελίδα"
267
 
268
+ #: adrotate-output.php:1004
269
  msgid "Available in AdRotate Pro"
270
  msgstr "Διαθέσιμο στο AdRotate Pro"
271
 
272
+ #: adrotate-output.php:1004
273
  #, fuzzy
274
  msgid "More information..."
275
  msgstr "Περισσότερες πληροφορίες"
276
 
277
+ #: adrotate-output.php:1005
278
  msgid "This feature is available in AdRotate Pro"
279
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
280
 
281
+ #: adrotate-output.php:1005
282
  #, fuzzy
283
  msgid "Learn more"
284
  msgstr "Μάθετε περισσότερα σχετικά"
285
 
286
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
287
+ #: dashboard/publisher/adrotate-ads-edit.php:245
288
  msgid "January"
289
  msgstr "Ιανουάριος"
290
 
291
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
292
+ #: dashboard/publisher/adrotate-ads-edit.php:246
293
  msgid "February"
294
  msgstr "Φεβρουάριος"
295
 
296
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
297
+ #: dashboard/publisher/adrotate-ads-edit.php:247
298
  msgid "March"
299
  msgstr "Μάρτιος"
300
 
301
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
302
+ #: dashboard/publisher/adrotate-ads-edit.php:248
303
  msgid "April"
304
  msgstr "Απρίλιος"
305
 
306
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
307
+ #: dashboard/publisher/adrotate-ads-edit.php:249
308
  msgid "May"
309
  msgstr "Μάιος"
310
 
311
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
312
+ #: dashboard/publisher/adrotate-ads-edit.php:250
313
  msgid "June"
314
  msgstr "Ιούνιος"
315
 
316
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
317
+ #: dashboard/publisher/adrotate-ads-edit.php:251
318
  msgid "July"
319
  msgstr "Ιούλιος"
320
 
321
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
322
+ #: dashboard/publisher/adrotate-ads-edit.php:252
323
  msgid "August"
324
  msgstr "Αύγουστος"
325
 
326
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
327
+ #: dashboard/publisher/adrotate-ads-edit.php:253
328
  msgid "September"
329
  msgstr "Σεπτέμβριος"
330
 
331
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
332
+ #: dashboard/publisher/adrotate-ads-edit.php:254
333
  msgid "October"
334
  msgstr "Οκτώβριος"
335
 
336
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
337
+ #: dashboard/publisher/adrotate-ads-edit.php:255
338
  msgid "November"
339
  msgstr "Νοέμβριος"
340
 
341
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
342
+ #: dashboard/publisher/adrotate-ads-edit.php:256
343
  msgid "December"
344
  msgstr "Δεκέμβριος"
345
 
393
  msgid "Choose what you want to use this widget for"
394
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
395
 
396
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
397
  msgid "ID:"
398
  msgstr "Κωδ:"
399
 
401
  msgid "Fill in the ID of the type you want to display!"
402
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
403
 
404
+ #: adrotate.php:107
405
  msgid "General Info"
406
  msgstr "Γενικές Πληροφορίες"
407
 
408
+ #: adrotate.php:108
409
  msgid "AdRotate Pro"
410
  msgstr "AdRotate Pro"
411
 
412
+ #: adrotate.php:109
413
  msgid "Manage Ads"
414
  msgstr "Διαχείριση Διαφημίσεων"
415
 
416
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
417
  msgid "Manage Groups"
418
  msgstr "Διαχείριση Ομάδων"
419
 
420
+ #: adrotate.php:111 adrotate.php:440
 
421
  #, fuzzy
422
  msgid "Manage Schedules"
423
  msgstr "Διαχείριση"
424
 
425
+ #: adrotate.php:112
426
  #, fuzzy
427
  msgid "Manage Media"
428
  msgstr "Media:"
429
 
430
+ #: adrotate.php:113
431
  msgid "Settings"
432
  msgstr "Ρυθμίσεις"
433
 
434
+ #: adrotate.php:136
435
  msgid "AdRotate Info"
436
  msgstr "Πληροφορίες του AdRotate"
437
 
438
+ #: adrotate.php:157
439
  #, fuzzy
440
  msgid "AdRotate Professional"
441
  msgstr "AdRotate Pro"
442
 
443
+ #: adrotate.php:200
444
  msgid "Ad Management"
445
  msgstr "Διαχείριση Διαφημίσεων"
446
 
447
+ #: adrotate.php:203
448
  msgid "Ad created"
449
  msgstr "Η διαφήμιση δημιουργήθηκε"
450
 
451
+ #: adrotate.php:205
452
  msgid "Ad updated"
453
  msgstr "Η διαφήμιση ανανεώθηκε"
454
 
455
+ #: adrotate.php:207
456
  msgid "Ad(s) deleted"
457
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
458
 
459
+ #: adrotate.php:209
460
  msgid "Ad(s) statistics reset"
461
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
462
 
463
+ #: adrotate.php:211
464
  msgid "Ad(s) renewed"
465
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
466
 
467
+ #: adrotate.php:213
468
  msgid "Ad(s) deactivated"
469
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
470
 
471
+ #: adrotate.php:215
472
  msgid "Ad(s) activated"
473
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
474
 
475
+ #: adrotate.php:217
476
  msgid ""
477
  "The ad was saved but has an issue which might prevent it from working "
478
  "properly. Review the yellow marked ad."
480
  "Η διαφήμιση αποθηκεύτηκε αλλά υπάρχει ένα θέμα που πιθανώς δεν θα επιτρέψει "
481
  "τη λειτουγία της. Εξετάστε την υπογραμμισμένη με κίτρινο διαφήμιση."
482
 
483
+ #: adrotate.php:219
484
  #, fuzzy
485
  msgid "Export created"
486
  msgstr "Επιλογές εξαγωγής"
487
 
488
+ #: adrotate.php:223
489
  msgid "Action prohibited"
490
  msgstr "Η ενέργεια απαγορεύεται"
491
 
492
+ #: adrotate.php:225 adrotate.php:373
493
  msgid "No data found in selected time period"
494
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
495
 
496
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
497
  msgid "Manage"
498
  msgstr "Διαχείριση"
499
 
500
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
501
  msgid "Add New"
502
  msgstr "Προσθήκη Νέας"
503
 
504
+ #: adrotate.php:362
505
  msgid "Group Management"
506
  msgstr "Διαχείριση Ομάδας"
507
 
508
+ #: adrotate.php:365
509
  msgid "Group created"
510
  msgstr "Η Ομάδα δημιουργήθηκε"
511
 
512
+ #: adrotate.php:367
513
  msgid "Group updated"
514
  msgstr "Η Ομάδα ανανεώθηκε"
515
 
516
+ #: adrotate.php:369
517
  msgid "Group deleted"
518
  msgstr "Η Ομάδα διαγράφηκε"
519
 
520
+ #: adrotate.php:371
521
  msgid "Group including it's Ads deleted"
522
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
523
 
524
+ #: adrotate.php:431
525
  #, fuzzy
526
  msgid "Schedule Management available in AdRotate Pro"
527
  msgstr "Διαθέσιμο στο AdRotate Pro"
528
 
529
+ #: adrotate.php:441
530
  #, fuzzy
531
  msgid ""
532
  "Schedule management and multiple schedules per advert is available in "
533
  "AdRotate Pro."
534
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
535
 
536
+ #: adrotate.php:441 adrotate.php:528
537
+ #: dashboard/publisher/adrotate-ads-edit.php:177
538
  #: dashboard/publisher/adrotate-ads-main.php:108
539
+ #: dashboard/publisher/adrotate-groups-edit.php:75
540
  #: dashboard/publisher/adrotate-groups-main.php:87
541
  #, fuzzy
542
  msgid "More information"
543
  msgstr "Περισσότερες πληροφορίες"
544
 
545
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
546
  #: dashboard/publisher/adrotate-ads-main-error.php:19
547
  #: dashboard/publisher/adrotate-ads-main.php:20
548
  #: dashboard/publisher/adrotate-groups-main.php:20
549
  msgid "Bulk Actions"
550
  msgstr "Μαζικές Ενέργειες"
551
 
552
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
553
  #: dashboard/publisher/adrotate-ads-main-error.php:29
554
  #: dashboard/publisher/adrotate-ads-main.php:30
555
  #: dashboard/publisher/adrotate-groups-main.php:24
556
  msgid "Go"
557
  msgstr "Go"
558
 
559
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
560
  #: dashboard/publisher/adrotate-ads-main-error.php:39
561
  #: dashboard/publisher/adrotate-ads-main.php:39
562
  #: dashboard/publisher/adrotate-groups-main.php:32
563
  msgid "ID"
564
  msgstr "Κωδ."
565
 
566
+ #: adrotate.php:459
567
  #, fuzzy
568
  msgid "Start"
569
  msgstr "Ώρα έναρξης (ωω: λλ):"
570
 
571
+ #: adrotate.php:459
572
  #, fuzzy
573
  msgid "End"
574
  msgstr "Ώρα λήξης (ωω: λλ):"
575
 
576
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
577
  #: dashboard/publisher/adrotate-groups-main.php:34
578
  msgid "Ads"
579
  msgstr "Διαφημίσεις"
580
 
581
+ #: adrotate.php:462
582
  msgid "Max Clicks"
583
  msgstr "Max Clicks"
584
 
585
+ #: adrotate.php:463
586
  msgid "Max Impressions"
587
  msgstr "Max Impressions"
588
 
589
+ #: adrotate.php:493
590
  #, fuzzy
591
  msgid "No schedules created yet!"
592
  msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
593
 
594
+ #: adrotate.php:498
595
  #, fuzzy
596
  msgid "Easily manage your schedules from here with AdRotate Pro."
597
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
598
 
599
+ #: adrotate.php:498 adrotate.php:561
600
  #, fuzzy
601
  msgid "Upgrade today!"
602
  msgstr "Σήμερα"
603
 
604
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
605
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
606
  msgid "Expires soon."
607
  msgstr "Λήγει σύντομα."
608
 
609
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
610
+ #: dashboard/publisher/adrotate-groups-edit.php:373
611
  msgid "Has expired."
612
  msgstr "Έχει λήξει."
613
 
614
+ #: adrotate.php:526
615
  #, fuzzy
616
  msgid "Media Management available in AdRotate Pro"
617
  msgstr "Διαθέσιμο στο AdRotate Pro"
618
 
619
+ #: adrotate.php:528
620
  msgid ""
621
  "Upload images to the AdRotate Pro banners folder from here. This is "
622
  "especially useful if you use responsive adverts with multiple images."
623
  msgstr ""
624
 
625
+ #: adrotate.php:528
626
  #, fuzzy
627
  msgid "Media uploading and management is available in AdRotate Pro."
628
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
629
 
630
+ #: adrotate.php:530
631
  #, fuzzy
632
  msgid "Upload new banner image"
633
  msgstr "Εικόνα Banner:"
634
 
635
+ #: adrotate.php:531
636
  #, fuzzy
637
  msgid "Accepted files are:"
638
  msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
639
 
640
+ #: adrotate.php:531
641
  msgid "Maximum size is 512Kb."
642
  msgstr ""
643
 
644
+ #: adrotate.php:531
645
  msgid "Important:"
646
  msgstr ""
647
 
648
+ #: adrotate.php:531
649
  msgid ""
650
  "Make sure your file has no spaces or special characters in the name. Replace "
651
  "spaces with a - or _."
652
  msgstr ""
653
 
654
+ #: adrotate.php:533
655
  msgid ""
656
  "For responsive adverts make sure the filename is in the following format; "
657
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
658
  msgstr ""
659
 
660
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
661
  msgid ""
662
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
663
  "filename instead of \".full\" for the various viewports."
664
  msgstr ""
665
 
666
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
667
+ #: dashboard/publisher/adrotate-groups-edit.php:308
668
+ #: dashboard/publisher/adrotate-groups-edit.php:316
669
  msgid "Example:"
670
  msgstr "Παράδειγμα:"
671
 
672
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
673
  msgid ""
674
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
675
  "for different viewports."
676
  msgstr ""
677
 
678
+ #: adrotate.php:539
679
  #, fuzzy
680
  msgid "Upload image"
681
  msgstr "Εικόνα Banner:"
682
 
683
+ #: adrotate.php:542
684
  msgid "Available banner images in"
685
  msgstr ""
686
 
687
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
688
  msgid "Name"
689
  msgstr "Όνομα"
690
 
691
+ #: adrotate.php:548
692
  #, fuzzy
693
  msgid "Actions"
694
  msgstr "Μαζικές Ενέργειες"
695
 
696
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
697
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
698
  #: dashboard/publisher/adrotate-ads-main-error.php:21
699
  #: dashboard/publisher/adrotate-ads-main.php:22
700
  msgid "Delete"
701
  msgstr "Διαγραφή"
702
 
703
+ #: adrotate.php:561
704
  msgid ""
705
  "Make sure the banner images are not in use by adverts when you delete them!"
706
  msgstr ""
707
 
708
+ #: adrotate.php:561
709
  #, fuzzy
710
  msgid "Manage your banner folder from here with AdRotate Pro."
711
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
712
 
713
+ #: adrotate.php:605
714
  msgid "AdRotate Settings"
715
  msgstr "Ρυθμίσεις AdRotate"
716
 
717
+ #: adrotate.php:608
718
  msgid "Settings saved"
719
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
720
 
721
+ #: adrotate.php:610
722
  msgid "Database optimized"
723
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
724
 
725
+ #: adrotate.php:612
726
  msgid "Database repaired"
727
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
728
 
729
+ #: adrotate.php:614
730
  msgid "Ads evaluated and statuses have been corrected where required"
731
  msgstr ""
732
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
733
  "χρειάστηκε"
734
 
735
+ #: adrotate.php:616
736
  msgid "Empty database records removed"
737
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
738
 
739
+ #: adrotate.php:618
740
  msgid "Database can only be optimized or cleaned once every hour"
741
  msgstr ""
742
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
743
  "ώρα"
744
 
745
+ #: adrotate.php:626
746
  msgid "Access Rights"
747
  msgstr "Δικαιώματα Πρόσβασης"
748
 
749
+ #: adrotate.php:627
750
  msgid "Who has access to what?"
751
  msgstr ""
752
 
753
+ #: adrotate.php:630
754
  msgid "Manage/Add/Edit adverts"
755
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
756
 
757
+ #: adrotate.php:634
758
  msgid "Role to see and add/edit ads."
759
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
760
 
761
+ #: adrotate.php:638
762
  msgid "Delete/Reset adverts"
763
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
764
 
765
+ #: adrotate.php:642
766
  msgid "Role to delete ads and reset stats."
767
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
768
 
769
+ #: adrotate.php:646
770
  msgid "Manage/Add/Edit groups"
771
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
772
 
773
+ #: adrotate.php:650
774
  msgid "Role to see and add/edit groups."
775
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
776
 
777
+ #: adrotate.php:654
778
  msgid "Delete groups"
779
  msgstr "Διαγραφή ομάδων"
780
 
781
+ #: adrotate.php:658
782
  msgid "Role to delete groups."
783
  msgstr "Ρόλος για τη διαγραφή ομάδων."
784
 
785
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
786
+ #: adrotate.php:875
787
  msgid "Update Options"
788
  msgstr "Επιλογές Ανανέωσης"
789
 
790
+ #: adrotate.php:690
791
  msgid "Statistics"
792
  msgstr "Στατιστικά"
793
 
794
+ #: adrotate.php:693
795
  #, fuzzy
796
  msgid "Enable stats"
797
  msgstr "Στατιστικά"
798
 
799
+ #: adrotate.php:695
800
  msgid "Track clicks and impressions."
801
  msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
802
 
803
+ #: adrotate.php:695
804
  #, fuzzy
805
  msgid "Disabling this also disables click and impression limits on schedules."
806
  msgstr ""
807
  "Η απενεργοποίηση του χαρακτηριστικού απενεργοποιεί επίσης τα όρια των κλικ "
808
  "και εμφανίσεων στα προγράμματα και απενεργοποιεί τα χρονοδιαγράμματα."
809
 
810
+ #: adrotate.php:699
811
  msgid "Impressions timer"
812
  msgstr "Χρονομετρητής εμφανίσεων"
813
 
814
+ #: adrotate.php:701 adrotate.php:708
815
  msgid "Seconds."
816
  msgstr "Δευτερόλεπτα."
817
 
818
+ #: adrotate.php:702
819
  #, fuzzy
820
  msgid "Default: 60."
821
  msgstr "Προεπιλογή"
822
 
823
+ #: adrotate.php:702
824
  #, fuzzy
825
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
826
  msgstr ""
827
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
828
  "ώρα)."
829
 
830
+ #: adrotate.php:706
831
  #, fuzzy
832
  msgid "Clicks timer"
833
  msgstr "Χρονομετρητής εμφανίσεων"
834
 
835
+ #: adrotate.php:709
836
  #, fuzzy
837
  msgid "Default: 86400."
838
  msgstr "Προεπιλογή"
839
 
840
+ #: adrotate.php:709
841
  #, fuzzy
842
  msgid ""
843
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
845
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
846
  "ώρα)."
847
 
848
+ #: adrotate.php:714
849
  #, fuzzy
850
  msgid "Bot filter"
851
  msgstr "Φίλτρο προγράμματος περιήγησης"
852
 
853
+ #: adrotate.php:717
854
  msgid "User-Agent Filter"
855
  msgstr "Φίλτρο προγράμματος περιήγησης"
856
 
857
+ #: adrotate.php:720
858
  msgid ""
859
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
860
  "prevent impressions and clicks counted on them."
863
  "μηχανές περιήγησης για να αποτρέπει την καταγραφή εμφανίσεων και κλικ από "
864
  "αυτές."
865
 
866
+ #: adrotate.php:721
867
  msgid ""
868
  "Keep in mind that this might give false positives. The word 'google' also "
869
  "matches 'googlebot', but not vice-versa. So be careful!"
871
  "Να θυμάστε ότι αυτό μπορεί να δώσει λανθασμένα αποτελέσματα. Η λέξη 'google' "
872
  "περιέχεται στην λέξη 'googlebot', αλλά όχι το αντίθετο. Προσοχή!"
873
 
874
+ #: adrotate.php:721
875
  msgid "Keep your list up-to-date"
876
  msgstr "Διατηρήστε τον κατάλογο ενημερωμένο"
877
 
878
+ #: adrotate.php:722
879
  msgid ""
880
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
881
  "other characters are stripped out."
883
  "Χρησιμοποιήστε λέξεις μόνο με αλφαριθμητικούς χαρακτήρες. Τα [ - _ ] είναι "
884
  "επίσης επιτρεπτά. Όλοι οι άλλοι χαρακτήρες αφαιρούνται."
885
 
886
+ #: adrotate.php:723
887
  msgid ""
888
  "Additionally to the list specified here, empty User-Agents are blocked as "
889
  "well."
891
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
892
  "απορίπτονται επίσης."
893
 
894
+ #: adrotate.php:723
895
  msgid "Learn more about"
896
  msgstr "Μάθετε περισσότερα σχετικά"
897
 
898
+ #: adrotate.php:723
899
  msgid "user-agents"
900
  msgstr "πρόγραμμα περιήγησης"
901
 
902
+ #: adrotate.php:732
903
  msgid "Miscellaneous"
904
  msgstr "Διάφορα"
905
 
906
+ #: adrotate.php:735
907
  msgid "Widget alignment"
908
  msgstr "Ευθυγράμμιση μονάδας"
909
 
910
+ #: adrotate.php:736
911
  msgid ""
912
  "Check this box if your widgets do not align in your themes sidebar. (Does "
913
  "not always help!)"
915
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
916
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
917
 
918
+ #: adrotate.php:739
919
  msgid "Widget padding"
920
  msgstr "Κενά περιθώρια μονάδων"
921
 
922
+ #: adrotate.php:740
923
  msgid ""
924
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
925
  "not always work!)"
927
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
928
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
929
 
930
+ #: adrotate.php:745 adrotate.php:756
931
  msgid "NOTICE:"
932
  msgstr ""
933
 
934
+ #: adrotate.php:746
935
  msgid ""
936
  "You have enabled W3 Total Caching support but not defined the security hash. "
937
  "You need to add the following line to your wp-config.php near the bottom or "
939
  "needs to be enabled in W3 Total Cache as well too."
940
  msgstr ""
941
 
942
+ #: adrotate.php:750
943
  msgid "W3 Total Caching"
944
  msgstr "W3 Total Caching"
945
 
946
+ #: adrotate.php:751
947
  msgid "Check this box if you use W3 Total Caching on your site."
948
  msgstr ""
949
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
950
  "σας."
951
 
952
+ #: adrotate.php:757
953
  msgid ""
954
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
955
  "this function will not work. WP Super Cache has discontinued support for "
956
  "dynamic content."
957
  msgstr ""
958
 
959
+ #: adrotate.php:761
960
  msgid "WP Super Cache"
961
  msgstr "WP Super Cache"
962
 
963
+ #: adrotate.php:762
964
  msgid "Check this box if you use WP Super Cache on your site."
965
  msgstr ""
966
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην ιστοσελίδα "
967
  "σας."
968
 
969
+ #: adrotate.php:767
970
  msgid ""
971
  "It may take a while for the ad to start rotating. The caching plugin needs "
972
  "to refresh the cache. This can take up to a week if not done manually."
975
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
976
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
977
 
978
+ #: adrotate.php:767
979
  msgid ""
980
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
981
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
984
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
985
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
986
 
987
+ #: adrotate.php:771
988
  msgid "Javascript"
989
  msgstr ""
990
 
991
+ #: adrotate.php:774
992
  #, fuzzy
993
  msgid "Load jQuery"
994
  msgstr "Να περιληφθεί η jQuery"
995
 
996
+ #: adrotate.php:775
997
  #, fuzzy
998
  msgid ""
999
  "jQuery is required for all Javascript features below. Enable this if your "
1002
  "Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
1003
  "επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
1004
 
1005
+ #: adrotate.php:778
1006
  msgid "Load in footer?"
1007
  msgstr ""
1008
 
1009
+ #: adrotate.php:779
1010
  msgid ""
1011
  "Enable if you want to load the above libraries in the footer. Your theme "
1012
  "needs to call wp_footer() for this to work."
1013
  msgstr ""
1014
 
1015
+ #: adrotate.php:787
1016
  msgid "Maintenance"
1017
  msgstr "Συντήρηση"
1018
 
1019
+ #: adrotate.php:788
1020
  #, fuzzy
1021
  msgid ""
1022
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1032
  "χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
1033
  "ανταποκρίνεται καλά."
1034
 
1035
+ #: adrotate.php:803 adrotate.php:805
1036
  msgid "Optimize Database"
1037
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
1038
 
1039
+ #: adrotate.php:805
1040
  msgid "You are about to optimize the AdRotate database."
1041
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
1042
 
1043
+ #: adrotate.php:805
1044
  msgid "Did you make a backup of your database?"
1045
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
1046
 
1047
+ #: adrotate.php:805
1048
  msgid ""
1049
  "This may take a moment and may cause your website to respond slow "
1050
  "temporarily!"
1052
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
1053
  "σας να είναι προσωρινά αργή!"
1054
 
1055
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1056
  #: dashboard/publisher/adrotate-groups-main.php:24
1057
  msgid "OK to continue, CANCEL to stop."
1058
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1059
 
1060
+ #: adrotate.php:806
1061
  msgid "Cleans up overhead data in the AdRotate tables."
1062
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
1063
 
1064
+ #: adrotate.php:807
1065
  msgid ""
1066
  "Overhead data is accumulated garbage resulting from many changes you've "
1067
  "made. This can vary from nothing to hundreds of KiB of data."
1070
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
1071
  "μέχρι εκατοντάδες kilobytes δεδομένων."
1072
 
1073
+ #: adrotate.php:811 adrotate.php:813
1074
  msgid "Clean-up Database"
1075
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
1076
 
1077
+ #: adrotate.php:813
1078
  msgid ""
1079
  "You are about to clean up your database. This may delete expired schedules "
1080
  "and older statistics."
1082
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
1083
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
1084
 
1085
+ #: adrotate.php:813
1086
  msgid "Are you sure you want to continue?"
1087
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
1088
 
1089
+ #: adrotate.php:813 adrotate.php:821
1090
  msgid "This might take a while and may slow down your site during this action!"
1091
  msgstr ""
1092
 
1093
+ #: adrotate.php:814
1094
  msgid "Delete stats older than 356 days (Optional)."
1095
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
1096
 
1097
+ #: adrotate.php:815
1098
  #, fuzzy
1099
  msgid ""
1100
  "AdRotate creates empty records when you start making ads or groups. In rare "
1104
  "διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
1105
  "λανθασμένες."
1106
 
1107
+ #: adrotate.php:815
1108
  msgid ""
1109
  "If you made an ad or group that does not save when you make it use this "
1110
  "button to delete those empty records."
1112
  "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
1113
  "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
1114
 
1115
+ #: adrotate.php:815
1116
  msgid ""
1117
  "Additionally you can clean up old statistics. This will improve the speed of "
1118
  "your site."
1120
  "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
1121
  "ταχύτητα της ιστοσελίδας σας."
1122
 
1123
+ #: adrotate.php:819
1124
  #, fuzzy
1125
  msgid "Re-evaluate Ads"
1126
  msgstr "Διαφημίσεις"
1127
 
1128
+ #: adrotate.php:821
1129
  msgid "Re-evaluate all ads"
1130
  msgstr ""
1131
 
1132
+ #: adrotate.php:821
1133
  #, fuzzy
1134
  msgid "You are about to check all ads for errors."
1135
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1136
 
1137
+ #: adrotate.php:822
1138
  msgid ""
1139
  "This will apply all evaluation rules to all ads to see if any error slipped "
1140
  "in. Normally you should not need this feature."
1141
  msgstr ""
1142
 
1143
+ #: adrotate.php:826
1144
  msgid ""
1145
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1146
  "becomes unusable in any way or by any means in whichever way I will not take "
1157
  "ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
1158
  "καμμία περίπτωση. "
1159
 
1160
+ #: adrotate.php:834
1161
  msgid "Troubleshooting"
1162
  msgstr "Αντιμετώπιση προβλημάτων"
1163
 
1164
+ #: adrotate.php:837
1165
  msgid "Current version:"
1166
  msgstr "Τρέχουσα έκδοση:"
1167
 
1168
+ #: adrotate.php:838
1169
  msgid "Previous version:"
1170
  msgstr "Προηγούμενη έκδοση:"
1171
 
1172
+ #: adrotate.php:841
1173
  msgid "Current database version:"
1174
  msgstr "Τρέχουσα έκδοση βάσης:"
1175
 
1176
+ #: adrotate.php:842
1177
  msgid "Previous database version:"
1178
  msgstr "Προηγούμενη έκδοση βάσης:"
1179
 
1180
+ #: adrotate.php:845
1181
  #, fuzzy
1182
  msgid "Ad evaluation next run:"
1183
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1184
 
1185
+ #: adrotate.php:846 adrotate.php:850
1186
  msgid "Not scheduled!"
1187
  msgstr "Δεν έχει προγραμματιστεί!"
1188
 
1189
+ #: adrotate.php:849
1190
  msgid "Clean Trackerdata next run:"
1191
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1192
 
1193
+ #: adrotate.php:853
1194
  msgid "Current status of adverts"
1195
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
1196
 
1197
+ #: adrotate.php:854
1198
  msgid "Normal"
1199
  msgstr "Φυσιολογική"
1200
 
1201
+ #: adrotate.php:854
1202
  msgid "Error"
1203
  msgstr "Σφάλμα"
1204
 
1205
+ #: adrotate.php:854
1206
  msgid "Expired"
1207
  msgstr "Έληξε"
1208
 
1209
+ #: adrotate.php:854
1210
  msgid "Expires Soon"
1211
  msgstr "Λήγει Σύντομα"
1212
 
1213
+ #: adrotate.php:854
1214
  msgid "Unknown Status"
1215
  msgstr "Άγνωστη Κατάσταση"
1216
 
1217
+ #: adrotate.php:857
1218
  msgid ""
1219
  "NOTE: The below options are not meant for normal use and are only there for "
1220
  "developers to review saved settings or how ads are selected. These can be "
1228
  "σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
1229
  "ΕΠΙΛΕΓΜΕΝΕΣ!! "
1230
 
1231
+ #: adrotate.php:861
1232
  msgid "Developer Debug"
1233
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1234
 
1235
+ #: adrotate.php:863
1236
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1237
  msgstr ""
1238
  "Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
1239
  "έξοδο στην ιστοσελίδα δίνουν."
1240
 
1241
+ #: adrotate.php:864
1242
  msgid "Show all settings, dashboard routines and related values."
1243
  msgstr ""
1244
  "Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
1245
  "τιμών."
1246
 
1247
+ #: adrotate.php:865
1248
  msgid "Show array of all userroles and capabilities."
1249
  msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
1250
 
1251
+ #: adrotate.php:866
1252
  msgid "Review saved advertisers! Visible to advertisers."
1253
  msgstr ""
1254
  "Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
1255
 
1256
+ #: adrotate.php:867
1257
  #, fuzzy
1258
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1259
  msgstr ""
1260
  "Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
1261
  "Ορατό μόνο σε εκδότες."
1262
 
1263
+ #: adrotate.php:868
1264
  #, fuzzy
1265
  msgid ""
1266
  "Disable timers for clicks and impressions and enable a alert window for "
1267
  "clicktracking."
1268
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
1269
 
1270
+ #: adrotate.php:869
1271
  msgid "Temporarily disable encryption on the redirect url."
1272
  msgstr ""
1273
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
1496
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
1497
 
1498
  #: dashboard/publisher/adrotate-ads-edit.php:49
1499
+ msgid "You did not use %image% in your AdCode but did select an image!"
1500
+ msgstr ""
1501
 
1502
  #: dashboard/publisher/adrotate-ads-edit.php:52
1503
  msgid "You did use %image% in your AdCode but did not select an image!"
1512
  "επαναφέρετε την εικόνα και σώστε πάλι τη διαφήμιση!"
1513
 
1514
  #: dashboard/publisher/adrotate-ads-edit.php:58
1515
+ msgid ""
1516
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1517
+ "ineffective."
1518
+ msgstr ""
1519
+
1520
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1521
+ msgid ""
1522
+ "Your chosen banner image does not have the right name. Check the responsive "
1523
+ "description and try again."
1524
+ msgstr ""
1525
+
1526
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1527
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1528
  msgstr ""
1529
 
1530
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1531
  msgid ""
1532
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1533
  "the ad!"
1535
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
1536
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
1537
 
1538
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1539
  msgid "This ad is expired and currently not shown on your website!"
1540
  msgstr ""
1541
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
1542
  "σας!"
1543
 
1544
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1545
  msgid "The ad will expire in less than 2 days!"
1546
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
1547
 
1548
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1549
  msgid "This ad will expire in less than 7 days!"
1550
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
1551
 
1552
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1553
  msgid "This ad has been disabled and does not rotate on your site!"
1554
  msgstr ""
1555
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
1556
 
1557
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1558
  msgid "New Advert"
1559
  msgstr "Νέα Διαφήμιση"
1560
 
1561
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1562
  msgid "Edit Advert"
1563
  msgstr "Επεξεργασία Διαφήμισης"
1564
 
1565
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
1566
  msgid "Title:"
1567
  msgstr "Τίτλος:"
1568
 
1569
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1570
  msgid "AdCode:"
1571
  msgstr "AdCode:"
1572
 
1573
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1574
+ msgid "Basic Examples:"
1575
+ msgstr "Βασικά παραδείγματα:"
1576
+
1577
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1578
+ msgid "Useful tags:"
1579
+ msgstr ""
1580
+
1581
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1582
+ msgid "Insert the advert ID Number."
1583
+ msgstr ""
1584
+
1585
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1586
+ msgid "Insert the %image% tag. Required when selecting a image below."
1587
+ msgstr ""
1588
+
1589
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1590
+ msgid "Insert the advert name."
1591
+ msgstr ""
1592
+
1593
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1594
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1595
+ msgstr ""
1596
+
1597
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1598
+ msgid "Add inside the <a> tag to open advert in a new window."
1599
+ msgstr ""
1600
+
1601
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1602
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1603
+ msgstr ""
1604
+
1605
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1606
  msgid ""
1607
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1608
+ "click to add it."
1609
  msgstr ""
1610
 
1611
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1612
+ msgid "Banner image:"
1613
+ msgstr "Εικόνα Banner:"
1614
+
1615
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1616
+ msgid "WordPress media:"
1617
  msgstr ""
1618
 
1619
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1620
+ msgid "Select Banner"
1621
+ msgstr "Επιλέξτε Banner"
1622
 
1623
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1624
+ msgid "- OR -"
1625
+ msgstr "- Ή -"
1626
+
1627
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1628
+ msgid "Banner folder:"
1629
+ msgstr "Φάκελος Banner:"
1630
+
1631
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1632
+ msgid "No image selected"
1633
+ msgstr "Καμία επιλεγμένη εικόνα"
1634
+
1635
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1636
+ msgid "Use %image% in the code. Accepted files are:"
1637
+ msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
1638
 
1639
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1640
  msgid ""
1641
+ "Use either the text field or the dropdown. If the textfield has content that "
1642
+ "field has priority."
1643
  msgstr ""
1644
+ "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1645
+ "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1646
 
1647
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1648
+ msgid "Clicktracking:"
1649
+ msgstr "κλικ στην επιλογή Παρακολούθηση:"
1650
+
1651
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1652
+ msgid "Enable click tracking for this advert."
1653
+ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
1654
+
1655
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1656
+ msgid ""
1657
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1658
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1659
+ "supported."
1660
+ msgstr ""
1661
+
1662
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1663
  msgid "Activate:"
1664
  msgstr "Ενεργοποίηση:"
1665
 
1666
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1667
  msgid "Yes, this ad will be used"
1668
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1669
 
1670
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1671
  msgid "No, do not show this ad anywhere"
1672
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1673
 
1674
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1675
  #: dashboard/publisher/adrotate-ads-main.php:108
1676
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1677
  #: dashboard/publisher/adrotate-groups-main.php:87
1678
  #, fuzzy
1679
  msgid "Get more features with AdRotate Pro."
1680
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1681
 
1682
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1683
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1684
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1685
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1686
  msgid "Save Advert"
1687
  msgstr "Αποθήκευση Διαφήμισης"
1688
 
1689
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1690
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1691
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1692
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1693
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1694
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1695
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1696
  msgid "Cancel"
1697
  msgstr "Ακύρωση"
1698
 
1699
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1700
  msgid "Preview"
1701
  msgstr "Προεπισκόπηση"
1702
 
1703
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1704
  msgid ""
1705
  "Note: While this preview is an accurate one, it might look different then it "
1706
  "does on the website."
1708
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1709
  "διαφορετική από ό, τι στην ιστοσελίδα."
1710
 
1711
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1712
  msgid ""
1713
  "This is because of CSS differences. Your themes CSS file is not active here!"
1714
  msgstr ""
1715
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1716
 
1717
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1718
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1719
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1720
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1721
  msgid "Usage"
1722
  msgstr "Χρήση"
1723
 
1724
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1725
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1726
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1727
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1728
+ msgid "Widget:"
1729
+ msgstr ""
1730
+
1731
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1732
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1733
  msgid ""
1734
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1735
+ "and enter ID"
1736
  msgstr ""
 
 
1737
 
1738
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1739
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1740
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1741
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1742
  msgid "In a post or page:"
1743
  msgstr "Σε ένα ποστ ή σελίδα:"
1744
 
1745
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1746
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1747
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1748
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1749
  msgid "Directly in a theme:"
1750
  msgstr "Άμεσα σε ένα θέμα:"
1751
 
1752
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1753
+ msgid "Schedule your advert"
1754
+ msgstr ""
 
1755
 
1756
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1757
+ msgid "Start date (day/month/year):"
1758
+ msgstr "Ημερομηνία Έναρξης (ημέρα / μήνας / έτος):"
1759
 
1760
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1761
+ msgid "End date (day/month/year):"
1762
+ msgstr "Ημερομηνία λήξης (ημέρα / μήνας / έτος):"
1763
 
1764
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1765
+ msgid "Start time (hh:mm):"
1766
+ msgstr "Ώρα έναρξης (ωω: λλ):"
1767
+
1768
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1769
+ msgid "End time (hh:mm):"
1770
+ msgstr "Ώρα λήξης (ωω: λλ):"
1771
+
1772
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1773
+ msgid "Maximum Clicks:"
1774
+ msgstr "Μέγιστα Κλικ:"
1775
+
1776
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1777
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1778
+ msgid "Leave empty or 0 to skip this."
1779
+ msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1780
 
1781
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1782
+ msgid "Maximum Impressions:"
1783
+ msgstr "Μέγιστες Εμφανίσεις:"
1784
+
1785
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1786
  msgid ""
1787
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1788
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1789
+ "hours. 6AM is 6:00 hours."
1790
  msgstr ""
1791
+ "Η ώρα χρησιμοποιεί ένα ρολόι 24 ωρών. Αν έχεις συνηθίσει στο AM / PM σύστημα "
1792
+ "θυμήσου αυτό: Εάν η ώρα έναρξης ή λήξης είναι μετά το μεσημεριανό γεύμα, "
1793
+ "πρόσθεσε 12 ώρες. 2ΡΜ είναι 14:00 ώρες το μεσημέρι. 6ΑΜ είναι 6:00 ώρες το "
1794
+ "πρωί."
1795
 
1796
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1797
+ msgid ""
1798
+ "The maximum clicks and impressions are measured over the set schedule only. "
1799
+ "Every schedule can have it's own limit!"
1800
  msgstr ""
1801
+ "Τα μέγιστα κλικ και οι εμφανίσεις μετρώνται κατά τη ρύθμιση του "
1802
+ "προγράμματος. Κάθε πρόγραμμα μπορεί να έχει το δικό του όριο!"
1803
 
1804
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1805
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
1806
  msgstr ""
1807
 
1808
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1809
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1810
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1811
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1812
+ #, fuzzy
1813
+ msgid "Upgrade today"
1814
+ msgstr "Σήμερα"
1815
+
1816
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1817
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1818
+ msgid "Advanced"
1819
+ msgstr "Προχωρημένος"
1820
+
1821
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1822
+ msgid "Everything below is optional."
1823
+ msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1824
 
1825
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1826
  msgid "Responsive:"
1827
  msgstr ""
1828
 
1829
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1830
  #, fuzzy
1831
  msgid "Enable responsive support for this advert."
1832
  msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
1833
 
1834
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1835
  msgid ""
1836
  "Upload your images to the banner folder and make sure the filename is in the "
1837
  "following format; \"imagename.full.ext\". A full set of sized images is "
1838
  "strongly recommended."
1839
  msgstr ""
1840
 
1841
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1842
+ msgid "Weight:"
1843
+ msgstr "Βάρος:"
 
 
1844
 
1845
+ #: dashboard/publisher/adrotate-ads-edit.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1846
  #, fuzzy
1847
  msgid "AdRotate Pro only"
1848
  msgstr "AdRotate Pro"
1849
 
1850
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1851
  msgid "Barely visible"
1852
  msgstr "μόλις ορατό"
1853
 
1854
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1855
  msgid "Less than average"
1856
  msgstr "Λιγότερο από το μέσο όρο"
1857
 
1858
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1859
  msgid "Normal coverage"
1860
  msgstr "Κανονική κάλυψη"
1861
 
1862
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1863
  msgid "More than average"
1864
  msgstr "Περισσότερο από μέσο"
1865
 
1866
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1867
  msgid "Best visibility"
1868
  msgstr "Καλύτερη ορατότητα"
1869
 
1870
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1871
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1872
  msgid "Sortorder:"
1873
  msgstr "Σειρά ταξινόμησης:"
1874
 
1875
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1876
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1877
  msgid "For administrative purposes set a sortorder."
1878
  msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1879
 
1880
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1881
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1882
  msgstr ""
1883
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1884
  "διαφήμισης."
1885
 
1886
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1887
  msgid ""
1888
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1889
+ "exposure."
1890
  msgstr ""
1891
 
1892
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1893
+ msgid "Geo Targeting in AdRotate Pro"
1894
+ msgstr ""
 
 
 
 
 
 
 
 
 
1895
 
1896
+ #: dashboard/publisher/adrotate-ads-edit.php:335
1897
  msgid ""
1898
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1899
  msgstr ""
 
 
1900
 
1901
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1902
  #, fuzzy
1903
  msgid "Cities/States:"
1904
  msgstr "Πόλεις:"
1905
 
1906
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1907
+ msgid ""
1908
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1909
+ "states ISO codes are supported)"
 
 
 
 
1910
  msgstr ""
1911
 
1912
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1913
  msgid ""
1914
  "AdRotate does not check the validity of names so make sure you spell them "
1915
  "correctly!"
1916
  msgstr ""
1917
 
1918
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1919
  #, fuzzy
1920
  msgid "Countries:"
1921
  msgstr "Πόλεις:"
1922
 
1923
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1924
  #, fuzzy
1925
  msgid "Select the countries you want the adverts to show in."
1926
  msgstr ""
1927
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1928
  "εμφανίζονται"
1929
 
1930
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1931
  msgid "Cities take priority and will be filtered first."
1932
  msgstr ""
1933
 
1934
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1935
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1936
  msgstr ""
1937
 
1938
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1939
  msgid "Select Groups"
1940
  msgstr "Επιλέξτε Ομάδες"
1941
 
1942
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
1943
  msgid "ID - Name"
1944
  msgstr "ID - Όνομα"
1945
 
1946
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1947
  msgid "Ads in group"
1948
  msgstr "Διαφημίσεις στην ομάδα"
1949
 
1950
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1951
  #: dashboard/publisher/adrotate-groups-main.php:58
1952
  msgid "Default"
1953
  msgstr "Προεπιλογή"
1954
 
1955
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1956
  #: dashboard/publisher/adrotate-groups-main.php:59
1957
  msgid "Dynamic"
1958
  msgstr "Δυναμική"
1959
 
1960
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1961
  #: dashboard/publisher/adrotate-groups-main.php:59
1962
  #, fuzzy
1963
  msgid "second rotation"
1964
  msgstr "Γεωγραφική Τοποθεσία"
1965
 
1966
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1967
  #: dashboard/publisher/adrotate-groups-main.php:60
1968
  msgid "Block"
1969
  msgstr "Απαγόρευση"
1970
 
1971
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1972
  #: dashboard/publisher/adrotate-groups-main.php:60
1973
  #, fuzzy
1974
  msgid "grid"
1976
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1977
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1978
 
1979
+ #: dashboard/publisher/adrotate-ads-edit.php:418
1980
+ #: dashboard/publisher/adrotate-groups-edit.php:192
1981
  #: dashboard/publisher/adrotate-groups-main.php:61
1982
  msgid "Post Injection"
1983
  msgstr "Εμβολιασμός Δημοσίευσης"
1984
 
1985
+ #: dashboard/publisher/adrotate-ads-edit.php:419
1986
  #: dashboard/publisher/adrotate-groups-main.php:62
1987
  msgid "Geolocation"
1988
  msgstr "Γεωγραφική τοποθεσία"
1989
 
1990
+ #: dashboard/publisher/adrotate-ads-edit.php:425
1991
+ #: dashboard/publisher/adrotate-groups-edit.php:61
1992
  #: dashboard/publisher/adrotate-groups-main.php:69
1993
  msgid "Mode"
1994
  msgstr "Λειτουργία"
2024
  msgid "Title"
2025
  msgstr "Τίτλος"
2026
 
2027
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2028
+ #: dashboard/publisher/adrotate-ads-report.php:34
2029
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2030
+ #: dashboard/publisher/adrotate-groups-main.php:35
2031
+ #: dashboard/publisher/adrotate-groups-report.php:40
2032
+ msgid "Impressions"
2033
+ msgstr "Εμφανίσεις"
2034
+
2035
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2036
+ #: dashboard/publisher/adrotate-ads-main.php:45
2037
+ #: dashboard/publisher/adrotate-ads-report.php:35
2038
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2039
+ #: dashboard/publisher/adrotate-groups-main.php:37
2040
+ #: dashboard/publisher/adrotate-groups-report.php:41
2041
+ msgid "Clicks"
2042
+ msgstr "Clicks"
2043
+
2044
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2045
  #: dashboard/publisher/adrotate-ads-main.php:47
2046
  #: dashboard/publisher/adrotate-ads-report.php:38
2102
  msgstr "Για 7 ημέρες"
2103
 
2104
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2105
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2106
  msgid "Configuration errors."
2107
  msgstr "Σφάλματα Διαμόρφωσης."
2108
 
2116
  msgstr "Επιλογές εξαγωγής"
2117
 
2118
  #: dashboard/publisher/adrotate-ads-main.php:42
2119
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2120
  msgid "Weight"
2121
  msgstr "Βαρύτητα"
2122
 
2181
  msgid "Edit Group"
2182
  msgstr "Επεξεργασία Ομάδας"
2183
 
2184
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2185
  msgid "Name:"
2186
  msgstr "Όνομα:"
2187
 
2188
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2189
  msgid "Default - Show one ad at a time"
2190
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
2191
 
2192
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2193
  msgid "Dynamic Mode - Show a different ad every few seconds"
2194
  msgstr ""
2195
  "Δυναμική Λειτουργία - Εμφάνισε διαφορετική διαφήμιση κάθε λίγα δευτερόλεπτα"
2196
 
2197
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2198
  msgid "Block Mode - Show a block of ads"
2199
  msgstr "Λειτουργία Πεδίου - Εμφάνισε ένα μπλοκ διαφημίσεων"
2200
 
2201
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2202
  #, fuzzy
2203
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2204
  msgstr ""
2206
  "showoff\" να φορτωθούν. Μπορείτε να τα ενεργοποιήσετε στις Ρυθμίσεις "
2207
  "AdRotate."
2208
 
2209
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2210
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2211
  msgid "Dynamic and Block Mode"
2212
  msgstr "Δυναμική και Πεδίου Λειτουργία"
2213
 
2214
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2215
  msgid "Only required if your group is in Dynamic or Block mode."
2216
  msgstr "Απαιτείται μόνο εάν η ομάδα σας είναι σε Δυναμική ή λειτουργία Πεδίου."
2217
 
2218
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2219
+ msgid "Block size"
2220
+ msgstr ""
2221
 
2222
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2223
  msgid "rows"
2224
  msgstr "γραμμές"
2225
 
2226
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2227
  msgid "columns"
2228
  msgstr "στήλες"
2229
 
2230
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2231
  msgid "Block Mode"
2232
  msgstr "Λειτουργία Πεδίου"
2233
 
2234
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2235
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
 
2236
  msgstr ""
 
 
2237
 
2238
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2239
+ msgid "Advert size"
2240
+ msgstr ""
2241
 
2242
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2243
  msgid "pixel(s) wide"
2244
  msgstr "πλάτος εικονοστοιχείου (ων) "
2245
 
2246
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2247
  msgid "pixel(s) high."
2248
  msgstr "ύψος εικονοστοιχείου(ων)."
2249
 
2250
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2251
  #, fuzzy
2252
  msgid ""
2253
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2256
  "Καθορίστε το μέγιστο μέγεθος των διαφημίσεων σε pixels πλυν περιθωρίου. Το "
2257
  "μέγεθος μπορεί να είναι «αυτόματο» (Δεν συνίσταται). Προεπιλογή: 125/125."
2258
 
2259
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2260
  msgid "Automated refresh"
2261
  msgstr "Αυτόματη ανανέωση"
2262
 
2263
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2264
  msgid "seconds."
2265
  msgstr "δευτερόλεπτα."
2266
 
2267
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2268
  msgid "Dynamic Mode"
2269
  msgstr "Δυναμική Λειτουργία"
2270
 
2271
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2272
  msgid ""
2273
  "Load a new advert in this interval without reloading the page. Default: 6."
2274
  msgstr ""
2275
  "Τοποθετήστε μια νέα διαφήμιση σε αυτό το διάστημα, χωρίς επαναφόρτωση της "
2276
  "σελίδας. Προεπιλογή: 6."
2277
 
2278
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2279
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2280
+ msgid ""
2281
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2282
+ "\" and enter ID"
2283
+ msgstr ""
2284
+
2285
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2286
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2287
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2288
  #, fuzzy
2289
  msgid "Save Group"
2290
  msgstr "Αποθήκευση"
2291
 
2292
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2293
  msgid "Advert Margin"
2294
  msgstr "Περιθώριο διαφήμισης"
2295
 
2296
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2297
  msgid "pixel(s)"
2298
  msgstr "εικονοστοιχείο(α)"
2299
 
2300
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2301
  #, fuzzy
2302
  msgid "A transparent area outside the advert in pixels. Default: 0."
2303
  msgstr ""
2304
  "Ένα διαφαωές περίγραμμα έξω από την διαφήμιση σε pixels. Προεπιλογή: 1."
2305
 
2306
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2307
  #, fuzzy
2308
  msgid "Set to 0 to disable."
2309
  msgstr ""
2310
  "Προεπιλογή: 10. Βάλτε το στο 0 για να απενεργοποιήσετε τον χρονομετρητή."
2311
 
2312
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2313
+ msgid "Margins are automatically disabled for blocks where required."
2314
+ msgstr ""
2315
+
2316
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2317
  #, fuzzy
2318
  msgid "Align the group"
2319
  msgstr "Διαφημίσεις στην ομάδα"
2320
 
2321
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2322
  #, fuzzy
2323
  msgid "None (Default)"
2324
  msgstr "Προεπιλογή"
2325
 
2326
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2327
  msgid "Left"
2328
  msgstr ""
2329
 
2330
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2331
  #, fuzzy
2332
  msgid "Right"
2333
  msgstr "Βαρύτητα"
2334
 
2335
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2336
  msgid "Center"
2337
  msgstr ""
2338
 
2339
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2340
  msgid ""
2341
  "Align the group in your post or page. Using 'center' may affect your margin "
2342
  "setting. Not every theme supports this feature."
2343
  msgstr ""
2344
 
2345
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2346
  msgid "Leave empty or 0 to skip this. Will default to group id."
2347
  msgstr ""
2348
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
2349
  "ομάδας."
2350
 
2351
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2352
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2353
  msgstr ""
2354
 
2355
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2356
  msgid "Include ads in categories?"
2357
  msgstr "Να συμπεριληφθούν οι διαφημίσεις σε κατηγορίες;"
2358
 
2359
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2360
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2361
  #, fuzzy
2362
  msgid "Disabled"
2363
  msgstr "Απενεργοποιημένες διαφημίσεις"
2364
 
2365
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2366
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2367
  #, fuzzy
2368
  msgid "Before content"
2369
  msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
2370
 
2371
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2372
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2373
  #, fuzzy
2374
  msgid "After content"
2375
  msgstr "Πριν και μετά το περιεχόμενο"
2376
 
2377
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2378
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2379
  #, fuzzy
2380
  msgid "Before and after content"
2381
  msgstr "Πριν και μετά το περιεχόμενο"
2382
 
2383
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2384
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2385
  #, fuzzy
2386
  msgid "After..."
2387
  msgstr "Μετά τη διαφήμιση"
2388
 
2389
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2390
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2391
  msgid "the first paragraph"
2392
  msgstr ""
2393
 
2394
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2395
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2396
  msgid "the 2nd paragraph"
2397
  msgstr ""
2398
 
2399
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2400
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2401
  msgid "the 3rd paragraph"
2402
  msgstr ""
2403
 
2404
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2405
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2406
  msgid "the 4th paragraph"
2407
  msgstr ""
2408
 
2409
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2410
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2411
  msgid "every 2nd paragraph"
2412
  msgstr ""
2413
 
2414
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2416
  msgid "every 3rd paragraph"
2417
  msgstr ""
2418
 
2419
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2420
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2421
  msgid "every 4th paragraph"
2422
  msgstr ""
2423
 
2424
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2425
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2426
  msgid "every 5th paragraph"
2427
  msgstr ""
2428
 
2429
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2430
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2431
  msgid "every 6th paragraph"
2432
  msgstr ""
2433
 
2434
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2435
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2436
  msgid "every 7th paragraph"
2437
  msgstr ""
2438
 
2439
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2440
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2441
  msgid "every 8th paragraph"
2442
  msgstr ""
2443
 
2444
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2445
  msgid "Which categories?"
2446
  msgstr "Ποιες κατηγορίες;"
2447
 
2448
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2449
  msgid "Click the categories posts you want the adverts to show in."
2450
  msgstr ""
2451
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
2452
  "εμφανίζονται"
2453
 
2454
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2455
  msgid "Include ads in pages?"
2456
  msgstr "Περιλογή διαφημίσεων στις σελίδες;"
2457
 
2458
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2459
  msgid "Which pages?"
2460
  msgstr "Ποιες σελίδες;"
2461
 
2462
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2463
  msgid "Click the pages you want the adverts to show in."
2464
  msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
2465
 
2466
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2467
  msgid "Wrapper code"
2468
  msgstr "Κώδικας περιτύλιγμα"
2469
 
2470
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2471
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2472
+ msgstr ""
2473
 
2474
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2475
  msgid "Before ad"
2476
  msgstr "Πριν τη διαφήμιση"
2477
 
2478
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2479
+ msgid "Options:"
2480
+ msgstr "Επιλογές:"
2481
 
2482
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2483
  msgid "After ad"
2484
  msgstr "Μετά τη διαφήμιση"
2485
 
2486
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2487
  msgid "Select Ads"
2488
  msgstr "Επιλέξτε Διαφημίσεις"
2489
 
2490
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2491
  msgid "Visible until"
2492
  msgstr "Ορατό μέχρι"
2493
 
2494
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2495
  msgid "No ads created!"
2496
  msgstr "Δεν δημιουργήθηκαν διαφημίσεις!"
2497
 
2523
  msgid "Statistics for group"
2524
  msgstr "Στατιστικά για την ομάδα"
2525
 
2526
+ #, fuzzy
2527
+ #~ msgid "Usage:"
2528
+ #~ msgstr "Χρήση"
2529
+
2530
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2531
+ #~ msgstr ""
2532
+ #~ "Δεν χρησιμοποιήσατε το %image% στον AdCode, αλλά επιλέξατε μια εικόνα!"
2533
+
2534
+ #~ msgid "These are required."
2535
+ #~ msgstr "Αυτά είναι απαραίτητα."
2536
+
2537
+ #~ msgid ""
2538
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2539
+ #~ "AdCode."
2540
+ #~ msgstr ""
2541
+ #~ "Τοποθετήστε τον κέρσορα στο σημείο όπου θέλετε να προσθέσετε μια ετικέτα "
2542
+ #~ "και κάντε κλικ για να το προσθέσετε στο AdCode σας."
2543
+
2544
+ #~ msgid ""
2545
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2546
+ #~ "where you want the advert to show up."
2547
+ #~ msgstr ""
2548
+ #~ "Αντιγράψτε το shortcode σε ένα ποστ ή σελίδα. Ο κώδικας PHP μπαίνει μέσα "
2549
+ #~ "σε ένα αρχείο θέματος όπου θέλετε να εμφανιστεί η διαφήμιση."
2550
+
2551
+ #, fuzzy
2552
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2553
+ #~ msgstr ""
2554
+ #~ "Το πεδίο διεύθυνσης URL δεν είναι πλέον απαραίτητο. Τοποθετώντας το URL "
2555
+ #~ "στο adcode σας και τη δυνατότητα παρακολούθησης κλικ είναι αρκετό."
2556
+
2557
+ #~ msgid "Media:"
2558
+ #~ msgstr "Media:"
2559
+
2560
+ #, fuzzy
2561
+ #~ msgid "Geo Location in AdRotate Pro"
2562
+ #~ msgstr "Γεωγραφική Τοποθεσία"
2563
+
2564
+ #~ msgid ""
2565
+ #~ "This works if you assign the advert to a group and enable that group to "
2566
+ #~ "use Geo Targeting."
2567
+ #~ msgstr ""
2568
+ #~ "Αυτό λειτουργεί, εάν αντιστοιχίσετε την αγγελία σε μια ομάδα και "
2569
+ #~ "επιτρέψετε αυτή την ομάδα να χρησιμοποιήσει Γεωγραφική Στόχευση."
2570
+
2571
+ #, fuzzy
2572
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2573
+ #~ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
2574
+
2575
+ #~ msgid "Schedule"
2576
+ #~ msgstr "Πρόγραμμα"
2577
+
2578
+ #~ msgid "From when to when is the advert visible?"
2579
+ #~ msgstr "Από πότε έως πότε είναι ορατή η διαφήμιση;"
2580
+
2581
+ #, fuzzy
2582
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2583
+ #~ msgstr "Διαθέσιμο στο AdRotate Pro"
2584
+
2585
+ #~ msgid "From / Until"
2586
+ #~ msgstr "Από / Έως"
2587
+
2588
+ #, fuzzy
2589
+ #~ msgid "impressions per day"
2590
+ #~ msgstr "Εμφανίσεις"
2591
+
2592
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2593
+ #~ msgstr "Προαιρετικά, επιλέξτε την ομάδα (-ες) όπου ανήκει αυτή η διαφήμιση."
2594
+
2595
+ #~ msgid "Block shape and border"
2596
+ #~ msgstr "Σχήμα και περίγραμμα Πεδίου"
2597
+
2598
+ #, fuzzy
2599
+ #~ msgid ""
2600
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2601
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2602
+ #~ msgstr ""
2603
+ #~ "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
2604
+ #~ "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
2605
+
2606
+ #~ msgid "Advert Width and Height"
2607
+ #~ msgstr "Πλάτος και Ύψος Διαφήμισης"
2608
+
2609
+ #~ msgid "Wraps around each ad."
2610
+ #~ msgstr "Αναδιπλώνεται γύρω από κάθε διαφήμιση."
2611
+
2612
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2613
+ #~ msgstr "HTML / JavaScript επιτρέπεται, χρησιμοποιήστε με προσοχή!"
2614
+
2615
  #, fuzzy
2616
  #~ msgid "AdRotate Website."
2617
  #~ msgstr "Κατάστημα του AdRotate"
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -16,22 +16,22 @@ msgstr ""
16
  "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:807
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:810
25
  #, fuzzy
26
  msgid "Folder not found or not accessible"
27
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
28
 
29
- #: adrotate-output.php:747
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
- #: adrotate-output.php:748
35
  #, fuzzy
36
  msgid ""
37
  "WordPress was unable to verify the authenticity of the url you have clicked. "
@@ -41,19 +41,19 @@ msgstr ""
41
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
42
  "votre navigateur."
43
 
44
- #: adrotate-output.php:749
45
  #, fuzzy
46
  msgid ""
47
  "If you have received the url you want to visit via email, you are being "
48
  "tricked!"
49
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
50
 
51
- #: adrotate-output.php:750
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
- #: adrotate-output.php:768
57
  #, fuzzy
58
  msgid ""
59
  "Error, Ad is not available at this time due to schedule/geolocation "
@@ -62,7 +62,7 @@ msgstr ""
62
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
63
  "horaires/géographiques ou n'existe pas!"
64
 
65
- #: adrotate-output.php:770
66
  #, fuzzy
67
  msgid ""
68
  "Error, Ad is not available at this time due to schedule/geolocation "
@@ -71,7 +71,7 @@ msgstr ""
71
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
72
  "horaires/géographiques ou n'existe pas!"
73
 
74
- #: adrotate-output.php:777 adrotate-output.php:779
75
  #, fuzzy
76
  msgid ""
77
  "Either there are no banners, they are disabled or none qualified for this "
@@ -80,22 +80,22 @@ msgstr ""
80
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
81
  "cet endroit!"
82
 
83
- #: adrotate-output.php:785
84
  #, fuzzy
85
  msgid "Error, no Ad ID set! Check your syntax!"
86
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
87
 
88
- #: adrotate-output.php:791
89
  #, fuzzy
90
  msgid "Error, no group ID set! Check your syntax!"
91
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
92
 
93
- #: adrotate-output.php:796
94
  #, fuzzy
95
  msgid "Error, group does not exist! Check your syntax!"
96
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
97
 
98
- #: adrotate-output.php:802
99
  #, fuzzy
100
  msgid ""
101
  "There was an error locating the database tables for AdRotate. Please "
@@ -105,173 +105,173 @@ msgstr ""
105
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
106
  "extensions. "
107
 
108
- #: adrotate-output.php:802
109
  #, fuzzy
110
  msgid "If this does not solve the issue please seek support at"
111
  msgstr ""
112
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
113
  "support à"
114
 
115
- #: adrotate-output.php:808
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
- #: adrotate-output.php:834
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
- #: adrotate-output.php:834
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
- #: adrotate-output.php:836
131
  #, fuzzy
132
  msgid "active ad(s) are about to expire."
133
  msgstr "publicité(s) active(s) sont sur le point d'expirer"
134
 
135
- #: adrotate-output.php:836
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
- #: adrotate-output.php:838
141
  #, fuzzy
142
  msgid "active ad(s) with configuration errors."
143
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
144
 
145
- #: adrotate-output.php:838
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
- #: adrotate-output.php:840
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
- #: adrotate-output.php:840
156
  #, fuzzy
157
  msgid "ad(s) are about to expire."
158
  msgstr "publicité(s) sont sur le point d'expirer"
159
 
160
- #: adrotate-output.php:840
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
- #: adrotate-output.php:840
166
  #, fuzzy
167
  msgid "Fix this as soon as possible"
168
  msgstr "Résoudre ce soucis dans les meilleurs délais"
169
 
170
- #: adrotate-output.php:853
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
- #: adrotate-output.php:855
176
  msgid ""
177
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
178
  "to the <strong>PRO</strong> version"
179
  msgstr ""
180
 
181
- #: adrotate-output.php:856
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
- #: adrotate-output.php:856
186
  #, fuzzy
187
  msgid "Thank you for your consideration!"
188
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
189
 
190
- #: adrotate-output.php:896
191
  msgid ""
192
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
193
- "Pro is in this menu. Check out the"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:896
197
  msgid "manuals"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:896 adrotate-output.php:973
201
- #: dashboard/publisher/adrotate-ads-edit.php:229
202
  msgid "and"
203
  msgstr ""
204
 
205
- #: adrotate-output.php:896
206
  msgid "forums"
207
  msgstr ""
208
 
209
- #: adrotate-output.php:932
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:933
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
- #: adrotate-output.php:935
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
- #: adrotate-output.php:936
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
- #: adrotate-output.php:937
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
- #: adrotate-output.php:938
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
- #: adrotate-output.php:939
238
  msgid "WordPress.org Forum"
239
  msgstr ""
240
 
241
- #: adrotate-output.php:965
242
  #, fuzzy
243
  msgid "Help AdRotate Grow"
244
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
245
 
246
- #: adrotate-output.php:966
247
  #, fuzzy
248
  msgid "Brought to you by"
249
  msgstr "Présenté par"
250
 
251
- #: adrotate-output.php:973
252
  msgid ""
253
  "A lot of users only think to review AdRotate when something goes wrong while "
254
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
255
  msgstr ""
256
 
257
- #: adrotate-output.php:973
258
  msgid "If you find AdRotate useful please leave your honest"
259
  msgstr ""
260
 
261
- #: adrotate-output.php:973
262
  msgid "rating"
263
  msgstr ""
264
 
265
- #: adrotate-output.php:973
266
  #, fuzzy
267
  msgid "review"
268
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
269
 
270
- #: adrotate-output.php:973
271
  msgid "on WordPress.org to help AdRotate grow in a positive way"
272
  msgstr ""
273
 
274
- #: adrotate-output.php:976
275
  #, fuzzy
276
  msgid ""
277
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -280,104 +280,104 @@ msgstr ""
280
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
281
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
282
 
283
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
284
  #, fuzzy
285
  msgid "Visit the"
286
  msgstr "Visitez le"
287
 
288
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
289
  #, fuzzy
290
  msgid "website"
291
  msgstr "site"
292
 
293
- #: adrotate-output.php:1006
294
  #, fuzzy
295
  msgid "Available in AdRotate Pro"
296
  msgstr "Disponible dans Adrotate Pro"
297
 
298
- #: adrotate-output.php:1006
299
  #, fuzzy
300
  msgid "More information..."
301
  msgstr "Plus d'informations..."
302
 
303
- #: adrotate-output.php:1007
304
  #, fuzzy
305
  msgid "This feature is available in AdRotate Pro"
306
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
307
 
308
- #: adrotate-output.php:1007
309
  #, fuzzy
310
  msgid "Learn more"
311
  msgstr "En savoir plus"
312
 
313
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
314
- #: dashboard/publisher/adrotate-ads-edit.php:352
315
  #, fuzzy
316
  msgid "January"
317
  msgstr "Janvier"
318
 
319
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
320
- #: dashboard/publisher/adrotate-ads-edit.php:353
321
  #, fuzzy
322
  msgid "February"
323
  msgstr "Février"
324
 
325
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
326
- #: dashboard/publisher/adrotate-ads-edit.php:354
327
  #, fuzzy
328
  msgid "March"
329
  msgstr "Mars"
330
 
331
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
332
- #: dashboard/publisher/adrotate-ads-edit.php:355
333
  #, fuzzy
334
  msgid "April"
335
  msgstr "Avril"
336
 
337
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
338
- #: dashboard/publisher/adrotate-ads-edit.php:356
339
  #, fuzzy
340
  msgid "May"
341
  msgstr "Mai"
342
 
343
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
344
- #: dashboard/publisher/adrotate-ads-edit.php:357
345
  #, fuzzy
346
  msgid "June"
347
  msgstr "Juin"
348
 
349
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
350
- #: dashboard/publisher/adrotate-ads-edit.php:358
351
  #, fuzzy
352
  msgid "July"
353
  msgstr "Juillet"
354
 
355
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
356
- #: dashboard/publisher/adrotate-ads-edit.php:359
357
  #, fuzzy
358
  msgid "August"
359
  msgstr "Août"
360
 
361
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
362
- #: dashboard/publisher/adrotate-ads-edit.php:360
363
  #, fuzzy
364
  msgid "September"
365
  msgstr "Septembre"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
368
- #: dashboard/publisher/adrotate-ads-edit.php:361
369
  #, fuzzy
370
  msgid "October"
371
  msgstr "Octobre"
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
374
- #: dashboard/publisher/adrotate-ads-edit.php:362
375
  #, fuzzy
376
  msgid "November"
377
  msgstr "Novembre"
378
 
379
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
380
- #: dashboard/publisher/adrotate-ads-edit.php:363
381
  #, fuzzy
382
  msgid "December"
383
  msgstr "Décembre"
@@ -444,7 +444,7 @@ msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
444
  msgid "Choose what you want to use this widget for"
445
  msgstr "Choisissez le fonction de ce widget"
446
 
447
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
448
  #, fuzzy
449
  msgid "ID:"
450
  msgstr "ID :"
@@ -454,93 +454,92 @@ msgstr "ID :"
454
  msgid "Fill in the ID of the type you want to display!"
455
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
456
 
457
- #: adrotate.php:108
458
  #, fuzzy
459
  msgid "General Info"
460
  msgstr "Informations générales"
461
 
462
- #: adrotate.php:109
463
  #, fuzzy
464
  msgid "AdRotate Pro"
465
  msgstr "AdRotate Pro"
466
 
467
- #: adrotate.php:110
468
  #, fuzzy
469
  msgid "Manage Ads"
470
  msgstr "Gérer les pubs"
471
 
472
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
473
  #, fuzzy
474
  msgid "Manage Groups"
475
  msgstr "Gérer les groupes"
476
 
477
- #: adrotate.php:112 adrotate.php:441
478
- #: dashboard/publisher/adrotate-ads-edit.php:402
479
  #, fuzzy
480
  msgid "Manage Schedules"
481
  msgstr "Gérer"
482
 
483
- #: adrotate.php:113
484
  #, fuzzy
485
  msgid "Manage Media"
486
  msgstr "Médias :"
487
 
488
- #: adrotate.php:114
489
  #, fuzzy
490
  msgid "Settings"
491
  msgstr "Paramètres"
492
 
493
- #: adrotate.php:137
494
  #, fuzzy
495
  msgid "AdRotate Info"
496
  msgstr "Informations sur Adrotate"
497
 
498
- #: adrotate.php:158
499
  #, fuzzy
500
  msgid "AdRotate Professional"
501
  msgstr "AdRotate professionel"
502
 
503
- #: adrotate.php:201
504
  #, fuzzy
505
  msgid "Ad Management"
506
  msgstr "Gestion des pubs"
507
 
508
- #: adrotate.php:204
509
  #, fuzzy
510
  msgid "Ad created"
511
  msgstr "Publicité créée"
512
 
513
- #: adrotate.php:206
514
  #, fuzzy
515
  msgid "Ad updated"
516
  msgstr "Publicité mise à jour"
517
 
518
- #: adrotate.php:208
519
  #, fuzzy
520
  msgid "Ad(s) deleted"
521
  msgstr "Publicité(s) supprimée(s)"
522
 
523
- #: adrotate.php:210
524
  #, fuzzy
525
  msgid "Ad(s) statistics reset"
526
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
527
 
528
- #: adrotate.php:212
529
  #, fuzzy
530
  msgid "Ad(s) renewed"
531
  msgstr "publicité(s) renouvellée(s)"
532
 
533
- #: adrotate.php:214
534
  #, fuzzy
535
  msgid "Ad(s) deactivated"
536
  msgstr "Publicité(s) désactivée(s)"
537
 
538
- #: adrotate.php:216
539
  #, fuzzy
540
  msgid "Ad(s) activated"
541
  msgstr "Publicité(s) activée(s)"
542
 
543
- #: adrotate.php:218
544
  #, fuzzy
545
  msgid ""
546
  "The ad was saved but has an issue which might prevent it from working "
@@ -549,77 +548,77 @@ msgstr ""
549
  "La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
550
  "fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
551
 
552
- #: adrotate.php:220
553
  #, fuzzy
554
  msgid "Export created"
555
  msgstr "Publicité créée"
556
 
557
- #: adrotate.php:224
558
  #, fuzzy
559
  msgid "Action prohibited"
560
  msgstr "Action interdite"
561
 
562
- #: adrotate.php:226 adrotate.php:374
563
  #, fuzzy
564
  msgid "No data found in selected time period"
565
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
566
 
567
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
568
  #, fuzzy
569
  msgid "Manage"
570
  msgstr "Gérer"
571
 
572
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
573
  #, fuzzy
574
  msgid "Add New"
575
  msgstr "Ajouter"
576
 
577
- #: adrotate.php:363
578
  #, fuzzy
579
  msgid "Group Management"
580
  msgstr "Gérer les groupes"
581
 
582
- #: adrotate.php:366
583
  #, fuzzy
584
  msgid "Group created"
585
  msgstr "Groupe créé"
586
 
587
- #: adrotate.php:368
588
  #, fuzzy
589
  msgid "Group updated"
590
  msgstr "Groupe mis à jour"
591
 
592
- #: adrotate.php:370
593
  #, fuzzy
594
  msgid "Group deleted"
595
  msgstr "Groupe supprimé"
596
 
597
- #: adrotate.php:372
598
  #, fuzzy
599
  msgid "Group including it's Ads deleted"
600
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
601
 
602
- #: adrotate.php:432
603
  #, fuzzy
604
  msgid "Schedule Management available in AdRotate Pro"
605
  msgstr "Disponible dans Adrotate Pro"
606
 
607
- #: adrotate.php:442
608
  msgid ""
609
  "Schedule management and multiple schedules per advert is available in "
610
  "AdRotate Pro."
611
  msgstr ""
612
 
613
- #: adrotate.php:442 adrotate.php:529
614
- #: dashboard/publisher/adrotate-ads-edit.php:145
615
  #: dashboard/publisher/adrotate-ads-main.php:108
616
- #: dashboard/publisher/adrotate-groups-edit.php:76
617
  #: dashboard/publisher/adrotate-groups-main.php:87
618
  #, fuzzy
619
  msgid "More information"
620
  msgstr "Plus d'informations..."
621
 
622
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
623
  #: dashboard/publisher/adrotate-ads-main-error.php:19
624
  #: dashboard/publisher/adrotate-ads-main.php:20
625
  #: dashboard/publisher/adrotate-groups-main.php:20
@@ -627,7 +626,7 @@ msgstr "Plus d'informations..."
627
  msgid "Bulk Actions"
628
  msgstr "Actions en vrac"
629
 
630
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
631
  #: dashboard/publisher/adrotate-ads-main-error.php:29
632
  #: dashboard/publisher/adrotate-ads-main.php:30
633
  #: dashboard/publisher/adrotate-groups-main.php:24
@@ -635,8 +634,7 @@ msgstr "Actions en vrac"
635
  msgid "Go"
636
  msgstr "Aller"
637
 
638
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
639
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
640
  #: dashboard/publisher/adrotate-ads-main-error.php:39
641
  #: dashboard/publisher/adrotate-ads-main.php:39
642
  #: dashboard/publisher/adrotate-groups-main.php:32
@@ -644,105 +642,104 @@ msgstr "Aller"
644
  msgid "ID"
645
  msgstr "ID :"
646
 
647
- #: adrotate.php:460
648
  #, fuzzy
649
  msgid "Start"
650
  msgstr "Début / Fin"
651
 
652
- #: adrotate.php:460
653
  #, fuzzy
654
  msgid "End"
655
  msgstr "Début / Fin"
656
 
657
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
658
  #: dashboard/publisher/adrotate-groups-main.php:34
659
  #, fuzzy
660
  msgid "Ads"
661
  msgstr "Pubs"
662
 
663
- #: adrotate.php:463
664
  #, fuzzy
665
  msgid "Max Clicks"
666
  msgstr "Clicks"
667
 
668
- #: adrotate.php:464
669
  #, fuzzy
670
  msgid "Max Impressions"
671
  msgstr "Vues"
672
 
673
- #: adrotate.php:494
674
  #, fuzzy
675
  msgid "No schedules created yet!"
676
  msgstr "Aucune pub n'a encore été créé!"
677
 
678
- #: adrotate.php:499
679
  msgid "Easily manage your schedules from here with AdRotate Pro."
680
  msgstr ""
681
 
682
- #: adrotate.php:499 adrotate.php:562
683
  #, fuzzy
684
  msgid "Upgrade today!"
685
  msgstr "Mettre à jour aujourd'hui"
686
 
687
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
688
- #: dashboard/publisher/adrotate-ads-main-error.php:74
689
- #: dashboard/publisher/adrotate-groups-edit.php:399
690
  #, fuzzy
691
  msgid "Expires soon."
692
  msgstr "Expire bientôt."
693
 
694
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
695
- #: dashboard/publisher/adrotate-groups-edit.php:400
696
  #, fuzzy
697
  msgid "Has expired."
698
  msgstr "A expiré."
699
 
700
- #: adrotate.php:527
701
  #, fuzzy
702
  msgid "Media Management available in AdRotate Pro"
703
  msgstr "Disponible dans Adrotate Pro"
704
 
705
- #: adrotate.php:529
706
  msgid ""
707
  "Upload images to the AdRotate Pro banners folder from here. This is "
708
  "especially useful if you use responsive adverts with multiple images."
709
  msgstr ""
710
 
711
- #: adrotate.php:529
712
  msgid "Media uploading and management is available in AdRotate Pro."
713
  msgstr ""
714
 
715
- #: adrotate.php:531
716
  #, fuzzy
717
  msgid "Upload new banner image"
718
  msgstr "Image :"
719
 
720
- #: adrotate.php:532
721
  #, fuzzy
722
  msgid "Accepted files are:"
723
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
724
 
725
- #: adrotate.php:532
726
  msgid "Maximum size is 512Kb."
727
  msgstr ""
728
 
729
- #: adrotate.php:532
730
  msgid "Important:"
731
  msgstr ""
732
 
733
- #: adrotate.php:532
734
  msgid ""
735
  "Make sure your file has no spaces or special characters in the name. Replace "
736
  "spaces with a - or _."
737
  msgstr ""
738
 
739
- #: adrotate.php:534
740
  msgid ""
741
  "For responsive adverts make sure the filename is in the following format; "
742
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
743
  msgstr ""
744
 
745
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
746
  #, fuzzy
747
  msgid ""
748
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
@@ -752,14 +749,14 @@ msgstr ""
752
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
753
  "tailles d'écran."
754
 
755
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
756
- #: dashboard/publisher/adrotate-groups-edit.php:334
757
- #: dashboard/publisher/adrotate-groups-edit.php:343
758
  #, fuzzy
759
  msgid "Example:"
760
  msgstr "Exemple :"
761
 
762
- #: adrotate.php:536
763
  #, fuzzy
764
  msgid ""
765
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -768,202 +765,202 @@ msgstr ""
768
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
769
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
770
 
771
- #: adrotate.php:540
772
  #, fuzzy
773
  msgid "Upload image"
774
  msgstr "Image :"
775
 
776
- #: adrotate.php:543
777
  msgid "Available banner images in"
778
  msgstr ""
779
 
780
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
781
  #, fuzzy
782
  msgid "Name"
783
  msgstr "Nom"
784
 
785
- #: adrotate.php:549
786
  #, fuzzy
787
  msgid "Actions"
788
  msgstr "Actions en vrac"
789
 
790
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
791
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
792
  #: dashboard/publisher/adrotate-ads-main-error.php:21
793
  #: dashboard/publisher/adrotate-ads-main.php:22
794
  #, fuzzy
795
  msgid "Delete"
796
  msgstr "Effacer"
797
 
798
- #: adrotate.php:562
799
  msgid ""
800
  "Make sure the banner images are not in use by adverts when you delete them!"
801
  msgstr ""
802
 
803
- #: adrotate.php:562
804
  msgid "Manage your banner folder from here with AdRotate Pro."
805
  msgstr ""
806
 
807
- #: adrotate.php:606
808
  #, fuzzy
809
  msgid "AdRotate Settings"
810
  msgstr "Paramètres de AdRotate"
811
 
812
- #: adrotate.php:609
813
  #, fuzzy
814
  msgid "Settings saved"
815
  msgstr "Paramètres sauvegardés"
816
 
817
- #: adrotate.php:611
818
  #, fuzzy
819
  msgid "Database optimized"
820
  msgstr "Base de données optimisée"
821
 
822
- #: adrotate.php:613
823
  #, fuzzy
824
  msgid "Database repaired"
825
  msgstr "Base de données réparée"
826
 
827
- #: adrotate.php:615
828
  #, fuzzy
829
  msgid "Ads evaluated and statuses have been corrected where required"
830
  msgstr ""
831
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
832
 
833
- #: adrotate.php:617
834
  #, fuzzy
835
  msgid "Empty database records removed"
836
  msgstr "Les registres vides de la base de données ont été supprimés"
837
 
838
- #: adrotate.php:619
839
  #, fuzzy
840
  msgid "Database can only be optimized or cleaned once every hour"
841
  msgstr ""
842
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
843
 
844
- #: adrotate.php:627
845
  #, fuzzy
846
  msgid "Access Rights"
847
  msgstr "Droits d'Accès"
848
 
849
- #: adrotate.php:628
850
  #, fuzzy
851
  msgid "Who has access to what?"
852
  msgstr "Qui a accès à quoi?"
853
 
854
- #: adrotate.php:631
855
  #, fuzzy
856
  msgid "Manage/Add/Edit adverts"
857
  msgstr "Gérer/Ajouter/Modifier les publicités"
858
 
859
- #: adrotate.php:635
860
  #, fuzzy
861
  msgid "Role to see and add/edit ads."
862
  msgstr "Rôle pour voir et gérer/modifier les publicités."
863
 
864
- #: adrotate.php:639
865
  #, fuzzy
866
  msgid "Delete/Reset adverts"
867
  msgstr "Supprimer/Mettre à zéro les publicités"
868
 
869
- #: adrotate.php:643
870
  #, fuzzy
871
  msgid "Role to delete ads and reset stats."
872
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
873
 
874
- #: adrotate.php:647
875
  #, fuzzy
876
  msgid "Manage/Add/Edit groups"
877
  msgstr "Gérer/Ajouter/Modifier les groupes"
878
 
879
- #: adrotate.php:651
880
  #, fuzzy
881
  msgid "Role to see and add/edit groups."
882
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
883
 
884
- #: adrotate.php:655
885
  #, fuzzy
886
  msgid "Delete groups"
887
  msgstr "Effacer les groups"
888
 
889
- #: adrotate.php:659
890
  #, fuzzy
891
  msgid "Role to delete groups."
892
  msgstr "Rôle pour supprimer les groupes."
893
 
894
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
895
- #: adrotate.php:876
896
  #, fuzzy
897
  msgid "Update Options"
898
  msgstr "Mettre à jour les options"
899
 
900
- #: adrotate.php:691
901
  #, fuzzy
902
  msgid "Statistics"
903
  msgstr "Statistiques"
904
 
905
- #: adrotate.php:694
906
  #, fuzzy
907
  msgid "Enable stats"
908
  msgstr "Statistiques activés"
909
 
910
- #: adrotate.php:696
911
  #, fuzzy
912
  msgid "Track clicks and impressions."
913
  msgstr "Suivi des clicks et des impressions."
914
 
915
- #: adrotate.php:696
916
  msgid "Disabling this also disables click and impression limits on schedules."
917
  msgstr ""
918
 
919
- #: adrotate.php:700
920
  #, fuzzy
921
  msgid "Impressions timer"
922
  msgstr "Minuterie de impressions"
923
 
924
- #: adrotate.php:702 adrotate.php:709
925
  #, fuzzy
926
  msgid "Seconds."
927
  msgstr "Secondes."
928
 
929
- #: adrotate.php:703
930
  #, fuzzy
931
  msgid "Default: 60."
932
  msgstr "Par défaut"
933
 
934
- #: adrotate.php:703
935
  #, fuzzy
936
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
937
  msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
938
 
939
- #: adrotate.php:707
940
  #, fuzzy
941
  msgid "Clicks timer"
942
  msgstr "Interval de clicks"
943
 
944
- #: adrotate.php:710
945
  #, fuzzy
946
  msgid "Default: 86400."
947
  msgstr "Par défaut"
948
 
949
- #: adrotate.php:710
950
  #, fuzzy
951
  msgid ""
952
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
953
  msgstr ""
954
  "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
955
 
956
- #: adrotate.php:715
957
  #, fuzzy
958
  msgid "Bot filter"
959
  msgstr "Filtre de robots"
960
 
961
- #: adrotate.php:718
962
  #, fuzzy
963
  msgid "User-Agent Filter"
964
  msgstr "Filtrage par User-Agent"
965
 
966
- #: adrotate.php:721
967
  #, fuzzy
968
  msgid ""
969
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
@@ -972,7 +969,7 @@ msgstr ""
972
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
973
  "impressions et le clics fait par les robots/crawlers/user-agents."
974
 
975
- #: adrotate.php:722
976
  #, fuzzy
977
  msgid ""
978
  "Keep in mind that this might give false positives. The word 'google' also "
@@ -981,12 +978,12 @@ msgstr ""
981
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
982
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
983
 
984
- #: adrotate.php:722
985
  #, fuzzy
986
  msgid "Keep your list up-to-date"
987
  msgstr "Gardez votre liste à jour"
988
 
989
- #: adrotate.php:723
990
  #, fuzzy
991
  msgid ""
992
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
@@ -995,7 +992,7 @@ msgstr ""
995
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
996
  "sont aussi permis. Tous les autres caractères seront supprimés. "
997
 
998
- #: adrotate.php:724
999
  #, fuzzy
1000
  msgid ""
1001
  "Additionally to the list specified here, empty User-Agents are blocked as "
@@ -1004,27 +1001,27 @@ msgstr ""
1004
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
1005
  "bloqués."
1006
 
1007
- #: adrotate.php:724
1008
  #, fuzzy
1009
  msgid "Learn more about"
1010
  msgstr "En savoir plus sur"
1011
 
1012
- #: adrotate.php:724
1013
  #, fuzzy
1014
  msgid "user-agents"
1015
  msgstr "user-agents"
1016
 
1017
- #: adrotate.php:733
1018
  #, fuzzy
1019
  msgid "Miscellaneous"
1020
  msgstr "Divers"
1021
 
1022
- #: adrotate.php:736
1023
  #, fuzzy
1024
  msgid "Widget alignment"
1025
  msgstr "Alignement du Widget"
1026
 
1027
- #: adrotate.php:737
1028
  #, fuzzy
1029
  msgid ""
1030
  "Check this box if your widgets do not align in your themes sidebar. (Does "
@@ -1033,12 +1030,12 @@ msgstr ""
1033
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
1034
  "votre thème. Cette fonction peux ne pas régler le soucis!"
1035
 
1036
- #: adrotate.php:740
1037
  #, fuzzy
1038
  msgid "Widget padding"
1039
  msgstr "Marge interne du Widget"
1040
 
1041
- #: adrotate.php:741
1042
  #, fuzzy
1043
  msgid ""
1044
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -1047,7 +1044,7 @@ msgstr ""
1047
  "Activez cette option pour supprimer la marge (espace vide) autour des "
1048
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
1049
 
1050
- #: adrotate.php:746 adrotate.php:757
1051
  #, fuzzy
1052
  msgid "NOTICE:"
1053
  msgstr ""
@@ -1057,7 +1054,7 @@ msgstr ""
1057
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1058
  "de données est lente ou ne réponds pas."
1059
 
1060
- #: adrotate.php:747
1061
  #, fuzzy
1062
  msgid ""
1063
  "You have enabled W3 Total Caching support but not defined the security hash. "
@@ -1070,17 +1067,17 @@ msgstr ""
1070
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
1071
  "fonction \"late init\" doit être activée dans W3 Total Cache."
1072
 
1073
- #: adrotate.php:751
1074
  #, fuzzy
1075
  msgid "W3 Total Caching"
1076
  msgstr "W3 Total Caching"
1077
 
1078
- #: adrotate.php:752
1079
  #, fuzzy
1080
  msgid "Check this box if you use W3 Total Caching on your site."
1081
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
1082
 
1083
- #: adrotate.php:758
1084
  #, fuzzy
1085
  msgid ""
1086
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
@@ -1091,17 +1088,17 @@ msgstr ""
1091
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
1092
  "support pour le contenu dynamique."
1093
 
1094
- #: adrotate.php:762
1095
  #, fuzzy
1096
  msgid "WP Super Cache"
1097
  msgstr "WP Super Cache"
1098
 
1099
- #: adrotate.php:763
1100
  #, fuzzy
1101
  msgid "Check this box if you use WP Super Cache on your site."
1102
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
1103
 
1104
- #: adrotate.php:768
1105
  #, fuzzy
1106
  msgid ""
1107
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -1112,7 +1109,7 @@ msgstr ""
1112
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1113
  "pas fait manuellement."
1114
 
1115
- #: adrotate.php:768
1116
  #, fuzzy
1117
  msgid ""
1118
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
@@ -1122,16 +1119,16 @@ msgstr ""
1122
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1123
  "PHP dans le code d'exclusion vous-même."
1124
 
1125
- #: adrotate.php:772
1126
  msgid "Javascript"
1127
  msgstr ""
1128
 
1129
- #: adrotate.php:775
1130
  #, fuzzy
1131
  msgid "Load jQuery"
1132
  msgstr "Utilisez jQuery"
1133
 
1134
- #: adrotate.php:776
1135
  #, fuzzy
1136
  msgid ""
1137
  "jQuery is required for all Javascript features below. Enable this if your "
@@ -1140,12 +1137,12 @@ msgstr ""
1140
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1141
  "le si votre thème ne charge pas jQuery directement."
1142
 
1143
- #: adrotate.php:779
1144
  #, fuzzy
1145
  msgid "Load in footer?"
1146
  msgstr "Chargement dans le pied de page?"
1147
 
1148
- #: adrotate.php:780
1149
  #, fuzzy
1150
  msgid ""
1151
  "Enable if you want to load the above libraries in the footer. Your theme "
@@ -1154,12 +1151,12 @@ msgstr ""
1154
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1155
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1156
 
1157
- #: adrotate.php:788
1158
  #, fuzzy
1159
  msgid "Maintenance"
1160
  msgstr "Maintenance"
1161
 
1162
- #: adrotate.php:789
1163
  #, fuzzy
1164
  msgid ""
1165
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1174,22 +1171,22 @@ msgstr ""
1174
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1175
  "de données est lente ou ne réponds pas."
1176
 
1177
- #: adrotate.php:804 adrotate.php:806
1178
  #, fuzzy
1179
  msgid "Optimize Database"
1180
  msgstr "Optimiser la base de données"
1181
 
1182
- #: adrotate.php:806
1183
  #, fuzzy
1184
  msgid "You are about to optimize the AdRotate database."
1185
  msgstr "Vous allez optimiser la base de données de Adrotate."
1186
 
1187
- #: adrotate.php:806
1188
  #, fuzzy
1189
  msgid "Did you make a backup of your database?"
1190
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1191
 
1192
- #: adrotate.php:806
1193
  #, fuzzy
1194
  msgid ""
1195
  "This may take a moment and may cause your website to respond slow "
@@ -1198,18 +1195,18 @@ msgstr ""
1198
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1199
  "temporaire!"
1200
 
1201
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1202
  #: dashboard/publisher/adrotate-groups-main.php:24
1203
  #, fuzzy
1204
  msgid "OK to continue, CANCEL to stop."
1205
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1206
 
1207
- #: adrotate.php:807
1208
  #, fuzzy
1209
  msgid "Cleans up overhead data in the AdRotate tables."
1210
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1211
 
1212
- #: adrotate.php:808
1213
  #, fuzzy
1214
  msgid ""
1215
  "Overhead data is accumulated garbage resulting from many changes you've "
@@ -1219,12 +1216,12 @@ msgstr ""
1219
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1220
  "KB de données."
1221
 
1222
- #: adrotate.php:812 adrotate.php:814
1223
  #, fuzzy
1224
  msgid "Clean-up Database"
1225
  msgstr "Nettoyer la base de données"
1226
 
1227
- #: adrotate.php:814
1228
  #, fuzzy
1229
  msgid ""
1230
  "You are about to clean up your database. This may delete expired schedules "
@@ -1233,24 +1230,24 @@ msgstr ""
1233
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1234
  "supprimer des calendriers périmés et des vieilles statistiques.."
1235
 
1236
- #: adrotate.php:814
1237
  #, fuzzy
1238
  msgid "Are you sure you want to continue?"
1239
  msgstr "Etes-vous certains de vouloir continuer?"
1240
 
1241
- #: adrotate.php:814 adrotate.php:822
1242
  #, fuzzy
1243
  msgid "This might take a while and may slow down your site during this action!"
1244
  msgstr ""
1245
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1246
  "interval!"
1247
 
1248
- #: adrotate.php:815
1249
  #, fuzzy
1250
  msgid "Delete stats older than 356 days (Optional)."
1251
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1252
 
1253
- #: adrotate.php:816
1254
  #, fuzzy
1255
  msgid ""
1256
  "AdRotate creates empty records when you start making ads or groups. In rare "
@@ -1259,7 +1256,7 @@ msgstr ""
1259
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1260
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1261
 
1262
- #: adrotate.php:816
1263
  #, fuzzy
1264
  msgid ""
1265
  "If you made an ad or group that does not save when you make it use this "
@@ -1269,7 +1266,7 @@ msgstr ""
1269
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1270
  "registres vides."
1271
 
1272
- #: adrotate.php:816
1273
  #, fuzzy
1274
  msgid ""
1275
  "Additionally you can clean up old statistics. This will improve the speed of "
@@ -1278,22 +1275,22 @@ msgstr ""
1278
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1279
  "d'améliorer la vitesse de votre site."
1280
 
1281
- #: adrotate.php:820
1282
  #, fuzzy
1283
  msgid "Re-evaluate Ads"
1284
  msgstr "Re-évaluer les publicités"
1285
 
1286
- #: adrotate.php:822
1287
  #, fuzzy
1288
  msgid "Re-evaluate all ads"
1289
  msgstr "Re-évaluer toutes les publicités"
1290
 
1291
- #: adrotate.php:822
1292
  #, fuzzy
1293
  msgid "You are about to check all ads for errors."
1294
  msgstr "Vous allez véifier l'état de toutes les publicités."
1295
 
1296
- #: adrotate.php:823
1297
  #, fuzzy
1298
  msgid ""
1299
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -1303,7 +1300,7 @@ msgstr ""
1303
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1304
  "fonctionalité."
1305
 
1306
- #: adrotate.php:827
1307
  #, fuzzy
1308
  msgid ""
1309
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
@@ -1321,75 +1318,75 @@ msgstr ""
1321
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1322
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1323
 
1324
- #: adrotate.php:835
1325
  #, fuzzy
1326
  msgid "Troubleshooting"
1327
  msgstr "Diagnostic de dépannage"
1328
 
1329
- #: adrotate.php:838
1330
  #, fuzzy
1331
  msgid "Current version:"
1332
  msgstr "Version actuelle :"
1333
 
1334
- #: adrotate.php:839
1335
  #, fuzzy
1336
  msgid "Previous version:"
1337
  msgstr "Version antérieure :"
1338
 
1339
- #: adrotate.php:842
1340
  #, fuzzy
1341
  msgid "Current database version:"
1342
  msgstr "Version actuelle de la base de données :"
1343
 
1344
- #: adrotate.php:843
1345
  #, fuzzy
1346
  msgid "Previous database version:"
1347
  msgstr "Version antérieure de la base de données :"
1348
 
1349
- #: adrotate.php:846
1350
  msgid "Ad evaluation next run:"
1351
  msgstr ""
1352
 
1353
- #: adrotate.php:847 adrotate.php:851
1354
  #, fuzzy
1355
  msgid "Not scheduled!"
1356
  msgstr "Pas planifié!"
1357
 
1358
- #: adrotate.php:850
1359
  msgid "Clean Trackerdata next run:"
1360
  msgstr ""
1361
 
1362
- #: adrotate.php:854
1363
  #, fuzzy
1364
  msgid "Current status of adverts"
1365
  msgstr "Etat actuel des publicités"
1366
 
1367
- #: adrotate.php:855
1368
  #, fuzzy
1369
  msgid "Normal"
1370
  msgstr "Normal"
1371
 
1372
- #: adrotate.php:855
1373
  #, fuzzy
1374
  msgid "Error"
1375
  msgstr "Erreur"
1376
 
1377
- #: adrotate.php:855
1378
  #, fuzzy
1379
  msgid "Expired"
1380
  msgstr "Expiré"
1381
 
1382
- #: adrotate.php:855
1383
  #, fuzzy
1384
  msgid "Expires Soon"
1385
  msgstr "Expire bientôt."
1386
 
1387
- #: adrotate.php:855
1388
  #, fuzzy
1389
  msgid "Unknown Status"
1390
  msgstr "Statut Inconnu"
1391
 
1392
- #: adrotate.php:858
1393
  #, fuzzy
1394
  msgid ""
1395
  "NOTE: The below options are not meant for normal use and are only there for "
@@ -1403,43 +1400,43 @@ msgstr ""
1403
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1404
  "une utilisation normale, ils ne doivent pas être activés!"
1405
 
1406
- #: adrotate.php:862
1407
  #, fuzzy
1408
  msgid "Developer Debug"
1409
  msgstr "Debuggage de développeur"
1410
 
1411
- #: adrotate.php:864
1412
  #, fuzzy
1413
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1414
  msgstr ""
1415
  "Dépannage des publicités. Si cette option est activée, les données seront "
1416
  "placées sur le site."
1417
 
1418
- #: adrotate.php:865
1419
  #, fuzzy
1420
  msgid "Show all settings, dashboard routines and related values."
1421
  msgstr ""
1422
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1423
  "connexes."
1424
 
1425
- #: adrotate.php:866
1426
  #, fuzzy
1427
  msgid "Show array of all userroles and capabilities."
1428
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1429
 
1430
- #: adrotate.php:867
1431
  #, fuzzy
1432
  msgid "Review saved advertisers! Visible to advertisers."
1433
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1434
 
1435
- #: adrotate.php:868
1436
  #, fuzzy
1437
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1438
  msgstr ""
1439
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1440
  "Visible uniquement aux annonceurs."
1441
 
1442
- #: adrotate.php:869
1443
  #, fuzzy
1444
  msgid ""
1445
  "Disable timers for clicks and impressions and enable a alert window for "
@@ -1448,7 +1445,7 @@ msgstr ""
1448
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1449
  "fenêtre d'alerte pour le suivi des clicks."
1450
 
1451
- #: adrotate.php:870
1452
  #, fuzzy
1453
  msgid "Temporarily disable encryption on the redirect url."
1454
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
@@ -1738,11 +1735,8 @@ msgid "The AdCode cannot be empty!"
1738
  msgstr "Le code de la publicité ne peut être vide!"
1739
 
1740
  #: dashboard/publisher/adrotate-ads-edit.php:49
1741
- #, fuzzy
1742
- msgid "You didn't use %image% in your AdCode but did select an image!"
1743
  msgstr ""
1744
- "Vous n'avez pas utilisé %image% dans votre code, mais vous avez selectionné "
1745
- "une image!"
1746
 
1747
  #: dashboard/publisher/adrotate-ads-edit.php:52
1748
  #, fuzzy
@@ -1762,13 +1756,25 @@ msgstr ""
1762
  "publicité!"
1763
 
1764
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1765
  #, fuzzy
1766
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1767
  msgstr ""
1768
  "Le suivi des clicks par jQuery est activé, mais aucun lien valide n'a été "
1769
  "retrouvé dans le adcode!"
1770
 
1771
- #: dashboard/publisher/adrotate-ads-edit.php:63
1772
  #, fuzzy
1773
  msgid ""
1774
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
@@ -1777,132 +1783,193 @@ msgstr ""
1777
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1778
  "essayez d'enregistrer votre publicité à nouveau!"
1779
 
1780
- #: dashboard/publisher/adrotate-ads-edit.php:66
1781
  #, fuzzy
1782
  msgid "This ad is expired and currently not shown on your website!"
1783
  msgstr ""
1784
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1785
 
1786
- #: dashboard/publisher/adrotate-ads-edit.php:69
1787
  #, fuzzy
1788
  msgid "The ad will expire in less than 2 days!"
1789
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1790
 
1791
- #: dashboard/publisher/adrotate-ads-edit.php:72
1792
  #, fuzzy
1793
  msgid "This ad will expire in less than 7 days!"
1794
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1795
 
1796
- #: dashboard/publisher/adrotate-ads-edit.php:75
1797
  #, fuzzy
1798
  msgid "This ad has been disabled and does not rotate on your site!"
1799
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1800
 
1801
- #: dashboard/publisher/adrotate-ads-edit.php:101
1802
  #, fuzzy
1803
  msgid "New Advert"
1804
  msgstr "Nouvelle pub"
1805
 
1806
- #: dashboard/publisher/adrotate-ads-edit.php:103
1807
  #, fuzzy
1808
  msgid "Edit Advert"
1809
  msgstr "Modifier la pub"
1810
 
1811
- #: dashboard/publisher/adrotate-ads-edit.php:106
1812
- #: dashboard/publisher/adrotate-groups-edit.php:48
1813
- #, fuzzy
1814
- msgid "These are required."
1815
- msgstr "Ces données sont requises."
1816
-
1817
- #: dashboard/publisher/adrotate-ads-edit.php:110
1818
  #, fuzzy
1819
  msgid "Title:"
1820
  msgstr "Titre :"
1821
 
1822
- #: dashboard/publisher/adrotate-ads-edit.php:116
1823
  #, fuzzy
1824
  msgid "AdCode:"
1825
  msgstr "Code :"
1826
 
1827
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1828
  msgid ""
1829
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1830
  msgstr ""
1831
 
1832
- #: dashboard/publisher/adrotate-ads-edit.php:121
1833
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
 
1834
  msgstr ""
1835
 
1836
- #: dashboard/publisher/adrotate-ads-edit.php:122
1837
  #, fuzzy
1838
- msgid "Basic Examples:"
1839
- msgstr "Exemples de base :"
1840
 
1841
- #: dashboard/publisher/adrotate-ads-edit.php:127
1842
- #: dashboard/publisher/adrotate-groups-edit.php:335
 
 
 
1843
  #, fuzzy
1844
- msgid "Options:"
1845
- msgstr "Options :"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1846
 
1847
- #: dashboard/publisher/adrotate-ads-edit.php:129
1848
  #, fuzzy
 
 
 
 
1849
  msgid ""
1850
- "Place the cursor where you want to add a tag and click to add it to your "
1851
- "AdCode."
 
1852
  msgstr ""
1853
- "Placez votre curseur à l'emplacement où vous voulez ajouter une balise et "
1854
- "cliquer pour l'ajouter à votre AdCode."
1855
 
1856
- #: dashboard/publisher/adrotate-ads-edit.php:133
1857
  #, fuzzy
1858
  msgid "Activate:"
1859
  msgstr "Activer"
1860
 
1861
- #: dashboard/publisher/adrotate-ads-edit.php:137
1862
  #, fuzzy
1863
  msgid "Yes, this ad will be used"
1864
  msgstr "Oui, cette publicité sera utilisée"
1865
 
1866
- #: dashboard/publisher/adrotate-ads-edit.php:138
1867
  #, fuzzy
1868
  msgid "No, do not show this ad anywhere"
1869
  msgstr "Non, cette publicité ne sera pas utilisée"
1870
 
1871
- #: dashboard/publisher/adrotate-ads-edit.php:145
1872
  #: dashboard/publisher/adrotate-ads-main.php:108
1873
- #: dashboard/publisher/adrotate-groups-edit.php:76
1874
  #: dashboard/publisher/adrotate-groups-main.php:87
1875
  #, fuzzy
1876
  msgid "Get more features with AdRotate Pro."
1877
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1878
 
1879
- #: dashboard/publisher/adrotate-ads-edit.php:148
1880
- #: dashboard/publisher/adrotate-ads-edit.php:181
1881
- #: dashboard/publisher/adrotate-ads-edit.php:317
1882
- #: dashboard/publisher/adrotate-ads-edit.php:442
1883
- #: dashboard/publisher/adrotate-ads-edit.php:485
1884
  #, fuzzy
1885
  msgid "Save Advert"
1886
  msgstr "Sauvegarder la pub"
1887
 
1888
- #: dashboard/publisher/adrotate-ads-edit.php:149
1889
- #: dashboard/publisher/adrotate-ads-edit.php:182
1890
- #: dashboard/publisher/adrotate-ads-edit.php:318
1891
- #: dashboard/publisher/adrotate-ads-edit.php:443
1892
- #: dashboard/publisher/adrotate-ads-edit.php:486
1893
- #: dashboard/publisher/adrotate-groups-edit.php:182
1894
- #: dashboard/publisher/adrotate-groups-edit.php:323
1895
- #: dashboard/publisher/adrotate-groups-edit.php:405
1896
  #, fuzzy
1897
  msgid "Cancel"
1898
  msgstr "Annuller"
1899
 
1900
- #: dashboard/publisher/adrotate-ads-edit.php:153
1901
  #, fuzzy
1902
  msgid "Preview"
1903
  msgstr "En avant-première"
1904
 
1905
- #: dashboard/publisher/adrotate-ads-edit.php:159
1906
  #, fuzzy
1907
  msgid ""
1908
  "Note: While this preview is an accurate one, it might look different then it "
@@ -1911,7 +1978,7 @@ msgstr ""
1911
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1912
  "différente sur le site."
1913
 
1914
- #: dashboard/publisher/adrotate-ads-edit.php:160
1915
  #, fuzzy
1916
  msgid ""
1917
  "This is because of CSS differences. Your themes CSS file is not active here!"
@@ -1919,470 +1986,314 @@ msgstr ""
1919
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1920
  "pas actif ici!"
1921
 
1922
- #: dashboard/publisher/adrotate-ads-edit.php:167
1923
- #: dashboard/publisher/adrotate-ads-edit.php:303
1924
- #: dashboard/publisher/adrotate-groups-edit.php:167
1925
- #: dashboard/publisher/adrotate-groups-edit.php:308
1926
  #, fuzzy
1927
  msgid "Usage"
1928
  msgstr "Usage"
1929
 
1930
- #: dashboard/publisher/adrotate-ads-edit.php:168
1931
- #: dashboard/publisher/adrotate-ads-edit.php:304
1932
- #: dashboard/publisher/adrotate-groups-edit.php:168
1933
- #: dashboard/publisher/adrotate-groups-edit.php:309
1934
- #, fuzzy
 
 
 
 
1935
  msgid ""
1936
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1937
- "where you want the advert to show up."
1938
  msgstr ""
1939
- "Copiez le shortcode dans un article ou une page. Le code PHP doit être dans "
1940
- "un fichier du thème si vus voulez que cette publicité soit affichée."
1941
 
1942
- #: dashboard/publisher/adrotate-ads-edit.php:172
1943
- #: dashboard/publisher/adrotate-ads-edit.php:308
1944
- #: dashboard/publisher/adrotate-groups-edit.php:172
1945
- #: dashboard/publisher/adrotate-groups-edit.php:313
1946
  #, fuzzy
1947
  msgid "In a post or page:"
1948
  msgstr "Insérer des publicités au début ou à la fin de l'article/page."
1949
 
1950
- #: dashboard/publisher/adrotate-ads-edit.php:174
1951
- #: dashboard/publisher/adrotate-ads-edit.php:310
1952
- #: dashboard/publisher/adrotate-groups-edit.php:174
1953
- #: dashboard/publisher/adrotate-groups-edit.php:315
1954
  #, fuzzy
1955
  msgid "Directly in a theme:"
1956
  msgstr "Directement dans un thème :"
1957
 
1958
- #: dashboard/publisher/adrotate-ads-edit.php:185
1959
- #: dashboard/publisher/adrotate-groups-edit.php:185
 
 
 
1960
  #, fuzzy
1961
- msgid "Advanced"
1962
- msgstr "Avancé"
1963
 
1964
- #: dashboard/publisher/adrotate-ads-edit.php:186
1965
  #, fuzzy
1966
- msgid "Everything below is optional."
1967
- msgstr "Tous les paramètres ci-dessous sont optionels."
1968
 
1969
- #: dashboard/publisher/adrotate-ads-edit.php:191
1970
  #, fuzzy
1971
- msgid "Clicktracking:"
1972
- msgstr "Clicktracking :"
1973
 
1974
- #: dashboard/publisher/adrotate-ads-edit.php:193
1975
  #, fuzzy
1976
- msgid "Enable click tracking for this advert."
1977
- msgstr "Activer le suivi des clicks pour cette publicité."
1978
 
1979
- #: dashboard/publisher/adrotate-ads-edit.php:194
1980
  #, fuzzy
1981
- msgid ""
1982
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1983
- "those provided by Google AdSense."
1984
- msgstr ""
1985
- "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
1986
- "publicités en Javascript telles que celles fournies par Google AdSense."
1987
 
1988
- #: dashboard/publisher/adrotate-ads-edit.php:195
 
1989
  #, fuzzy
1990
- msgid "Place the target URL in your adcode - Similar to code example 1."
1991
- msgstr ""
1992
- "Insérez l'URL cible dans votre code de pub pour activer le suivi des clicks."
1993
 
1994
- #: dashboard/publisher/adrotate-ads-edit.php:200
1995
  #, fuzzy
1996
- msgid "Target URL:"
1997
- msgstr "URL Cible :"
1998
 
1999
- #: dashboard/publisher/adrotate-ads-edit.php:203
 
2000
  msgid ""
2001
- "This field is no longer required. You can place the URL directly in the "
2002
- "adcode (above) instead of %link%."
 
2003
  msgstr ""
 
 
 
 
2004
 
2005
- #: dashboard/publisher/adrotate-ads-edit.php:208
2006
  #, fuzzy
2007
- msgid "Responsive:"
2008
- msgstr "Responsive :"
 
 
 
 
 
2009
 
2010
- #: dashboard/publisher/adrotate-ads-edit.php:210
2011
  #, fuzzy
2012
- msgid "Enable responsive support for this advert."
2013
- msgstr "Activer le support réactif pour cette publicité."
2014
 
2015
- #: dashboard/publisher/adrotate-ads-edit.php:211
 
 
 
2016
  #, fuzzy
2017
- msgid ""
2018
- "Upload your images to the banner folder and make sure the filename is in the "
2019
- "following format; \"imagename.full.ext\". A full set of sized images is "
2020
- "strongly recommended."
2021
- msgstr ""
2022
- "Transférez vos images dans le dossier de la bannière et assurez-vous que le "
2023
- "fichier est dans le format suivant: \"nomdefichier.full.ext\". Un ensemble "
2024
- "complet d'images de tailles différentes est recommendé si vous avez un site "
2025
- "fluide."
2026
-
2027
- #: dashboard/publisher/adrotate-ads-edit.php:213
2028
- #, fuzzy
2029
- msgid ""
2030
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
2031
- "for different viewports. Requires jQuery."
2032
- msgstr ""
2033
- "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
2034
- "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
2035
-
2036
- #: dashboard/publisher/adrotate-ads-edit.php:217
2037
- #, fuzzy
2038
- msgid "Banner image:"
2039
- msgstr "Image :"
2040
-
2041
- #: dashboard/publisher/adrotate-ads-edit.php:220
2042
- #, fuzzy
2043
- msgid "Media:"
2044
- msgstr "Médias :"
2045
 
2046
- #: dashboard/publisher/adrotate-ads-edit.php:220
 
2047
  #, fuzzy
2048
- msgid "Select Banner"
2049
- msgstr "Choisir l'image"
2050
-
2051
- #: dashboard/publisher/adrotate-ads-edit.php:222
2052
- msgid "- OR -"
2053
- msgstr ""
2054
 
2055
- #: dashboard/publisher/adrotate-ads-edit.php:224
2056
  #, fuzzy
2057
- msgid "Banner folder:"
2058
- msgstr "Dossier de bannières :"
2059
 
2060
- #: dashboard/publisher/adrotate-ads-edit.php:225
2061
  #, fuzzy
2062
- msgid "No image selected"
2063
- msgstr "Aucune image sélectionnée"
2064
 
2065
- #: dashboard/publisher/adrotate-ads-edit.php:229
2066
  #, fuzzy
2067
- msgid "Use %image% in the code. Accepted files are:"
2068
- msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
2069
 
2070
- #: dashboard/publisher/adrotate-ads-edit.php:229
2071
  #, fuzzy
2072
  msgid ""
2073
- "Use either the text field or the dropdown. If the textfield has content that "
2074
- "field has priority."
 
2075
  msgstr ""
2076
- "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
2077
- "valeur, ce champ a la priorité."
 
 
2078
 
2079
- #: dashboard/publisher/adrotate-ads-edit.php:233
2080
  #, fuzzy
2081
  msgid "Weight:"
2082
  msgstr "Importance"
2083
 
2084
- #: dashboard/publisher/adrotate-ads-edit.php:233
2085
  #, fuzzy
2086
  msgid "AdRotate Pro only"
2087
  msgstr "AdRotate Pro"
2088
 
2089
- #: dashboard/publisher/adrotate-ads-edit.php:236
2090
  #, fuzzy
2091
  msgid "Barely visible"
2092
  msgstr "Visible jusqu'à"
2093
 
2094
- #: dashboard/publisher/adrotate-ads-edit.php:237
2095
  msgid "Less than average"
2096
  msgstr ""
2097
 
2098
- #: dashboard/publisher/adrotate-ads-edit.php:238
2099
  #, fuzzy
2100
  msgid "Normal coverage"
2101
  msgstr "Normal"
2102
 
2103
- #: dashboard/publisher/adrotate-ads-edit.php:239
2104
  #, fuzzy
2105
  msgid "More than average"
2106
  msgstr "Plus d'informations..."
2107
 
2108
- #: dashboard/publisher/adrotate-ads-edit.php:240
2109
  msgid "Best visibility"
2110
  msgstr ""
2111
 
2112
- #: dashboard/publisher/adrotate-ads-edit.php:245
2113
- #: dashboard/publisher/adrotate-groups-edit.php:212
2114
  #, fuzzy
2115
  msgid "Sortorder:"
2116
  msgstr "Ordre de tri :"
2117
 
2118
- #: dashboard/publisher/adrotate-ads-edit.php:247
2119
- #: dashboard/publisher/adrotate-groups-edit.php:214
2120
  #, fuzzy
2121
  msgid "For administrative purposes set a sortorder."
2122
  msgstr "Pour des raisons administratives définir un ordre de tri."
2123
 
2124
- #: dashboard/publisher/adrotate-ads-edit.php:247
2125
  #, fuzzy
2126
  msgid "Leave empty or 0 to skip this. Will default to ad id."
2127
  msgstr ""
2128
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
2129
  "de l'ID de la publicité."
2130
 
2131
- #: dashboard/publisher/adrotate-ads-edit.php:252
2132
- #, fuzzy
2133
  msgid ""
2134
- "With AdRotate Pro you can also set a weight to give adverts more or less "
2135
- "attention."
2136
  msgstr ""
2137
- "Avec AdRotate Pro, vous pouvez aussi mettre un poids pour donner à vos "
2138
- "publicités plus ou moins d'importance."
2139
-
2140
- #: dashboard/publisher/adrotate-ads-edit.php:252
2141
- #: dashboard/publisher/adrotate-ads-edit.php:301
2142
- #: dashboard/publisher/adrotate-ads-edit.php:399
2143
- #: dashboard/publisher/adrotate-groups-edit.php:218
2144
- #, fuzzy
2145
- msgid "Upgrade today"
2146
- msgstr "Mettre à jour aujourd'hui"
2147
 
2148
- #: dashboard/publisher/adrotate-ads-edit.php:254
2149
- #, fuzzy
2150
- msgid "Geo Location in AdRotate Pro"
2151
- msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
2152
 
2153
- #: dashboard/publisher/adrotate-ads-edit.php:255
2154
  msgid ""
2155
- "This works if you assign the advert to a group and enable that group to use "
2156
- "Geo Targeting."
2157
  msgstr ""
2158
 
2159
- #: dashboard/publisher/adrotate-ads-edit.php:259
2160
  msgid "Cities/States:"
2161
  msgstr ""
2162
 
2163
- #: dashboard/publisher/adrotate-ads-edit.php:262
2164
- #: dashboard/publisher/adrotate-ads-edit.php:295
2165
- #, fuzzy
2166
- msgid "Usage:"
2167
- msgstr "Usage"
2168
-
2169
- #: dashboard/publisher/adrotate-ads-edit.php:263
2170
- msgid "A comma separated list of cities and/or states"
2171
  msgstr ""
2172
 
2173
- #: dashboard/publisher/adrotate-ads-edit.php:263
2174
  msgid ""
2175
  "AdRotate does not check the validity of names so make sure you spell them "
2176
  "correctly!"
2177
  msgstr ""
2178
 
2179
- #: dashboard/publisher/adrotate-ads-edit.php:267
2180
  msgid "Countries:"
2181
  msgstr ""
2182
 
2183
- #: dashboard/publisher/adrotate-ads-edit.php:296
2184
  #, fuzzy
2185
  msgid "Select the countries you want the adverts to show in."
2186
  msgstr ""
2187
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2188
  "pulicités."
2189
 
2190
- #: dashboard/publisher/adrotate-ads-edit.php:296
2191
  msgid "Cities take priority and will be filtered first."
2192
  msgstr ""
2193
 
2194
- #: dashboard/publisher/adrotate-ads-edit.php:301
2195
- #, fuzzy
2196
- msgid "Target your audience with Geo Location in AdRotate Pro"
2197
- msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
2198
-
2199
- #: dashboard/publisher/adrotate-ads-edit.php:321
2200
- #, fuzzy
2201
- msgid "Schedule"
2202
- msgstr "Planning"
2203
-
2204
- #: dashboard/publisher/adrotate-ads-edit.php:322
2205
- #, fuzzy
2206
- msgid "From when to when is the advert visible?"
2207
- msgstr "Quel est l'interval de dates pendant lequel la publicité est visible?"
2208
-
2209
- #: dashboard/publisher/adrotate-ads-edit.php:326
2210
- #, fuzzy
2211
- msgid "Start date (day/month/year):"
2212
- msgstr "Date de début (jour/mois/année) :"
2213
-
2214
- #: dashboard/publisher/adrotate-ads-edit.php:347
2215
- #, fuzzy
2216
- msgid "End date (day/month/year):"
2217
- msgstr "Date de fin (jour/mois/année) :"
2218
-
2219
- #: dashboard/publisher/adrotate-ads-edit.php:370
2220
- #, fuzzy
2221
- msgid "Start time (hh:mm):"
2222
- msgstr "Début (hh:mm) :"
2223
-
2224
- #: dashboard/publisher/adrotate-ads-edit.php:377
2225
- #, fuzzy
2226
- msgid "End time (hh:mm):"
2227
- msgstr "Fin (hh:mm) :"
2228
-
2229
- #: dashboard/publisher/adrotate-ads-edit.php:387
2230
- #, fuzzy
2231
- msgid "Maximum Clicks:"
2232
- msgstr "Nombre de clicks max :"
2233
-
2234
- #: dashboard/publisher/adrotate-ads-edit.php:388
2235
- #: dashboard/publisher/adrotate-ads-edit.php:390
2236
- #, fuzzy
2237
- msgid "Leave empty or 0 to skip this."
2238
- msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
2239
-
2240
- #: dashboard/publisher/adrotate-ads-edit.php:389
2241
- #, fuzzy
2242
- msgid "Maximum Impressions:"
2243
- msgstr "Nombre max de vues :"
2244
-
2245
- #: dashboard/publisher/adrotate-ads-edit.php:395
2246
- #, fuzzy
2247
- msgid ""
2248
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
2249
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
2250
- "hours. 6AM is 6:00 hours."
2251
- msgstr ""
2252
- "L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes habitués "
2253
- "au système de AM/PM, gardez cela en tête : si l'heure de début ou de fin est "
2254
- "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
2255
- "6:00). "
2256
-
2257
- #: dashboard/publisher/adrotate-ads-edit.php:395
2258
- #, fuzzy
2259
- msgid ""
2260
- "The maximum clicks and impressions are measured over the set schedule only. "
2261
- "Every schedule can have it's own limit!"
2262
- msgstr ""
2263
- "Le nombre maximum de clics et d'impressions est mesuré pour le calendrier en "
2264
- "question uniquement. Tous les calendriers peuvent avoir leurs propres "
2265
- "limites!"
2266
-
2267
- #: dashboard/publisher/adrotate-ads-edit.php:399
2268
- #, fuzzy
2269
- msgid "Create multiple schedules for each advert with AdRotate Pro."
2270
- msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2271
-
2272
- #: dashboard/publisher/adrotate-ads-edit.php:401
2273
- #, fuzzy
2274
- msgid "Choose Multiple Schedules in AdRotate Pro"
2275
- msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2276
-
2277
- #: dashboard/publisher/adrotate-ads-edit.php:402
2278
- msgid "You can add, edit or delete schedules from the"
2279
- msgstr ""
2280
-
2281
- #: dashboard/publisher/adrotate-ads-edit.php:402
2282
- msgid "dashboard. Save your advert first!"
2283
  msgstr ""
2284
 
2285
- #: dashboard/publisher/adrotate-ads-edit.php:409
2286
- #, fuzzy
2287
- msgid "From / Until"
2288
- msgstr "Visible jusqu'à"
2289
-
2290
- #: dashboard/publisher/adrotate-ads-edit.php:411
2291
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2292
- #: dashboard/publisher/adrotate-ads-main.php:45
2293
- #: dashboard/publisher/adrotate-ads-report.php:35
2294
- #: dashboard/publisher/adrotate-groups-edit.php:356
2295
- #: dashboard/publisher/adrotate-groups-main.php:37
2296
- #: dashboard/publisher/adrotate-groups-report.php:41
2297
- #, fuzzy
2298
- msgid "Clicks"
2299
- msgstr "Clicks"
2300
-
2301
- #: dashboard/publisher/adrotate-ads-edit.php:412
2302
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2303
- #: dashboard/publisher/adrotate-ads-report.php:34
2304
- #: dashboard/publisher/adrotate-groups-edit.php:355
2305
- #: dashboard/publisher/adrotate-groups-main.php:35
2306
- #: dashboard/publisher/adrotate-groups-report.php:40
2307
- #, fuzzy
2308
- msgid "Impressions"
2309
- msgstr "Vues"
2310
-
2311
- #: dashboard/publisher/adrotate-ads-edit.php:421
2312
- #, fuzzy
2313
- msgid "impressions per day"
2314
- msgstr "Vues"
2315
-
2316
- #: dashboard/publisher/adrotate-ads-edit.php:437
2317
- #, fuzzy
2318
- msgid "In use by this advert."
2319
- msgstr "Nouvelle pub"
2320
-
2321
- #: dashboard/publisher/adrotate-ads-edit.php:448
2322
  #, fuzzy
2323
  msgid "Select Groups"
2324
  msgstr "Choisir groupes"
2325
 
2326
- #: dashboard/publisher/adrotate-ads-edit.php:449
2327
- #, fuzzy
2328
- msgid "Optionally select the group(s) this ad belongs to."
2329
- msgstr "Choisir le groupe auquel cette publicité va être rattachée (optionel)"
2330
-
2331
- #: dashboard/publisher/adrotate-ads-edit.php:454
2332
  #, fuzzy
2333
  msgid "ID - Name"
2334
  msgstr "ID - Nom"
2335
 
2336
- #: dashboard/publisher/adrotate-ads-edit.php:455
2337
  #, fuzzy
2338
  msgid "Ads in group"
2339
  msgstr "Pubs dans le groupe"
2340
 
2341
- #: dashboard/publisher/adrotate-ads-edit.php:464
2342
  #: dashboard/publisher/adrotate-groups-main.php:58
2343
  #, fuzzy
2344
  msgid "Default"
2345
  msgstr "Par défaut"
2346
 
2347
- #: dashboard/publisher/adrotate-ads-edit.php:465
2348
  #: dashboard/publisher/adrotate-groups-main.php:59
2349
  #, fuzzy
2350
  msgid "Dynamic"
2351
  msgstr "Dynamique"
2352
 
2353
- #: dashboard/publisher/adrotate-ads-edit.php:465
2354
  #: dashboard/publisher/adrotate-groups-main.php:59
2355
  #, fuzzy
2356
  msgid "second rotation"
2357
  msgstr "deuxième rotation"
2358
 
2359
- #: dashboard/publisher/adrotate-ads-edit.php:466
2360
  #: dashboard/publisher/adrotate-groups-main.php:60
2361
  #, fuzzy
2362
  msgid "Block"
2363
  msgstr "Bloc"
2364
 
2365
- #: dashboard/publisher/adrotate-ads-edit.php:466
2366
  #: dashboard/publisher/adrotate-groups-main.php:60
2367
  #, fuzzy
2368
  msgid "grid"
2369
  msgstr "grille"
2370
 
2371
- #: dashboard/publisher/adrotate-ads-edit.php:467
2372
- #: dashboard/publisher/adrotate-groups-edit.php:220
2373
  #: dashboard/publisher/adrotate-groups-main.php:61
2374
  #, fuzzy
2375
  msgid "Post Injection"
2376
  msgstr "Injection dans l'article"
2377
 
2378
- #: dashboard/publisher/adrotate-ads-edit.php:468
2379
  #: dashboard/publisher/adrotate-groups-main.php:62
2380
  #, fuzzy
2381
  msgid "Geolocation"
2382
  msgstr "Géolocalisation"
2383
 
2384
- #: dashboard/publisher/adrotate-ads-edit.php:474
2385
- #: dashboard/publisher/adrotate-groups-edit.php:62
2386
  #: dashboard/publisher/adrotate-groups-main.php:69
2387
  #, fuzzy
2388
  msgid "Mode"
@@ -2419,6 +2330,25 @@ msgstr "Début / Fin"
2419
  msgid "Title"
2420
  msgstr "Titre :"
2421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2422
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2423
  #: dashboard/publisher/adrotate-ads-main.php:47
2424
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2490,7 +2420,7 @@ msgid "For 7 days"
2490
  msgstr "Pour 7 jours"
2491
 
2492
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2493
- #: dashboard/publisher/adrotate-groups-edit.php:398
2494
  #, fuzzy
2495
  msgid "Configuration errors."
2496
  msgstr "Erreurs de configuration."
@@ -2505,7 +2435,7 @@ msgid "Export to XML"
2505
  msgstr ""
2506
 
2507
  #: dashboard/publisher/adrotate-ads-main.php:42
2508
- #: dashboard/publisher/adrotate-groups-edit.php:357
2509
  #, fuzzy
2510
  msgid "Weight"
2511
  msgstr "Importance"
@@ -2583,86 +2513,79 @@ msgstr "Nouveau Groupe"
2583
  msgid "Edit Group"
2584
  msgstr "Modifier Groupe"
2585
 
2586
- #: dashboard/publisher/adrotate-groups-edit.php:56
2587
  #, fuzzy
2588
  msgid "Name:"
2589
  msgstr "Nom"
2590
 
2591
- #: dashboard/publisher/adrotate-groups-edit.php:65
2592
  #, fuzzy
2593
  msgid "Default - Show one ad at a time"
2594
  msgstr "Par defaut - Montrer une pub "
2595
 
2596
- #: dashboard/publisher/adrotate-groups-edit.php:66
2597
  #, fuzzy
2598
  msgid "Dynamic Mode - Show a different ad every few seconds"
2599
  msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
2600
 
2601
- #: dashboard/publisher/adrotate-groups-edit.php:67
2602
  #, fuzzy
2603
  msgid "Block Mode - Show a block of ads"
2604
  msgstr "Mode en Bloc - Montrer un bloc de pubs"
2605
 
2606
- #: dashboard/publisher/adrotate-groups-edit.php:71
2607
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2608
  msgstr ""
2609
 
2610
- #: dashboard/publisher/adrotate-groups-edit.php:78
2611
- #: dashboard/publisher/adrotate-groups-edit.php:135
2612
  #, fuzzy
2613
  msgid "Dynamic and Block Mode"
2614
  msgstr "Mode Dynamique et en Bloc"
2615
 
2616
- #: dashboard/publisher/adrotate-groups-edit.php:79
2617
  #, fuzzy
2618
  msgid "Only required if your group is in Dynamic or Block mode."
2619
  msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
2620
 
2621
- #: dashboard/publisher/adrotate-groups-edit.php:83
2622
- #, fuzzy
2623
- msgid "Block shape and border"
2624
- msgstr "Dimensions et bordure du bloc"
2625
 
2626
- #: dashboard/publisher/adrotate-groups-edit.php:110
2627
  #, fuzzy
2628
  msgid "rows"
2629
  msgstr "lignes"
2630
 
2631
- #: dashboard/publisher/adrotate-groups-edit.php:123
2632
  #, fuzzy
2633
  msgid "columns"
2634
  msgstr "colonnes"
2635
 
2636
- #: dashboard/publisher/adrotate-groups-edit.php:126
2637
  #, fuzzy
2638
  msgid "Block Mode"
2639
  msgstr "Mode en Bloc"
2640
 
2641
- #: dashboard/publisher/adrotate-groups-edit.php:126
2642
- #, fuzzy
2643
- msgid ""
2644
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2645
- "showing a maximum of 6 ads. Default: 2x2."
2646
  msgstr ""
2647
- "Créer une grille pour vos publicités. Choisissez 3 et 2 créera une grille "
2648
- "avec 2 colonnes montrant un maximum de 6 publicités. Valeur par défaut : 2x2."
2649
 
2650
- #: dashboard/publisher/adrotate-groups-edit.php:130
2651
- #, fuzzy
2652
- msgid "Advert Width and Height"
2653
- msgstr "Dimensions des publicités"
2654
 
2655
- #: dashboard/publisher/adrotate-groups-edit.php:132
2656
  #, fuzzy
2657
  msgid "pixel(s) wide"
2658
  msgstr "largeur en pixels"
2659
 
2660
- #: dashboard/publisher/adrotate-groups-edit.php:132
2661
  #, fuzzy
2662
  msgid "pixel(s) high."
2663
  msgstr "hauteur en pixels"
2664
 
2665
- #: dashboard/publisher/adrotate-groups-edit.php:135
2666
  #, fuzzy
2667
  msgid ""
2668
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2672,22 +2595,22 @@ msgstr ""
2672
  "marges. Si vous mettez 'auto', les dimensions seront automatiques (cici "
2673
  "n'est pas recommendé). Valeur par défaut : 125/125. "
2674
 
2675
- #: dashboard/publisher/adrotate-groups-edit.php:139
2676
  #, fuzzy
2677
  msgid "Automated refresh"
2678
  msgstr "Rafraîchissement automatique"
2679
 
2680
- #: dashboard/publisher/adrotate-groups-edit.php:158
2681
  #, fuzzy
2682
  msgid "seconds."
2683
  msgstr "Secondes."
2684
 
2685
- #: dashboard/publisher/adrotate-groups-edit.php:161
2686
  #, fuzzy
2687
  msgid "Dynamic Mode"
2688
  msgstr "Mode dynamique"
2689
 
2690
- #: dashboard/publisher/adrotate-groups-edit.php:161
2691
  #, fuzzy
2692
  msgid ""
2693
  "Load a new advert in this interval without reloading the page. Default: 6."
@@ -2695,247 +2618,252 @@ msgstr ""
2695
  "Chargez une nouvelle publicité sans recharger le page après cette "
2696
  "intervalle. La valeur par défaut est : 6."
2697
 
2698
- #: dashboard/publisher/adrotate-groups-edit.php:181
2699
- #: dashboard/publisher/adrotate-groups-edit.php:322
2700
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2701
  #, fuzzy
2702
  msgid "Save Group"
2703
  msgstr "Sauvegarder groupe"
2704
 
2705
- #: dashboard/publisher/adrotate-groups-edit.php:189
2706
  #, fuzzy
2707
  msgid "Advert Margin"
2708
  msgstr "Marges autour de la pub"
2709
 
2710
- #: dashboard/publisher/adrotate-groups-edit.php:191
2711
  #, fuzzy
2712
  msgid "pixel(s)"
2713
  msgstr "pixel(s)"
2714
 
2715
- #: dashboard/publisher/adrotate-groups-edit.php:194
2716
  #, fuzzy
2717
  msgid "A transparent area outside the advert in pixels. Default: 0."
2718
  msgstr ""
2719
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
2720
  "défaut : 0."
2721
 
2722
- #: dashboard/publisher/adrotate-groups-edit.php:194
2723
  #, fuzzy
2724
  msgid "Set to 0 to disable."
2725
  msgstr "Mettre 0 pour désactiver."
2726
 
2727
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2728
  #, fuzzy
2729
  msgid "Align the group"
2730
  msgstr "Pubs dans le groupe"
2731
 
2732
- #: dashboard/publisher/adrotate-groups-edit.php:201
2733
  #, fuzzy
2734
  msgid "None (Default)"
2735
  msgstr "Par défaut"
2736
 
2737
- #: dashboard/publisher/adrotate-groups-edit.php:202
2738
  msgid "Left"
2739
  msgstr ""
2740
 
2741
- #: dashboard/publisher/adrotate-groups-edit.php:203
2742
  #, fuzzy
2743
  msgid "Right"
2744
  msgstr "Importance"
2745
 
2746
- #: dashboard/publisher/adrotate-groups-edit.php:204
2747
  msgid "Center"
2748
  msgstr ""
2749
 
2750
- #: dashboard/publisher/adrotate-groups-edit.php:208
2751
  msgid ""
2752
  "Align the group in your post or page. Using 'center' may affect your margin "
2753
  "setting. Not every theme supports this feature."
2754
  msgstr ""
2755
 
2756
- #: dashboard/publisher/adrotate-groups-edit.php:214
2757
  #, fuzzy
2758
  msgid "Leave empty or 0 to skip this. Will default to group id."
2759
  msgstr ""
2760
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2761
  "défaut de l'identifiant du groupe."
2762
 
2763
- #: dashboard/publisher/adrotate-groups-edit.php:218
2764
  #, fuzzy
2765
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2766
  msgstr ""
2767
  "Mettre en place un groupe de secours, et utiliser la localisation "
2768
  "géographique dans AdRotate Pro"
2769
 
2770
- #: dashboard/publisher/adrotate-groups-edit.php:221
2771
- #, fuzzy
2772
- msgid "Insert ads to the begin or end of a post/page."
2773
- msgstr "Insérer des publicités au début ou à la fin de l'article/page."
2774
-
2775
- #: dashboard/publisher/adrotate-groups-edit.php:224
2776
  #, fuzzy
2777
  msgid "Include ads in categories?"
2778
  msgstr "Intégrer les publicités dans les catégories?"
2779
 
2780
- #: dashboard/publisher/adrotate-groups-edit.php:228
2781
- #: dashboard/publisher/adrotate-groups-edit.php:269
2782
  #, fuzzy
2783
  msgid "Disabled"
2784
  msgstr "Désactivé"
2785
 
2786
- #: dashboard/publisher/adrotate-groups-edit.php:229
2787
- #: dashboard/publisher/adrotate-groups-edit.php:270
2788
  #, fuzzy
2789
  msgid "Before content"
2790
  msgstr "Avant le contenu"
2791
 
2792
- #: dashboard/publisher/adrotate-groups-edit.php:230
2793
- #: dashboard/publisher/adrotate-groups-edit.php:271
2794
  #, fuzzy
2795
  msgid "After content"
2796
  msgstr "Après le contenu"
2797
 
2798
- #: dashboard/publisher/adrotate-groups-edit.php:231
2799
- #: dashboard/publisher/adrotate-groups-edit.php:272
2800
  #, fuzzy
2801
  msgid "Before and after content"
2802
  msgstr "Avant et après le contenu"
2803
 
2804
- #: dashboard/publisher/adrotate-groups-edit.php:232
2805
- #: dashboard/publisher/adrotate-groups-edit.php:273
2806
  #, fuzzy
2807
  msgid "After..."
2808
  msgstr "Après..."
2809
 
2810
- #: dashboard/publisher/adrotate-groups-edit.php:238
2811
- #: dashboard/publisher/adrotate-groups-edit.php:279
2812
  #, fuzzy
2813
  msgid "the first paragraph"
2814
  msgstr "le premier parapgraphe"
2815
 
2816
- #: dashboard/publisher/adrotate-groups-edit.php:239
2817
- #: dashboard/publisher/adrotate-groups-edit.php:280
2818
  #, fuzzy
2819
  msgid "the 2nd paragraph"
2820
  msgstr "le second paragraphe"
2821
 
2822
- #: dashboard/publisher/adrotate-groups-edit.php:240
2823
- #: dashboard/publisher/adrotate-groups-edit.php:281
2824
  #, fuzzy
2825
  msgid "the 3rd paragraph"
2826
  msgstr "le troisième paragraphe"
2827
 
2828
- #: dashboard/publisher/adrotate-groups-edit.php:241
2829
- #: dashboard/publisher/adrotate-groups-edit.php:282
2830
  #, fuzzy
2831
  msgid "the 4th paragraph"
2832
  msgstr "le quatrième paragraphe"
2833
 
2834
- #: dashboard/publisher/adrotate-groups-edit.php:243
2835
- #: dashboard/publisher/adrotate-groups-edit.php:284
2836
  #, fuzzy
2837
  msgid "every 2nd paragraph"
2838
  msgstr "chaque second paragraphe"
2839
 
2840
- #: dashboard/publisher/adrotate-groups-edit.php:244
2841
- #: dashboard/publisher/adrotate-groups-edit.php:285
2842
  #, fuzzy
2843
  msgid "every 3rd paragraph"
2844
  msgstr "chaque 3ème paragraphe"
2845
 
2846
- #: dashboard/publisher/adrotate-groups-edit.php:245
2847
- #: dashboard/publisher/adrotate-groups-edit.php:286
2848
  #, fuzzy
2849
  msgid "every 4th paragraph"
2850
  msgstr "chaque 4ème paragraphe"
2851
 
2852
- #: dashboard/publisher/adrotate-groups-edit.php:246
2853
- #: dashboard/publisher/adrotate-groups-edit.php:287
2854
  #, fuzzy
2855
  msgid "every 5th paragraph"
2856
  msgstr "chaque 5ème paragraphe"
2857
 
2858
- #: dashboard/publisher/adrotate-groups-edit.php:247
2859
- #: dashboard/publisher/adrotate-groups-edit.php:288
2860
  #, fuzzy
2861
  msgid "every 6th paragraph"
2862
  msgstr "chaque 6ème paragraphe"
2863
 
2864
- #: dashboard/publisher/adrotate-groups-edit.php:248
2865
- #: dashboard/publisher/adrotate-groups-edit.php:289
2866
  #, fuzzy
2867
  msgid "every 7th paragraph"
2868
  msgstr "chaque 7ème paragraphe"
2869
 
2870
- #: dashboard/publisher/adrotate-groups-edit.php:249
2871
- #: dashboard/publisher/adrotate-groups-edit.php:290
2872
  #, fuzzy
2873
  msgid "every 8th paragraph"
2874
  msgstr "chaque 8ème paragraphe"
2875
 
2876
- #: dashboard/publisher/adrotate-groups-edit.php:255
2877
  #, fuzzy
2878
  msgid "Which categories?"
2879
  msgstr "Quelles catégories?"
2880
 
2881
- #: dashboard/publisher/adrotate-groups-edit.php:260
2882
  #, fuzzy
2883
  msgid "Click the categories posts you want the adverts to show in."
2884
  msgstr ""
2885
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2886
  "pulicités."
2887
 
2888
- #: dashboard/publisher/adrotate-groups-edit.php:265
2889
  #, fuzzy
2890
  msgid "Include ads in pages?"
2891
  msgstr "Intégrer les publicités dans les pages?"
2892
 
2893
- #: dashboard/publisher/adrotate-groups-edit.php:296
2894
  #, fuzzy
2895
  msgid "Which pages?"
2896
  msgstr "Quelles pages?"
2897
 
2898
- #: dashboard/publisher/adrotate-groups-edit.php:301
2899
  #, fuzzy
2900
  msgid "Click the pages you want the adverts to show in."
2901
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2902
 
2903
- #: dashboard/publisher/adrotate-groups-edit.php:326
2904
  #, fuzzy
2905
  msgid "Wrapper code"
2906
  msgstr "Code enveloppant"
2907
 
2908
- #: dashboard/publisher/adrotate-groups-edit.php:327
2909
- #, fuzzy
2910
- msgid "Wraps around each ad."
2911
- msgstr "Code qui enveloppe chaque publicité."
2912
 
2913
- #: dashboard/publisher/adrotate-groups-edit.php:331
2914
  #, fuzzy
2915
  msgid "Before ad"
2916
  msgstr "Avant la pub"
2917
 
2918
- #: dashboard/publisher/adrotate-groups-edit.php:336
2919
  #, fuzzy
2920
- msgid "HTML/JavaScript allowed, use with care!"
2921
- msgstr "HTML/Javascript est authorisé, utiliser avec précaution!"
2922
 
2923
- #: dashboard/publisher/adrotate-groups-edit.php:340
2924
  #, fuzzy
2925
  msgid "After ad"
2926
  msgstr "Après la pub"
2927
 
2928
- #: dashboard/publisher/adrotate-groups-edit.php:349
2929
  #, fuzzy
2930
  msgid "Select Ads"
2931
  msgstr "Choisir les pubs"
2932
 
2933
- #: dashboard/publisher/adrotate-groups-edit.php:358
2934
  #, fuzzy
2935
  msgid "Visible until"
2936
  msgstr "Visible jusqu'à"
2937
 
2938
- #: dashboard/publisher/adrotate-groups-edit.php:391
2939
  #, fuzzy
2940
  msgid "No ads created!"
2941
  msgstr "Aucune pub créée!"
@@ -2975,6 +2903,142 @@ msgstr "Aucun groupe n'a été créé!"
2975
  msgid "Statistics for group"
2976
  msgstr "Statistiques pour le groupe"
2977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2978
  #, fuzzy
2979
  #~ msgid "AdRotate Website."
2980
  #~ msgstr "Magasin AdRotate"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
16
  "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:809
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:812
25
  #, fuzzy
26
  msgid "Folder not found or not accessible"
27
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
28
 
29
+ #: adrotate-output.php:745
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
+ #: adrotate-output.php:746
35
  #, fuzzy
36
  msgid ""
37
  "WordPress was unable to verify the authenticity of the url you have clicked. "
41
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
42
  "votre navigateur."
43
 
44
+ #: adrotate-output.php:747
45
  #, fuzzy
46
  msgid ""
47
  "If you have received the url you want to visit via email, you are being "
48
  "tricked!"
49
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
50
 
51
+ #: adrotate-output.php:748
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
+ #: adrotate-output.php:766
57
  #, fuzzy
58
  msgid ""
59
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
63
  "horaires/géographiques ou n'existe pas!"
64
 
65
+ #: adrotate-output.php:768
66
  #, fuzzy
67
  msgid ""
68
  "Error, Ad is not available at this time due to schedule/geolocation "
71
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
72
  "horaires/géographiques ou n'existe pas!"
73
 
74
+ #: adrotate-output.php:775 adrotate-output.php:777
75
  #, fuzzy
76
  msgid ""
77
  "Either there are no banners, they are disabled or none qualified for this "
80
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
81
  "cet endroit!"
82
 
83
+ #: adrotate-output.php:783
84
  #, fuzzy
85
  msgid "Error, no Ad ID set! Check your syntax!"
86
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
87
 
88
+ #: adrotate-output.php:789
89
  #, fuzzy
90
  msgid "Error, no group ID set! Check your syntax!"
91
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
92
 
93
+ #: adrotate-output.php:794
94
  #, fuzzy
95
  msgid "Error, group does not exist! Check your syntax!"
96
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
97
 
98
+ #: adrotate-output.php:800
99
  #, fuzzy
100
  msgid ""
101
  "There was an error locating the database tables for AdRotate. Please "
105
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
106
  "extensions. "
107
 
108
+ #: adrotate-output.php:800
109
  #, fuzzy
110
  msgid "If this does not solve the issue please seek support at"
111
  msgstr ""
112
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
113
  "support à"
114
 
115
+ #: adrotate-output.php:806
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
+ #: adrotate-output.php:831
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
+ #: adrotate-output.php:831
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
+ #: adrotate-output.php:833
131
  #, fuzzy
132
  msgid "active ad(s) are about to expire."
133
  msgstr "publicité(s) active(s) sont sur le point d'expirer"
134
 
135
+ #: adrotate-output.php:833
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
+ #: adrotate-output.php:835
141
  #, fuzzy
142
  msgid "active ad(s) with configuration errors."
143
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
144
 
145
+ #: adrotate-output.php:835
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
+ #: adrotate-output.php:837
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
+ #: adrotate-output.php:837
156
  #, fuzzy
157
  msgid "ad(s) are about to expire."
158
  msgstr "publicité(s) sont sur le point d'expirer"
159
 
160
+ #: adrotate-output.php:837
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
+ #: adrotate-output.php:837
166
  #, fuzzy
167
  msgid "Fix this as soon as possible"
168
  msgstr "Résoudre ce soucis dans les meilleurs délais"
169
 
170
+ #: adrotate-output.php:849
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
+ #: adrotate-output.php:850
176
  msgid ""
177
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
178
  "to the <strong>PRO</strong> version"
179
  msgstr ""
180
 
181
+ #: adrotate-output.php:850
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
+ #: adrotate-output.php:850
186
  #, fuzzy
187
  msgid "Thank you for your consideration!"
188
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
189
 
190
+ #: adrotate-output.php:894
191
  msgid ""
192
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
193
+ "this menu. Check out the"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:894
197
  msgid "manuals"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:894 adrotate-output.php:971
201
+ #: dashboard/publisher/adrotate-ads-edit.php:151
202
  msgid "and"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:894
206
  msgid "forums"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:930
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:931
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:933
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
+ #: adrotate-output.php:934
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
+ #: adrotate-output.php:935
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
+ #: adrotate-output.php:936
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
+ #: adrotate-output.php:937
238
  msgid "WordPress.org Forum"
239
  msgstr ""
240
 
241
+ #: adrotate-output.php:963
242
  #, fuzzy
243
  msgid "Help AdRotate Grow"
244
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
245
 
246
+ #: adrotate-output.php:964
247
  #, fuzzy
248
  msgid "Brought to you by"
249
  msgstr "Présenté par"
250
 
251
+ #: adrotate-output.php:971
252
  msgid ""
253
  "A lot of users only think to review AdRotate when something goes wrong while "
254
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:971
258
  msgid "If you find AdRotate useful please leave your honest"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:971
262
  msgid "rating"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:971
266
  #, fuzzy
267
  msgid "review"
268
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
269
 
270
+ #: adrotate-output.php:971
271
  msgid "on WordPress.org to help AdRotate grow in a positive way"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:974
275
  #, fuzzy
276
  msgid ""
277
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
280
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
281
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
282
 
283
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
284
  #, fuzzy
285
  msgid "Visit the"
286
  msgstr "Visitez le"
287
 
288
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
289
  #, fuzzy
290
  msgid "website"
291
  msgstr "site"
292
 
293
+ #: adrotate-output.php:1004
294
  #, fuzzy
295
  msgid "Available in AdRotate Pro"
296
  msgstr "Disponible dans Adrotate Pro"
297
 
298
+ #: adrotate-output.php:1004
299
  #, fuzzy
300
  msgid "More information..."
301
  msgstr "Plus d'informations..."
302
 
303
+ #: adrotate-output.php:1005
304
  #, fuzzy
305
  msgid "This feature is available in AdRotate Pro"
306
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
307
 
308
+ #: adrotate-output.php:1005
309
  #, fuzzy
310
  msgid "Learn more"
311
  msgstr "En savoir plus"
312
 
313
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
314
+ #: dashboard/publisher/adrotate-ads-edit.php:245
315
  #, fuzzy
316
  msgid "January"
317
  msgstr "Janvier"
318
 
319
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
320
+ #: dashboard/publisher/adrotate-ads-edit.php:246
321
  #, fuzzy
322
  msgid "February"
323
  msgstr "Février"
324
 
325
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
326
+ #: dashboard/publisher/adrotate-ads-edit.php:247
327
  #, fuzzy
328
  msgid "March"
329
  msgstr "Mars"
330
 
331
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
332
+ #: dashboard/publisher/adrotate-ads-edit.php:248
333
  #, fuzzy
334
  msgid "April"
335
  msgstr "Avril"
336
 
337
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
338
+ #: dashboard/publisher/adrotate-ads-edit.php:249
339
  #, fuzzy
340
  msgid "May"
341
  msgstr "Mai"
342
 
343
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
344
+ #: dashboard/publisher/adrotate-ads-edit.php:250
345
  #, fuzzy
346
  msgid "June"
347
  msgstr "Juin"
348
 
349
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
350
+ #: dashboard/publisher/adrotate-ads-edit.php:251
351
  #, fuzzy
352
  msgid "July"
353
  msgstr "Juillet"
354
 
355
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
356
+ #: dashboard/publisher/adrotate-ads-edit.php:252
357
  #, fuzzy
358
  msgid "August"
359
  msgstr "Août"
360
 
361
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
362
+ #: dashboard/publisher/adrotate-ads-edit.php:253
363
  #, fuzzy
364
  msgid "September"
365
  msgstr "Septembre"
366
 
367
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
368
+ #: dashboard/publisher/adrotate-ads-edit.php:254
369
  #, fuzzy
370
  msgid "October"
371
  msgstr "Octobre"
372
 
373
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
374
+ #: dashboard/publisher/adrotate-ads-edit.php:255
375
  #, fuzzy
376
  msgid "November"
377
  msgstr "Novembre"
378
 
379
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
380
+ #: dashboard/publisher/adrotate-ads-edit.php:256
381
  #, fuzzy
382
  msgid "December"
383
  msgstr "Décembre"
444
  msgid "Choose what you want to use this widget for"
445
  msgstr "Choisissez le fonction de ce widget"
446
 
447
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
448
  #, fuzzy
449
  msgid "ID:"
450
  msgstr "ID :"
454
  msgid "Fill in the ID of the type you want to display!"
455
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
456
 
457
+ #: adrotate.php:107
458
  #, fuzzy
459
  msgid "General Info"
460
  msgstr "Informations générales"
461
 
462
+ #: adrotate.php:108
463
  #, fuzzy
464
  msgid "AdRotate Pro"
465
  msgstr "AdRotate Pro"
466
 
467
+ #: adrotate.php:109
468
  #, fuzzy
469
  msgid "Manage Ads"
470
  msgstr "Gérer les pubs"
471
 
472
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
473
  #, fuzzy
474
  msgid "Manage Groups"
475
  msgstr "Gérer les groupes"
476
 
477
+ #: adrotate.php:111 adrotate.php:440
 
478
  #, fuzzy
479
  msgid "Manage Schedules"
480
  msgstr "Gérer"
481
 
482
+ #: adrotate.php:112
483
  #, fuzzy
484
  msgid "Manage Media"
485
  msgstr "Médias :"
486
 
487
+ #: adrotate.php:113
488
  #, fuzzy
489
  msgid "Settings"
490
  msgstr "Paramètres"
491
 
492
+ #: adrotate.php:136
493
  #, fuzzy
494
  msgid "AdRotate Info"
495
  msgstr "Informations sur Adrotate"
496
 
497
+ #: adrotate.php:157
498
  #, fuzzy
499
  msgid "AdRotate Professional"
500
  msgstr "AdRotate professionel"
501
 
502
+ #: adrotate.php:200
503
  #, fuzzy
504
  msgid "Ad Management"
505
  msgstr "Gestion des pubs"
506
 
507
+ #: adrotate.php:203
508
  #, fuzzy
509
  msgid "Ad created"
510
  msgstr "Publicité créée"
511
 
512
+ #: adrotate.php:205
513
  #, fuzzy
514
  msgid "Ad updated"
515
  msgstr "Publicité mise à jour"
516
 
517
+ #: adrotate.php:207
518
  #, fuzzy
519
  msgid "Ad(s) deleted"
520
  msgstr "Publicité(s) supprimée(s)"
521
 
522
+ #: adrotate.php:209
523
  #, fuzzy
524
  msgid "Ad(s) statistics reset"
525
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
526
 
527
+ #: adrotate.php:211
528
  #, fuzzy
529
  msgid "Ad(s) renewed"
530
  msgstr "publicité(s) renouvellée(s)"
531
 
532
+ #: adrotate.php:213
533
  #, fuzzy
534
  msgid "Ad(s) deactivated"
535
  msgstr "Publicité(s) désactivée(s)"
536
 
537
+ #: adrotate.php:215
538
  #, fuzzy
539
  msgid "Ad(s) activated"
540
  msgstr "Publicité(s) activée(s)"
541
 
542
+ #: adrotate.php:217
543
  #, fuzzy
544
  msgid ""
545
  "The ad was saved but has an issue which might prevent it from working "
548
  "La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
549
  "fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
550
 
551
+ #: adrotate.php:219
552
  #, fuzzy
553
  msgid "Export created"
554
  msgstr "Publicité créée"
555
 
556
+ #: adrotate.php:223
557
  #, fuzzy
558
  msgid "Action prohibited"
559
  msgstr "Action interdite"
560
 
561
+ #: adrotate.php:225 adrotate.php:373
562
  #, fuzzy
563
  msgid "No data found in selected time period"
564
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
565
 
566
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
567
  #, fuzzy
568
  msgid "Manage"
569
  msgstr "Gérer"
570
 
571
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
572
  #, fuzzy
573
  msgid "Add New"
574
  msgstr "Ajouter"
575
 
576
+ #: adrotate.php:362
577
  #, fuzzy
578
  msgid "Group Management"
579
  msgstr "Gérer les groupes"
580
 
581
+ #: adrotate.php:365
582
  #, fuzzy
583
  msgid "Group created"
584
  msgstr "Groupe créé"
585
 
586
+ #: adrotate.php:367
587
  #, fuzzy
588
  msgid "Group updated"
589
  msgstr "Groupe mis à jour"
590
 
591
+ #: adrotate.php:369
592
  #, fuzzy
593
  msgid "Group deleted"
594
  msgstr "Groupe supprimé"
595
 
596
+ #: adrotate.php:371
597
  #, fuzzy
598
  msgid "Group including it's Ads deleted"
599
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
600
 
601
+ #: adrotate.php:431
602
  #, fuzzy
603
  msgid "Schedule Management available in AdRotate Pro"
604
  msgstr "Disponible dans Adrotate Pro"
605
 
606
+ #: adrotate.php:441
607
  msgid ""
608
  "Schedule management and multiple schedules per advert is available in "
609
  "AdRotate Pro."
610
  msgstr ""
611
 
612
+ #: adrotate.php:441 adrotate.php:528
613
+ #: dashboard/publisher/adrotate-ads-edit.php:177
614
  #: dashboard/publisher/adrotate-ads-main.php:108
615
+ #: dashboard/publisher/adrotate-groups-edit.php:75
616
  #: dashboard/publisher/adrotate-groups-main.php:87
617
  #, fuzzy
618
  msgid "More information"
619
  msgstr "Plus d'informations..."
620
 
621
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
622
  #: dashboard/publisher/adrotate-ads-main-error.php:19
623
  #: dashboard/publisher/adrotate-ads-main.php:20
624
  #: dashboard/publisher/adrotate-groups-main.php:20
626
  msgid "Bulk Actions"
627
  msgstr "Actions en vrac"
628
 
629
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
630
  #: dashboard/publisher/adrotate-ads-main-error.php:29
631
  #: dashboard/publisher/adrotate-ads-main.php:30
632
  #: dashboard/publisher/adrotate-groups-main.php:24
634
  msgid "Go"
635
  msgstr "Aller"
636
 
637
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
638
  #: dashboard/publisher/adrotate-ads-main-error.php:39
639
  #: dashboard/publisher/adrotate-ads-main.php:39
640
  #: dashboard/publisher/adrotate-groups-main.php:32
642
  msgid "ID"
643
  msgstr "ID :"
644
 
645
+ #: adrotate.php:459
646
  #, fuzzy
647
  msgid "Start"
648
  msgstr "Début / Fin"
649
 
650
+ #: adrotate.php:459
651
  #, fuzzy
652
  msgid "End"
653
  msgstr "Début / Fin"
654
 
655
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
656
  #: dashboard/publisher/adrotate-groups-main.php:34
657
  #, fuzzy
658
  msgid "Ads"
659
  msgstr "Pubs"
660
 
661
+ #: adrotate.php:462
662
  #, fuzzy
663
  msgid "Max Clicks"
664
  msgstr "Clicks"
665
 
666
+ #: adrotate.php:463
667
  #, fuzzy
668
  msgid "Max Impressions"
669
  msgstr "Vues"
670
 
671
+ #: adrotate.php:493
672
  #, fuzzy
673
  msgid "No schedules created yet!"
674
  msgstr "Aucune pub n'a encore été créé!"
675
 
676
+ #: adrotate.php:498
677
  msgid "Easily manage your schedules from here with AdRotate Pro."
678
  msgstr ""
679
 
680
+ #: adrotate.php:498 adrotate.php:561
681
  #, fuzzy
682
  msgid "Upgrade today!"
683
  msgstr "Mettre à jour aujourd'hui"
684
 
685
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
686
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
687
  #, fuzzy
688
  msgid "Expires soon."
689
  msgstr "Expire bientôt."
690
 
691
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
692
+ #: dashboard/publisher/adrotate-groups-edit.php:373
693
  #, fuzzy
694
  msgid "Has expired."
695
  msgstr "A expiré."
696
 
697
+ #: adrotate.php:526
698
  #, fuzzy
699
  msgid "Media Management available in AdRotate Pro"
700
  msgstr "Disponible dans Adrotate Pro"
701
 
702
+ #: adrotate.php:528
703
  msgid ""
704
  "Upload images to the AdRotate Pro banners folder from here. This is "
705
  "especially useful if you use responsive adverts with multiple images."
706
  msgstr ""
707
 
708
+ #: adrotate.php:528
709
  msgid "Media uploading and management is available in AdRotate Pro."
710
  msgstr ""
711
 
712
+ #: adrotate.php:530
713
  #, fuzzy
714
  msgid "Upload new banner image"
715
  msgstr "Image :"
716
 
717
+ #: adrotate.php:531
718
  #, fuzzy
719
  msgid "Accepted files are:"
720
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
721
 
722
+ #: adrotate.php:531
723
  msgid "Maximum size is 512Kb."
724
  msgstr ""
725
 
726
+ #: adrotate.php:531
727
  msgid "Important:"
728
  msgstr ""
729
 
730
+ #: adrotate.php:531
731
  msgid ""
732
  "Make sure your file has no spaces or special characters in the name. Replace "
733
  "spaces with a - or _."
734
  msgstr ""
735
 
736
+ #: adrotate.php:533
737
  msgid ""
738
  "For responsive adverts make sure the filename is in the following format; "
739
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
740
  msgstr ""
741
 
742
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
743
  #, fuzzy
744
  msgid ""
745
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
749
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
750
  "tailles d'écran."
751
 
752
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
753
+ #: dashboard/publisher/adrotate-groups-edit.php:308
754
+ #: dashboard/publisher/adrotate-groups-edit.php:316
755
  #, fuzzy
756
  msgid "Example:"
757
  msgstr "Exemple :"
758
 
759
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
760
  #, fuzzy
761
  msgid ""
762
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
765
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
766
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
767
 
768
+ #: adrotate.php:539
769
  #, fuzzy
770
  msgid "Upload image"
771
  msgstr "Image :"
772
 
773
+ #: adrotate.php:542
774
  msgid "Available banner images in"
775
  msgstr ""
776
 
777
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
778
  #, fuzzy
779
  msgid "Name"
780
  msgstr "Nom"
781
 
782
+ #: adrotate.php:548
783
  #, fuzzy
784
  msgid "Actions"
785
  msgstr "Actions en vrac"
786
 
787
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
788
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
789
  #: dashboard/publisher/adrotate-ads-main-error.php:21
790
  #: dashboard/publisher/adrotate-ads-main.php:22
791
  #, fuzzy
792
  msgid "Delete"
793
  msgstr "Effacer"
794
 
795
+ #: adrotate.php:561
796
  msgid ""
797
  "Make sure the banner images are not in use by adverts when you delete them!"
798
  msgstr ""
799
 
800
+ #: adrotate.php:561
801
  msgid "Manage your banner folder from here with AdRotate Pro."
802
  msgstr ""
803
 
804
+ #: adrotate.php:605
805
  #, fuzzy
806
  msgid "AdRotate Settings"
807
  msgstr "Paramètres de AdRotate"
808
 
809
+ #: adrotate.php:608
810
  #, fuzzy
811
  msgid "Settings saved"
812
  msgstr "Paramètres sauvegardés"
813
 
814
+ #: adrotate.php:610
815
  #, fuzzy
816
  msgid "Database optimized"
817
  msgstr "Base de données optimisée"
818
 
819
+ #: adrotate.php:612
820
  #, fuzzy
821
  msgid "Database repaired"
822
  msgstr "Base de données réparée"
823
 
824
+ #: adrotate.php:614
825
  #, fuzzy
826
  msgid "Ads evaluated and statuses have been corrected where required"
827
  msgstr ""
828
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
829
 
830
+ #: adrotate.php:616
831
  #, fuzzy
832
  msgid "Empty database records removed"
833
  msgstr "Les registres vides de la base de données ont été supprimés"
834
 
835
+ #: adrotate.php:618
836
  #, fuzzy
837
  msgid "Database can only be optimized or cleaned once every hour"
838
  msgstr ""
839
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
840
 
841
+ #: adrotate.php:626
842
  #, fuzzy
843
  msgid "Access Rights"
844
  msgstr "Droits d'Accès"
845
 
846
+ #: adrotate.php:627
847
  #, fuzzy
848
  msgid "Who has access to what?"
849
  msgstr "Qui a accès à quoi?"
850
 
851
+ #: adrotate.php:630
852
  #, fuzzy
853
  msgid "Manage/Add/Edit adverts"
854
  msgstr "Gérer/Ajouter/Modifier les publicités"
855
 
856
+ #: adrotate.php:634
857
  #, fuzzy
858
  msgid "Role to see and add/edit ads."
859
  msgstr "Rôle pour voir et gérer/modifier les publicités."
860
 
861
+ #: adrotate.php:638
862
  #, fuzzy
863
  msgid "Delete/Reset adverts"
864
  msgstr "Supprimer/Mettre à zéro les publicités"
865
 
866
+ #: adrotate.php:642
867
  #, fuzzy
868
  msgid "Role to delete ads and reset stats."
869
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
870
 
871
+ #: adrotate.php:646
872
  #, fuzzy
873
  msgid "Manage/Add/Edit groups"
874
  msgstr "Gérer/Ajouter/Modifier les groupes"
875
 
876
+ #: adrotate.php:650
877
  #, fuzzy
878
  msgid "Role to see and add/edit groups."
879
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
880
 
881
+ #: adrotate.php:654
882
  #, fuzzy
883
  msgid "Delete groups"
884
  msgstr "Effacer les groups"
885
 
886
+ #: adrotate.php:658
887
  #, fuzzy
888
  msgid "Role to delete groups."
889
  msgstr "Rôle pour supprimer les groupes."
890
 
891
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
892
+ #: adrotate.php:875
893
  #, fuzzy
894
  msgid "Update Options"
895
  msgstr "Mettre à jour les options"
896
 
897
+ #: adrotate.php:690
898
  #, fuzzy
899
  msgid "Statistics"
900
  msgstr "Statistiques"
901
 
902
+ #: adrotate.php:693
903
  #, fuzzy
904
  msgid "Enable stats"
905
  msgstr "Statistiques activés"
906
 
907
+ #: adrotate.php:695
908
  #, fuzzy
909
  msgid "Track clicks and impressions."
910
  msgstr "Suivi des clicks et des impressions."
911
 
912
+ #: adrotate.php:695
913
  msgid "Disabling this also disables click and impression limits on schedules."
914
  msgstr ""
915
 
916
+ #: adrotate.php:699
917
  #, fuzzy
918
  msgid "Impressions timer"
919
  msgstr "Minuterie de impressions"
920
 
921
+ #: adrotate.php:701 adrotate.php:708
922
  #, fuzzy
923
  msgid "Seconds."
924
  msgstr "Secondes."
925
 
926
+ #: adrotate.php:702
927
  #, fuzzy
928
  msgid "Default: 60."
929
  msgstr "Par défaut"
930
 
931
+ #: adrotate.php:702
932
  #, fuzzy
933
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
934
  msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
935
 
936
+ #: adrotate.php:706
937
  #, fuzzy
938
  msgid "Clicks timer"
939
  msgstr "Interval de clicks"
940
 
941
+ #: adrotate.php:709
942
  #, fuzzy
943
  msgid "Default: 86400."
944
  msgstr "Par défaut"
945
 
946
+ #: adrotate.php:709
947
  #, fuzzy
948
  msgid ""
949
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
950
  msgstr ""
951
  "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
952
 
953
+ #: adrotate.php:714
954
  #, fuzzy
955
  msgid "Bot filter"
956
  msgstr "Filtre de robots"
957
 
958
+ #: adrotate.php:717
959
  #, fuzzy
960
  msgid "User-Agent Filter"
961
  msgstr "Filtrage par User-Agent"
962
 
963
+ #: adrotate.php:720
964
  #, fuzzy
965
  msgid ""
966
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
969
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
970
  "impressions et le clics fait par les robots/crawlers/user-agents."
971
 
972
+ #: adrotate.php:721
973
  #, fuzzy
974
  msgid ""
975
  "Keep in mind that this might give false positives. The word 'google' also "
978
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
979
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
980
 
981
+ #: adrotate.php:721
982
  #, fuzzy
983
  msgid "Keep your list up-to-date"
984
  msgstr "Gardez votre liste à jour"
985
 
986
+ #: adrotate.php:722
987
  #, fuzzy
988
  msgid ""
989
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
992
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
993
  "sont aussi permis. Tous les autres caractères seront supprimés. "
994
 
995
+ #: adrotate.php:723
996
  #, fuzzy
997
  msgid ""
998
  "Additionally to the list specified here, empty User-Agents are blocked as "
1001
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
1002
  "bloqués."
1003
 
1004
+ #: adrotate.php:723
1005
  #, fuzzy
1006
  msgid "Learn more about"
1007
  msgstr "En savoir plus sur"
1008
 
1009
+ #: adrotate.php:723
1010
  #, fuzzy
1011
  msgid "user-agents"
1012
  msgstr "user-agents"
1013
 
1014
+ #: adrotate.php:732
1015
  #, fuzzy
1016
  msgid "Miscellaneous"
1017
  msgstr "Divers"
1018
 
1019
+ #: adrotate.php:735
1020
  #, fuzzy
1021
  msgid "Widget alignment"
1022
  msgstr "Alignement du Widget"
1023
 
1024
+ #: adrotate.php:736
1025
  #, fuzzy
1026
  msgid ""
1027
  "Check this box if your widgets do not align in your themes sidebar. (Does "
1030
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
1031
  "votre thème. Cette fonction peux ne pas régler le soucis!"
1032
 
1033
+ #: adrotate.php:739
1034
  #, fuzzy
1035
  msgid "Widget padding"
1036
  msgstr "Marge interne du Widget"
1037
 
1038
+ #: adrotate.php:740
1039
  #, fuzzy
1040
  msgid ""
1041
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
1044
  "Activez cette option pour supprimer la marge (espace vide) autour des "
1045
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
1046
 
1047
+ #: adrotate.php:745 adrotate.php:756
1048
  #, fuzzy
1049
  msgid "NOTICE:"
1050
  msgstr ""
1054
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1055
  "de données est lente ou ne réponds pas."
1056
 
1057
+ #: adrotate.php:746
1058
  #, fuzzy
1059
  msgid ""
1060
  "You have enabled W3 Total Caching support but not defined the security hash. "
1067
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
1068
  "fonction \"late init\" doit être activée dans W3 Total Cache."
1069
 
1070
+ #: adrotate.php:750
1071
  #, fuzzy
1072
  msgid "W3 Total Caching"
1073
  msgstr "W3 Total Caching"
1074
 
1075
+ #: adrotate.php:751
1076
  #, fuzzy
1077
  msgid "Check this box if you use W3 Total Caching on your site."
1078
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
1079
 
1080
+ #: adrotate.php:757
1081
  #, fuzzy
1082
  msgid ""
1083
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
1088
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
1089
  "support pour le contenu dynamique."
1090
 
1091
+ #: adrotate.php:761
1092
  #, fuzzy
1093
  msgid "WP Super Cache"
1094
  msgstr "WP Super Cache"
1095
 
1096
+ #: adrotate.php:762
1097
  #, fuzzy
1098
  msgid "Check this box if you use WP Super Cache on your site."
1099
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
1100
 
1101
+ #: adrotate.php:767
1102
  #, fuzzy
1103
  msgid ""
1104
  "It may take a while for the ad to start rotating. The caching plugin needs "
1109
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1110
  "pas fait manuellement."
1111
 
1112
+ #: adrotate.php:767
1113
  #, fuzzy
1114
  msgid ""
1115
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1119
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1120
  "PHP dans le code d'exclusion vous-même."
1121
 
1122
+ #: adrotate.php:771
1123
  msgid "Javascript"
1124
  msgstr ""
1125
 
1126
+ #: adrotate.php:774
1127
  #, fuzzy
1128
  msgid "Load jQuery"
1129
  msgstr "Utilisez jQuery"
1130
 
1131
+ #: adrotate.php:775
1132
  #, fuzzy
1133
  msgid ""
1134
  "jQuery is required for all Javascript features below. Enable this if your "
1137
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1138
  "le si votre thème ne charge pas jQuery directement."
1139
 
1140
+ #: adrotate.php:778
1141
  #, fuzzy
1142
  msgid "Load in footer?"
1143
  msgstr "Chargement dans le pied de page?"
1144
 
1145
+ #: adrotate.php:779
1146
  #, fuzzy
1147
  msgid ""
1148
  "Enable if you want to load the above libraries in the footer. Your theme "
1151
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1152
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1153
 
1154
+ #: adrotate.php:787
1155
  #, fuzzy
1156
  msgid "Maintenance"
1157
  msgstr "Maintenance"
1158
 
1159
+ #: adrotate.php:788
1160
  #, fuzzy
1161
  msgid ""
1162
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1171
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1172
  "de données est lente ou ne réponds pas."
1173
 
1174
+ #: adrotate.php:803 adrotate.php:805
1175
  #, fuzzy
1176
  msgid "Optimize Database"
1177
  msgstr "Optimiser la base de données"
1178
 
1179
+ #: adrotate.php:805
1180
  #, fuzzy
1181
  msgid "You are about to optimize the AdRotate database."
1182
  msgstr "Vous allez optimiser la base de données de Adrotate."
1183
 
1184
+ #: adrotate.php:805
1185
  #, fuzzy
1186
  msgid "Did you make a backup of your database?"
1187
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1188
 
1189
+ #: adrotate.php:805
1190
  #, fuzzy
1191
  msgid ""
1192
  "This may take a moment and may cause your website to respond slow "
1195
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1196
  "temporaire!"
1197
 
1198
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1199
  #: dashboard/publisher/adrotate-groups-main.php:24
1200
  #, fuzzy
1201
  msgid "OK to continue, CANCEL to stop."
1202
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1203
 
1204
+ #: adrotate.php:806
1205
  #, fuzzy
1206
  msgid "Cleans up overhead data in the AdRotate tables."
1207
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1208
 
1209
+ #: adrotate.php:807
1210
  #, fuzzy
1211
  msgid ""
1212
  "Overhead data is accumulated garbage resulting from many changes you've "
1216
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1217
  "KB de données."
1218
 
1219
+ #: adrotate.php:811 adrotate.php:813
1220
  #, fuzzy
1221
  msgid "Clean-up Database"
1222
  msgstr "Nettoyer la base de données"
1223
 
1224
+ #: adrotate.php:813
1225
  #, fuzzy
1226
  msgid ""
1227
  "You are about to clean up your database. This may delete expired schedules "
1230
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1231
  "supprimer des calendriers périmés et des vieilles statistiques.."
1232
 
1233
+ #: adrotate.php:813
1234
  #, fuzzy
1235
  msgid "Are you sure you want to continue?"
1236
  msgstr "Etes-vous certains de vouloir continuer?"
1237
 
1238
+ #: adrotate.php:813 adrotate.php:821
1239
  #, fuzzy
1240
  msgid "This might take a while and may slow down your site during this action!"
1241
  msgstr ""
1242
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1243
  "interval!"
1244
 
1245
+ #: adrotate.php:814
1246
  #, fuzzy
1247
  msgid "Delete stats older than 356 days (Optional)."
1248
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1249
 
1250
+ #: adrotate.php:815
1251
  #, fuzzy
1252
  msgid ""
1253
  "AdRotate creates empty records when you start making ads or groups. In rare "
1256
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1257
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1258
 
1259
+ #: adrotate.php:815
1260
  #, fuzzy
1261
  msgid ""
1262
  "If you made an ad or group that does not save when you make it use this "
1266
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1267
  "registres vides."
1268
 
1269
+ #: adrotate.php:815
1270
  #, fuzzy
1271
  msgid ""
1272
  "Additionally you can clean up old statistics. This will improve the speed of "
1275
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1276
  "d'améliorer la vitesse de votre site."
1277
 
1278
+ #: adrotate.php:819
1279
  #, fuzzy
1280
  msgid "Re-evaluate Ads"
1281
  msgstr "Re-évaluer les publicités"
1282
 
1283
+ #: adrotate.php:821
1284
  #, fuzzy
1285
  msgid "Re-evaluate all ads"
1286
  msgstr "Re-évaluer toutes les publicités"
1287
 
1288
+ #: adrotate.php:821
1289
  #, fuzzy
1290
  msgid "You are about to check all ads for errors."
1291
  msgstr "Vous allez véifier l'état de toutes les publicités."
1292
 
1293
+ #: adrotate.php:822
1294
  #, fuzzy
1295
  msgid ""
1296
  "This will apply all evaluation rules to all ads to see if any error slipped "
1300
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1301
  "fonctionalité."
1302
 
1303
+ #: adrotate.php:826
1304
  #, fuzzy
1305
  msgid ""
1306
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1318
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1319
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1320
 
1321
+ #: adrotate.php:834
1322
  #, fuzzy
1323
  msgid "Troubleshooting"
1324
  msgstr "Diagnostic de dépannage"
1325
 
1326
+ #: adrotate.php:837
1327
  #, fuzzy
1328
  msgid "Current version:"
1329
  msgstr "Version actuelle :"
1330
 
1331
+ #: adrotate.php:838
1332
  #, fuzzy
1333
  msgid "Previous version:"
1334
  msgstr "Version antérieure :"
1335
 
1336
+ #: adrotate.php:841
1337
  #, fuzzy
1338
  msgid "Current database version:"
1339
  msgstr "Version actuelle de la base de données :"
1340
 
1341
+ #: adrotate.php:842
1342
  #, fuzzy
1343
  msgid "Previous database version:"
1344
  msgstr "Version antérieure de la base de données :"
1345
 
1346
+ #: adrotate.php:845
1347
  msgid "Ad evaluation next run:"
1348
  msgstr ""
1349
 
1350
+ #: adrotate.php:846 adrotate.php:850
1351
  #, fuzzy
1352
  msgid "Not scheduled!"
1353
  msgstr "Pas planifié!"
1354
 
1355
+ #: adrotate.php:849
1356
  msgid "Clean Trackerdata next run:"
1357
  msgstr ""
1358
 
1359
+ #: adrotate.php:853
1360
  #, fuzzy
1361
  msgid "Current status of adverts"
1362
  msgstr "Etat actuel des publicités"
1363
 
1364
+ #: adrotate.php:854
1365
  #, fuzzy
1366
  msgid "Normal"
1367
  msgstr "Normal"
1368
 
1369
+ #: adrotate.php:854
1370
  #, fuzzy
1371
  msgid "Error"
1372
  msgstr "Erreur"
1373
 
1374
+ #: adrotate.php:854
1375
  #, fuzzy
1376
  msgid "Expired"
1377
  msgstr "Expiré"
1378
 
1379
+ #: adrotate.php:854
1380
  #, fuzzy
1381
  msgid "Expires Soon"
1382
  msgstr "Expire bientôt."
1383
 
1384
+ #: adrotate.php:854
1385
  #, fuzzy
1386
  msgid "Unknown Status"
1387
  msgstr "Statut Inconnu"
1388
 
1389
+ #: adrotate.php:857
1390
  #, fuzzy
1391
  msgid ""
1392
  "NOTE: The below options are not meant for normal use and are only there for "
1400
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1401
  "une utilisation normale, ils ne doivent pas être activés!"
1402
 
1403
+ #: adrotate.php:861
1404
  #, fuzzy
1405
  msgid "Developer Debug"
1406
  msgstr "Debuggage de développeur"
1407
 
1408
+ #: adrotate.php:863
1409
  #, fuzzy
1410
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1411
  msgstr ""
1412
  "Dépannage des publicités. Si cette option est activée, les données seront "
1413
  "placées sur le site."
1414
 
1415
+ #: adrotate.php:864
1416
  #, fuzzy
1417
  msgid "Show all settings, dashboard routines and related values."
1418
  msgstr ""
1419
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1420
  "connexes."
1421
 
1422
+ #: adrotate.php:865
1423
  #, fuzzy
1424
  msgid "Show array of all userroles and capabilities."
1425
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1426
 
1427
+ #: adrotate.php:866
1428
  #, fuzzy
1429
  msgid "Review saved advertisers! Visible to advertisers."
1430
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1431
 
1432
+ #: adrotate.php:867
1433
  #, fuzzy
1434
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1435
  msgstr ""
1436
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1437
  "Visible uniquement aux annonceurs."
1438
 
1439
+ #: adrotate.php:868
1440
  #, fuzzy
1441
  msgid ""
1442
  "Disable timers for clicks and impressions and enable a alert window for "
1445
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1446
  "fenêtre d'alerte pour le suivi des clicks."
1447
 
1448
+ #: adrotate.php:869
1449
  #, fuzzy
1450
  msgid "Temporarily disable encryption on the redirect url."
1451
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1735
  msgstr "Le code de la publicité ne peut être vide!"
1736
 
1737
  #: dashboard/publisher/adrotate-ads-edit.php:49
1738
+ msgid "You did not use %image% in your AdCode but did select an image!"
 
1739
  msgstr ""
 
 
1740
 
1741
  #: dashboard/publisher/adrotate-ads-edit.php:52
1742
  #, fuzzy
1756
  "publicité!"
1757
 
1758
  #: dashboard/publisher/adrotate-ads-edit.php:58
1759
+ msgid ""
1760
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1761
+ "ineffective."
1762
+ msgstr ""
1763
+
1764
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1765
+ msgid ""
1766
+ "Your chosen banner image does not have the right name. Check the responsive "
1767
+ "description and try again."
1768
+ msgstr ""
1769
+
1770
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1771
  #, fuzzy
1772
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1773
  msgstr ""
1774
  "Le suivi des clicks par jQuery est activé, mais aucun lien valide n'a été "
1775
  "retrouvé dans le adcode!"
1776
 
1777
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1778
  #, fuzzy
1779
  msgid ""
1780
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1783
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1784
  "essayez d'enregistrer votre publicité à nouveau!"
1785
 
1786
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1787
  #, fuzzy
1788
  msgid "This ad is expired and currently not shown on your website!"
1789
  msgstr ""
1790
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1791
 
1792
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1793
  #, fuzzy
1794
  msgid "The ad will expire in less than 2 days!"
1795
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1796
 
1797
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1798
  #, fuzzy
1799
  msgid "This ad will expire in less than 7 days!"
1800
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1801
 
1802
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1803
  #, fuzzy
1804
  msgid "This ad has been disabled and does not rotate on your site!"
1805
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1806
 
1807
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1808
  #, fuzzy
1809
  msgid "New Advert"
1810
  msgstr "Nouvelle pub"
1811
 
1812
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1813
  #, fuzzy
1814
  msgid "Edit Advert"
1815
  msgstr "Modifier la pub"
1816
 
1817
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
 
1818
  #, fuzzy
1819
  msgid "Title:"
1820
  msgstr "Titre :"
1821
 
1822
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1823
  #, fuzzy
1824
  msgid "AdCode:"
1825
  msgstr "Code :"
1826
 
1827
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1828
+ #, fuzzy
1829
+ msgid "Basic Examples:"
1830
+ msgstr "Exemples de base :"
1831
+
1832
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1833
+ msgid "Useful tags:"
1834
+ msgstr ""
1835
+
1836
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1837
+ msgid "Insert the advert ID Number."
1838
+ msgstr ""
1839
+
1840
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1841
+ msgid "Insert the %image% tag. Required when selecting a image below."
1842
+ msgstr ""
1843
+
1844
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1845
+ msgid "Insert the advert name."
1846
+ msgstr ""
1847
+
1848
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1849
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1850
+ msgstr ""
1851
+
1852
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1853
+ msgid "Add inside the <a> tag to open advert in a new window."
1854
+ msgstr ""
1855
+
1856
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1857
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1858
+ msgstr ""
1859
+
1860
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1861
  msgid ""
1862
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1863
+ "click to add it."
1864
  msgstr ""
1865
 
1866
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1867
+ #, fuzzy
1868
+ msgid "Banner image:"
1869
+ msgstr "Image :"
1870
+
1871
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1872
+ msgid "WordPress media:"
1873
  msgstr ""
1874
 
1875
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1876
  #, fuzzy
1877
+ msgid "Select Banner"
1878
+ msgstr "Choisir l'image"
1879
 
1880
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1881
+ msgid "- OR -"
1882
+ msgstr ""
1883
+
1884
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1885
  #, fuzzy
1886
+ msgid "Banner folder:"
1887
+ msgstr "Dossier de bannières :"
1888
+
1889
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1890
+ #, fuzzy
1891
+ msgid "No image selected"
1892
+ msgstr "Aucune image sélectionnée"
1893
+
1894
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1895
+ #, fuzzy
1896
+ msgid "Use %image% in the code. Accepted files are:"
1897
+ msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
1898
+
1899
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1900
+ #, fuzzy
1901
+ msgid ""
1902
+ "Use either the text field or the dropdown. If the textfield has content that "
1903
+ "field has priority."
1904
+ msgstr ""
1905
+ "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1906
+ "valeur, ce champ a la priorité."
1907
+
1908
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1909
+ #, fuzzy
1910
+ msgid "Clicktracking:"
1911
+ msgstr "Clicktracking :"
1912
 
1913
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1914
  #, fuzzy
1915
+ msgid "Enable click tracking for this advert."
1916
+ msgstr "Activer le suivi des clicks pour cette publicité."
1917
+
1918
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1919
  msgid ""
1920
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1921
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1922
+ "supported."
1923
  msgstr ""
 
 
1924
 
1925
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1926
  #, fuzzy
1927
  msgid "Activate:"
1928
  msgstr "Activer"
1929
 
1930
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1931
  #, fuzzy
1932
  msgid "Yes, this ad will be used"
1933
  msgstr "Oui, cette publicité sera utilisée"
1934
 
1935
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1936
  #, fuzzy
1937
  msgid "No, do not show this ad anywhere"
1938
  msgstr "Non, cette publicité ne sera pas utilisée"
1939
 
1940
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1941
  #: dashboard/publisher/adrotate-ads-main.php:108
1942
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1943
  #: dashboard/publisher/adrotate-groups-main.php:87
1944
  #, fuzzy
1945
  msgid "Get more features with AdRotate Pro."
1946
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1947
 
1948
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1949
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1950
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1951
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1952
  #, fuzzy
1953
  msgid "Save Advert"
1954
  msgstr "Sauvegarder la pub"
1955
 
1956
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1957
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1958
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1959
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1960
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1961
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1962
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1963
  #, fuzzy
1964
  msgid "Cancel"
1965
  msgstr "Annuller"
1966
 
1967
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1968
  #, fuzzy
1969
  msgid "Preview"
1970
  msgstr "En avant-première"
1971
 
1972
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1973
  #, fuzzy
1974
  msgid ""
1975
  "Note: While this preview is an accurate one, it might look different then it "
1978
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1979
  "différente sur le site."
1980
 
1981
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1982
  #, fuzzy
1983
  msgid ""
1984
  "This is because of CSS differences. Your themes CSS file is not active here!"
1986
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1987
  "pas actif ici!"
1988
 
1989
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1990
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1991
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1992
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1993
  #, fuzzy
1994
  msgid "Usage"
1995
  msgstr "Usage"
1996
 
1997
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1998
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1999
+ #: dashboard/publisher/adrotate-groups-edit.php:140
2000
+ #: dashboard/publisher/adrotate-groups-edit.php:283
2001
+ msgid "Widget:"
2002
+ msgstr ""
2003
+
2004
+ #: dashboard/publisher/adrotate-ads-edit.php:204
2005
+ #: dashboard/publisher/adrotate-ads-edit.php:383
2006
  msgid ""
2007
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
2008
+ "and enter ID"
2009
  msgstr ""
 
 
2010
 
2011
+ #: dashboard/publisher/adrotate-ads-edit.php:207
2012
+ #: dashboard/publisher/adrotate-ads-edit.php:386
2013
+ #: dashboard/publisher/adrotate-groups-edit.php:144
2014
+ #: dashboard/publisher/adrotate-groups-edit.php:287
2015
  #, fuzzy
2016
  msgid "In a post or page:"
2017
  msgstr "Insérer des publicités au début ou à la fin de l'article/page."
2018
 
2019
+ #: dashboard/publisher/adrotate-ads-edit.php:209
2020
+ #: dashboard/publisher/adrotate-ads-edit.php:388
2021
+ #: dashboard/publisher/adrotate-groups-edit.php:146
2022
+ #: dashboard/publisher/adrotate-groups-edit.php:289
2023
  #, fuzzy
2024
  msgid "Directly in a theme:"
2025
  msgstr "Directement dans un thème :"
2026
 
2027
+ #: dashboard/publisher/adrotate-ads-edit.php:215
2028
+ msgid "Schedule your advert"
2029
+ msgstr ""
2030
+
2031
+ #: dashboard/publisher/adrotate-ads-edit.php:219
2032
  #, fuzzy
2033
+ msgid "Start date (day/month/year):"
2034
+ msgstr "Date de début (jour/mois/année) :"
2035
 
2036
+ #: dashboard/publisher/adrotate-ads-edit.php:240
2037
  #, fuzzy
2038
+ msgid "End date (day/month/year):"
2039
+ msgstr "Date de fin (jour/mois/année) :"
2040
 
2041
+ #: dashboard/publisher/adrotate-ads-edit.php:263
2042
  #, fuzzy
2043
+ msgid "Start time (hh:mm):"
2044
+ msgstr "Début (hh:mm) :"
2045
 
2046
+ #: dashboard/publisher/adrotate-ads-edit.php:270
2047
  #, fuzzy
2048
+ msgid "End time (hh:mm):"
2049
+ msgstr "Fin (hh:mm) :"
2050
 
2051
+ #: dashboard/publisher/adrotate-ads-edit.php:280
2052
  #, fuzzy
2053
+ msgid "Maximum Clicks:"
2054
+ msgstr "Nombre de clicks max :"
 
 
 
 
2055
 
2056
+ #: dashboard/publisher/adrotate-ads-edit.php:281
2057
+ #: dashboard/publisher/adrotate-ads-edit.php:283
2058
  #, fuzzy
2059
+ msgid "Leave empty or 0 to skip this."
2060
+ msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
 
2061
 
2062
+ #: dashboard/publisher/adrotate-ads-edit.php:282
2063
  #, fuzzy
2064
+ msgid "Maximum Impressions:"
2065
+ msgstr "Nombre max de vues :"
2066
 
2067
+ #: dashboard/publisher/adrotate-ads-edit.php:288
2068
+ #, fuzzy
2069
  msgid ""
2070
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
2071
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
2072
+ "hours. 6AM is 6:00 hours."
2073
  msgstr ""
2074
+ "L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes habitués "
2075
+ "au système de AM/PM, gardez cela en tête : si l'heure de début ou de fin est "
2076
+ "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
2077
+ "6:00). "
2078
 
2079
+ #: dashboard/publisher/adrotate-ads-edit.php:288
2080
  #, fuzzy
2081
+ msgid ""
2082
+ "The maximum clicks and impressions are measured over the set schedule only. "
2083
+ "Every schedule can have it's own limit!"
2084
+ msgstr ""
2085
+ "Le nombre maximum de clics et d'impressions est mesuré pour le calendrier en "
2086
+ "question uniquement. Tous les calendriers peuvent avoir leurs propres "
2087
+ "limites!"
2088
 
2089
+ #: dashboard/publisher/adrotate-ads-edit.php:292
2090
  #, fuzzy
2091
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
2092
+ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2093
 
2094
+ #: dashboard/publisher/adrotate-ads-edit.php:292
2095
+ #: dashboard/publisher/adrotate-ads-edit.php:332
2096
+ #: dashboard/publisher/adrotate-ads-edit.php:376
2097
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2098
  #, fuzzy
2099
+ msgid "Upgrade today"
2100
+ msgstr "Mettre à jour aujourd'hui"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2101
 
2102
+ #: dashboard/publisher/adrotate-ads-edit.php:299
2103
+ #: dashboard/publisher/adrotate-groups-edit.php:157
2104
  #, fuzzy
2105
+ msgid "Advanced"
2106
+ msgstr "Avancé"
 
 
 
 
2107
 
2108
+ #: dashboard/publisher/adrotate-ads-edit.php:300
2109
  #, fuzzy
2110
+ msgid "Everything below is optional."
2111
+ msgstr "Tous les paramètres ci-dessous sont optionels."
2112
 
2113
+ #: dashboard/publisher/adrotate-ads-edit.php:304
2114
  #, fuzzy
2115
+ msgid "Responsive:"
2116
+ msgstr "Responsive :"
2117
 
2118
+ #: dashboard/publisher/adrotate-ads-edit.php:306
2119
  #, fuzzy
2120
+ msgid "Enable responsive support for this advert."
2121
+ msgstr "Activer le support réactif pour cette publicité."
2122
 
2123
+ #: dashboard/publisher/adrotate-ads-edit.php:307
2124
  #, fuzzy
2125
  msgid ""
2126
+ "Upload your images to the banner folder and make sure the filename is in the "
2127
+ "following format; \"imagename.full.ext\". A full set of sized images is "
2128
+ "strongly recommended."
2129
  msgstr ""
2130
+ "Transférez vos images dans le dossier de la bannière et assurez-vous que le "
2131
+ "fichier est dans le format suivant: \"nomdefichier.full.ext\". Un ensemble "
2132
+ "complet d'images de tailles différentes est recommendé si vous avez un site "
2133
+ "fluide."
2134
 
2135
+ #: dashboard/publisher/adrotate-ads-edit.php:313
2136
  #, fuzzy
2137
  msgid "Weight:"
2138
  msgstr "Importance"
2139
 
2140
+ #: dashboard/publisher/adrotate-ads-edit.php:313
2141
  #, fuzzy
2142
  msgid "AdRotate Pro only"
2143
  msgstr "AdRotate Pro"
2144
 
2145
+ #: dashboard/publisher/adrotate-ads-edit.php:316
2146
  #, fuzzy
2147
  msgid "Barely visible"
2148
  msgstr "Visible jusqu'à"
2149
 
2150
+ #: dashboard/publisher/adrotate-ads-edit.php:317
2151
  msgid "Less than average"
2152
  msgstr ""
2153
 
2154
+ #: dashboard/publisher/adrotate-ads-edit.php:318
2155
  #, fuzzy
2156
  msgid "Normal coverage"
2157
  msgstr "Normal"
2158
 
2159
+ #: dashboard/publisher/adrotate-ads-edit.php:319
2160
  #, fuzzy
2161
  msgid "More than average"
2162
  msgstr "Plus d'informations..."
2163
 
2164
+ #: dashboard/publisher/adrotate-ads-edit.php:320
2165
  msgid "Best visibility"
2166
  msgstr ""
2167
 
2168
+ #: dashboard/publisher/adrotate-ads-edit.php:325
2169
+ #: dashboard/publisher/adrotate-groups-edit.php:184
2170
  #, fuzzy
2171
  msgid "Sortorder:"
2172
  msgstr "Ordre de tri :"
2173
 
2174
+ #: dashboard/publisher/adrotate-ads-edit.php:327
2175
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2176
  #, fuzzy
2177
  msgid "For administrative purposes set a sortorder."
2178
  msgstr "Pour des raisons administratives définir un ordre de tri."
2179
 
2180
+ #: dashboard/publisher/adrotate-ads-edit.php:327
2181
  #, fuzzy
2182
  msgid "Leave empty or 0 to skip this. Will default to ad id."
2183
  msgstr ""
2184
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
2185
  "de l'ID de la publicité."
2186
 
2187
+ #: dashboard/publisher/adrotate-ads-edit.php:332
 
2188
  msgid ""
2189
+ "With AdRotate Pro you can set the weight to give adverts more or less "
2190
+ "exposure."
2191
  msgstr ""
 
 
 
 
 
 
 
 
 
 
2192
 
2193
+ #: dashboard/publisher/adrotate-ads-edit.php:334
2194
+ msgid "Geo Targeting in AdRotate Pro"
2195
+ msgstr ""
 
2196
 
2197
+ #: dashboard/publisher/adrotate-ads-edit.php:335
2198
  msgid ""
2199
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
2200
  msgstr ""
2201
 
2202
+ #: dashboard/publisher/adrotate-ads-edit.php:339
2203
  msgid "Cities/States:"
2204
  msgstr ""
2205
 
2206
+ #: dashboard/publisher/adrotate-ads-edit.php:342
2207
+ msgid ""
2208
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
2209
+ "states ISO codes are supported)"
 
 
 
 
2210
  msgstr ""
2211
 
2212
+ #: dashboard/publisher/adrotate-ads-edit.php:342
2213
  msgid ""
2214
  "AdRotate does not check the validity of names so make sure you spell them "
2215
  "correctly!"
2216
  msgstr ""
2217
 
2218
+ #: dashboard/publisher/adrotate-ads-edit.php:346
2219
  msgid "Countries:"
2220
  msgstr ""
2221
 
2222
+ #: dashboard/publisher/adrotate-ads-edit.php:371
2223
  #, fuzzy
2224
  msgid "Select the countries you want the adverts to show in."
2225
  msgstr ""
2226
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2227
  "pulicités."
2228
 
2229
+ #: dashboard/publisher/adrotate-ads-edit.php:371
2230
  msgid "Cities take priority and will be filtered first."
2231
  msgstr ""
2232
 
2233
+ #: dashboard/publisher/adrotate-ads-edit.php:376
2234
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2235
  msgstr ""
2236
 
2237
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2238
  #, fuzzy
2239
  msgid "Select Groups"
2240
  msgstr "Choisir groupes"
2241
 
2242
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
 
2243
  #, fuzzy
2244
  msgid "ID - Name"
2245
  msgstr "ID - Nom"
2246
 
2247
+ #: dashboard/publisher/adrotate-ads-edit.php:406
2248
  #, fuzzy
2249
  msgid "Ads in group"
2250
  msgstr "Pubs dans le groupe"
2251
 
2252
+ #: dashboard/publisher/adrotate-ads-edit.php:415
2253
  #: dashboard/publisher/adrotate-groups-main.php:58
2254
  #, fuzzy
2255
  msgid "Default"
2256
  msgstr "Par défaut"
2257
 
2258
+ #: dashboard/publisher/adrotate-ads-edit.php:416
2259
  #: dashboard/publisher/adrotate-groups-main.php:59
2260
  #, fuzzy
2261
  msgid "Dynamic"
2262
  msgstr "Dynamique"
2263
 
2264
+ #: dashboard/publisher/adrotate-ads-edit.php:416
2265
  #: dashboard/publisher/adrotate-groups-main.php:59
2266
  #, fuzzy
2267
  msgid "second rotation"
2268
  msgstr "deuxième rotation"
2269
 
2270
+ #: dashboard/publisher/adrotate-ads-edit.php:417
2271
  #: dashboard/publisher/adrotate-groups-main.php:60
2272
  #, fuzzy
2273
  msgid "Block"
2274
  msgstr "Bloc"
2275
 
2276
+ #: dashboard/publisher/adrotate-ads-edit.php:417
2277
  #: dashboard/publisher/adrotate-groups-main.php:60
2278
  #, fuzzy
2279
  msgid "grid"
2280
  msgstr "grille"
2281
 
2282
+ #: dashboard/publisher/adrotate-ads-edit.php:418
2283
+ #: dashboard/publisher/adrotate-groups-edit.php:192
2284
  #: dashboard/publisher/adrotate-groups-main.php:61
2285
  #, fuzzy
2286
  msgid "Post Injection"
2287
  msgstr "Injection dans l'article"
2288
 
2289
+ #: dashboard/publisher/adrotate-ads-edit.php:419
2290
  #: dashboard/publisher/adrotate-groups-main.php:62
2291
  #, fuzzy
2292
  msgid "Geolocation"
2293
  msgstr "Géolocalisation"
2294
 
2295
+ #: dashboard/publisher/adrotate-ads-edit.php:425
2296
+ #: dashboard/publisher/adrotate-groups-edit.php:61
2297
  #: dashboard/publisher/adrotate-groups-main.php:69
2298
  #, fuzzy
2299
  msgid "Mode"
2330
  msgid "Title"
2331
  msgstr "Titre :"
2332
 
2333
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2334
+ #: dashboard/publisher/adrotate-ads-report.php:34
2335
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2336
+ #: dashboard/publisher/adrotate-groups-main.php:35
2337
+ #: dashboard/publisher/adrotate-groups-report.php:40
2338
+ #, fuzzy
2339
+ msgid "Impressions"
2340
+ msgstr "Vues"
2341
+
2342
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2343
+ #: dashboard/publisher/adrotate-ads-main.php:45
2344
+ #: dashboard/publisher/adrotate-ads-report.php:35
2345
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2346
+ #: dashboard/publisher/adrotate-groups-main.php:37
2347
+ #: dashboard/publisher/adrotate-groups-report.php:41
2348
+ #, fuzzy
2349
+ msgid "Clicks"
2350
+ msgstr "Clicks"
2351
+
2352
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2353
  #: dashboard/publisher/adrotate-ads-main.php:47
2354
  #: dashboard/publisher/adrotate-ads-report.php:38
2420
  msgstr "Pour 7 jours"
2421
 
2422
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2423
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2424
  #, fuzzy
2425
  msgid "Configuration errors."
2426
  msgstr "Erreurs de configuration."
2435
  msgstr ""
2436
 
2437
  #: dashboard/publisher/adrotate-ads-main.php:42
2438
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2439
  #, fuzzy
2440
  msgid "Weight"
2441
  msgstr "Importance"
2513
  msgid "Edit Group"
2514
  msgstr "Modifier Groupe"
2515
 
2516
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2517
  #, fuzzy
2518
  msgid "Name:"
2519
  msgstr "Nom"
2520
 
2521
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2522
  #, fuzzy
2523
  msgid "Default - Show one ad at a time"
2524
  msgstr "Par defaut - Montrer une pub "
2525
 
2526
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2527
  #, fuzzy
2528
  msgid "Dynamic Mode - Show a different ad every few seconds"
2529
  msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
2530
 
2531
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2532
  #, fuzzy
2533
  msgid "Block Mode - Show a block of ads"
2534
  msgstr "Mode en Bloc - Montrer un bloc de pubs"
2535
 
2536
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2537
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2538
  msgstr ""
2539
 
2540
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2541
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2542
  #, fuzzy
2543
  msgid "Dynamic and Block Mode"
2544
  msgstr "Mode Dynamique et en Bloc"
2545
 
2546
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2547
  #, fuzzy
2548
  msgid "Only required if your group is in Dynamic or Block mode."
2549
  msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
2550
 
2551
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2552
+ msgid "Block size"
2553
+ msgstr ""
 
2554
 
2555
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2556
  #, fuzzy
2557
  msgid "rows"
2558
  msgstr "lignes"
2559
 
2560
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2561
  #, fuzzy
2562
  msgid "columns"
2563
  msgstr "colonnes"
2564
 
2565
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2566
  #, fuzzy
2567
  msgid "Block Mode"
2568
  msgstr "Mode en Bloc"
2569
 
2570
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2571
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
 
2572
  msgstr ""
 
 
2573
 
2574
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2575
+ msgid "Advert size"
2576
+ msgstr ""
 
2577
 
2578
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2579
  #, fuzzy
2580
  msgid "pixel(s) wide"
2581
  msgstr "largeur en pixels"
2582
 
2583
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2584
  #, fuzzy
2585
  msgid "pixel(s) high."
2586
  msgstr "hauteur en pixels"
2587
 
2588
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2589
  #, fuzzy
2590
  msgid ""
2591
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2595
  "marges. Si vous mettez 'auto', les dimensions seront automatiques (cici "
2596
  "n'est pas recommendé). Valeur par défaut : 125/125. "
2597
 
2598
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2599
  #, fuzzy
2600
  msgid "Automated refresh"
2601
  msgstr "Rafraîchissement automatique"
2602
 
2603
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2604
  #, fuzzy
2605
  msgid "seconds."
2606
  msgstr "Secondes."
2607
 
2608
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2609
  #, fuzzy
2610
  msgid "Dynamic Mode"
2611
  msgstr "Mode dynamique"
2612
 
2613
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2614
  #, fuzzy
2615
  msgid ""
2616
  "Load a new advert in this interval without reloading the page. Default: 6."
2618
  "Chargez une nouvelle publicité sans recharger le page après cette "
2619
  "intervalle. La valeur par défaut est : 6."
2620
 
2621
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2622
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2623
+ msgid ""
2624
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2625
+ "\" and enter ID"
2626
+ msgstr ""
2627
+
2628
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2629
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2630
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2631
  #, fuzzy
2632
  msgid "Save Group"
2633
  msgstr "Sauvegarder groupe"
2634
 
2635
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2636
  #, fuzzy
2637
  msgid "Advert Margin"
2638
  msgstr "Marges autour de la pub"
2639
 
2640
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2641
  #, fuzzy
2642
  msgid "pixel(s)"
2643
  msgstr "pixel(s)"
2644
 
2645
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2646
  #, fuzzy
2647
  msgid "A transparent area outside the advert in pixels. Default: 0."
2648
  msgstr ""
2649
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
2650
  "défaut : 0."
2651
 
2652
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2653
  #, fuzzy
2654
  msgid "Set to 0 to disable."
2655
  msgstr "Mettre 0 pour désactiver."
2656
 
2657
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2658
+ msgid "Margins are automatically disabled for blocks where required."
2659
+ msgstr ""
2660
+
2661
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2662
  #, fuzzy
2663
  msgid "Align the group"
2664
  msgstr "Pubs dans le groupe"
2665
 
2666
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2667
  #, fuzzy
2668
  msgid "None (Default)"
2669
  msgstr "Par défaut"
2670
 
2671
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2672
  msgid "Left"
2673
  msgstr ""
2674
 
2675
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2676
  #, fuzzy
2677
  msgid "Right"
2678
  msgstr "Importance"
2679
 
2680
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2681
  msgid "Center"
2682
  msgstr ""
2683
 
2684
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2685
  msgid ""
2686
  "Align the group in your post or page. Using 'center' may affect your margin "
2687
  "setting. Not every theme supports this feature."
2688
  msgstr ""
2689
 
2690
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2691
  #, fuzzy
2692
  msgid "Leave empty or 0 to skip this. Will default to group id."
2693
  msgstr ""
2694
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2695
  "défaut de l'identifiant du groupe."
2696
 
2697
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2698
  #, fuzzy
2699
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2700
  msgstr ""
2701
  "Mettre en place un groupe de secours, et utiliser la localisation "
2702
  "géographique dans AdRotate Pro"
2703
 
2704
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
 
2705
  #, fuzzy
2706
  msgid "Include ads in categories?"
2707
  msgstr "Intégrer les publicités dans les catégories?"
2708
 
2709
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2710
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2711
  #, fuzzy
2712
  msgid "Disabled"
2713
  msgstr "Désactivé"
2714
 
2715
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2716
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2717
  #, fuzzy
2718
  msgid "Before content"
2719
  msgstr "Avant le contenu"
2720
 
2721
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2722
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2723
  #, fuzzy
2724
  msgid "After content"
2725
  msgstr "Après le contenu"
2726
 
2727
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2728
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2729
  #, fuzzy
2730
  msgid "Before and after content"
2731
  msgstr "Avant et après le contenu"
2732
 
2733
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2734
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2735
  #, fuzzy
2736
  msgid "After..."
2737
  msgstr "Après..."
2738
 
2739
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2740
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2741
  #, fuzzy
2742
  msgid "the first paragraph"
2743
  msgstr "le premier parapgraphe"
2744
 
2745
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2746
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2747
  #, fuzzy
2748
  msgid "the 2nd paragraph"
2749
  msgstr "le second paragraphe"
2750
 
2751
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2752
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2753
  #, fuzzy
2754
  msgid "the 3rd paragraph"
2755
  msgstr "le troisième paragraphe"
2756
 
2757
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2758
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2759
  #, fuzzy
2760
  msgid "the 4th paragraph"
2761
  msgstr "le quatrième paragraphe"
2762
 
2763
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2764
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2765
  #, fuzzy
2766
  msgid "every 2nd paragraph"
2767
  msgstr "chaque second paragraphe"
2768
 
2769
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2770
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2771
  #, fuzzy
2772
  msgid "every 3rd paragraph"
2773
  msgstr "chaque 3ème paragraphe"
2774
 
2775
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2776
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2777
  #, fuzzy
2778
  msgid "every 4th paragraph"
2779
  msgstr "chaque 4ème paragraphe"
2780
 
2781
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2782
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2783
  #, fuzzy
2784
  msgid "every 5th paragraph"
2785
  msgstr "chaque 5ème paragraphe"
2786
 
2787
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2788
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2789
  #, fuzzy
2790
  msgid "every 6th paragraph"
2791
  msgstr "chaque 6ème paragraphe"
2792
 
2793
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2794
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2795
  #, fuzzy
2796
  msgid "every 7th paragraph"
2797
  msgstr "chaque 7ème paragraphe"
2798
 
2799
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2800
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2801
  #, fuzzy
2802
  msgid "every 8th paragraph"
2803
  msgstr "chaque 8ème paragraphe"
2804
 
2805
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2806
  #, fuzzy
2807
  msgid "Which categories?"
2808
  msgstr "Quelles catégories?"
2809
 
2810
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2811
  #, fuzzy
2812
  msgid "Click the categories posts you want the adverts to show in."
2813
  msgstr ""
2814
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2815
  "pulicités."
2816
 
2817
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2818
  #, fuzzy
2819
  msgid "Include ads in pages?"
2820
  msgstr "Intégrer les publicités dans les pages?"
2821
 
2822
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2823
  #, fuzzy
2824
  msgid "Which pages?"
2825
  msgstr "Quelles pages?"
2826
 
2827
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2828
  #, fuzzy
2829
  msgid "Click the pages you want the adverts to show in."
2830
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2831
 
2832
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2833
  #, fuzzy
2834
  msgid "Wrapper code"
2835
  msgstr "Code enveloppant"
2836
 
2837
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2838
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2839
+ msgstr ""
 
2840
 
2841
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2842
  #, fuzzy
2843
  msgid "Before ad"
2844
  msgstr "Avant la pub"
2845
 
2846
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2847
  #, fuzzy
2848
+ msgid "Options:"
2849
+ msgstr "Options :"
2850
 
2851
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2852
  #, fuzzy
2853
  msgid "After ad"
2854
  msgstr "Après la pub"
2855
 
2856
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2857
  #, fuzzy
2858
  msgid "Select Ads"
2859
  msgstr "Choisir les pubs"
2860
 
2861
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2862
  #, fuzzy
2863
  msgid "Visible until"
2864
  msgstr "Visible jusqu'à"
2865
 
2866
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2867
  #, fuzzy
2868
  msgid "No ads created!"
2869
  msgstr "Aucune pub créée!"
2903
  msgid "Statistics for group"
2904
  msgstr "Statistiques pour le groupe"
2905
 
2906
+ #, fuzzy
2907
+ #~ msgid "Usage:"
2908
+ #~ msgstr "Usage"
2909
+
2910
+ #, fuzzy
2911
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2912
+ #~ msgstr ""
2913
+ #~ "Vous n'avez pas utilisé %image% dans votre code, mais vous avez "
2914
+ #~ "selectionné une image!"
2915
+
2916
+ #, fuzzy
2917
+ #~ msgid "These are required."
2918
+ #~ msgstr "Ces données sont requises."
2919
+
2920
+ #, fuzzy
2921
+ #~ msgid ""
2922
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2923
+ #~ "AdCode."
2924
+ #~ msgstr ""
2925
+ #~ "Placez votre curseur à l'emplacement où vous voulez ajouter une balise et "
2926
+ #~ "cliquer pour l'ajouter à votre AdCode."
2927
+
2928
+ #, fuzzy
2929
+ #~ msgid ""
2930
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2931
+ #~ "where you want the advert to show up."
2932
+ #~ msgstr ""
2933
+ #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
2934
+ #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
2935
+
2936
+ #, fuzzy
2937
+ #~ msgid ""
2938
+ #~ "Note: Clicktracking does generally not work for Javascript adverts such "
2939
+ #~ "as those provided by Google AdSense."
2940
+ #~ msgstr ""
2941
+ #~ "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
2942
+ #~ "publicités en Javascript telles que celles fournies par Google AdSense."
2943
+
2944
+ #, fuzzy
2945
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2946
+ #~ msgstr ""
2947
+ #~ "Insérez l'URL cible dans votre code de pub pour activer le suivi des "
2948
+ #~ "clicks."
2949
+
2950
+ #, fuzzy
2951
+ #~ msgid "Target URL:"
2952
+ #~ msgstr "URL Cible :"
2953
+
2954
+ #, fuzzy
2955
+ #~ msgid ""
2956
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2957
+ #~ "advert for different viewports. Requires jQuery."
2958
+ #~ msgstr ""
2959
+ #~ "image.full.jpg, image.320.jpg et image.768.jpg serviront la même "
2960
+ #~ "publicité pour différentes tailles d'écran si le site est fluide. "
2961
+ #~ "Nécessite jQuery."
2962
+
2963
+ #, fuzzy
2964
+ #~ msgid "Media:"
2965
+ #~ msgstr "Médias :"
2966
+
2967
+ #, fuzzy
2968
+ #~ msgid ""
2969
+ #~ "With AdRotate Pro you can also set a weight to give adverts more or less "
2970
+ #~ "attention."
2971
+ #~ msgstr ""
2972
+ #~ "Avec AdRotate Pro, vous pouvez aussi mettre un poids pour donner à vos "
2973
+ #~ "publicités plus ou moins d'importance."
2974
+
2975
+ #, fuzzy
2976
+ #~ msgid "Geo Location in AdRotate Pro"
2977
+ #~ msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
2978
+
2979
+ #, fuzzy
2980
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2981
+ #~ msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
2982
+
2983
+ #, fuzzy
2984
+ #~ msgid "Schedule"
2985
+ #~ msgstr "Planning"
2986
+
2987
+ #, fuzzy
2988
+ #~ msgid "From when to when is the advert visible?"
2989
+ #~ msgstr ""
2990
+ #~ "Quel est l'interval de dates pendant lequel la publicité est visible?"
2991
+
2992
+ #, fuzzy
2993
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2994
+ #~ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2995
+
2996
+ #, fuzzy
2997
+ #~ msgid "From / Until"
2998
+ #~ msgstr "Visible jusqu'à"
2999
+
3000
+ #, fuzzy
3001
+ #~ msgid "impressions per day"
3002
+ #~ msgstr "Vues"
3003
+
3004
+ #, fuzzy
3005
+ #~ msgid "In use by this advert."
3006
+ #~ msgstr "Nouvelle pub"
3007
+
3008
+ #, fuzzy
3009
+ #~ msgid "Optionally select the group(s) this ad belongs to."
3010
+ #~ msgstr ""
3011
+ #~ "Choisir le groupe auquel cette publicité va être rattachée (optionel)"
3012
+
3013
+ #, fuzzy
3014
+ #~ msgid "Block shape and border"
3015
+ #~ msgstr "Dimensions et bordure du bloc"
3016
+
3017
+ #, fuzzy
3018
+ #~ msgid ""
3019
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
3020
+ #~ "showing a maximum of 6 ads. Default: 2x2."
3021
+ #~ msgstr ""
3022
+ #~ "Créer une grille pour vos publicités. Choisissez 3 et 2 créera une grille "
3023
+ #~ "avec 2 colonnes montrant un maximum de 6 publicités. Valeur par défaut : "
3024
+ #~ "2x2."
3025
+
3026
+ #, fuzzy
3027
+ #~ msgid "Advert Width and Height"
3028
+ #~ msgstr "Dimensions des publicités"
3029
+
3030
+ #, fuzzy
3031
+ #~ msgid "Insert ads to the begin or end of a post/page."
3032
+ #~ msgstr "Insérer des publicités au début ou à la fin de l'article/page."
3033
+
3034
+ #, fuzzy
3035
+ #~ msgid "Wraps around each ad."
3036
+ #~ msgstr "Code qui enveloppe chaque publicité."
3037
+
3038
+ #, fuzzy
3039
+ #~ msgid "HTML/JavaScript allowed, use with care!"
3040
+ #~ msgstr "HTML/Javascript est authorisé, utiliser avec précaution!"
3041
+
3042
  #, fuzzy
3043
  #~ msgid "AdRotate Website."
3044
  #~ msgstr "Magasin AdRotate"
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -17,19 +17,19 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
- #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
- #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
- #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
@@ -37,7 +37,7 @@ msgstr ""
37
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
38
  "Verificar si la url utilizada es válida o acceder a través del navegador."
39
 
40
- #: adrotate-output.php:749
41
  msgid ""
42
  "If you have received the url you want to visit via email, you are being "
43
  "tricked!"
@@ -45,11 +45,11 @@ msgstr ""
45
  "Si usted ha recibido la url que desea visitar a través del correo "
46
  "electrónico, es posible que le esten engañando!"
47
 
48
- #: adrotate-output.php:750
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
- #: adrotate-output.php:768
53
  msgid ""
54
  "Error, Ad is not available at this time due to schedule/geolocation "
55
  "restrictions or does not exist!"
@@ -57,7 +57,7 @@ msgstr ""
57
  "ERROR: El anuncio no está disponible en este momento debido a las "
58
  "restricciones de programa, de geolocalización o no existe!"
59
 
60
- #: adrotate-output.php:770
61
  msgid ""
62
  "Error, Ad is not available at this time due to schedule/geolocation "
63
  "restrictions!"
@@ -65,7 +65,7 @@ msgstr ""
65
  "ERROR: El anuncio no está disponible en este momento debido a las "
66
  "restricciones restricciones de programa o geolocalización!"
67
 
68
- #: adrotate-output.php:777 adrotate-output.php:779
69
  msgid ""
70
  "Either there are no banners, they are disabled or none qualified for this "
71
  "location!"
@@ -73,19 +73,19 @@ msgstr ""
73
  "O bien no hay banners, estan desactivados o no estan programados para esta "
74
  "ubicación!"
75
 
76
- #: adrotate-output.php:785
77
  msgid "Error, no Ad ID set! Check your syntax!"
78
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
79
 
80
- #: adrotate-output.php:791
81
  msgid "Error, no group ID set! Check your syntax!"
82
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
83
 
84
- #: adrotate-output.php:796
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
87
 
88
- #: adrotate-output.php:802
89
  msgid ""
90
  "There was an error locating the database tables for AdRotate. Please "
91
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -93,159 +93,159 @@ msgstr ""
93
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
94
  "desactivar y volver a activar el plugin AdRotate de la página!"
95
 
96
- #: adrotate-output.php:802
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
99
 
100
- #: adrotate-output.php:808
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
- #: adrotate-output.php:834
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
- #: adrotate-output.php:834
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
- #: adrotate-output.php:836
113
  msgid "active ad(s) are about to expire."
114
  msgstr "anuncio(s) activo(s) están a punto de caducar."
115
 
116
- #: adrotate-output.php:836
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
- #: adrotate-output.php:838
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
- #: adrotate-output.php:838
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
- #: adrotate-output.php:840
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
- #: adrotate-output.php:840
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
- #: adrotate-output.php:840
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
- #: adrotate-output.php:840
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
- #: adrotate-output.php:853
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
- #: adrotate-output.php:855
150
  msgid ""
151
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
152
  "to the <strong>PRO</strong> version"
153
  msgstr ""
154
 
155
- #: adrotate-output.php:856
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
- #: adrotate-output.php:856
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Esta notificación se le envía desde su página web"
163
 
164
- #: adrotate-output.php:896
165
  msgid ""
166
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
167
- "Pro is in this menu. Check out the"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:896
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
- #: adrotate-output.php:896 adrotate-output.php:973
175
- #: dashboard/publisher/adrotate-ads-edit.php:229
176
  msgid "and"
177
  msgstr ""
178
 
179
- #: adrotate-output.php:896
180
  msgid "forums"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:932
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
- #: adrotate-output.php:933
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:935
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
- #: adrotate-output.php:936
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
- #: adrotate-output.php:937
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
- #: adrotate-output.php:938
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
- #: adrotate-output.php:939
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:965
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
220
 
221
- #: adrotate-output.php:966
222
  msgid "Brought to you by"
223
  msgstr "Presentado por"
224
 
225
- #: adrotate-output.php:973
226
  msgid ""
227
  "A lot of users only think to review AdRotate when something goes wrong while "
228
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
229
  msgstr ""
230
 
231
- #: adrotate-output.php:973
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:973
236
  msgid "rating"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:973
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Revise el anuncio aquí:"
243
 
244
- #: adrotate-output.php:973
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:976
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
@@ -253,87 +253,87 @@ msgstr ""
253
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
254
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
255
 
256
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Visite la"
259
 
260
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "página web"
263
 
264
- #: adrotate-output.php:1006
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Disponible en AdRotate Pro"
267
 
268
- #: adrotate-output.php:1006
269
  msgid "More information..."
270
  msgstr "Más información..."
271
 
272
- #: adrotate-output.php:1007
273
  msgid "This feature is available in AdRotate Pro"
274
  msgstr "Esta función está disponible en AdRotate Pro"
275
 
276
- #: adrotate-output.php:1007
277
  msgid "Learn more"
278
  msgstr "Aprender más"
279
 
280
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
281
- #: dashboard/publisher/adrotate-ads-edit.php:352
282
  msgid "January"
283
  msgstr "Enero"
284
 
285
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
286
- #: dashboard/publisher/adrotate-ads-edit.php:353
287
  msgid "February"
288
  msgstr "Febrero"
289
 
290
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
291
- #: dashboard/publisher/adrotate-ads-edit.php:354
292
  msgid "March"
293
  msgstr "Marzo"
294
 
295
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
296
- #: dashboard/publisher/adrotate-ads-edit.php:355
297
  msgid "April"
298
  msgstr "Abril"
299
 
300
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
301
- #: dashboard/publisher/adrotate-ads-edit.php:356
302
  msgid "May"
303
  msgstr "Mayo"
304
 
305
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
306
- #: dashboard/publisher/adrotate-ads-edit.php:357
307
  msgid "June"
308
  msgstr "Junio"
309
 
310
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
311
- #: dashboard/publisher/adrotate-ads-edit.php:358
312
  msgid "July"
313
  msgstr "Julio"
314
 
315
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
316
- #: dashboard/publisher/adrotate-ads-edit.php:359
317
  msgid "August"
318
  msgstr "Agosto"
319
 
320
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
321
- #: dashboard/publisher/adrotate-ads-edit.php:360
322
  msgid "September"
323
  msgstr "Septiembre"
324
 
325
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
326
- #: dashboard/publisher/adrotate-ads-edit.php:361
327
  msgid "October"
328
  msgstr "Octubre"
329
 
330
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
331
- #: dashboard/publisher/adrotate-ads-edit.php:362
332
  msgid "November"
333
  msgstr "Noviembre"
334
 
335
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
336
- #: dashboard/publisher/adrotate-ads-edit.php:363
337
  msgid "December"
338
  msgstr "Diciembre"
339
 
@@ -386,7 +386,7 @@ msgstr "Grupo de Anuncios - Utilizar ID de grupo"
386
  msgid "Choose what you want to use this widget for"
387
  msgstr "Elija lo que desea utilizar en este widget para"
388
 
389
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
390
  msgid "ID:"
391
  msgstr "ID:"
392
 
@@ -394,78 +394,77 @@ msgstr "ID:"
394
  msgid "Fill in the ID of the type you want to display!"
395
  msgstr "Rellene con el ID del tipo que desea mostrar!"
396
 
397
- #: adrotate.php:108
398
  msgid "General Info"
399
  msgstr "Información General"
400
 
401
- #: adrotate.php:109
402
  msgid "AdRotate Pro"
403
  msgstr "AdRotate Pro"
404
 
405
- #: adrotate.php:110
406
  msgid "Manage Ads"
407
  msgstr "Gestionar Anuncios"
408
 
409
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
410
  msgid "Manage Groups"
411
  msgstr "Gestionar Grupos"
412
 
413
- #: adrotate.php:112 adrotate.php:441
414
- #: dashboard/publisher/adrotate-ads-edit.php:402
415
  #, fuzzy
416
  msgid "Manage Schedules"
417
  msgstr "Gestionar Programas"
418
 
419
- #: adrotate.php:113
420
  #, fuzzy
421
  msgid "Manage Media"
422
  msgstr "Gestionar Medios"
423
 
424
- #: adrotate.php:114
425
  msgid "Settings"
426
  msgstr "Ajustes"
427
 
428
- #: adrotate.php:137
429
  msgid "AdRotate Info"
430
  msgstr "Información de AdRotate"
431
 
432
- #: adrotate.php:158
433
  msgid "AdRotate Professional"
434
  msgstr "AdRotate Profesional"
435
 
436
- #: adrotate.php:201
437
  msgid "Ad Management"
438
  msgstr "Administración de Anuncios"
439
 
440
- #: adrotate.php:204
441
  msgid "Ad created"
442
  msgstr "Anuncio creado"
443
 
444
- #: adrotate.php:206
445
  msgid "Ad updated"
446
  msgstr "Anuncio actualizado"
447
 
448
- #: adrotate.php:208
449
  msgid "Ad(s) deleted"
450
  msgstr "Anuncio(s) eliminado"
451
 
452
- #: adrotate.php:210
453
  msgid "Ad(s) statistics reset"
454
  msgstr "Estadisticas del Anuncio(s) restablecidas"
455
 
456
- #: adrotate.php:212
457
  msgid "Ad(s) renewed"
458
  msgstr "Anuncio(s) renovado"
459
 
460
- #: adrotate.php:214
461
  msgid "Ad(s) deactivated"
462
  msgstr "Anuncio(s) desactivado"
463
 
464
- #: adrotate.php:216
465
  msgid "Ad(s) activated"
466
  msgstr "Anuncio(s) activado"
467
 
468
- #: adrotate.php:218
469
  msgid ""
470
  "The ad was saved but has an issue which might prevent it from working "
471
  "properly. Review the yellow marked ad."
@@ -473,144 +472,142 @@ msgstr ""
473
  "El anuncio fue guardado, pero tiene un problema que podría impedir que "
474
  "funcione correctamente. Revise el anuncio marcado de color amarillo."
475
 
476
- #: adrotate.php:220
477
  #, fuzzy
478
  msgid "Export created"
479
  msgstr "Exportación Creada"
480
 
481
- #: adrotate.php:224
482
  msgid "Action prohibited"
483
  msgstr "Acción prohibida"
484
 
485
- #: adrotate.php:226 adrotate.php:374
486
  msgid "No data found in selected time period"
487
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
488
 
489
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
490
  msgid "Manage"
491
  msgstr "Gestionar"
492
 
493
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
494
  msgid "Add New"
495
  msgstr "Añadir Nuevo"
496
 
497
- #: adrotate.php:363
498
  msgid "Group Management"
499
  msgstr "Administración de Grupos"
500
 
501
- #: adrotate.php:366
502
  msgid "Group created"
503
  msgstr "Grupo creado"
504
 
505
- #: adrotate.php:368
506
  msgid "Group updated"
507
  msgstr "Grupo actualizado"
508
 
509
- #: adrotate.php:370
510
  msgid "Group deleted"
511
  msgstr "Grupo borrado"
512
 
513
- #: adrotate.php:372
514
  msgid "Group including it's Ads deleted"
515
  msgstr "Grupo incluyendo sus anuncios eliminados"
516
 
517
- #: adrotate.php:432
518
  #, fuzzy
519
  msgid "Schedule Management available in AdRotate Pro"
520
  msgstr "Disponible en AdRotate Pro"
521
 
522
- #: adrotate.php:442
523
  msgid ""
524
  "Schedule management and multiple schedules per advert is available in "
525
  "AdRotate Pro."
526
  msgstr ""
527
 
528
- #: adrotate.php:442 adrotate.php:529
529
- #: dashboard/publisher/adrotate-ads-edit.php:145
530
  #: dashboard/publisher/adrotate-ads-main.php:108
531
- #: dashboard/publisher/adrotate-groups-edit.php:76
532
  #: dashboard/publisher/adrotate-groups-main.php:87
533
  #, fuzzy
534
  msgid "More information"
535
  msgstr "Más información..."
536
 
537
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
538
  #: dashboard/publisher/adrotate-ads-main-error.php:19
539
  #: dashboard/publisher/adrotate-ads-main.php:20
540
  #: dashboard/publisher/adrotate-groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Acciones en Lote"
543
 
544
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
545
  #: dashboard/publisher/adrotate-ads-main-error.php:29
546
  #: dashboard/publisher/adrotate-ads-main.php:30
547
  #: dashboard/publisher/adrotate-groups-main.php:24
548
  msgid "Go"
549
  msgstr "Aplicar"
550
 
551
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
552
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
553
  #: dashboard/publisher/adrotate-ads-main-error.php:39
554
  #: dashboard/publisher/adrotate-ads-main.php:39
555
  #: dashboard/publisher/adrotate-groups-main.php:32
556
  msgid "ID"
557
  msgstr "ID"
558
 
559
- #: adrotate.php:460
560
  #, fuzzy
561
  msgid "Start"
562
  msgstr "Iniciar"
563
 
564
- #: adrotate.php:460
565
  #, fuzzy
566
  msgid "End"
567
  msgstr "Finalizar"
568
 
569
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
570
  #: dashboard/publisher/adrotate-groups-main.php:34
571
  msgid "Ads"
572
  msgstr "Anuncios"
573
 
574
- #: adrotate.php:463
575
  msgid "Max Clicks"
576
  msgstr "Número máximo de Clics"
577
 
578
- #: adrotate.php:464
579
  msgid "Max Impressions"
580
  msgstr "Número máximo de Impresiones"
581
 
582
- #: adrotate.php:494
583
  #, fuzzy
584
  msgid "No schedules created yet!"
585
  msgstr "Todavia no se han creado programas!"
586
 
587
- #: adrotate.php:499
588
  #, fuzzy
589
  msgid "Easily manage your schedules from here with AdRotate Pro."
590
  msgstr "Obtenga más funciones con AdRotate Pro"
591
 
592
- #: adrotate.php:499 adrotate.php:562
593
  #, fuzzy
594
  msgid "Upgrade today!"
595
  msgstr "Hoy"
596
 
597
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
598
- #: dashboard/publisher/adrotate-ads-main-error.php:74
599
- #: dashboard/publisher/adrotate-groups-edit.php:399
600
  msgid "Expires soon."
601
  msgstr "Caduca pronto."
602
 
603
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
604
- #: dashboard/publisher/adrotate-groups-edit.php:400
605
  msgid "Has expired."
606
  msgstr "Ha expirado."
607
 
608
- #: adrotate.php:527
609
  #, fuzzy
610
  msgid "Media Management available in AdRotate Pro"
611
  msgstr "Esta función está disponible en AdRotate Pro"
612
 
613
- #: adrotate.php:529
614
  #, fuzzy
615
  msgid ""
616
  "Upload images to the AdRotate Pro banners folder from here. This is "
@@ -619,32 +616,32 @@ msgstr ""
619
  "Cargar las imágenes en la carpeta de banners de AdRotate Pro desde aquí. "
620
  "Esto es especialmente útil si utiliza publicidad con múltiples imágenes."
621
 
622
- #: adrotate.php:529
623
  #, fuzzy
624
  msgid "Media uploading and management is available in AdRotate Pro."
625
  msgstr "Esta función está disponible en AdRotate Pro"
626
 
627
- #: adrotate.php:531
628
  #, fuzzy
629
  msgid "Upload new banner image"
630
  msgstr "Cargar una nueva Imagen de Banner"
631
 
632
- #: adrotate.php:532
633
  #, fuzzy
634
  msgid "Accepted files are:"
635
  msgstr "Los archivos aceptados son:"
636
 
637
- #: adrotate.php:532
638
  #, fuzzy
639
  msgid "Maximum size is 512Kb."
640
  msgstr "El tamaño máximo es 512Kb."
641
 
642
- #: adrotate.php:532
643
  #, fuzzy
644
  msgid "Important:"
645
  msgstr "Importante:"
646
 
647
- #: adrotate.php:532
648
  #, fuzzy
649
  msgid ""
650
  "Make sure your file has no spaces or special characters in the name. Replace "
@@ -653,7 +650,7 @@ msgstr ""
653
  "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
654
  "caracteres especiales. Reemplace los espacios con un - o _."
655
 
656
- #: adrotate.php:534
657
  #, fuzzy
658
  msgid ""
659
  "For responsive adverts make sure the filename is in the following format; "
@@ -663,7 +660,7 @@ msgstr ""
663
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
664
  "de imágenes del mismo tamaño."
665
 
666
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
667
  msgid ""
668
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
669
  "filename instead of \".full\" for the various viewports."
@@ -672,13 +669,13 @@ msgstr ""
672
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
673
  "diferentes visores."
674
 
675
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
676
- #: dashboard/publisher/adrotate-groups-edit.php:334
677
- #: dashboard/publisher/adrotate-groups-edit.php:343
678
  msgid "Example:"
679
  msgstr "Ejemplo:"
680
 
681
- #: adrotate.php:536
682
  #, fuzzy
683
  msgid ""
684
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -687,33 +684,33 @@ msgstr ""
687
  "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
688
  "distintas ventanas gráficas. Se necesita jQuery."
689
 
690
- #: adrotate.php:540
691
  #, fuzzy
692
  msgid "Upload image"
693
  msgstr "Subir imagen"
694
 
695
- #: adrotate.php:543
696
  #, fuzzy
697
  msgid "Available banner images in"
698
  msgstr "Los banners estan disponibles en"
699
 
700
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
701
  msgid "Name"
702
  msgstr "Nombre"
703
 
704
- #: adrotate.php:549
705
  #, fuzzy
706
  msgid "Actions"
707
  msgstr "Acciones"
708
 
709
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
710
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
711
  #: dashboard/publisher/adrotate-ads-main-error.php:21
712
  #: dashboard/publisher/adrotate-ads-main.php:22
713
  msgid "Delete"
714
  msgstr "Borrar"
715
 
716
- #: adrotate.php:562
717
  #, fuzzy
718
  msgid ""
719
  "Make sure the banner images are not in use by adverts when you delete them!"
@@ -721,147 +718,147 @@ msgstr ""
721
  "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
722
  "anuncios cuando las elimine!"
723
 
724
- #: adrotate.php:562
725
  #, fuzzy
726
  msgid "Manage your banner folder from here with AdRotate Pro."
727
  msgstr "Obtenga más funciones con AdRotate Pro"
728
 
729
- #: adrotate.php:606
730
  msgid "AdRotate Settings"
731
  msgstr "Ajustes AdRotate"
732
 
733
- #: adrotate.php:609
734
  msgid "Settings saved"
735
  msgstr "Ajustes guardados"
736
 
737
- #: adrotate.php:611
738
  msgid "Database optimized"
739
  msgstr "Base de Datos optimizada"
740
 
741
- #: adrotate.php:613
742
  msgid "Database repaired"
743
  msgstr "Base de Datos reparada"
744
 
745
- #: adrotate.php:615
746
  msgid "Ads evaluated and statuses have been corrected where required"
747
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
748
 
749
- #: adrotate.php:617
750
  msgid "Empty database records removed"
751
  msgstr "Se han eliminado los registros vacios de la base de datos"
752
 
753
- #: adrotate.php:619
754
  msgid "Database can only be optimized or cleaned once every hour"
755
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
756
 
757
- #: adrotate.php:627
758
  msgid "Access Rights"
759
  msgstr "Permisos de acceso"
760
 
761
- #: adrotate.php:628
762
  msgid "Who has access to what?"
763
  msgstr "¿Quién tiene acceso a qué?"
764
 
765
- #: adrotate.php:631
766
  msgid "Manage/Add/Edit adverts"
767
  msgstr "Gestionar/Añadir/Editar anuncios"
768
 
769
- #: adrotate.php:635
770
  msgid "Role to see and add/edit ads."
771
  msgstr "Perfil para ver y añadir/editar los anuncios."
772
 
773
- #: adrotate.php:639
774
  msgid "Delete/Reset adverts"
775
  msgstr "Borrar/Restablecer anuncios"
776
 
777
- #: adrotate.php:643
778
  msgid "Role to delete ads and reset stats."
779
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
780
 
781
- #: adrotate.php:647
782
  msgid "Manage/Add/Edit groups"
783
  msgstr "Gestionar/Añadir/Editar grupos"
784
 
785
- #: adrotate.php:651
786
  msgid "Role to see and add/edit groups."
787
  msgstr "Perfil para ver y añadir/editar grupos."
788
 
789
- #: adrotate.php:655
790
  msgid "Delete groups"
791
  msgstr "Eliminar grupos"
792
 
793
- #: adrotate.php:659
794
  msgid "Role to delete groups."
795
  msgstr "Perfil para eliminar grupos"
796
 
797
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
798
- #: adrotate.php:876
799
  msgid "Update Options"
800
  msgstr "Actualizar Opciones"
801
 
802
- #: adrotate.php:691
803
  msgid "Statistics"
804
  msgstr "Estadísticas"
805
 
806
- #: adrotate.php:694
807
  msgid "Enable stats"
808
  msgstr "Habilitar las estadísticas"
809
 
810
- #: adrotate.php:696
811
  msgid "Track clicks and impressions."
812
  msgstr "Seguimiento de clics e impresiones."
813
 
814
- #: adrotate.php:696
815
  #, fuzzy
816
  msgid "Disabling this also disables click and impression limits on schedules."
817
  msgstr ""
818
  "Al desactivar esto, también se deshabilitan la limitación de clics e "
819
  "impresiones en el calendario y desactiva los periodos de tiempo."
820
 
821
- #: adrotate.php:700
822
  msgid "Impressions timer"
823
  msgstr "Temporizador de Impresiones"
824
 
825
- #: adrotate.php:702 adrotate.php:709
826
  msgid "Seconds."
827
  msgstr "Segundos."
828
 
829
- #: adrotate.php:703
830
  #, fuzzy
831
  msgid "Default: 60."
832
  msgstr "Predeterminado"
833
 
834
- #: adrotate.php:703
835
  #, fuzzy
836
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
837
  msgstr ""
838
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
839
 
840
- #: adrotate.php:707
841
  msgid "Clicks timer"
842
  msgstr "Temporizador de Clics"
843
 
844
- #: adrotate.php:710
845
  #, fuzzy
846
  msgid "Default: 86400."
847
  msgstr "Predeterminado"
848
 
849
- #: adrotate.php:710
850
  #, fuzzy
851
  msgid ""
852
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
853
  msgstr ""
854
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
855
 
856
- #: adrotate.php:715
857
  msgid "Bot filter"
858
  msgstr "Filtro de Motor de búsqueda"
859
 
860
- #: adrotate.php:718
861
  msgid "User-Agent Filter"
862
  msgstr "Filtro de User-Agent"
863
 
864
- #: adrotate.php:721
865
  msgid ""
866
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
867
  "prevent impressions and clicks counted on them."
@@ -870,7 +867,7 @@ msgstr ""
870
  "crawlers / user-agents. Para prevenir contabilizar impresiones y clics "
871
  "realizados por ellos."
872
 
873
- #: adrotate.php:722
874
  msgid ""
875
  "Keep in mind that this might give false positives. The word 'google' also "
876
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -878,11 +875,11 @@ msgstr ""
878
  "Tenga en cuenta que esto puede dar falsos positivos. La palabra 'google' "
879
  "también coincide con 'googlebot', pero no viceversa. Así que ten cuidado!"
880
 
881
- #: adrotate.php:722
882
  msgid "Keep your list up-to-date"
883
  msgstr "Mantenga su lista al día"
884
 
885
- #: adrotate.php:723
886
  msgid ""
887
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
888
  "other characters are stripped out."
@@ -890,7 +887,7 @@ msgstr ""
890
  "Utilice solamente palabras con caracteres alfanuméricos, [- _] se permite "
891
  "también. Todos los demás caracteres se eliminaran."
892
 
893
- #: adrotate.php:724
894
  msgid ""
895
  "Additionally to the list specified here, empty User-Agents are blocked as "
896
  "well."
@@ -898,23 +895,23 @@ msgstr ""
898
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
899
  "bloqueados."
900
 
901
- #: adrotate.php:724
902
  msgid "Learn more about"
903
  msgstr "Más información sobre"
904
 
905
- #: adrotate.php:724
906
  msgid "user-agents"
907
  msgstr "user-agents"
908
 
909
- #: adrotate.php:733
910
  msgid "Miscellaneous"
911
  msgstr "Varios"
912
 
913
- #: adrotate.php:736
914
  msgid "Widget alignment"
915
  msgstr "Alineación de Widget"
916
 
917
- #: adrotate.php:737
918
  msgid ""
919
  "Check this box if your widgets do not align in your themes sidebar. (Does "
920
  "not always help!)"
@@ -922,11 +919,11 @@ msgstr ""
922
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
923
  "plantillas (theme). (No siempre ayuda!)"
924
 
925
- #: adrotate.php:740
926
  msgid "Widget padding"
927
  msgstr "Relleno de Widget"
928
 
929
- #: adrotate.php:741
930
  msgid ""
931
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
932
  "not always work!)"
@@ -934,12 +931,12 @@ msgstr ""
934
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
935
  "de los anuncios en los widgets. (No siempre funciona!)"
936
 
937
- #: adrotate.php:746 adrotate.php:757
938
  #, fuzzy
939
  msgid "NOTICE:"
940
  msgstr "Aviso"
941
 
942
- #: adrotate.php:747
943
  msgid ""
944
  "You have enabled W3 Total Caching support but not defined the security hash. "
945
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -951,15 +948,15 @@ msgstr ""
951
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
952
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
953
 
954
- #: adrotate.php:751
955
  msgid "W3 Total Caching"
956
  msgstr "W3 Total Cache"
957
 
958
- #: adrotate.php:752
959
  msgid "Check this box if you use W3 Total Caching on your site."
960
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
961
 
962
- #: adrotate.php:758
963
  msgid ""
964
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
965
  "this function will not work. WP Super Cache has discontinued support for "
@@ -969,15 +966,15 @@ msgstr ""
969
  "esta función no funcionará. WP Super Cache ha interrumpido el soporte para "
970
  "el contenido dinámico."
971
 
972
- #: adrotate.php:762
973
  msgid "WP Super Cache"
974
  msgstr "WP Super Cache"
975
 
976
- #: adrotate.php:763
977
  msgid "Check this box if you use WP Super Cache on your site."
978
  msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
979
 
980
- #: adrotate.php:768
981
  msgid ""
982
  "It may take a while for the ad to start rotating. The caching plugin needs "
983
  "to refresh the cache. This can take up to a week if not done manually."
@@ -986,7 +983,7 @@ msgstr ""
986
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
987
  "semana si no se realiza de forma manual."
988
 
989
- #: adrotate.php:768
990
  msgid ""
991
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
992
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -995,15 +992,15 @@ msgstr ""
995
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
996
  "código PHP la exclusión a ti mismo."
997
 
998
- #: adrotate.php:772
999
  msgid "Javascript"
1000
  msgstr ""
1001
 
1002
- #: adrotate.php:775
1003
  msgid "Load jQuery"
1004
  msgstr "Cargar jQuery"
1005
 
1006
- #: adrotate.php:776
1007
  msgid ""
1008
  "jQuery is required for all Javascript features below. Enable this if your "
1009
  "theme does not load jQuery already."
@@ -1011,11 +1008,11 @@ msgstr ""
1011
  "jQuery es necesaria para todas las características Javascript siguientes. "
1012
  "Habilite esta opción si su tema no carga jQuery por defecto."
1013
 
1014
- #: adrotate.php:779
1015
  msgid "Load in footer?"
1016
  msgstr "¿Cargar en el pie de página?"
1017
 
1018
- #: adrotate.php:780
1019
  msgid ""
1020
  "Enable if you want to load the above libraries in the footer. Your theme "
1021
  "needs to call wp_footer() for this to work."
@@ -1023,11 +1020,11 @@ msgstr ""
1023
  "Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
1024
  "tema tiene que llamar a la función wp_footer() para que esto funcione."
1025
 
1026
- #: adrotate.php:788
1027
  msgid "Maintenance"
1028
  msgstr "Mantenimiento"
1029
 
1030
- #: adrotate.php:789
1031
  msgid ""
1032
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1033
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1041,19 +1038,19 @@ msgstr ""
1041
  "Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
1042
  "cuando se siente o nota que su base de datos va lenta o no responde."
1043
 
1044
- #: adrotate.php:804 adrotate.php:806
1045
  msgid "Optimize Database"
1046
  msgstr "Optimizar la Base de Datos"
1047
 
1048
- #: adrotate.php:806
1049
  msgid "You are about to optimize the AdRotate database."
1050
  msgstr "Vas a optimizar la base de datos AdRotate."
1051
 
1052
- #: adrotate.php:806
1053
  msgid "Did you make a backup of your database?"
1054
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
1055
 
1056
- #: adrotate.php:806
1057
  msgid ""
1058
  "This may take a moment and may cause your website to respond slow "
1059
  "temporarily!"
@@ -1061,16 +1058,16 @@ msgstr ""
1061
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
1062
  "lentamente temporalmente!"
1063
 
1064
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1065
  #: dashboard/publisher/adrotate-groups-main.php:24
1066
  msgid "OK to continue, CANCEL to stop."
1067
  msgstr "OK para continuar, CANCELAR para detenerlo."
1068
 
1069
- #: adrotate.php:807
1070
  msgid "Cleans up overhead data in the AdRotate tables."
1071
  msgstr "Limpiar los datos generales de las tablas AdRotate."
1072
 
1073
- #: adrotate.php:808
1074
  msgid ""
1075
  "Overhead data is accumulated garbage resulting from many changes you've "
1076
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1079,11 +1076,11 @@ msgstr ""
1079
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
1080
  "datos."
1081
 
1082
- #: adrotate.php:812 adrotate.php:814
1083
  msgid "Clean-up Database"
1084
  msgstr "Limpieza de la Base de Datos"
1085
 
1086
- #: adrotate.php:814
1087
  msgid ""
1088
  "You are about to clean up your database. This may delete expired schedules "
1089
  "and older statistics."
@@ -1091,20 +1088,20 @@ msgstr ""
1091
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
1092
  "estadísticas más antigüas."
1093
 
1094
- #: adrotate.php:814
1095
  msgid "Are you sure you want to continue?"
1096
  msgstr "¿Está seguro que desea continuar?"
1097
 
1098
- #: adrotate.php:814 adrotate.php:822
1099
  msgid "This might take a while and may slow down your site during this action!"
1100
  msgstr ""
1101
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
1102
 
1103
- #: adrotate.php:815
1104
  msgid "Delete stats older than 356 days (Optional)."
1105
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
1106
 
1107
- #: adrotate.php:816
1108
  msgid ""
1109
  "AdRotate creates empty records when you start making ads or groups. In rare "
1110
  "occasions these records are faulty."
@@ -1112,7 +1109,7 @@ msgstr ""
1112
  "AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
1113
  "grupos. En raras ocasiones, estos registros son defectuosos."
1114
 
1115
- #: adrotate.php:816
1116
  msgid ""
1117
  "If you made an ad or group that does not save when you make it use this "
1118
  "button to delete those empty records."
@@ -1120,7 +1117,7 @@ msgstr ""
1120
  "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
1121
  "utilize este botón para borrar esos registros vacíos."
1122
 
1123
- #: adrotate.php:816
1124
  msgid ""
1125
  "Additionally you can clean up old statistics. This will improve the speed of "
1126
  "your site."
@@ -1128,19 +1125,19 @@ msgstr ""
1128
  "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
1129
  "velocidad de su sitio."
1130
 
1131
- #: adrotate.php:820
1132
  msgid "Re-evaluate Ads"
1133
  msgstr "Reevaluar Anuncios"
1134
 
1135
- #: adrotate.php:822
1136
  msgid "Re-evaluate all ads"
1137
  msgstr "Reevaluar todos los Anuncios"
1138
 
1139
- #: adrotate.php:822
1140
  msgid "You are about to check all ads for errors."
1141
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
1142
 
1143
- #: adrotate.php:823
1144
  msgid ""
1145
  "This will apply all evaluation rules to all ads to see if any error slipped "
1146
  "in. Normally you should not need this feature."
@@ -1148,7 +1145,7 @@ msgstr ""
1148
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
1149
  "algún error. Normalmente no debería necesitar esta función."
1150
 
1151
- #: adrotate.php:827
1152
  msgid ""
1153
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1154
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1166,64 +1163,64 @@ msgstr ""
1166
  "alegar que funcionaba antes de hacer clic en estos botones no es razón "
1167
  "suficiente."
1168
 
1169
- #: adrotate.php:835
1170
  msgid "Troubleshooting"
1171
  msgstr "Solución de problemas"
1172
 
1173
- #: adrotate.php:838
1174
  msgid "Current version:"
1175
  msgstr "Versión actual:"
1176
 
1177
- #: adrotate.php:839
1178
  msgid "Previous version:"
1179
  msgstr "Versión anterior:"
1180
 
1181
- #: adrotate.php:842
1182
  msgid "Current database version:"
1183
  msgstr "Versión actual de la base de datos:"
1184
 
1185
- #: adrotate.php:843
1186
  msgid "Previous database version:"
1187
  msgstr "Versión anterior de la base de datos:"
1188
 
1189
- #: adrotate.php:846
1190
  #, fuzzy
1191
  msgid "Ad evaluation next run:"
1192
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
1193
 
1194
- #: adrotate.php:847 adrotate.php:851
1195
  msgid "Not scheduled!"
1196
  msgstr "No Programada!"
1197
 
1198
- #: adrotate.php:850
1199
  msgid "Clean Trackerdata next run:"
1200
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
1201
 
1202
- #: adrotate.php:854
1203
  msgid "Current status of adverts"
1204
  msgstr "Estado actual de los anuncios"
1205
 
1206
- #: adrotate.php:855
1207
  msgid "Normal"
1208
  msgstr "Normal"
1209
 
1210
- #: adrotate.php:855
1211
  msgid "Error"
1212
  msgstr "Error"
1213
 
1214
- #: adrotate.php:855
1215
  msgid "Expired"
1216
  msgstr "Caducado"
1217
 
1218
- #: adrotate.php:855
1219
  msgid "Expires Soon"
1220
  msgstr "Caduca Pronto"
1221
 
1222
- #: adrotate.php:855
1223
  msgid "Unknown Status"
1224
  msgstr "Estado Desconocido"
1225
 
1226
- #: adrotate.php:858
1227
  msgid ""
1228
  "NOTE: The below options are not meant for normal use and are only there for "
1229
  "developers to review saved settings or how ads are selected. These can be "
@@ -1236,37 +1233,37 @@ msgstr ""
1236
  "para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
1237
  "USO CON NORMALIDAD!"
1238
 
1239
- #: adrotate.php:862
1240
  msgid "Developer Debug"
1241
  msgstr "Depurar (Test) del Desarrollador"
1242
 
1243
- #: adrotate.php:864
1244
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1245
  msgstr ""
1246
  "Solucionar problemas de los anuncios y de que forma se seleccionan si los "
1247
  "hay, tiene salida en las aplicaciones para usuario."
1248
 
1249
- #: adrotate.php:865
1250
  msgid "Show all settings, dashboard routines and related values."
1251
  msgstr ""
1252
  "Mostrar todas las configuraciones, las rutinas del panel y los valores "
1253
  "relacionados."
1254
 
1255
- #: adrotate.php:866
1256
  msgid "Show array of all userroles and capabilities."
1257
  msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
1258
 
1259
- #: adrotate.php:867
1260
  msgid "Review saved advertisers! Visible to advertisers."
1261
  msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
1262
 
1263
- #: adrotate.php:868
1264
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1265
  msgstr ""
1266
  "Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
1267
  "Visible sólo a los editores."
1268
 
1269
- #: adrotate.php:869
1270
  msgid ""
1271
  "Disable timers for clicks and impressions and enable a alert window for "
1272
  "clicktracking."
@@ -1274,7 +1271,7 @@ msgstr ""
1274
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
1275
  "ventana de alerta para el seguimiento de clics."
1276
 
1277
- #: adrotate.php:870
1278
  msgid "Temporarily disable encryption on the redirect url."
1279
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
1280
 
@@ -1522,8 +1519,8 @@ msgid "The AdCode cannot be empty!"
1522
  msgstr "El AdCode no puede estar vacío!"
1523
 
1524
  #: dashboard/publisher/adrotate-ads-edit.php:49
1525
- msgid "You didn't use %image% in your AdCode but did select an image!"
1526
- msgstr "No ha utilizado %image% en su AdCode pero ha seleccionado una imagen!"
1527
 
1528
  #: dashboard/publisher/adrotate-ads-edit.php:52
1529
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1538,13 +1535,25 @@ msgstr ""
1538
  "restablece tu imagen y vuelva a guardar el anuncio!"
1539
 
1540
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1541
  #, fuzzy
1542
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1543
  msgstr ""
1544
  "El seguimiento de clics jQuery está habilitado pero no se encontró ningún "
1545
  "enlace válido en el AdCode!"
1546
 
1547
- #: dashboard/publisher/adrotate-ads-edit.php:63
1548
  msgid ""
1549
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1550
  "the ad!"
@@ -1552,113 +1561,170 @@ msgstr ""
1552
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
1553
  "erróneo, intente volver a guardar la anuncio!"
1554
 
1555
- #: dashboard/publisher/adrotate-ads-edit.php:66
1556
  msgid "This ad is expired and currently not shown on your website!"
1557
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
1558
 
1559
- #: dashboard/publisher/adrotate-ads-edit.php:69
1560
  msgid "The ad will expire in less than 2 days!"
1561
  msgstr "El anuncio caducará en menos de 2 días!"
1562
 
1563
- #: dashboard/publisher/adrotate-ads-edit.php:72
1564
  msgid "This ad will expire in less than 7 days!"
1565
  msgstr "El anuncio caducará en menos de 7 días!"
1566
 
1567
- #: dashboard/publisher/adrotate-ads-edit.php:75
1568
  msgid "This ad has been disabled and does not rotate on your site!"
1569
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
1570
 
1571
- #: dashboard/publisher/adrotate-ads-edit.php:101
1572
  msgid "New Advert"
1573
  msgstr "Nuevo Anuncio"
1574
 
1575
- #: dashboard/publisher/adrotate-ads-edit.php:103
1576
  msgid "Edit Advert"
1577
  msgstr "Editar Anuncio"
1578
 
1579
- #: dashboard/publisher/adrotate-ads-edit.php:106
1580
- #: dashboard/publisher/adrotate-groups-edit.php:48
1581
- msgid "These are required."
1582
- msgstr "Estos datos son necesarios."
1583
-
1584
- #: dashboard/publisher/adrotate-ads-edit.php:110
1585
  msgid "Title:"
1586
  msgstr "Título:"
1587
 
1588
- #: dashboard/publisher/adrotate-ads-edit.php:116
1589
  msgid "AdCode:"
1590
  msgstr "AdCode:"
1591
 
1592
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1593
  msgid ""
1594
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1595
  msgstr ""
1596
 
1597
- #: dashboard/publisher/adrotate-ads-edit.php:121
1598
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1599
  msgstr ""
1600
 
1601
- #: dashboard/publisher/adrotate-ads-edit.php:122
1602
- msgid "Basic Examples:"
1603
- msgstr "Ejemplos Básicos:"
1604
 
1605
- #: dashboard/publisher/adrotate-ads-edit.php:127
1606
- #: dashboard/publisher/adrotate-groups-edit.php:335
1607
- msgid "Options:"
1608
- msgstr "Opciones:"
 
 
 
 
 
 
 
 
 
 
 
 
1609
 
1610
- #: dashboard/publisher/adrotate-ads-edit.php:129
1611
  msgid ""
1612
- "Place the cursor where you want to add a tag and click to add it to your "
1613
- "AdCode."
1614
  msgstr ""
1615
- "Coloque el cursor donde desea agregar una etiqueta y haga clic para añadirlo "
1616
- "a su AdCode."
1617
 
1618
- #: dashboard/publisher/adrotate-ads-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1619
  msgid "Activate:"
1620
  msgstr "Activar:"
1621
 
1622
- #: dashboard/publisher/adrotate-ads-edit.php:137
1623
  msgid "Yes, this ad will be used"
1624
  msgstr "Sí, se utilizará este anuncio"
1625
 
1626
- #: dashboard/publisher/adrotate-ads-edit.php:138
1627
  msgid "No, do not show this ad anywhere"
1628
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1629
 
1630
- #: dashboard/publisher/adrotate-ads-edit.php:145
1631
  #: dashboard/publisher/adrotate-ads-main.php:108
1632
- #: dashboard/publisher/adrotate-groups-edit.php:76
1633
  #: dashboard/publisher/adrotate-groups-main.php:87
1634
  #, fuzzy
1635
  msgid "Get more features with AdRotate Pro."
1636
  msgstr "Obtenga más funciones con AdRotate Pro"
1637
 
1638
- #: dashboard/publisher/adrotate-ads-edit.php:148
1639
- #: dashboard/publisher/adrotate-ads-edit.php:181
1640
- #: dashboard/publisher/adrotate-ads-edit.php:317
1641
- #: dashboard/publisher/adrotate-ads-edit.php:442
1642
- #: dashboard/publisher/adrotate-ads-edit.php:485
1643
  msgid "Save Advert"
1644
  msgstr "Guardar Anuncio"
1645
 
1646
- #: dashboard/publisher/adrotate-ads-edit.php:149
1647
- #: dashboard/publisher/adrotate-ads-edit.php:182
1648
- #: dashboard/publisher/adrotate-ads-edit.php:318
1649
- #: dashboard/publisher/adrotate-ads-edit.php:443
1650
- #: dashboard/publisher/adrotate-ads-edit.php:486
1651
- #: dashboard/publisher/adrotate-groups-edit.php:182
1652
- #: dashboard/publisher/adrotate-groups-edit.php:323
1653
- #: dashboard/publisher/adrotate-groups-edit.php:405
1654
  msgid "Cancel"
1655
  msgstr "Cancelar"
1656
 
1657
- #: dashboard/publisher/adrotate-ads-edit.php:153
1658
  msgid "Preview"
1659
  msgstr "Vista previa"
1660
 
1661
- #: dashboard/publisher/adrotate-ads-edit.php:159
1662
  msgid ""
1663
  "Note: While this preview is an accurate one, it might look different then it "
1664
  "does on the website."
@@ -1666,96 +1732,130 @@ msgstr ""
1666
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1667
  "precisa, en su pagina web puede tener un aspecto diferente."
1668
 
1669
- #: dashboard/publisher/adrotate-ads-edit.php:160
1670
  msgid ""
1671
  "This is because of CSS differences. Your themes CSS file is not active here!"
1672
  msgstr ""
1673
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1674
  "activo el archivo CSS de las plantillas (themes)!"
1675
 
1676
- #: dashboard/publisher/adrotate-ads-edit.php:167
1677
- #: dashboard/publisher/adrotate-ads-edit.php:303
1678
- #: dashboard/publisher/adrotate-groups-edit.php:167
1679
- #: dashboard/publisher/adrotate-groups-edit.php:308
1680
  msgid "Usage"
1681
  msgstr "Utilización"
1682
 
1683
- #: dashboard/publisher/adrotate-ads-edit.php:168
1684
- #: dashboard/publisher/adrotate-ads-edit.php:304
1685
- #: dashboard/publisher/adrotate-groups-edit.php:168
1686
- #: dashboard/publisher/adrotate-groups-edit.php:309
 
 
 
 
 
1687
  msgid ""
1688
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1689
- "where you want the advert to show up."
1690
  msgstr ""
1691
- "Copie el shortcode en un post o página. El código PHP va en el archivo del "
1692
- "tema en el que desea mostrar el anuncio."
1693
 
1694
- #: dashboard/publisher/adrotate-ads-edit.php:172
1695
- #: dashboard/publisher/adrotate-ads-edit.php:308
1696
- #: dashboard/publisher/adrotate-groups-edit.php:172
1697
- #: dashboard/publisher/adrotate-groups-edit.php:313
1698
  msgid "In a post or page:"
1699
  msgstr "En un post o página:"
1700
 
1701
- #: dashboard/publisher/adrotate-ads-edit.php:174
1702
- #: dashboard/publisher/adrotate-ads-edit.php:310
1703
- #: dashboard/publisher/adrotate-groups-edit.php:174
1704
- #: dashboard/publisher/adrotate-groups-edit.php:315
1705
  msgid "Directly in a theme:"
1706
  msgstr "Directamente en la plantilla (theme):"
1707
 
1708
- #: dashboard/publisher/adrotate-ads-edit.php:185
1709
- #: dashboard/publisher/adrotate-groups-edit.php:185
1710
- msgid "Advanced"
1711
- msgstr "Avanzado"
1712
 
1713
- #: dashboard/publisher/adrotate-ads-edit.php:186
1714
- msgid "Everything below is optional."
1715
- msgstr "Todo lo siguiente es opcional."
1716
 
1717
- #: dashboard/publisher/adrotate-ads-edit.php:191
1718
- msgid "Clicktracking:"
1719
- msgstr "Seguimiento de Clics:"
1720
 
1721
- #: dashboard/publisher/adrotate-ads-edit.php:193
1722
- msgid "Enable click tracking for this advert."
1723
- msgstr "Activar el seguimiento de clics para este anuncio."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1724
 
1725
- #: dashboard/publisher/adrotate-ads-edit.php:194
1726
  msgid ""
1727
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1728
- "those provided by Google AdSense."
 
1729
  msgstr ""
1730
- "Nota: El seguimiento de clics no funciona generalmente para los anuncios "
1731
- "Javascript tales como los proporcionados por Google AdSense."
 
 
1732
 
1733
- #: dashboard/publisher/adrotate-ads-edit.php:195
1734
- #, fuzzy
1735
- msgid "Place the target URL in your adcode - Similar to code example 1."
 
1736
  msgstr ""
1737
- "Colocar la dirección URL de destino en su adcode y activar el seguimiento de "
1738
- "clics."
1739
-
1740
- #: dashboard/publisher/adrotate-ads-edit.php:200
1741
- msgid "Target URL:"
1742
- msgstr "URL de destino:"
1743
 
1744
- #: dashboard/publisher/adrotate-ads-edit.php:203
1745
- msgid ""
1746
- "This field is no longer required. You can place the URL directly in the "
1747
- "adcode (above) instead of %link%."
1748
  msgstr ""
1749
 
1750
- #: dashboard/publisher/adrotate-ads-edit.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1751
  msgid "Responsive:"
1752
  msgstr "Adaptable:"
1753
 
1754
- #: dashboard/publisher/adrotate-ads-edit.php:210
1755
  msgid "Enable responsive support for this advert."
1756
  msgstr "Habilitar soporte sensible para este anuncio."
1757
 
1758
- #: dashboard/publisher/adrotate-ads-edit.php:211
1759
  msgid ""
1760
  "Upload your images to the banner folder and make sure the filename is in the "
1761
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1765,137 +1865,76 @@ msgstr ""
1765
  "archivo es el siguiente formato; \"nombreimagen.full.ext\". Se recomienda un "
1766
  "conjunto de imágenes del mismo tamaño."
1767
 
1768
- #: dashboard/publisher/adrotate-ads-edit.php:213
1769
- msgid ""
1770
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1771
- "for different viewports. Requires jQuery."
1772
- msgstr ""
1773
- "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
1774
- "distintas ventanas gráficas. Se necesita jQuery."
1775
-
1776
- #: dashboard/publisher/adrotate-ads-edit.php:217
1777
- msgid "Banner image:"
1778
- msgstr "Imagen Banner:"
1779
-
1780
- #: dashboard/publisher/adrotate-ads-edit.php:220
1781
- msgid "Media:"
1782
- msgstr "Media:"
1783
-
1784
- #: dashboard/publisher/adrotate-ads-edit.php:220
1785
- msgid "Select Banner"
1786
- msgstr "Seleccionar Banner"
1787
-
1788
- #: dashboard/publisher/adrotate-ads-edit.php:222
1789
- msgid "- OR -"
1790
- msgstr "- O -"
1791
-
1792
- #: dashboard/publisher/adrotate-ads-edit.php:224
1793
- msgid "Banner folder:"
1794
- msgstr "Carpeta Banner:"
1795
-
1796
- #: dashboard/publisher/adrotate-ads-edit.php:225
1797
- msgid "No image selected"
1798
- msgstr "Ninguna imagen seleccionada"
1799
-
1800
- #: dashboard/publisher/adrotate-ads-edit.php:229
1801
- msgid "Use %image% in the code. Accepted files are:"
1802
- msgstr ""
1803
- "Utilice %image% en el código. Estos son los tipos de archivos aceptados:"
1804
-
1805
- #: dashboard/publisher/adrotate-ads-edit.php:229
1806
- msgid ""
1807
- "Use either the text field or the dropdown. If the textfield has content that "
1808
- "field has priority."
1809
- msgstr ""
1810
- "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1811
- "un contenido, ese campo tiene prioridad."
1812
-
1813
- #: dashboard/publisher/adrotate-ads-edit.php:233
1814
  msgid "Weight:"
1815
  msgstr "Prioridad:"
1816
 
1817
- #: dashboard/publisher/adrotate-ads-edit.php:233
1818
  #, fuzzy
1819
  msgid "AdRotate Pro only"
1820
  msgstr "AdRotate Pro"
1821
 
1822
- #: dashboard/publisher/adrotate-ads-edit.php:236
1823
  msgid "Barely visible"
1824
  msgstr "Apenas visible"
1825
 
1826
- #: dashboard/publisher/adrotate-ads-edit.php:237
1827
  msgid "Less than average"
1828
  msgstr "Menos de la media"
1829
 
1830
- #: dashboard/publisher/adrotate-ads-edit.php:238
1831
  msgid "Normal coverage"
1832
  msgstr "Cobertura normal"
1833
 
1834
- #: dashboard/publisher/adrotate-ads-edit.php:239
1835
  msgid "More than average"
1836
  msgstr "Más de la media"
1837
 
1838
- #: dashboard/publisher/adrotate-ads-edit.php:240
1839
  msgid "Best visibility"
1840
  msgstr "La mejor visibilidad"
1841
 
1842
- #: dashboard/publisher/adrotate-ads-edit.php:245
1843
- #: dashboard/publisher/adrotate-groups-edit.php:212
1844
  msgid "Sortorder:"
1845
  msgstr "Clasificación normal:"
1846
 
1847
- #: dashboard/publisher/adrotate-ads-edit.php:247
1848
- #: dashboard/publisher/adrotate-groups-edit.php:214
1849
  msgid "For administrative purposes set a sortorder."
1850
  msgstr "A efectos administrativos, establecer una Clasificación normal."
1851
 
1852
- #: dashboard/publisher/adrotate-ads-edit.php:247
1853
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1854
  msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1855
 
1856
- #: dashboard/publisher/adrotate-ads-edit.php:252
1857
  msgid ""
1858
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1859
- "attention."
1860
  msgstr ""
1861
 
1862
- #: dashboard/publisher/adrotate-ads-edit.php:252
1863
- #: dashboard/publisher/adrotate-ads-edit.php:301
1864
- #: dashboard/publisher/adrotate-ads-edit.php:399
1865
- #: dashboard/publisher/adrotate-groups-edit.php:218
1866
- #, fuzzy
1867
- msgid "Upgrade today"
1868
- msgstr "Hoy"
1869
-
1870
- #: dashboard/publisher/adrotate-ads-edit.php:254
1871
- #, fuzzy
1872
- msgid "Geo Location in AdRotate Pro"
1873
- msgstr "Geo Localización"
1874
 
1875
- #: dashboard/publisher/adrotate-ads-edit.php:255
1876
  msgid ""
1877
- "This works if you assign the advert to a group and enable that group to use "
1878
- "Geo Targeting."
1879
  msgstr ""
1880
- "Esto funciona si asigna el anuncio a un grupo y habilita utilizar Geo "
1881
- "Targeting en ese grupo."
1882
 
1883
- #: dashboard/publisher/adrotate-ads-edit.php:259
1884
  #, fuzzy
1885
  msgid "Cities/States:"
1886
  msgstr "Ciudades"
1887
 
1888
- #: dashboard/publisher/adrotate-ads-edit.php:262
1889
- #: dashboard/publisher/adrotate-ads-edit.php:295
1890
- msgid "Usage:"
1891
- msgstr "Utilización:"
1892
-
1893
- #: dashboard/publisher/adrotate-ads-edit.php:263
1894
- #, fuzzy
1895
- msgid "A comma separated list of cities and/or states"
1896
- msgstr "Lista de ciudades separada por comas."
1897
 
1898
- #: dashboard/publisher/adrotate-ads-edit.php:263
1899
  #, fuzzy
1900
  msgid ""
1901
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1904,188 +1943,73 @@ msgstr ""
1904
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1905
  "escribirlos correctamente!"
1906
 
1907
- #: dashboard/publisher/adrotate-ads-edit.php:267
1908
  #, fuzzy
1909
  msgid "Countries:"
1910
  msgstr "Países"
1911
 
1912
- #: dashboard/publisher/adrotate-ads-edit.php:296
1913
  msgid "Select the countries you want the adverts to show in."
1914
  msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1915
 
1916
- #: dashboard/publisher/adrotate-ads-edit.php:296
1917
  msgid "Cities take priority and will be filtered first."
1918
  msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1919
 
1920
- #: dashboard/publisher/adrotate-ads-edit.php:301
1921
- #, fuzzy
1922
- msgid "Target your audience with Geo Location in AdRotate Pro"
1923
- msgstr "Obtenga más funciones con AdRotate Pro"
1924
-
1925
- #: dashboard/publisher/adrotate-ads-edit.php:321
1926
- msgid "Schedule"
1927
- msgstr "Calendario"
1928
-
1929
- #: dashboard/publisher/adrotate-ads-edit.php:322
1930
- msgid "From when to when is the advert visible?"
1931
- msgstr "De cuando a cuando es visible el anuncio?"
1932
-
1933
- #: dashboard/publisher/adrotate-ads-edit.php:326
1934
- msgid "Start date (day/month/year):"
1935
- msgstr "Fecha de inicio (día/mes/año)"
1936
-
1937
- #: dashboard/publisher/adrotate-ads-edit.php:347
1938
- msgid "End date (day/month/year):"
1939
- msgstr "Fecha de finalización (día/mes/año)"
1940
-
1941
- #: dashboard/publisher/adrotate-ads-edit.php:370
1942
- msgid "Start time (hh:mm):"
1943
- msgstr "Hora de inicio (hh:mm)"
1944
-
1945
- #: dashboard/publisher/adrotate-ads-edit.php:377
1946
- msgid "End time (hh:mm):"
1947
- msgstr "Hora de finalización (hh:mm)"
1948
-
1949
- #: dashboard/publisher/adrotate-ads-edit.php:387
1950
- msgid "Maximum Clicks:"
1951
- msgstr "Clics Máximos:"
1952
-
1953
- #: dashboard/publisher/adrotate-ads-edit.php:388
1954
- #: dashboard/publisher/adrotate-ads-edit.php:390
1955
- msgid "Leave empty or 0 to skip this."
1956
- msgstr "Dejar en blanco o 0 para omitir."
1957
-
1958
- #: dashboard/publisher/adrotate-ads-edit.php:389
1959
- msgid "Maximum Impressions:"
1960
- msgstr "Impresiones Maximas:"
1961
-
1962
- #: dashboard/publisher/adrotate-ads-edit.php:395
1963
- msgid ""
1964
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1965
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1966
- "hours. 6AM is 6:00 hours."
1967
- msgstr ""
1968
- "Para el Tiempo se utiliza un reloj de 24 horas. Tengalo en cuenta si esta "
1969
- "acostumbrado al sistema de AM/PM: Si el inicio o el fin del tiempo es "
1970
- "después del mediodia debe añadir añadir 12 horas. Por ejemplo, las 2PM son "
1971
- "las 14:00. Las 6AM son las 06:00 horas."
1972
-
1973
- #: dashboard/publisher/adrotate-ads-edit.php:395
1974
- msgid ""
1975
- "The maximum clicks and impressions are measured over the set schedule only. "
1976
- "Every schedule can have it's own limit!"
1977
- msgstr ""
1978
- "Los clics y las impresiones máximas solo se valorarán en el horario "
1979
- "establecido. Cada programación puede tener su propio límite!"
1980
-
1981
- #: dashboard/publisher/adrotate-ads-edit.php:399
1982
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1983
  msgstr ""
1984
 
1985
- #: dashboard/publisher/adrotate-ads-edit.php:401
1986
- #, fuzzy
1987
- msgid "Choose Multiple Schedules in AdRotate Pro"
1988
- msgstr "Disponible en AdRotate Pro"
1989
-
1990
- #: dashboard/publisher/adrotate-ads-edit.php:402
1991
- #, fuzzy
1992
- msgid "You can add, edit or delete schedules from the"
1993
- msgstr "Puede añadir, editar o eliminar programas del"
1994
-
1995
- #: dashboard/publisher/adrotate-ads-edit.php:402
1996
- #, fuzzy
1997
- msgid "dashboard. Save your advert first!"
1998
- msgstr "escritorio. Guarda tu anuncio primero!"
1999
-
2000
- #: dashboard/publisher/adrotate-ads-edit.php:409
2001
- msgid "From / Until"
2002
- msgstr "Desde / Hasta"
2003
-
2004
- #: dashboard/publisher/adrotate-ads-edit.php:411
2005
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2006
- #: dashboard/publisher/adrotate-ads-main.php:45
2007
- #: dashboard/publisher/adrotate-ads-report.php:35
2008
- #: dashboard/publisher/adrotate-groups-edit.php:356
2009
- #: dashboard/publisher/adrotate-groups-main.php:37
2010
- #: dashboard/publisher/adrotate-groups-report.php:41
2011
- msgid "Clicks"
2012
- msgstr "Clics"
2013
-
2014
- #: dashboard/publisher/adrotate-ads-edit.php:412
2015
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2016
- #: dashboard/publisher/adrotate-ads-report.php:34
2017
- #: dashboard/publisher/adrotate-groups-edit.php:355
2018
- #: dashboard/publisher/adrotate-groups-main.php:35
2019
- #: dashboard/publisher/adrotate-groups-report.php:40
2020
- msgid "Impressions"
2021
- msgstr "Impresiones"
2022
-
2023
- #: dashboard/publisher/adrotate-ads-edit.php:421
2024
- #, fuzzy
2025
- msgid "impressions per day"
2026
- msgstr "impresiones por hora"
2027
-
2028
- #: dashboard/publisher/adrotate-ads-edit.php:437
2029
- #, fuzzy
2030
- msgid "In use by this advert."
2031
- msgstr "Utilizada por este anuncio."
2032
-
2033
- #: dashboard/publisher/adrotate-ads-edit.php:448
2034
  msgid "Select Groups"
2035
  msgstr "Seleccione Grupos"
2036
 
2037
- #: dashboard/publisher/adrotate-ads-edit.php:449
2038
- msgid "Optionally select the group(s) this ad belongs to."
2039
- msgstr ""
2040
- "Opcionalmente puede seleccionar el grupo o grupos a los que este anuncio "
2041
- "pertenece."
2042
-
2043
- #: dashboard/publisher/adrotate-ads-edit.php:454
2044
  msgid "ID - Name"
2045
  msgstr "ID - Nombre"
2046
 
2047
- #: dashboard/publisher/adrotate-ads-edit.php:455
2048
  msgid "Ads in group"
2049
  msgstr "Anuncios en grupo"
2050
 
2051
- #: dashboard/publisher/adrotate-ads-edit.php:464
2052
  #: dashboard/publisher/adrotate-groups-main.php:58
2053
  msgid "Default"
2054
  msgstr "Predeterminado"
2055
 
2056
- #: dashboard/publisher/adrotate-ads-edit.php:465
2057
  #: dashboard/publisher/adrotate-groups-main.php:59
2058
  msgid "Dynamic"
2059
  msgstr "Dinámico"
2060
 
2061
- #: dashboard/publisher/adrotate-ads-edit.php:465
2062
  #: dashboard/publisher/adrotate-groups-main.php:59
2063
  msgid "second rotation"
2064
  msgstr "segundos rotación"
2065
 
2066
- #: dashboard/publisher/adrotate-ads-edit.php:466
2067
  #: dashboard/publisher/adrotate-groups-main.php:60
2068
  msgid "Block"
2069
  msgstr "Block"
2070
 
2071
- #: dashboard/publisher/adrotate-ads-edit.php:466
2072
  #: dashboard/publisher/adrotate-groups-main.php:60
2073
  msgid "grid"
2074
  msgstr "cuadrícula"
2075
 
2076
- #: dashboard/publisher/adrotate-ads-edit.php:467
2077
- #: dashboard/publisher/adrotate-groups-edit.php:220
2078
  #: dashboard/publisher/adrotate-groups-main.php:61
2079
  msgid "Post Injection"
2080
  msgstr "Integrarlo después"
2081
 
2082
- #: dashboard/publisher/adrotate-ads-edit.php:468
2083
  #: dashboard/publisher/adrotate-groups-main.php:62
2084
  msgid "Geolocation"
2085
  msgstr "Geolocalización"
2086
 
2087
- #: dashboard/publisher/adrotate-ads-edit.php:474
2088
- #: dashboard/publisher/adrotate-groups-edit.php:62
2089
  #: dashboard/publisher/adrotate-groups-main.php:69
2090
  msgid "Mode"
2091
  msgstr "Modalidad"
@@ -2116,6 +2040,23 @@ msgstr "Inio / Final"
2116
  msgid "Title"
2117
  msgstr "Título"
2118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2119
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2120
  #: dashboard/publisher/adrotate-ads-main.php:47
2121
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2177,7 +2118,7 @@ msgid "For 7 days"
2177
  msgstr "Por 7 días"
2178
 
2179
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2180
- #: dashboard/publisher/adrotate-groups-edit.php:398
2181
  msgid "Configuration errors."
2182
  msgstr "Errores de configuración."
2183
 
@@ -2191,7 +2132,7 @@ msgid "Export to XML"
2191
  msgstr "Exportar"
2192
 
2193
  #: dashboard/publisher/adrotate-ads-main.php:42
2194
- #: dashboard/publisher/adrotate-groups-edit.php:357
2195
  msgid "Weight"
2196
  msgstr "Prioridad"
2197
 
@@ -2256,23 +2197,23 @@ msgstr "Nuevo Grupo"
2256
  msgid "Edit Group"
2257
  msgstr "Editar Grupo"
2258
 
2259
- #: dashboard/publisher/adrotate-groups-edit.php:56
2260
  msgid "Name:"
2261
  msgstr "Nombre:"
2262
 
2263
- #: dashboard/publisher/adrotate-groups-edit.php:65
2264
  msgid "Default - Show one ad at a time"
2265
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
2266
 
2267
- #: dashboard/publisher/adrotate-groups-edit.php:66
2268
  msgid "Dynamic Mode - Show a different ad every few seconds"
2269
  msgstr "Modo Dinámico - Mostrar un anuncio diferente cada pocos segundos"
2270
 
2271
- #: dashboard/publisher/adrotate-groups-edit.php:67
2272
  msgid "Block Mode - Show a block of ads"
2273
  msgstr "Modo Block - Mostrar un bloque de anuncios"
2274
 
2275
- #: dashboard/publisher/adrotate-groups-edit.php:71
2276
  #, fuzzy
2277
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2278
  msgstr ""
@@ -2280,52 +2221,48 @@ msgstr ""
2280
  "Showoff' para ser cargados. Puede activar esto el menú de Ajustes de "
2281
  "AdRotate."
2282
 
2283
- #: dashboard/publisher/adrotate-groups-edit.php:78
2284
- #: dashboard/publisher/adrotate-groups-edit.php:135
2285
  msgid "Dynamic and Block Mode"
2286
  msgstr "Modo Dinámico y en Bloque"
2287
 
2288
- #: dashboard/publisher/adrotate-groups-edit.php:79
2289
  msgid "Only required if your group is in Dynamic or Block mode."
2290
  msgstr "Sólo es necesario si su grupo está en modo de Dinámico o en Bloque."
2291
 
2292
- #: dashboard/publisher/adrotate-groups-edit.php:83
2293
- msgid "Block shape and border"
2294
- msgstr "Forma y borde del Bloque"
2295
 
2296
- #: dashboard/publisher/adrotate-groups-edit.php:110
2297
  msgid "rows"
2298
  msgstr "filas"
2299
 
2300
- #: dashboard/publisher/adrotate-groups-edit.php:123
2301
  msgid "columns"
2302
  msgstr "columnas"
2303
 
2304
- #: dashboard/publisher/adrotate-groups-edit.php:126
2305
  msgid "Block Mode"
2306
  msgstr "Modo Block"
2307
 
2308
- #: dashboard/publisher/adrotate-groups-edit.php:126
2309
- msgid ""
2310
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2311
- "showing a maximum of 6 ads. Default: 2x2."
2312
  msgstr ""
2313
- "Hacer una rejilla para sus anuncios. Seleccionando 3 y 2 hace una cuadrícula "
2314
- "con 2 columnas que muestra un máximo de 6 anuncios. Predeterminado: 2x2."
2315
 
2316
- #: dashboard/publisher/adrotate-groups-edit.php:130
2317
- msgid "Advert Width and Height"
2318
- msgstr "Anchura y altura del Anuncio"
2319
 
2320
- #: dashboard/publisher/adrotate-groups-edit.php:132
2321
  msgid "pixel(s) wide"
2322
  msgstr "ancho pixel(s)"
2323
 
2324
- #: dashboard/publisher/adrotate-groups-edit.php:132
2325
  msgid "pixel(s) high."
2326
  msgstr "alto pixel(s)"
2327
 
2328
- #: dashboard/publisher/adrotate-groups-edit.php:135
2329
  #, fuzzy
2330
  msgid ""
2331
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2334,224 +2271,231 @@ msgstr ""
2334
  "Definir el tamaño máximo de los anuncios en píxeles menos el del margen. El "
2335
  "tamaño puede ser 'auto' (No recomendado). Predeterminado: 125/125."
2336
 
2337
- #: dashboard/publisher/adrotate-groups-edit.php:139
2338
  msgid "Automated refresh"
2339
  msgstr "Actualización automatica"
2340
 
2341
- #: dashboard/publisher/adrotate-groups-edit.php:158
2342
  msgid "seconds."
2343
  msgstr "segundos."
2344
 
2345
- #: dashboard/publisher/adrotate-groups-edit.php:161
2346
  msgid "Dynamic Mode"
2347
  msgstr "Modo Dinámico"
2348
 
2349
- #: dashboard/publisher/adrotate-groups-edit.php:161
2350
  msgid ""
2351
  "Load a new advert in this interval without reloading the page. Default: 6."
2352
  msgstr ""
2353
  "Cargar un nuevo anuncio en este intervalo sin recargar la página. "
2354
  "Predeterminado: 6."
2355
 
2356
- #: dashboard/publisher/adrotate-groups-edit.php:181
2357
- #: dashboard/publisher/adrotate-groups-edit.php:322
2358
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2359
  msgid "Save Group"
2360
  msgstr "Guardar Grupo"
2361
 
2362
- #: dashboard/publisher/adrotate-groups-edit.php:189
2363
  msgid "Advert Margin"
2364
  msgstr "Margen del anuncio"
2365
 
2366
- #: dashboard/publisher/adrotate-groups-edit.php:191
2367
  msgid "pixel(s)"
2368
  msgstr "pixel(s)"
2369
 
2370
- #: dashboard/publisher/adrotate-groups-edit.php:194
2371
  msgid "A transparent area outside the advert in pixels. Default: 0."
2372
  msgstr ""
2373
  "Un area transparente alrededor del anuncio en píxeles. Predeterminado: 0."
2374
 
2375
- #: dashboard/publisher/adrotate-groups-edit.php:194
2376
  msgid "Set to 0 to disable."
2377
  msgstr "Establece a 0 para desactivar."
2378
 
2379
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2380
  #, fuzzy
2381
  msgid "Align the group"
2382
  msgstr "Anuncios en grupo"
2383
 
2384
- #: dashboard/publisher/adrotate-groups-edit.php:201
2385
  #, fuzzy
2386
  msgid "None (Default)"
2387
  msgstr "Predeterminado"
2388
 
2389
- #: dashboard/publisher/adrotate-groups-edit.php:202
2390
  msgid "Left"
2391
  msgstr ""
2392
 
2393
- #: dashboard/publisher/adrotate-groups-edit.php:203
2394
  #, fuzzy
2395
  msgid "Right"
2396
  msgstr "Prioridad"
2397
 
2398
- #: dashboard/publisher/adrotate-groups-edit.php:204
2399
  msgid "Center"
2400
  msgstr ""
2401
 
2402
- #: dashboard/publisher/adrotate-groups-edit.php:208
2403
  msgid ""
2404
  "Align the group in your post or page. Using 'center' may affect your margin "
2405
  "setting. Not every theme supports this feature."
2406
  msgstr ""
2407
 
2408
- #: dashboard/publisher/adrotate-groups-edit.php:214
2409
  msgid "Leave empty or 0 to skip this. Will default to group id."
2410
  msgstr ""
2411
  "Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
2412
 
2413
- #: dashboard/publisher/adrotate-groups-edit.php:218
2414
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2415
  msgstr ""
2416
 
2417
- #: dashboard/publisher/adrotate-groups-edit.php:221
2418
- msgid "Insert ads to the begin or end of a post/page."
2419
- msgstr "Inserte anuncios al comienzo o final de una entrada/página."
2420
-
2421
- #: dashboard/publisher/adrotate-groups-edit.php:224
2422
  msgid "Include ads in categories?"
2423
  msgstr "¿Incluir los anuncios en las categorías?"
2424
 
2425
- #: dashboard/publisher/adrotate-groups-edit.php:228
2426
- #: dashboard/publisher/adrotate-groups-edit.php:269
2427
  msgid "Disabled"
2428
  msgstr "Desactivado"
2429
 
2430
- #: dashboard/publisher/adrotate-groups-edit.php:229
2431
- #: dashboard/publisher/adrotate-groups-edit.php:270
2432
  msgid "Before content"
2433
  msgstr "Antes del contenido"
2434
 
2435
- #: dashboard/publisher/adrotate-groups-edit.php:230
2436
- #: dashboard/publisher/adrotate-groups-edit.php:271
2437
  msgid "After content"
2438
  msgstr "Después del contenido"
2439
 
2440
- #: dashboard/publisher/adrotate-groups-edit.php:231
2441
- #: dashboard/publisher/adrotate-groups-edit.php:272
2442
  msgid "Before and after content"
2443
  msgstr "Antes y después del contenido"
2444
 
2445
- #: dashboard/publisher/adrotate-groups-edit.php:232
2446
- #: dashboard/publisher/adrotate-groups-edit.php:273
2447
  msgid "After..."
2448
  msgstr "Después..."
2449
 
2450
- #: dashboard/publisher/adrotate-groups-edit.php:238
2451
- #: dashboard/publisher/adrotate-groups-edit.php:279
2452
  msgid "the first paragraph"
2453
  msgstr "el primer párrafo"
2454
 
2455
- #: dashboard/publisher/adrotate-groups-edit.php:239
2456
- #: dashboard/publisher/adrotate-groups-edit.php:280
2457
  msgid "the 2nd paragraph"
2458
  msgstr "el segundo párrafo"
2459
 
2460
- #: dashboard/publisher/adrotate-groups-edit.php:240
2461
- #: dashboard/publisher/adrotate-groups-edit.php:281
2462
  msgid "the 3rd paragraph"
2463
  msgstr "el tercer párrafo"
2464
 
2465
- #: dashboard/publisher/adrotate-groups-edit.php:241
2466
- #: dashboard/publisher/adrotate-groups-edit.php:282
2467
  msgid "the 4th paragraph"
2468
  msgstr "el cuarto párrafo"
2469
 
2470
- #: dashboard/publisher/adrotate-groups-edit.php:243
2471
- #: dashboard/publisher/adrotate-groups-edit.php:284
2472
  msgid "every 2nd paragraph"
2473
  msgstr "cada segundo párrafo"
2474
 
2475
- #: dashboard/publisher/adrotate-groups-edit.php:244
2476
- #: dashboard/publisher/adrotate-groups-edit.php:285
2477
  msgid "every 3rd paragraph"
2478
  msgstr "cada tercer párrafo"
2479
 
2480
- #: dashboard/publisher/adrotate-groups-edit.php:245
2481
- #: dashboard/publisher/adrotate-groups-edit.php:286
2482
  msgid "every 4th paragraph"
2483
  msgstr "cada cuarto párrafo"
2484
 
2485
- #: dashboard/publisher/adrotate-groups-edit.php:246
2486
- #: dashboard/publisher/adrotate-groups-edit.php:287
2487
  msgid "every 5th paragraph"
2488
  msgstr "cada quinto párrafo"
2489
 
2490
- #: dashboard/publisher/adrotate-groups-edit.php:247
2491
- #: dashboard/publisher/adrotate-groups-edit.php:288
2492
  msgid "every 6th paragraph"
2493
  msgstr "cada sexto párrafo"
2494
 
2495
- #: dashboard/publisher/adrotate-groups-edit.php:248
2496
- #: dashboard/publisher/adrotate-groups-edit.php:289
2497
  msgid "every 7th paragraph"
2498
  msgstr "cada septimo párrafo"
2499
 
2500
- #: dashboard/publisher/adrotate-groups-edit.php:249
2501
- #: dashboard/publisher/adrotate-groups-edit.php:290
2502
  msgid "every 8th paragraph"
2503
  msgstr "cada octavo párrafo"
2504
 
2505
- #: dashboard/publisher/adrotate-groups-edit.php:255
2506
  msgid "Which categories?"
2507
  msgstr "¿En qué categorías?"
2508
 
2509
- #: dashboard/publisher/adrotate-groups-edit.php:260
2510
  msgid "Click the categories posts you want the adverts to show in."
2511
  msgstr ""
2512
  "Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
2513
 
2514
- #: dashboard/publisher/adrotate-groups-edit.php:265
2515
  msgid "Include ads in pages?"
2516
  msgstr "¿Incluir los anuncios en las páginas?"
2517
 
2518
- #: dashboard/publisher/adrotate-groups-edit.php:296
2519
  msgid "Which pages?"
2520
  msgstr "¿En qué páginas?"
2521
 
2522
- #: dashboard/publisher/adrotate-groups-edit.php:301
2523
  msgid "Click the pages you want the adverts to show in."
2524
  msgstr "Haga clic en las páginas en las que mostrar los anuncios."
2525
 
2526
- #: dashboard/publisher/adrotate-groups-edit.php:326
2527
  msgid "Wrapper code"
2528
  msgstr "Código"
2529
 
2530
- #: dashboard/publisher/adrotate-groups-edit.php:327
2531
- msgid "Wraps around each ad."
2532
- msgstr "Se envuelve alrededor de cada anuncio."
2533
 
2534
- #: dashboard/publisher/adrotate-groups-edit.php:331
2535
  msgid "Before ad"
2536
  msgstr "Antés del anuncio"
2537
 
2538
- #: dashboard/publisher/adrotate-groups-edit.php:336
2539
- msgid "HTML/JavaScript allowed, use with care!"
2540
- msgstr "Esta permitido HTML/JavaScript, utilicelo con cuidado!"
2541
 
2542
- #: dashboard/publisher/adrotate-groups-edit.php:340
2543
  msgid "After ad"
2544
  msgstr "Después del anuncio"
2545
 
2546
- #: dashboard/publisher/adrotate-groups-edit.php:349
2547
  msgid "Select Ads"
2548
  msgstr "Seleccione Anuncios"
2549
 
2550
- #: dashboard/publisher/adrotate-groups-edit.php:358
2551
  msgid "Visible until"
2552
  msgstr "Visible hasta"
2553
 
2554
- #: dashboard/publisher/adrotate-groups-edit.php:391
2555
  msgid "No ads created!"
2556
  msgstr "No hay anuncios creados!"
2557
 
@@ -2583,6 +2527,132 @@ msgstr "No hay grupos creados!"
2583
  msgid "Statistics for group"
2584
  msgstr "Estadisticas por Grupo"
2585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2586
  #, fuzzy
2587
  #~ msgid "AdRotate Website."
2588
  #~ msgstr "Tienda AdRotate"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:809
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:812
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-output.php:745
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
+ #: adrotate-output.php:746
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
37
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
38
  "Verificar si la url utilizada es válida o acceder a través del navegador."
39
 
40
+ #: adrotate-output.php:747
41
  msgid ""
42
  "If you have received the url you want to visit via email, you are being "
43
  "tricked!"
45
  "Si usted ha recibido la url que desea visitar a través del correo "
46
  "electrónico, es posible que le esten engañando!"
47
 
48
+ #: adrotate-output.php:748
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
+ #: adrotate-output.php:766
53
  msgid ""
54
  "Error, Ad is not available at this time due to schedule/geolocation "
55
  "restrictions or does not exist!"
57
  "ERROR: El anuncio no está disponible en este momento debido a las "
58
  "restricciones de programa, de geolocalización o no existe!"
59
 
60
+ #: adrotate-output.php:768
61
  msgid ""
62
  "Error, Ad is not available at this time due to schedule/geolocation "
63
  "restrictions!"
65
  "ERROR: El anuncio no está disponible en este momento debido a las "
66
  "restricciones restricciones de programa o geolocalización!"
67
 
68
+ #: adrotate-output.php:775 adrotate-output.php:777
69
  msgid ""
70
  "Either there are no banners, they are disabled or none qualified for this "
71
  "location!"
73
  "O bien no hay banners, estan desactivados o no estan programados para esta "
74
  "ubicación!"
75
 
76
+ #: adrotate-output.php:783
77
  msgid "Error, no Ad ID set! Check your syntax!"
78
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
79
 
80
+ #: adrotate-output.php:789
81
  msgid "Error, no group ID set! Check your syntax!"
82
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
83
 
84
+ #: adrotate-output.php:794
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
87
 
88
+ #: adrotate-output.php:800
89
  msgid ""
90
  "There was an error locating the database tables for AdRotate. Please "
91
  "deactivate and re-activate AdRotate from the plugin page!!"
93
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
94
  "desactivar y volver a activar el plugin AdRotate de la página!"
95
 
96
+ #: adrotate-output.php:800
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
99
 
100
+ #: adrotate-output.php:806
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
+ #: adrotate-output.php:831
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
+ #: adrotate-output.php:831
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
+ #: adrotate-output.php:833
113
  msgid "active ad(s) are about to expire."
114
  msgstr "anuncio(s) activo(s) están a punto de caducar."
115
 
116
+ #: adrotate-output.php:833
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
+ #: adrotate-output.php:835
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
+ #: adrotate-output.php:835
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
+ #: adrotate-output.php:837
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
+ #: adrotate-output.php:837
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
+ #: adrotate-output.php:837
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
+ #: adrotate-output.php:837
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
+ #: adrotate-output.php:849
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
+ #: adrotate-output.php:850
150
  msgid ""
151
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
152
  "to the <strong>PRO</strong> version"
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:850
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:850
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Esta notificación se le envía desde su página web"
163
 
164
+ #: adrotate-output.php:894
165
  msgid ""
166
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
167
+ "this menu. Check out the"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:894
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
+ #: adrotate-output.php:894 adrotate-output.php:971
175
+ #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:894
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:930
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
+ #: adrotate-output.php:931
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:933
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:934
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
+ #: adrotate-output.php:935
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
+ #: adrotate-output.php:936
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
+ #: adrotate-output.php:937
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:963
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
220
 
221
+ #: adrotate-output.php:964
222
  msgid "Brought to you by"
223
  msgstr "Presentado por"
224
 
225
+ #: adrotate-output.php:971
226
  msgid ""
227
  "A lot of users only think to review AdRotate when something goes wrong while "
228
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:971
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:971
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:971
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Revise el anuncio aquí:"
243
 
244
+ #: adrotate-output.php:971
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:974
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
253
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
254
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
255
 
256
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Visite la"
259
 
260
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "página web"
263
 
264
+ #: adrotate-output.php:1004
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Disponible en AdRotate Pro"
267
 
268
+ #: adrotate-output.php:1004
269
  msgid "More information..."
270
  msgstr "Más información..."
271
 
272
+ #: adrotate-output.php:1005
273
  msgid "This feature is available in AdRotate Pro"
274
  msgstr "Esta función está disponible en AdRotate Pro"
275
 
276
+ #: adrotate-output.php:1005
277
  msgid "Learn more"
278
  msgstr "Aprender más"
279
 
280
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
281
+ #: dashboard/publisher/adrotate-ads-edit.php:245
282
  msgid "January"
283
  msgstr "Enero"
284
 
285
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
286
+ #: dashboard/publisher/adrotate-ads-edit.php:246
287
  msgid "February"
288
  msgstr "Febrero"
289
 
290
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
291
+ #: dashboard/publisher/adrotate-ads-edit.php:247
292
  msgid "March"
293
  msgstr "Marzo"
294
 
295
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
296
+ #: dashboard/publisher/adrotate-ads-edit.php:248
297
  msgid "April"
298
  msgstr "Abril"
299
 
300
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
301
+ #: dashboard/publisher/adrotate-ads-edit.php:249
302
  msgid "May"
303
  msgstr "Mayo"
304
 
305
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
306
+ #: dashboard/publisher/adrotate-ads-edit.php:250
307
  msgid "June"
308
  msgstr "Junio"
309
 
310
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
311
+ #: dashboard/publisher/adrotate-ads-edit.php:251
312
  msgid "July"
313
  msgstr "Julio"
314
 
315
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
316
+ #: dashboard/publisher/adrotate-ads-edit.php:252
317
  msgid "August"
318
  msgstr "Agosto"
319
 
320
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
321
+ #: dashboard/publisher/adrotate-ads-edit.php:253
322
  msgid "September"
323
  msgstr "Septiembre"
324
 
325
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
326
+ #: dashboard/publisher/adrotate-ads-edit.php:254
327
  msgid "October"
328
  msgstr "Octubre"
329
 
330
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
331
+ #: dashboard/publisher/adrotate-ads-edit.php:255
332
  msgid "November"
333
  msgstr "Noviembre"
334
 
335
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
336
+ #: dashboard/publisher/adrotate-ads-edit.php:256
337
  msgid "December"
338
  msgstr "Diciembre"
339
 
386
  msgid "Choose what you want to use this widget for"
387
  msgstr "Elija lo que desea utilizar en este widget para"
388
 
389
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
390
  msgid "ID:"
391
  msgstr "ID:"
392
 
394
  msgid "Fill in the ID of the type you want to display!"
395
  msgstr "Rellene con el ID del tipo que desea mostrar!"
396
 
397
+ #: adrotate.php:107
398
  msgid "General Info"
399
  msgstr "Información General"
400
 
401
+ #: adrotate.php:108
402
  msgid "AdRotate Pro"
403
  msgstr "AdRotate Pro"
404
 
405
+ #: adrotate.php:109
406
  msgid "Manage Ads"
407
  msgstr "Gestionar Anuncios"
408
 
409
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
410
  msgid "Manage Groups"
411
  msgstr "Gestionar Grupos"
412
 
413
+ #: adrotate.php:111 adrotate.php:440
 
414
  #, fuzzy
415
  msgid "Manage Schedules"
416
  msgstr "Gestionar Programas"
417
 
418
+ #: adrotate.php:112
419
  #, fuzzy
420
  msgid "Manage Media"
421
  msgstr "Gestionar Medios"
422
 
423
+ #: adrotate.php:113
424
  msgid "Settings"
425
  msgstr "Ajustes"
426
 
427
+ #: adrotate.php:136
428
  msgid "AdRotate Info"
429
  msgstr "Información de AdRotate"
430
 
431
+ #: adrotate.php:157
432
  msgid "AdRotate Professional"
433
  msgstr "AdRotate Profesional"
434
 
435
+ #: adrotate.php:200
436
  msgid "Ad Management"
437
  msgstr "Administración de Anuncios"
438
 
439
+ #: adrotate.php:203
440
  msgid "Ad created"
441
  msgstr "Anuncio creado"
442
 
443
+ #: adrotate.php:205
444
  msgid "Ad updated"
445
  msgstr "Anuncio actualizado"
446
 
447
+ #: adrotate.php:207
448
  msgid "Ad(s) deleted"
449
  msgstr "Anuncio(s) eliminado"
450
 
451
+ #: adrotate.php:209
452
  msgid "Ad(s) statistics reset"
453
  msgstr "Estadisticas del Anuncio(s) restablecidas"
454
 
455
+ #: adrotate.php:211
456
  msgid "Ad(s) renewed"
457
  msgstr "Anuncio(s) renovado"
458
 
459
+ #: adrotate.php:213
460
  msgid "Ad(s) deactivated"
461
  msgstr "Anuncio(s) desactivado"
462
 
463
+ #: adrotate.php:215
464
  msgid "Ad(s) activated"
465
  msgstr "Anuncio(s) activado"
466
 
467
+ #: adrotate.php:217
468
  msgid ""
469
  "The ad was saved but has an issue which might prevent it from working "
470
  "properly. Review the yellow marked ad."
472
  "El anuncio fue guardado, pero tiene un problema que podría impedir que "
473
  "funcione correctamente. Revise el anuncio marcado de color amarillo."
474
 
475
+ #: adrotate.php:219
476
  #, fuzzy
477
  msgid "Export created"
478
  msgstr "Exportación Creada"
479
 
480
+ #: adrotate.php:223
481
  msgid "Action prohibited"
482
  msgstr "Acción prohibida"
483
 
484
+ #: adrotate.php:225 adrotate.php:373
485
  msgid "No data found in selected time period"
486
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
487
 
488
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
489
  msgid "Manage"
490
  msgstr "Gestionar"
491
 
492
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
493
  msgid "Add New"
494
  msgstr "Añadir Nuevo"
495
 
496
+ #: adrotate.php:362
497
  msgid "Group Management"
498
  msgstr "Administración de Grupos"
499
 
500
+ #: adrotate.php:365
501
  msgid "Group created"
502
  msgstr "Grupo creado"
503
 
504
+ #: adrotate.php:367
505
  msgid "Group updated"
506
  msgstr "Grupo actualizado"
507
 
508
+ #: adrotate.php:369
509
  msgid "Group deleted"
510
  msgstr "Grupo borrado"
511
 
512
+ #: adrotate.php:371
513
  msgid "Group including it's Ads deleted"
514
  msgstr "Grupo incluyendo sus anuncios eliminados"
515
 
516
+ #: adrotate.php:431
517
  #, fuzzy
518
  msgid "Schedule Management available in AdRotate Pro"
519
  msgstr "Disponible en AdRotate Pro"
520
 
521
+ #: adrotate.php:441
522
  msgid ""
523
  "Schedule management and multiple schedules per advert is available in "
524
  "AdRotate Pro."
525
  msgstr ""
526
 
527
+ #: adrotate.php:441 adrotate.php:528
528
+ #: dashboard/publisher/adrotate-ads-edit.php:177
529
  #: dashboard/publisher/adrotate-ads-main.php:108
530
+ #: dashboard/publisher/adrotate-groups-edit.php:75
531
  #: dashboard/publisher/adrotate-groups-main.php:87
532
  #, fuzzy
533
  msgid "More information"
534
  msgstr "Más información..."
535
 
536
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
537
  #: dashboard/publisher/adrotate-ads-main-error.php:19
538
  #: dashboard/publisher/adrotate-ads-main.php:20
539
  #: dashboard/publisher/adrotate-groups-main.php:20
540
  msgid "Bulk Actions"
541
  msgstr "Acciones en Lote"
542
 
543
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
544
  #: dashboard/publisher/adrotate-ads-main-error.php:29
545
  #: dashboard/publisher/adrotate-ads-main.php:30
546
  #: dashboard/publisher/adrotate-groups-main.php:24
547
  msgid "Go"
548
  msgstr "Aplicar"
549
 
550
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
551
  #: dashboard/publisher/adrotate-ads-main-error.php:39
552
  #: dashboard/publisher/adrotate-ads-main.php:39
553
  #: dashboard/publisher/adrotate-groups-main.php:32
554
  msgid "ID"
555
  msgstr "ID"
556
 
557
+ #: adrotate.php:459
558
  #, fuzzy
559
  msgid "Start"
560
  msgstr "Iniciar"
561
 
562
+ #: adrotate.php:459
563
  #, fuzzy
564
  msgid "End"
565
  msgstr "Finalizar"
566
 
567
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
568
  #: dashboard/publisher/adrotate-groups-main.php:34
569
  msgid "Ads"
570
  msgstr "Anuncios"
571
 
572
+ #: adrotate.php:462
573
  msgid "Max Clicks"
574
  msgstr "Número máximo de Clics"
575
 
576
+ #: adrotate.php:463
577
  msgid "Max Impressions"
578
  msgstr "Número máximo de Impresiones"
579
 
580
+ #: adrotate.php:493
581
  #, fuzzy
582
  msgid "No schedules created yet!"
583
  msgstr "Todavia no se han creado programas!"
584
 
585
+ #: adrotate.php:498
586
  #, fuzzy
587
  msgid "Easily manage your schedules from here with AdRotate Pro."
588
  msgstr "Obtenga más funciones con AdRotate Pro"
589
 
590
+ #: adrotate.php:498 adrotate.php:561
591
  #, fuzzy
592
  msgid "Upgrade today!"
593
  msgstr "Hoy"
594
 
595
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
596
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
597
  msgid "Expires soon."
598
  msgstr "Caduca pronto."
599
 
600
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
601
+ #: dashboard/publisher/adrotate-groups-edit.php:373
602
  msgid "Has expired."
603
  msgstr "Ha expirado."
604
 
605
+ #: adrotate.php:526
606
  #, fuzzy
607
  msgid "Media Management available in AdRotate Pro"
608
  msgstr "Esta función está disponible en AdRotate Pro"
609
 
610
+ #: adrotate.php:528
611
  #, fuzzy
612
  msgid ""
613
  "Upload images to the AdRotate Pro banners folder from here. This is "
616
  "Cargar las imágenes en la carpeta de banners de AdRotate Pro desde aquí. "
617
  "Esto es especialmente útil si utiliza publicidad con múltiples imágenes."
618
 
619
+ #: adrotate.php:528
620
  #, fuzzy
621
  msgid "Media uploading and management is available in AdRotate Pro."
622
  msgstr "Esta función está disponible en AdRotate Pro"
623
 
624
+ #: adrotate.php:530
625
  #, fuzzy
626
  msgid "Upload new banner image"
627
  msgstr "Cargar una nueva Imagen de Banner"
628
 
629
+ #: adrotate.php:531
630
  #, fuzzy
631
  msgid "Accepted files are:"
632
  msgstr "Los archivos aceptados son:"
633
 
634
+ #: adrotate.php:531
635
  #, fuzzy
636
  msgid "Maximum size is 512Kb."
637
  msgstr "El tamaño máximo es 512Kb."
638
 
639
+ #: adrotate.php:531
640
  #, fuzzy
641
  msgid "Important:"
642
  msgstr "Importante:"
643
 
644
+ #: adrotate.php:531
645
  #, fuzzy
646
  msgid ""
647
  "Make sure your file has no spaces or special characters in the name. Replace "
650
  "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
651
  "caracteres especiales. Reemplace los espacios con un - o _."
652
 
653
+ #: adrotate.php:533
654
  #, fuzzy
655
  msgid ""
656
  "For responsive adverts make sure the filename is in the following format; "
660
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
661
  "de imágenes del mismo tamaño."
662
 
663
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
664
  msgid ""
665
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
666
  "filename instead of \".full\" for the various viewports."
669
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
670
  "diferentes visores."
671
 
672
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
673
+ #: dashboard/publisher/adrotate-groups-edit.php:308
674
+ #: dashboard/publisher/adrotate-groups-edit.php:316
675
  msgid "Example:"
676
  msgstr "Ejemplo:"
677
 
678
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
679
  #, fuzzy
680
  msgid ""
681
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
684
  "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
685
  "distintas ventanas gráficas. Se necesita jQuery."
686
 
687
+ #: adrotate.php:539
688
  #, fuzzy
689
  msgid "Upload image"
690
  msgstr "Subir imagen"
691
 
692
+ #: adrotate.php:542
693
  #, fuzzy
694
  msgid "Available banner images in"
695
  msgstr "Los banners estan disponibles en"
696
 
697
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
698
  msgid "Name"
699
  msgstr "Nombre"
700
 
701
+ #: adrotate.php:548
702
  #, fuzzy
703
  msgid "Actions"
704
  msgstr "Acciones"
705
 
706
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
707
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
708
  #: dashboard/publisher/adrotate-ads-main-error.php:21
709
  #: dashboard/publisher/adrotate-ads-main.php:22
710
  msgid "Delete"
711
  msgstr "Borrar"
712
 
713
+ #: adrotate.php:561
714
  #, fuzzy
715
  msgid ""
716
  "Make sure the banner images are not in use by adverts when you delete them!"
718
  "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
719
  "anuncios cuando las elimine!"
720
 
721
+ #: adrotate.php:561
722
  #, fuzzy
723
  msgid "Manage your banner folder from here with AdRotate Pro."
724
  msgstr "Obtenga más funciones con AdRotate Pro"
725
 
726
+ #: adrotate.php:605
727
  msgid "AdRotate Settings"
728
  msgstr "Ajustes AdRotate"
729
 
730
+ #: adrotate.php:608
731
  msgid "Settings saved"
732
  msgstr "Ajustes guardados"
733
 
734
+ #: adrotate.php:610
735
  msgid "Database optimized"
736
  msgstr "Base de Datos optimizada"
737
 
738
+ #: adrotate.php:612
739
  msgid "Database repaired"
740
  msgstr "Base de Datos reparada"
741
 
742
+ #: adrotate.php:614
743
  msgid "Ads evaluated and statuses have been corrected where required"
744
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
745
 
746
+ #: adrotate.php:616
747
  msgid "Empty database records removed"
748
  msgstr "Se han eliminado los registros vacios de la base de datos"
749
 
750
+ #: adrotate.php:618
751
  msgid "Database can only be optimized or cleaned once every hour"
752
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
753
 
754
+ #: adrotate.php:626
755
  msgid "Access Rights"
756
  msgstr "Permisos de acceso"
757
 
758
+ #: adrotate.php:627
759
  msgid "Who has access to what?"
760
  msgstr "¿Quién tiene acceso a qué?"
761
 
762
+ #: adrotate.php:630
763
  msgid "Manage/Add/Edit adverts"
764
  msgstr "Gestionar/Añadir/Editar anuncios"
765
 
766
+ #: adrotate.php:634
767
  msgid "Role to see and add/edit ads."
768
  msgstr "Perfil para ver y añadir/editar los anuncios."
769
 
770
+ #: adrotate.php:638
771
  msgid "Delete/Reset adverts"
772
  msgstr "Borrar/Restablecer anuncios"
773
 
774
+ #: adrotate.php:642
775
  msgid "Role to delete ads and reset stats."
776
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
777
 
778
+ #: adrotate.php:646
779
  msgid "Manage/Add/Edit groups"
780
  msgstr "Gestionar/Añadir/Editar grupos"
781
 
782
+ #: adrotate.php:650
783
  msgid "Role to see and add/edit groups."
784
  msgstr "Perfil para ver y añadir/editar grupos."
785
 
786
+ #: adrotate.php:654
787
  msgid "Delete groups"
788
  msgstr "Eliminar grupos"
789
 
790
+ #: adrotate.php:658
791
  msgid "Role to delete groups."
792
  msgstr "Perfil para eliminar grupos"
793
 
794
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
795
+ #: adrotate.php:875
796
  msgid "Update Options"
797
  msgstr "Actualizar Opciones"
798
 
799
+ #: adrotate.php:690
800
  msgid "Statistics"
801
  msgstr "Estadísticas"
802
 
803
+ #: adrotate.php:693
804
  msgid "Enable stats"
805
  msgstr "Habilitar las estadísticas"
806
 
807
+ #: adrotate.php:695
808
  msgid "Track clicks and impressions."
809
  msgstr "Seguimiento de clics e impresiones."
810
 
811
+ #: adrotate.php:695
812
  #, fuzzy
813
  msgid "Disabling this also disables click and impression limits on schedules."
814
  msgstr ""
815
  "Al desactivar esto, también se deshabilitan la limitación de clics e "
816
  "impresiones en el calendario y desactiva los periodos de tiempo."
817
 
818
+ #: adrotate.php:699
819
  msgid "Impressions timer"
820
  msgstr "Temporizador de Impresiones"
821
 
822
+ #: adrotate.php:701 adrotate.php:708
823
  msgid "Seconds."
824
  msgstr "Segundos."
825
 
826
+ #: adrotate.php:702
827
  #, fuzzy
828
  msgid "Default: 60."
829
  msgstr "Predeterminado"
830
 
831
+ #: adrotate.php:702
832
  #, fuzzy
833
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
834
  msgstr ""
835
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
836
 
837
+ #: adrotate.php:706
838
  msgid "Clicks timer"
839
  msgstr "Temporizador de Clics"
840
 
841
+ #: adrotate.php:709
842
  #, fuzzy
843
  msgid "Default: 86400."
844
  msgstr "Predeterminado"
845
 
846
+ #: adrotate.php:709
847
  #, fuzzy
848
  msgid ""
849
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
850
  msgstr ""
851
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
852
 
853
+ #: adrotate.php:714
854
  msgid "Bot filter"
855
  msgstr "Filtro de Motor de búsqueda"
856
 
857
+ #: adrotate.php:717
858
  msgid "User-Agent Filter"
859
  msgstr "Filtro de User-Agent"
860
 
861
+ #: adrotate.php:720
862
  msgid ""
863
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
864
  "prevent impressions and clicks counted on them."
867
  "crawlers / user-agents. Para prevenir contabilizar impresiones y clics "
868
  "realizados por ellos."
869
 
870
+ #: adrotate.php:721
871
  msgid ""
872
  "Keep in mind that this might give false positives. The word 'google' also "
873
  "matches 'googlebot', but not vice-versa. So be careful!"
875
  "Tenga en cuenta que esto puede dar falsos positivos. La palabra 'google' "
876
  "también coincide con 'googlebot', pero no viceversa. Así que ten cuidado!"
877
 
878
+ #: adrotate.php:721
879
  msgid "Keep your list up-to-date"
880
  msgstr "Mantenga su lista al día"
881
 
882
+ #: adrotate.php:722
883
  msgid ""
884
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
885
  "other characters are stripped out."
887
  "Utilice solamente palabras con caracteres alfanuméricos, [- _] se permite "
888
  "también. Todos los demás caracteres se eliminaran."
889
 
890
+ #: adrotate.php:723
891
  msgid ""
892
  "Additionally to the list specified here, empty User-Agents are blocked as "
893
  "well."
895
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
896
  "bloqueados."
897
 
898
+ #: adrotate.php:723
899
  msgid "Learn more about"
900
  msgstr "Más información sobre"
901
 
902
+ #: adrotate.php:723
903
  msgid "user-agents"
904
  msgstr "user-agents"
905
 
906
+ #: adrotate.php:732
907
  msgid "Miscellaneous"
908
  msgstr "Varios"
909
 
910
+ #: adrotate.php:735
911
  msgid "Widget alignment"
912
  msgstr "Alineación de Widget"
913
 
914
+ #: adrotate.php:736
915
  msgid ""
916
  "Check this box if your widgets do not align in your themes sidebar. (Does "
917
  "not always help!)"
919
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
920
  "plantillas (theme). (No siempre ayuda!)"
921
 
922
+ #: adrotate.php:739
923
  msgid "Widget padding"
924
  msgstr "Relleno de Widget"
925
 
926
+ #: adrotate.php:740
927
  msgid ""
928
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
929
  "not always work!)"
931
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
932
  "de los anuncios en los widgets. (No siempre funciona!)"
933
 
934
+ #: adrotate.php:745 adrotate.php:756
935
  #, fuzzy
936
  msgid "NOTICE:"
937
  msgstr "Aviso"
938
 
939
+ #: adrotate.php:746
940
  msgid ""
941
  "You have enabled W3 Total Caching support but not defined the security hash. "
942
  "You need to add the following line to your wp-config.php near the bottom or "
948
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
949
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
950
 
951
+ #: adrotate.php:750
952
  msgid "W3 Total Caching"
953
  msgstr "W3 Total Cache"
954
 
955
+ #: adrotate.php:751
956
  msgid "Check this box if you use W3 Total Caching on your site."
957
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
958
 
959
+ #: adrotate.php:757
960
  msgid ""
961
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
962
  "this function will not work. WP Super Cache has discontinued support for "
966
  "esta función no funcionará. WP Super Cache ha interrumpido el soporte para "
967
  "el contenido dinámico."
968
 
969
+ #: adrotate.php:761
970
  msgid "WP Super Cache"
971
  msgstr "WP Super Cache"
972
 
973
+ #: adrotate.php:762
974
  msgid "Check this box if you use WP Super Cache on your site."
975
  msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
976
 
977
+ #: adrotate.php:767
978
  msgid ""
979
  "It may take a while for the ad to start rotating. The caching plugin needs "
980
  "to refresh the cache. This can take up to a week if not done manually."
983
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
984
  "semana si no se realiza de forma manual."
985
 
986
+ #: adrotate.php:767
987
  msgid ""
988
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
989
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
992
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
993
  "código PHP la exclusión a ti mismo."
994
 
995
+ #: adrotate.php:771
996
  msgid "Javascript"
997
  msgstr ""
998
 
999
+ #: adrotate.php:774
1000
  msgid "Load jQuery"
1001
  msgstr "Cargar jQuery"
1002
 
1003
+ #: adrotate.php:775
1004
  msgid ""
1005
  "jQuery is required for all Javascript features below. Enable this if your "
1006
  "theme does not load jQuery already."
1008
  "jQuery es necesaria para todas las características Javascript siguientes. "
1009
  "Habilite esta opción si su tema no carga jQuery por defecto."
1010
 
1011
+ #: adrotate.php:778
1012
  msgid "Load in footer?"
1013
  msgstr "¿Cargar en el pie de página?"
1014
 
1015
+ #: adrotate.php:779
1016
  msgid ""
1017
  "Enable if you want to load the above libraries in the footer. Your theme "
1018
  "needs to call wp_footer() for this to work."
1020
  "Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
1021
  "tema tiene que llamar a la función wp_footer() para que esto funcione."
1022
 
1023
+ #: adrotate.php:787
1024
  msgid "Maintenance"
1025
  msgstr "Mantenimiento"
1026
 
1027
+ #: adrotate.php:788
1028
  msgid ""
1029
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1030
  "They only apply to your ads/groups and stats. Not to other settings or other "
1038
  "Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
1039
  "cuando se siente o nota que su base de datos va lenta o no responde."
1040
 
1041
+ #: adrotate.php:803 adrotate.php:805
1042
  msgid "Optimize Database"
1043
  msgstr "Optimizar la Base de Datos"
1044
 
1045
+ #: adrotate.php:805
1046
  msgid "You are about to optimize the AdRotate database."
1047
  msgstr "Vas a optimizar la base de datos AdRotate."
1048
 
1049
+ #: adrotate.php:805
1050
  msgid "Did you make a backup of your database?"
1051
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
1052
 
1053
+ #: adrotate.php:805
1054
  msgid ""
1055
  "This may take a moment and may cause your website to respond slow "
1056
  "temporarily!"
1058
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
1059
  "lentamente temporalmente!"
1060
 
1061
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1062
  #: dashboard/publisher/adrotate-groups-main.php:24
1063
  msgid "OK to continue, CANCEL to stop."
1064
  msgstr "OK para continuar, CANCELAR para detenerlo."
1065
 
1066
+ #: adrotate.php:806
1067
  msgid "Cleans up overhead data in the AdRotate tables."
1068
  msgstr "Limpiar los datos generales de las tablas AdRotate."
1069
 
1070
+ #: adrotate.php:807
1071
  msgid ""
1072
  "Overhead data is accumulated garbage resulting from many changes you've "
1073
  "made. This can vary from nothing to hundreds of KiB of data."
1076
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
1077
  "datos."
1078
 
1079
+ #: adrotate.php:811 adrotate.php:813
1080
  msgid "Clean-up Database"
1081
  msgstr "Limpieza de la Base de Datos"
1082
 
1083
+ #: adrotate.php:813
1084
  msgid ""
1085
  "You are about to clean up your database. This may delete expired schedules "
1086
  "and older statistics."
1088
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
1089
  "estadísticas más antigüas."
1090
 
1091
+ #: adrotate.php:813
1092
  msgid "Are you sure you want to continue?"
1093
  msgstr "¿Está seguro que desea continuar?"
1094
 
1095
+ #: adrotate.php:813 adrotate.php:821
1096
  msgid "This might take a while and may slow down your site during this action!"
1097
  msgstr ""
1098
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
1099
 
1100
+ #: adrotate.php:814
1101
  msgid "Delete stats older than 356 days (Optional)."
1102
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
1103
 
1104
+ #: adrotate.php:815
1105
  msgid ""
1106
  "AdRotate creates empty records when you start making ads or groups. In rare "
1107
  "occasions these records are faulty."
1109
  "AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
1110
  "grupos. En raras ocasiones, estos registros son defectuosos."
1111
 
1112
+ #: adrotate.php:815
1113
  msgid ""
1114
  "If you made an ad or group that does not save when you make it use this "
1115
  "button to delete those empty records."
1117
  "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
1118
  "utilize este botón para borrar esos registros vacíos."
1119
 
1120
+ #: adrotate.php:815
1121
  msgid ""
1122
  "Additionally you can clean up old statistics. This will improve the speed of "
1123
  "your site."
1125
  "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
1126
  "velocidad de su sitio."
1127
 
1128
+ #: adrotate.php:819
1129
  msgid "Re-evaluate Ads"
1130
  msgstr "Reevaluar Anuncios"
1131
 
1132
+ #: adrotate.php:821
1133
  msgid "Re-evaluate all ads"
1134
  msgstr "Reevaluar todos los Anuncios"
1135
 
1136
+ #: adrotate.php:821
1137
  msgid "You are about to check all ads for errors."
1138
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
1139
 
1140
+ #: adrotate.php:822
1141
  msgid ""
1142
  "This will apply all evaluation rules to all ads to see if any error slipped "
1143
  "in. Normally you should not need this feature."
1145
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
1146
  "algún error. Normalmente no debería necesitar esta función."
1147
 
1148
+ #: adrotate.php:826
1149
  msgid ""
1150
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1151
  "becomes unusable in any way or by any means in whichever way I will not take "
1163
  "alegar que funcionaba antes de hacer clic en estos botones no es razón "
1164
  "suficiente."
1165
 
1166
+ #: adrotate.php:834
1167
  msgid "Troubleshooting"
1168
  msgstr "Solución de problemas"
1169
 
1170
+ #: adrotate.php:837
1171
  msgid "Current version:"
1172
  msgstr "Versión actual:"
1173
 
1174
+ #: adrotate.php:838
1175
  msgid "Previous version:"
1176
  msgstr "Versión anterior:"
1177
 
1178
+ #: adrotate.php:841
1179
  msgid "Current database version:"
1180
  msgstr "Versión actual de la base de datos:"
1181
 
1182
+ #: adrotate.php:842
1183
  msgid "Previous database version:"
1184
  msgstr "Versión anterior de la base de datos:"
1185
 
1186
+ #: adrotate.php:845
1187
  #, fuzzy
1188
  msgid "Ad evaluation next run:"
1189
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
1190
 
1191
+ #: adrotate.php:846 adrotate.php:850
1192
  msgid "Not scheduled!"
1193
  msgstr "No Programada!"
1194
 
1195
+ #: adrotate.php:849
1196
  msgid "Clean Trackerdata next run:"
1197
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
1198
 
1199
+ #: adrotate.php:853
1200
  msgid "Current status of adverts"
1201
  msgstr "Estado actual de los anuncios"
1202
 
1203
+ #: adrotate.php:854
1204
  msgid "Normal"
1205
  msgstr "Normal"
1206
 
1207
+ #: adrotate.php:854
1208
  msgid "Error"
1209
  msgstr "Error"
1210
 
1211
+ #: adrotate.php:854
1212
  msgid "Expired"
1213
  msgstr "Caducado"
1214
 
1215
+ #: adrotate.php:854
1216
  msgid "Expires Soon"
1217
  msgstr "Caduca Pronto"
1218
 
1219
+ #: adrotate.php:854
1220
  msgid "Unknown Status"
1221
  msgstr "Estado Desconocido"
1222
 
1223
+ #: adrotate.php:857
1224
  msgid ""
1225
  "NOTE: The below options are not meant for normal use and are only there for "
1226
  "developers to review saved settings or how ads are selected. These can be "
1233
  "para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
1234
  "USO CON NORMALIDAD!"
1235
 
1236
+ #: adrotate.php:861
1237
  msgid "Developer Debug"
1238
  msgstr "Depurar (Test) del Desarrollador"
1239
 
1240
+ #: adrotate.php:863
1241
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1242
  msgstr ""
1243
  "Solucionar problemas de los anuncios y de que forma se seleccionan si los "
1244
  "hay, tiene salida en las aplicaciones para usuario."
1245
 
1246
+ #: adrotate.php:864
1247
  msgid "Show all settings, dashboard routines and related values."
1248
  msgstr ""
1249
  "Mostrar todas las configuraciones, las rutinas del panel y los valores "
1250
  "relacionados."
1251
 
1252
+ #: adrotate.php:865
1253
  msgid "Show array of all userroles and capabilities."
1254
  msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
1255
 
1256
+ #: adrotate.php:866
1257
  msgid "Review saved advertisers! Visible to advertisers."
1258
  msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
1259
 
1260
+ #: adrotate.php:867
1261
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1262
  msgstr ""
1263
  "Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
1264
  "Visible sólo a los editores."
1265
 
1266
+ #: adrotate.php:868
1267
  msgid ""
1268
  "Disable timers for clicks and impressions and enable a alert window for "
1269
  "clicktracking."
1271
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
1272
  "ventana de alerta para el seguimiento de clics."
1273
 
1274
+ #: adrotate.php:869
1275
  msgid "Temporarily disable encryption on the redirect url."
1276
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
1277
 
1519
  msgstr "El AdCode no puede estar vacío!"
1520
 
1521
  #: dashboard/publisher/adrotate-ads-edit.php:49
1522
+ msgid "You did not use %image% in your AdCode but did select an image!"
1523
+ msgstr ""
1524
 
1525
  #: dashboard/publisher/adrotate-ads-edit.php:52
1526
  msgid "You did use %image% in your AdCode but did not select an image!"
1535
  "restablece tu imagen y vuelva a guardar el anuncio!"
1536
 
1537
  #: dashboard/publisher/adrotate-ads-edit.php:58
1538
+ msgid ""
1539
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1540
+ "ineffective."
1541
+ msgstr ""
1542
+
1543
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1544
+ msgid ""
1545
+ "Your chosen banner image does not have the right name. Check the responsive "
1546
+ "description and try again."
1547
+ msgstr ""
1548
+
1549
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1550
  #, fuzzy
1551
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1552
  msgstr ""
1553
  "El seguimiento de clics jQuery está habilitado pero no se encontró ningún "
1554
  "enlace válido en el AdCode!"
1555
 
1556
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1557
  msgid ""
1558
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1559
  "the ad!"
1561
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
1562
  "erróneo, intente volver a guardar la anuncio!"
1563
 
1564
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1565
  msgid "This ad is expired and currently not shown on your website!"
1566
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
1567
 
1568
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1569
  msgid "The ad will expire in less than 2 days!"
1570
  msgstr "El anuncio caducará en menos de 2 días!"
1571
 
1572
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1573
  msgid "This ad will expire in less than 7 days!"
1574
  msgstr "El anuncio caducará en menos de 7 días!"
1575
 
1576
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1577
  msgid "This ad has been disabled and does not rotate on your site!"
1578
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
1579
 
1580
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1581
  msgid "New Advert"
1582
  msgstr "Nuevo Anuncio"
1583
 
1584
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1585
  msgid "Edit Advert"
1586
  msgstr "Editar Anuncio"
1587
 
1588
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
1589
  msgid "Title:"
1590
  msgstr "Título:"
1591
 
1592
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1593
  msgid "AdCode:"
1594
  msgstr "AdCode:"
1595
 
1596
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1597
+ msgid "Basic Examples:"
1598
+ msgstr "Ejemplos Básicos:"
1599
+
1600
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1601
+ msgid "Useful tags:"
1602
+ msgstr ""
1603
+
1604
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1605
+ msgid "Insert the advert ID Number."
1606
+ msgstr ""
1607
+
1608
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1609
+ msgid "Insert the %image% tag. Required when selecting a image below."
1610
+ msgstr ""
1611
+
1612
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1613
+ msgid "Insert the advert name."
1614
+ msgstr ""
1615
+
1616
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1617
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1618
+ msgstr ""
1619
+
1620
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1621
+ msgid "Add inside the <a> tag to open advert in a new window."
1622
+ msgstr ""
1623
+
1624
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1625
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1626
+ msgstr ""
1627
+
1628
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1629
  msgid ""
1630
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1631
+ "click to add it."
1632
  msgstr ""
1633
 
1634
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1635
+ msgid "Banner image:"
1636
+ msgstr "Imagen Banner:"
1637
+
1638
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1639
+ msgid "WordPress media:"
1640
  msgstr ""
1641
 
1642
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1643
+ msgid "Select Banner"
1644
+ msgstr "Seleccionar Banner"
1645
 
1646
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1647
+ msgid "- OR -"
1648
+ msgstr "- O -"
1649
+
1650
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1651
+ msgid "Banner folder:"
1652
+ msgstr "Carpeta Banner:"
1653
+
1654
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1655
+ msgid "No image selected"
1656
+ msgstr "Ninguna imagen seleccionada"
1657
+
1658
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1659
+ msgid "Use %image% in the code. Accepted files are:"
1660
+ msgstr ""
1661
+ "Utilice %image% en el código. Estos son los tipos de archivos aceptados:"
1662
 
1663
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1664
  msgid ""
1665
+ "Use either the text field or the dropdown. If the textfield has content that "
1666
+ "field has priority."
1667
  msgstr ""
1668
+ "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1669
+ "un contenido, ese campo tiene prioridad."
1670
 
1671
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1672
+ msgid "Clicktracking:"
1673
+ msgstr "Seguimiento de Clics:"
1674
+
1675
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1676
+ msgid "Enable click tracking for this advert."
1677
+ msgstr "Activar el seguimiento de clics para este anuncio."
1678
+
1679
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1680
+ msgid ""
1681
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1682
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1683
+ "supported."
1684
+ msgstr ""
1685
+
1686
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1687
  msgid "Activate:"
1688
  msgstr "Activar:"
1689
 
1690
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1691
  msgid "Yes, this ad will be used"
1692
  msgstr "Sí, se utilizará este anuncio"
1693
 
1694
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1695
  msgid "No, do not show this ad anywhere"
1696
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1697
 
1698
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1699
  #: dashboard/publisher/adrotate-ads-main.php:108
1700
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1701
  #: dashboard/publisher/adrotate-groups-main.php:87
1702
  #, fuzzy
1703
  msgid "Get more features with AdRotate Pro."
1704
  msgstr "Obtenga más funciones con AdRotate Pro"
1705
 
1706
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1707
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1708
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1709
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1710
  msgid "Save Advert"
1711
  msgstr "Guardar Anuncio"
1712
 
1713
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1714
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1715
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1716
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1717
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1718
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1719
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1720
  msgid "Cancel"
1721
  msgstr "Cancelar"
1722
 
1723
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1724
  msgid "Preview"
1725
  msgstr "Vista previa"
1726
 
1727
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1728
  msgid ""
1729
  "Note: While this preview is an accurate one, it might look different then it "
1730
  "does on the website."
1732
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1733
  "precisa, en su pagina web puede tener un aspecto diferente."
1734
 
1735
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1736
  msgid ""
1737
  "This is because of CSS differences. Your themes CSS file is not active here!"
1738
  msgstr ""
1739
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1740
  "activo el archivo CSS de las plantillas (themes)!"
1741
 
1742
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1743
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1744
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1745
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1746
  msgid "Usage"
1747
  msgstr "Utilización"
1748
 
1749
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1750
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1751
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1752
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1753
+ msgid "Widget:"
1754
+ msgstr ""
1755
+
1756
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1757
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1758
  msgid ""
1759
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1760
+ "and enter ID"
1761
  msgstr ""
 
 
1762
 
1763
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1764
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1765
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1766
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1767
  msgid "In a post or page:"
1768
  msgstr "En un post o página:"
1769
 
1770
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1771
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1772
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1773
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1774
  msgid "Directly in a theme:"
1775
  msgstr "Directamente en la plantilla (theme):"
1776
 
1777
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1778
+ msgid "Schedule your advert"
1779
+ msgstr ""
 
1780
 
1781
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1782
+ msgid "Start date (day/month/year):"
1783
+ msgstr "Fecha de inicio (día/mes/año)"
1784
 
1785
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1786
+ msgid "End date (day/month/year):"
1787
+ msgstr "Fecha de finalización (día/mes/año)"
1788
 
1789
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1790
+ msgid "Start time (hh:mm):"
1791
+ msgstr "Hora de inicio (hh:mm)"
1792
+
1793
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1794
+ msgid "End time (hh:mm):"
1795
+ msgstr "Hora de finalización (hh:mm)"
1796
+
1797
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1798
+ msgid "Maximum Clicks:"
1799
+ msgstr "Clics Máximos:"
1800
+
1801
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1802
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1803
+ msgid "Leave empty or 0 to skip this."
1804
+ msgstr "Dejar en blanco o 0 para omitir."
1805
+
1806
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1807
+ msgid "Maximum Impressions:"
1808
+ msgstr "Impresiones Maximas:"
1809
 
1810
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1811
  msgid ""
1812
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1813
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1814
+ "hours. 6AM is 6:00 hours."
1815
  msgstr ""
1816
+ "Para el Tiempo se utiliza un reloj de 24 horas. Tengalo en cuenta si esta "
1817
+ "acostumbrado al sistema de AM/PM: Si el inicio o el fin del tiempo es "
1818
+ "después del mediodia debe añadir añadir 12 horas. Por ejemplo, las 2PM son "
1819
+ "las 14:00. Las 6AM son las 06:00 horas."
1820
 
1821
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1822
+ msgid ""
1823
+ "The maximum clicks and impressions are measured over the set schedule only. "
1824
+ "Every schedule can have it's own limit!"
1825
  msgstr ""
1826
+ "Los clics y las impresiones máximas solo se valorarán en el horario "
1827
+ "establecido. Cada programación puede tener su propio límite!"
 
 
 
 
1828
 
1829
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1830
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
 
 
1831
  msgstr ""
1832
 
1833
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1834
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1835
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1836
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1837
+ #, fuzzy
1838
+ msgid "Upgrade today"
1839
+ msgstr "Hoy"
1840
+
1841
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1842
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1843
+ msgid "Advanced"
1844
+ msgstr "Avanzado"
1845
+
1846
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1847
+ msgid "Everything below is optional."
1848
+ msgstr "Todo lo siguiente es opcional."
1849
+
1850
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1851
  msgid "Responsive:"
1852
  msgstr "Adaptable:"
1853
 
1854
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1855
  msgid "Enable responsive support for this advert."
1856
  msgstr "Habilitar soporte sensible para este anuncio."
1857
 
1858
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1859
  msgid ""
1860
  "Upload your images to the banner folder and make sure the filename is in the "
1861
  "following format; \"imagename.full.ext\". A full set of sized images is "
1865
  "archivo es el siguiente formato; \"nombreimagen.full.ext\". Se recomienda un "
1866
  "conjunto de imágenes del mismo tamaño."
1867
 
1868
+ #: dashboard/publisher/adrotate-ads-edit.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1869
  msgid "Weight:"
1870
  msgstr "Prioridad:"
1871
 
1872
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1873
  #, fuzzy
1874
  msgid "AdRotate Pro only"
1875
  msgstr "AdRotate Pro"
1876
 
1877
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1878
  msgid "Barely visible"
1879
  msgstr "Apenas visible"
1880
 
1881
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1882
  msgid "Less than average"
1883
  msgstr "Menos de la media"
1884
 
1885
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1886
  msgid "Normal coverage"
1887
  msgstr "Cobertura normal"
1888
 
1889
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1890
  msgid "More than average"
1891
  msgstr "Más de la media"
1892
 
1893
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1894
  msgid "Best visibility"
1895
  msgstr "La mejor visibilidad"
1896
 
1897
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1898
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1899
  msgid "Sortorder:"
1900
  msgstr "Clasificación normal:"
1901
 
1902
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1903
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1904
  msgid "For administrative purposes set a sortorder."
1905
  msgstr "A efectos administrativos, establecer una Clasificación normal."
1906
 
1907
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1908
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1909
  msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1910
 
1911
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1912
  msgid ""
1913
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1914
+ "exposure."
1915
  msgstr ""
1916
 
1917
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1918
+ msgid "Geo Targeting in AdRotate Pro"
1919
+ msgstr ""
 
 
 
 
 
 
 
 
 
1920
 
1921
+ #: dashboard/publisher/adrotate-ads-edit.php:335
1922
  msgid ""
1923
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1924
  msgstr ""
 
 
1925
 
1926
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1927
  #, fuzzy
1928
  msgid "Cities/States:"
1929
  msgstr "Ciudades"
1930
 
1931
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1932
+ msgid ""
1933
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1934
+ "states ISO codes are supported)"
1935
+ msgstr ""
 
 
 
 
1936
 
1937
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1938
  #, fuzzy
1939
  msgid ""
1940
  "AdRotate does not check the validity of names so make sure you spell them "
1943
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1944
  "escribirlos correctamente!"
1945
 
1946
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1947
  #, fuzzy
1948
  msgid "Countries:"
1949
  msgstr "Países"
1950
 
1951
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1952
  msgid "Select the countries you want the adverts to show in."
1953
  msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1954
 
1955
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1956
  msgid "Cities take priority and will be filtered first."
1957
  msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1958
 
1959
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1960
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1961
  msgstr ""
1962
 
1963
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1964
  msgid "Select Groups"
1965
  msgstr "Seleccione Grupos"
1966
 
1967
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
 
 
1968
  msgid "ID - Name"
1969
  msgstr "ID - Nombre"
1970
 
1971
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1972
  msgid "Ads in group"
1973
  msgstr "Anuncios en grupo"
1974
 
1975
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1976
  #: dashboard/publisher/adrotate-groups-main.php:58
1977
  msgid "Default"
1978
  msgstr "Predeterminado"
1979
 
1980
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1981
  #: dashboard/publisher/adrotate-groups-main.php:59
1982
  msgid "Dynamic"
1983
  msgstr "Dinámico"
1984
 
1985
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1986
  #: dashboard/publisher/adrotate-groups-main.php:59
1987
  msgid "second rotation"
1988
  msgstr "segundos rotación"
1989
 
1990
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1991
  #: dashboard/publisher/adrotate-groups-main.php:60
1992
  msgid "Block"
1993
  msgstr "Block"
1994
 
1995
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1996
  #: dashboard/publisher/adrotate-groups-main.php:60
1997
  msgid "grid"
1998
  msgstr "cuadrícula"
1999
 
2000
+ #: dashboard/publisher/adrotate-ads-edit.php:418
2001
+ #: dashboard/publisher/adrotate-groups-edit.php:192
2002
  #: dashboard/publisher/adrotate-groups-main.php:61
2003
  msgid "Post Injection"
2004
  msgstr "Integrarlo después"
2005
 
2006
+ #: dashboard/publisher/adrotate-ads-edit.php:419
2007
  #: dashboard/publisher/adrotate-groups-main.php:62
2008
  msgid "Geolocation"
2009
  msgstr "Geolocalización"
2010
 
2011
+ #: dashboard/publisher/adrotate-ads-edit.php:425
2012
+ #: dashboard/publisher/adrotate-groups-edit.php:61
2013
  #: dashboard/publisher/adrotate-groups-main.php:69
2014
  msgid "Mode"
2015
  msgstr "Modalidad"
2040
  msgid "Title"
2041
  msgstr "Título"
2042
 
2043
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2044
+ #: dashboard/publisher/adrotate-ads-report.php:34
2045
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2046
+ #: dashboard/publisher/adrotate-groups-main.php:35
2047
+ #: dashboard/publisher/adrotate-groups-report.php:40
2048
+ msgid "Impressions"
2049
+ msgstr "Impresiones"
2050
+
2051
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2052
+ #: dashboard/publisher/adrotate-ads-main.php:45
2053
+ #: dashboard/publisher/adrotate-ads-report.php:35
2054
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2055
+ #: dashboard/publisher/adrotate-groups-main.php:37
2056
+ #: dashboard/publisher/adrotate-groups-report.php:41
2057
+ msgid "Clicks"
2058
+ msgstr "Clics"
2059
+
2060
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2061
  #: dashboard/publisher/adrotate-ads-main.php:47
2062
  #: dashboard/publisher/adrotate-ads-report.php:38
2118
  msgstr "Por 7 días"
2119
 
2120
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2121
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2122
  msgid "Configuration errors."
2123
  msgstr "Errores de configuración."
2124
 
2132
  msgstr "Exportar"
2133
 
2134
  #: dashboard/publisher/adrotate-ads-main.php:42
2135
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2136
  msgid "Weight"
2137
  msgstr "Prioridad"
2138
 
2197
  msgid "Edit Group"
2198
  msgstr "Editar Grupo"
2199
 
2200
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2201
  msgid "Name:"
2202
  msgstr "Nombre:"
2203
 
2204
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2205
  msgid "Default - Show one ad at a time"
2206
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
2207
 
2208
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2209
  msgid "Dynamic Mode - Show a different ad every few seconds"
2210
  msgstr "Modo Dinámico - Mostrar un anuncio diferente cada pocos segundos"
2211
 
2212
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2213
  msgid "Block Mode - Show a block of ads"
2214
  msgstr "Modo Block - Mostrar un bloque de anuncios"
2215
 
2216
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2217
  #, fuzzy
2218
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2219
  msgstr ""
2221
  "Showoff' para ser cargados. Puede activar esto el menú de Ajustes de "
2222
  "AdRotate."
2223
 
2224
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2225
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2226
  msgid "Dynamic and Block Mode"
2227
  msgstr "Modo Dinámico y en Bloque"
2228
 
2229
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2230
  msgid "Only required if your group is in Dynamic or Block mode."
2231
  msgstr "Sólo es necesario si su grupo está en modo de Dinámico o en Bloque."
2232
 
2233
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2234
+ msgid "Block size"
2235
+ msgstr ""
2236
 
2237
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2238
  msgid "rows"
2239
  msgstr "filas"
2240
 
2241
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2242
  msgid "columns"
2243
  msgstr "columnas"
2244
 
2245
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2246
  msgid "Block Mode"
2247
  msgstr "Modo Block"
2248
 
2249
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2250
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
2251
  msgstr ""
 
 
2252
 
2253
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2254
+ msgid "Advert size"
2255
+ msgstr ""
2256
 
2257
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2258
  msgid "pixel(s) wide"
2259
  msgstr "ancho pixel(s)"
2260
 
2261
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2262
  msgid "pixel(s) high."
2263
  msgstr "alto pixel(s)"
2264
 
2265
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2266
  #, fuzzy
2267
  msgid ""
2268
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2271
  "Definir el tamaño máximo de los anuncios en píxeles menos el del margen. El "
2272
  "tamaño puede ser 'auto' (No recomendado). Predeterminado: 125/125."
2273
 
2274
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2275
  msgid "Automated refresh"
2276
  msgstr "Actualización automatica"
2277
 
2278
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2279
  msgid "seconds."
2280
  msgstr "segundos."
2281
 
2282
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2283
  msgid "Dynamic Mode"
2284
  msgstr "Modo Dinámico"
2285
 
2286
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2287
  msgid ""
2288
  "Load a new advert in this interval without reloading the page. Default: 6."
2289
  msgstr ""
2290
  "Cargar un nuevo anuncio en este intervalo sin recargar la página. "
2291
  "Predeterminado: 6."
2292
 
2293
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2294
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2295
+ msgid ""
2296
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2297
+ "\" and enter ID"
2298
+ msgstr ""
2299
+
2300
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2301
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2302
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2303
  msgid "Save Group"
2304
  msgstr "Guardar Grupo"
2305
 
2306
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2307
  msgid "Advert Margin"
2308
  msgstr "Margen del anuncio"
2309
 
2310
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2311
  msgid "pixel(s)"
2312
  msgstr "pixel(s)"
2313
 
2314
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2315
  msgid "A transparent area outside the advert in pixels. Default: 0."
2316
  msgstr ""
2317
  "Un area transparente alrededor del anuncio en píxeles. Predeterminado: 0."
2318
 
2319
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2320
  msgid "Set to 0 to disable."
2321
  msgstr "Establece a 0 para desactivar."
2322
 
2323
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2324
+ msgid "Margins are automatically disabled for blocks where required."
2325
+ msgstr ""
2326
+
2327
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2328
  #, fuzzy
2329
  msgid "Align the group"
2330
  msgstr "Anuncios en grupo"
2331
 
2332
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2333
  #, fuzzy
2334
  msgid "None (Default)"
2335
  msgstr "Predeterminado"
2336
 
2337
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2338
  msgid "Left"
2339
  msgstr ""
2340
 
2341
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2342
  #, fuzzy
2343
  msgid "Right"
2344
  msgstr "Prioridad"
2345
 
2346
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2347
  msgid "Center"
2348
  msgstr ""
2349
 
2350
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2351
  msgid ""
2352
  "Align the group in your post or page. Using 'center' may affect your margin "
2353
  "setting. Not every theme supports this feature."
2354
  msgstr ""
2355
 
2356
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2357
  msgid "Leave empty or 0 to skip this. Will default to group id."
2358
  msgstr ""
2359
  "Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
2360
 
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2362
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2363
  msgstr ""
2364
 
2365
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2366
  msgid "Include ads in categories?"
2367
  msgstr "¿Incluir los anuncios en las categorías?"
2368
 
2369
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2370
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2371
  msgid "Disabled"
2372
  msgstr "Desactivado"
2373
 
2374
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2375
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2376
  msgid "Before content"
2377
  msgstr "Antes del contenido"
2378
 
2379
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2380
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2381
  msgid "After content"
2382
  msgstr "Después del contenido"
2383
 
2384
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2385
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2386
  msgid "Before and after content"
2387
  msgstr "Antes y después del contenido"
2388
 
2389
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2390
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2391
  msgid "After..."
2392
  msgstr "Después..."
2393
 
2394
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2395
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2396
  msgid "the first paragraph"
2397
  msgstr "el primer párrafo"
2398
 
2399
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2400
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2401
  msgid "the 2nd paragraph"
2402
  msgstr "el segundo párrafo"
2403
 
2404
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2405
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2406
  msgid "the 3rd paragraph"
2407
  msgstr "el tercer párrafo"
2408
 
2409
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2410
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2411
  msgid "the 4th paragraph"
2412
  msgstr "el cuarto párrafo"
2413
 
2414
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2416
  msgid "every 2nd paragraph"
2417
  msgstr "cada segundo párrafo"
2418
 
2419
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2420
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2421
  msgid "every 3rd paragraph"
2422
  msgstr "cada tercer párrafo"
2423
 
2424
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2425
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2426
  msgid "every 4th paragraph"
2427
  msgstr "cada cuarto párrafo"
2428
 
2429
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2430
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2431
  msgid "every 5th paragraph"
2432
  msgstr "cada quinto párrafo"
2433
 
2434
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2435
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2436
  msgid "every 6th paragraph"
2437
  msgstr "cada sexto párrafo"
2438
 
2439
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2440
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2441
  msgid "every 7th paragraph"
2442
  msgstr "cada septimo párrafo"
2443
 
2444
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2445
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2446
  msgid "every 8th paragraph"
2447
  msgstr "cada octavo párrafo"
2448
 
2449
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2450
  msgid "Which categories?"
2451
  msgstr "¿En qué categorías?"
2452
 
2453
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2454
  msgid "Click the categories posts you want the adverts to show in."
2455
  msgstr ""
2456
  "Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
2457
 
2458
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2459
  msgid "Include ads in pages?"
2460
  msgstr "¿Incluir los anuncios en las páginas?"
2461
 
2462
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2463
  msgid "Which pages?"
2464
  msgstr "¿En qué páginas?"
2465
 
2466
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2467
  msgid "Click the pages you want the adverts to show in."
2468
  msgstr "Haga clic en las páginas en las que mostrar los anuncios."
2469
 
2470
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2471
  msgid "Wrapper code"
2472
  msgstr "Código"
2473
 
2474
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2475
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2476
+ msgstr ""
2477
 
2478
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2479
  msgid "Before ad"
2480
  msgstr "Antés del anuncio"
2481
 
2482
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2483
+ msgid "Options:"
2484
+ msgstr "Opciones:"
2485
 
2486
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2487
  msgid "After ad"
2488
  msgstr "Después del anuncio"
2489
 
2490
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2491
  msgid "Select Ads"
2492
  msgstr "Seleccione Anuncios"
2493
 
2494
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2495
  msgid "Visible until"
2496
  msgstr "Visible hasta"
2497
 
2498
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2499
  msgid "No ads created!"
2500
  msgstr "No hay anuncios creados!"
2501
 
2527
  msgid "Statistics for group"
2528
  msgstr "Estadisticas por Grupo"
2529
 
2530
+ #~ msgid "Usage:"
2531
+ #~ msgstr "Utilización:"
2532
+
2533
+ #, fuzzy
2534
+ #~ msgid "A comma separated list of cities and/or states"
2535
+ #~ msgstr "Lista de ciudades separada por comas."
2536
+
2537
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2538
+ #~ msgstr ""
2539
+ #~ "No ha utilizado %image% en su AdCode pero ha seleccionado una imagen!"
2540
+
2541
+ #~ msgid "These are required."
2542
+ #~ msgstr "Estos datos son necesarios."
2543
+
2544
+ #~ msgid ""
2545
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2546
+ #~ "AdCode."
2547
+ #~ msgstr ""
2548
+ #~ "Coloque el cursor donde desea agregar una etiqueta y haga clic para "
2549
+ #~ "añadirlo a su AdCode."
2550
+
2551
+ #~ msgid ""
2552
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2553
+ #~ "where you want the advert to show up."
2554
+ #~ msgstr ""
2555
+ #~ "Copie el shortcode en un post o página. El código PHP va en el archivo "
2556
+ #~ "del tema en el que desea mostrar el anuncio."
2557
+
2558
+ #~ msgid ""
2559
+ #~ "Note: Clicktracking does generally not work for Javascript adverts such "
2560
+ #~ "as those provided by Google AdSense."
2561
+ #~ msgstr ""
2562
+ #~ "Nota: El seguimiento de clics no funciona generalmente para los anuncios "
2563
+ #~ "Javascript tales como los proporcionados por Google AdSense."
2564
+
2565
+ #, fuzzy
2566
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2567
+ #~ msgstr ""
2568
+ #~ "Colocar la dirección URL de destino en su adcode y activar el seguimiento "
2569
+ #~ "de clics."
2570
+
2571
+ #~ msgid "Target URL:"
2572
+ #~ msgstr "URL de destino:"
2573
+
2574
+ #~ msgid ""
2575
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2576
+ #~ "advert for different viewports. Requires jQuery."
2577
+ #~ msgstr ""
2578
+ #~ "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio "
2579
+ #~ "para distintas ventanas gráficas. Se necesita jQuery."
2580
+
2581
+ #~ msgid "Media:"
2582
+ #~ msgstr "Media:"
2583
+
2584
+ #, fuzzy
2585
+ #~ msgid "Geo Location in AdRotate Pro"
2586
+ #~ msgstr "Geo Localización"
2587
+
2588
+ #~ msgid ""
2589
+ #~ "This works if you assign the advert to a group and enable that group to "
2590
+ #~ "use Geo Targeting."
2591
+ #~ msgstr ""
2592
+ #~ "Esto funciona si asigna el anuncio a un grupo y habilita utilizar Geo "
2593
+ #~ "Targeting en ese grupo."
2594
+
2595
+ #, fuzzy
2596
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2597
+ #~ msgstr "Obtenga más funciones con AdRotate Pro"
2598
+
2599
+ #~ msgid "Schedule"
2600
+ #~ msgstr "Calendario"
2601
+
2602
+ #~ msgid "From when to when is the advert visible?"
2603
+ #~ msgstr "De cuando a cuando es visible el anuncio?"
2604
+
2605
+ #, fuzzy
2606
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2607
+ #~ msgstr "Disponible en AdRotate Pro"
2608
+
2609
+ #, fuzzy
2610
+ #~ msgid "You can add, edit or delete schedules from the"
2611
+ #~ msgstr "Puede añadir, editar o eliminar programas del"
2612
+
2613
+ #, fuzzy
2614
+ #~ msgid "dashboard. Save your advert first!"
2615
+ #~ msgstr "escritorio. Guarda tu anuncio primero!"
2616
+
2617
+ #~ msgid "From / Until"
2618
+ #~ msgstr "Desde / Hasta"
2619
+
2620
+ #, fuzzy
2621
+ #~ msgid "impressions per day"
2622
+ #~ msgstr "impresiones por hora"
2623
+
2624
+ #, fuzzy
2625
+ #~ msgid "In use by this advert."
2626
+ #~ msgstr "Utilizada por este anuncio."
2627
+
2628
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2629
+ #~ msgstr ""
2630
+ #~ "Opcionalmente puede seleccionar el grupo o grupos a los que este anuncio "
2631
+ #~ "pertenece."
2632
+
2633
+ #~ msgid "Block shape and border"
2634
+ #~ msgstr "Forma y borde del Bloque"
2635
+
2636
+ #~ msgid ""
2637
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2638
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2639
+ #~ msgstr ""
2640
+ #~ "Hacer una rejilla para sus anuncios. Seleccionando 3 y 2 hace una "
2641
+ #~ "cuadrícula con 2 columnas que muestra un máximo de 6 anuncios. "
2642
+ #~ "Predeterminado: 2x2."
2643
+
2644
+ #~ msgid "Advert Width and Height"
2645
+ #~ msgstr "Anchura y altura del Anuncio"
2646
+
2647
+ #~ msgid "Insert ads to the begin or end of a post/page."
2648
+ #~ msgstr "Inserte anuncios al comienzo o final de una entrada/página."
2649
+
2650
+ #~ msgid "Wraps around each ad."
2651
+ #~ msgstr "Se envuelve alrededor de cada anuncio."
2652
+
2653
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2654
+ #~ msgstr "Esta permitido HTML/JavaScript, utilicelo con cuidado!"
2655
+
2656
  #, fuzzy
2657
  #~ msgid "AdRotate Website."
2658
  #~ msgstr "Tienda AdRotate"
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -17,19 +17,19 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
27
 
28
- #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
- #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
@@ -38,17 +38,17 @@ msgstr ""
38
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
39
  "votre navigateur."
40
 
41
- #: adrotate-output.php:749
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
46
 
47
- #: adrotate-output.php:750
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
- #: adrotate-output.php:768
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
@@ -56,7 +56,7 @@ msgstr ""
56
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
57
  "horaires/géographiques ou n'existe pas!"
58
 
59
- #: adrotate-output.php:770
60
  msgid ""
61
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "restrictions!"
@@ -64,7 +64,7 @@ msgstr ""
64
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
65
  "horaires/géographiques!"
66
 
67
- #: adrotate-output.php:777 adrotate-output.php:779
68
  msgid ""
69
  "Either there are no banners, they are disabled or none qualified for this "
70
  "location!"
@@ -72,19 +72,19 @@ msgstr ""
72
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
73
  "cet endroit!"
74
 
75
- #: adrotate-output.php:785
76
  msgid "Error, no Ad ID set! Check your syntax!"
77
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
78
 
79
- #: adrotate-output.php:791
80
  msgid "Error, no group ID set! Check your syntax!"
81
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
82
 
83
- #: adrotate-output.php:796
84
  msgid "Error, group does not exist! Check your syntax!"
85
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
86
 
87
- #: adrotate-output.php:802
88
  msgid ""
89
  "There was an error locating the database tables for AdRotate. Please "
90
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -93,155 +93,155 @@ msgstr ""
93
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
94
  "extensions. "
95
 
96
- #: adrotate-output.php:802
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr ""
99
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
100
  "support à"
101
 
102
- #: adrotate-output.php:808
103
  msgid "An unknown error occured."
104
  msgstr "Une erreur inconnue s'est produite."
105
 
106
- #: adrotate-output.php:834
107
  msgid "active ad(s) expired."
108
  msgstr "publicité(s) active(s) ont expirée(s)."
109
 
110
- #: adrotate-output.php:834
111
  msgid "Take action now"
112
  msgstr "Agir maintenant"
113
 
114
- #: adrotate-output.php:836
115
  msgid "active ad(s) are about to expire."
116
  msgstr "publicité(s) active(s) sont sur le point d'expirer"
117
 
118
- #: adrotate-output.php:836
119
  msgid "Check it out"
120
  msgstr "Vérifier-le"
121
 
122
- #: adrotate-output.php:838
123
  msgid "active ad(s) with configuration errors."
124
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
125
 
126
- #: adrotate-output.php:838
127
  msgid "Solve this"
128
  msgstr "Résoudre"
129
 
130
- #: adrotate-output.php:840
131
  msgid "ad(s) expired."
132
  msgstr "publicité(s) expirée(s)"
133
 
134
- #: adrotate-output.php:840
135
  msgid "ad(s) are about to expire."
136
  msgstr "publicité(s) sont sur le point d'expirer"
137
 
138
- #: adrotate-output.php:840
139
  msgid "ad(s) with configuration errors."
140
  msgstr "publicité(s) avec des erreurs de configuration."
141
 
142
- #: adrotate-output.php:840
143
  msgid "Fix this as soon as possible"
144
  msgstr "Résoudre ce soucis dans les meilleurs délais"
145
 
146
- #: adrotate-output.php:853
147
  #, fuzzy
148
  msgid "Learn More"
149
  msgstr "En savoir plus"
150
 
151
- #: adrotate-output.php:855
152
  msgid ""
153
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
154
  "to the <strong>PRO</strong> version"
155
  msgstr ""
156
 
157
- #: adrotate-output.php:856
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
- #: adrotate-output.php:856
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
- #: adrotate-output.php:896
166
  msgid ""
167
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
168
- "Pro is in this menu. Check out the"
169
  msgstr ""
170
 
171
- #: adrotate-output.php:896
172
  msgid "manuals"
173
  msgstr "manuels"
174
 
175
- #: adrotate-output.php:896 adrotate-output.php:973
176
- #: dashboard/publisher/adrotate-ads-edit.php:229
177
  msgid "and"
178
  msgstr ""
179
 
180
- #: adrotate-output.php:896
181
  msgid "forums"
182
  msgstr ""
183
 
184
- #: adrotate-output.php:932
185
  msgid "Useful Links"
186
  msgstr ""
187
 
188
- #: adrotate-output.php:933
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:935
193
  msgid "AdRotate Page"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:936
197
  msgid "Getting Started With AdRotate"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:937
201
  msgid "AdRotate manuals"
202
  msgstr ""
203
 
204
- #: adrotate-output.php:938
205
  msgid "AdRotate Support Forum"
206
  msgstr ""
207
 
208
- #: adrotate-output.php:939
209
  msgid "WordPress.org Forum"
210
  msgstr ""
211
 
212
- #: adrotate-output.php:965
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "AdRotate Pro"
216
 
217
- #: adrotate-output.php:966
218
  msgid "Brought to you by"
219
  msgstr "Présenté par"
220
 
221
- #: adrotate-output.php:973
222
  msgid ""
223
  "A lot of users only think to review AdRotate when something goes wrong while "
224
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
225
  msgstr ""
226
 
227
- #: adrotate-output.php:973
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
- #: adrotate-output.php:973
232
  msgid "rating"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:973
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "En avant-première"
239
 
240
- #: adrotate-output.php:973
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:976
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
@@ -249,87 +249,87 @@ msgstr ""
249
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
250
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
251
 
252
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Visitez le"
255
 
256
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "site"
259
 
260
- #: adrotate-output.php:1006
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Disponible dans Adrotate Pro"
263
 
264
- #: adrotate-output.php:1006
265
  msgid "More information..."
266
  msgstr "Plus d'informations..."
267
 
268
- #: adrotate-output.php:1007
269
  msgid "This feature is available in AdRotate Pro"
270
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
271
 
272
- #: adrotate-output.php:1007
273
  msgid "Learn more"
274
  msgstr "En savoir plus"
275
 
276
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
277
- #: dashboard/publisher/adrotate-ads-edit.php:352
278
  msgid "January"
279
  msgstr "Janvier"
280
 
281
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
282
- #: dashboard/publisher/adrotate-ads-edit.php:353
283
  msgid "February"
284
  msgstr "Février"
285
 
286
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
287
- #: dashboard/publisher/adrotate-ads-edit.php:354
288
  msgid "March"
289
  msgstr "Mars"
290
 
291
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
292
- #: dashboard/publisher/adrotate-ads-edit.php:355
293
  msgid "April"
294
  msgstr "Avril"
295
 
296
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
297
- #: dashboard/publisher/adrotate-ads-edit.php:356
298
  msgid "May"
299
  msgstr "Mai"
300
 
301
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
302
- #: dashboard/publisher/adrotate-ads-edit.php:357
303
  msgid "June"
304
  msgstr "Juin"
305
 
306
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
307
- #: dashboard/publisher/adrotate-ads-edit.php:358
308
  msgid "July"
309
  msgstr "Juillet"
310
 
311
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
312
- #: dashboard/publisher/adrotate-ads-edit.php:359
313
  msgid "August"
314
  msgstr "Août"
315
 
316
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
317
- #: dashboard/publisher/adrotate-ads-edit.php:360
318
  msgid "September"
319
  msgstr "Septembre"
320
 
321
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
322
- #: dashboard/publisher/adrotate-ads-edit.php:361
323
  msgid "October"
324
  msgstr "Octobre"
325
 
326
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
327
- #: dashboard/publisher/adrotate-ads-edit.php:362
328
  msgid "November"
329
  msgstr "Novembre"
330
 
331
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
332
- #: dashboard/publisher/adrotate-ads-edit.php:363
333
  msgid "December"
334
  msgstr "Décembre"
335
 
@@ -383,7 +383,7 @@ msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
383
  msgid "Choose what you want to use this widget for"
384
  msgstr "Choisissez le fonction de ce widget"
385
 
386
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
387
  msgid "ID:"
388
  msgstr "ID :"
389
 
@@ -391,78 +391,77 @@ msgstr "ID :"
391
  msgid "Fill in the ID of the type you want to display!"
392
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
393
 
394
- #: adrotate.php:108
395
  msgid "General Info"
396
  msgstr "Informations générales"
397
 
398
- #: adrotate.php:109
399
  msgid "AdRotate Pro"
400
  msgstr "AdRotate Pro"
401
 
402
- #: adrotate.php:110
403
  msgid "Manage Ads"
404
  msgstr "Gérer les pubs"
405
 
406
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
407
  msgid "Manage Groups"
408
  msgstr "Gérer les groupes"
409
 
410
- #: adrotate.php:112 adrotate.php:441
411
- #: dashboard/publisher/adrotate-ads-edit.php:402
412
  #, fuzzy
413
  msgid "Manage Schedules"
414
  msgstr "Gérer les pubs"
415
 
416
- #: adrotate.php:113
417
  #, fuzzy
418
  msgid "Manage Media"
419
  msgstr "Gérer les pubs"
420
 
421
- #: adrotate.php:114
422
  msgid "Settings"
423
  msgstr "Paramètres"
424
 
425
- #: adrotate.php:137
426
  msgid "AdRotate Info"
427
  msgstr "Informations sur Adrotate"
428
 
429
- #: adrotate.php:158
430
  msgid "AdRotate Professional"
431
  msgstr "AdRotate professionel"
432
 
433
- #: adrotate.php:201
434
  msgid "Ad Management"
435
  msgstr "Gestion des pubs"
436
 
437
- #: adrotate.php:204
438
  msgid "Ad created"
439
  msgstr "Publicité créée"
440
 
441
- #: adrotate.php:206
442
  msgid "Ad updated"
443
  msgstr "Publicité mise à jour"
444
 
445
- #: adrotate.php:208
446
  msgid "Ad(s) deleted"
447
  msgstr "Publicité(s) supprimée(s)"
448
 
449
- #: adrotate.php:210
450
  msgid "Ad(s) statistics reset"
451
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
452
 
453
- #: adrotate.php:212
454
  msgid "Ad(s) renewed"
455
  msgstr "publicité(s) renouvellée(s)"
456
 
457
- #: adrotate.php:214
458
  msgid "Ad(s) deactivated"
459
  msgstr "Publicité(s) désactivée(s)"
460
 
461
- #: adrotate.php:216
462
  msgid "Ad(s) activated"
463
  msgstr "Publicité(s) activée(s)"
464
 
465
- #: adrotate.php:218
466
  msgid ""
467
  "The ad was saved but has an issue which might prevent it from working "
468
  "properly. Review the yellow marked ad."
@@ -470,180 +469,178 @@ msgstr ""
470
  "La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
471
  "fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
472
 
473
- #: adrotate.php:220
474
  #, fuzzy
475
  msgid "Export created"
476
  msgstr "Publicité créée"
477
 
478
- #: adrotate.php:224
479
  msgid "Action prohibited"
480
  msgstr "Action interdite"
481
 
482
- #: adrotate.php:226 adrotate.php:374
483
  msgid "No data found in selected time period"
484
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
485
 
486
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
487
  msgid "Manage"
488
  msgstr "Gérer"
489
 
490
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
491
  msgid "Add New"
492
  msgstr "Ajouter"
493
 
494
- #: adrotate.php:363
495
  msgid "Group Management"
496
  msgstr "Gérer les groupes"
497
 
498
- #: adrotate.php:366
499
  msgid "Group created"
500
  msgstr "Groupe créé"
501
 
502
- #: adrotate.php:368
503
  msgid "Group updated"
504
  msgstr "Groupe mis à jour"
505
 
506
- #: adrotate.php:370
507
  msgid "Group deleted"
508
  msgstr "Groupe supprimé"
509
 
510
- #: adrotate.php:372
511
  msgid "Group including it's Ads deleted"
512
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
513
 
514
- #: adrotate.php:432
515
  #, fuzzy
516
  msgid "Schedule Management available in AdRotate Pro"
517
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
518
 
519
- #: adrotate.php:442
520
  #, fuzzy
521
  msgid ""
522
  "Schedule management and multiple schedules per advert is available in "
523
  "AdRotate Pro."
524
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
525
 
526
- #: adrotate.php:442 adrotate.php:529
527
- #: dashboard/publisher/adrotate-ads-edit.php:145
528
  #: dashboard/publisher/adrotate-ads-main.php:108
529
- #: dashboard/publisher/adrotate-groups-edit.php:76
530
  #: dashboard/publisher/adrotate-groups-main.php:87
531
  msgid "More information"
532
  msgstr "Plus d'information"
533
 
534
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
535
  #: dashboard/publisher/adrotate-ads-main-error.php:19
536
  #: dashboard/publisher/adrotate-ads-main.php:20
537
  #: dashboard/publisher/adrotate-groups-main.php:20
538
  msgid "Bulk Actions"
539
  msgstr "Actions en vrac"
540
 
541
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
542
  #: dashboard/publisher/adrotate-ads-main-error.php:29
543
  #: dashboard/publisher/adrotate-ads-main.php:30
544
  #: dashboard/publisher/adrotate-groups-main.php:24
545
  msgid "Go"
546
  msgstr "Aller"
547
 
548
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
549
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
550
  #: dashboard/publisher/adrotate-ads-main-error.php:39
551
  #: dashboard/publisher/adrotate-ads-main.php:39
552
  #: dashboard/publisher/adrotate-groups-main.php:32
553
  msgid "ID"
554
  msgstr "ID"
555
 
556
- #: adrotate.php:460
557
  #, fuzzy
558
  msgid "Start"
559
  msgstr "Début / Fin"
560
 
561
- #: adrotate.php:460
562
  msgid "End"
563
  msgstr ""
564
 
565
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
566
  #: dashboard/publisher/adrotate-groups-main.php:34
567
  msgid "Ads"
568
  msgstr "Pubs"
569
 
570
- #: adrotate.php:463
571
  #, fuzzy
572
  msgid "Max Clicks"
573
  msgstr "Nombre de clicks max :"
574
 
575
- #: adrotate.php:464
576
  #, fuzzy
577
  msgid "Max Impressions"
578
  msgstr "Nombre max de vues :"
579
 
580
- #: adrotate.php:494
581
  #, fuzzy
582
  msgid "No schedules created yet!"
583
  msgstr "Aucune pub n'a encore été créé!"
584
 
585
- #: adrotate.php:499
586
  #, fuzzy
587
  msgid "Easily manage your schedules from here with AdRotate Pro."
588
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
589
 
590
- #: adrotate.php:499 adrotate.php:562
591
  #, fuzzy
592
  msgid "Upgrade today!"
593
  msgstr "Mettre à jour aujourd'hui"
594
 
595
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
596
- #: dashboard/publisher/adrotate-ads-main-error.php:74
597
- #: dashboard/publisher/adrotate-groups-edit.php:399
598
  msgid "Expires soon."
599
  msgstr "Expire bientôt."
600
 
601
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
602
- #: dashboard/publisher/adrotate-groups-edit.php:400
603
  msgid "Has expired."
604
  msgstr "A expiré."
605
 
606
- #: adrotate.php:527
607
  #, fuzzy
608
  msgid "Media Management available in AdRotate Pro"
609
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
610
 
611
- #: adrotate.php:529
612
  msgid ""
613
  "Upload images to the AdRotate Pro banners folder from here. This is "
614
  "especially useful if you use responsive adverts with multiple images."
615
  msgstr ""
616
 
617
- #: adrotate.php:529
618
  #, fuzzy
619
  msgid "Media uploading and management is available in AdRotate Pro."
620
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
621
 
622
- #: adrotate.php:531
623
  #, fuzzy
624
  msgid "Upload new banner image"
625
  msgstr "Image :"
626
 
627
- #: adrotate.php:532
628
  #, fuzzy
629
  msgid "Accepted files are:"
630
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
631
 
632
- #: adrotate.php:532
633
  msgid "Maximum size is 512Kb."
634
  msgstr ""
635
 
636
- #: adrotate.php:532
637
  msgid "Important:"
638
  msgstr ""
639
 
640
- #: adrotate.php:532
641
  msgid ""
642
  "Make sure your file has no spaces or special characters in the name. Replace "
643
  "spaces with a - or _."
644
  msgstr ""
645
 
646
- #: adrotate.php:534
647
  #, fuzzy
648
  msgid ""
649
  "For responsive adverts make sure the filename is in the following format; "
@@ -654,7 +651,7 @@ msgstr ""
654
  "complet d'images de tailles différentes est recommendé si vous avez un site "
655
  "fluide."
656
 
657
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
658
  msgid ""
659
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
660
  "filename instead of \".full\" for the various viewports."
@@ -663,13 +660,13 @@ msgstr ""
663
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
664
  "tailles d'écran."
665
 
666
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
667
- #: dashboard/publisher/adrotate-groups-edit.php:334
668
- #: dashboard/publisher/adrotate-groups-edit.php:343
669
  msgid "Example:"
670
  msgstr "Exemple :"
671
 
672
- #: adrotate.php:536
673
  #, fuzzy
674
  msgid ""
675
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -678,172 +675,172 @@ msgstr ""
678
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
679
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
680
 
681
- #: adrotate.php:540
682
  msgid "Upload image"
683
  msgstr ""
684
 
685
- #: adrotate.php:543
686
  msgid "Available banner images in"
687
  msgstr ""
688
 
689
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
690
  msgid "Name"
691
  msgstr "Nom"
692
 
693
- #: adrotate.php:549
694
  #, fuzzy
695
  msgid "Actions"
696
  msgstr "Actions en vrac"
697
 
698
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
699
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
700
  #: dashboard/publisher/adrotate-ads-main-error.php:21
701
  #: dashboard/publisher/adrotate-ads-main.php:22
702
  msgid "Delete"
703
  msgstr "Effacer"
704
 
705
- #: adrotate.php:562
706
  msgid ""
707
  "Make sure the banner images are not in use by adverts when you delete them!"
708
  msgstr ""
709
 
710
- #: adrotate.php:562
711
  #, fuzzy
712
  msgid "Manage your banner folder from here with AdRotate Pro."
713
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
714
 
715
- #: adrotate.php:606
716
  msgid "AdRotate Settings"
717
  msgstr "Paramètres de AdRotate"
718
 
719
- #: adrotate.php:609
720
  msgid "Settings saved"
721
  msgstr "Paramètres sauvegardés"
722
 
723
- #: adrotate.php:611
724
  msgid "Database optimized"
725
  msgstr "Base de données optimisée"
726
 
727
- #: adrotate.php:613
728
  msgid "Database repaired"
729
  msgstr "Base de données réparée"
730
 
731
- #: adrotate.php:615
732
  msgid "Ads evaluated and statuses have been corrected where required"
733
  msgstr ""
734
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
735
 
736
- #: adrotate.php:617
737
  msgid "Empty database records removed"
738
  msgstr "Les registres vides de la base de données ont été supprimés"
739
 
740
- #: adrotate.php:619
741
  msgid "Database can only be optimized or cleaned once every hour"
742
  msgstr ""
743
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
744
 
745
- #: adrotate.php:627
746
  msgid "Access Rights"
747
  msgstr "Droits d'Accès"
748
 
749
- #: adrotate.php:628
750
  msgid "Who has access to what?"
751
  msgstr "Qui a accès à quoi?"
752
 
753
- #: adrotate.php:631
754
  msgid "Manage/Add/Edit adverts"
755
  msgstr "Gérer/Ajouter/Modifier les publicités"
756
 
757
- #: adrotate.php:635
758
  msgid "Role to see and add/edit ads."
759
  msgstr "Rôle pour voir et gérer/modifier les publicités."
760
 
761
- #: adrotate.php:639
762
  msgid "Delete/Reset adverts"
763
  msgstr "Supprimer/Mettre à zéro les publicités"
764
 
765
- #: adrotate.php:643
766
  msgid "Role to delete ads and reset stats."
767
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
768
 
769
- #: adrotate.php:647
770
  msgid "Manage/Add/Edit groups"
771
  msgstr "Gérer/Ajouter/Modifier les groupes"
772
 
773
- #: adrotate.php:651
774
  msgid "Role to see and add/edit groups."
775
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
776
 
777
- #: adrotate.php:655
778
  msgid "Delete groups"
779
  msgstr "Effacer les groups"
780
 
781
- #: adrotate.php:659
782
  msgid "Role to delete groups."
783
  msgstr "Rôle pour supprimer les groupes."
784
 
785
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
786
- #: adrotate.php:876
787
  msgid "Update Options"
788
  msgstr "Mettre à jour les options"
789
 
790
- #: adrotate.php:691
791
  msgid "Statistics"
792
  msgstr "Statistiques"
793
 
794
- #: adrotate.php:694
795
  msgid "Enable stats"
796
  msgstr "Statistiques activés"
797
 
798
- #: adrotate.php:696
799
  msgid "Track clicks and impressions."
800
  msgstr "Suivi des clicks et des impressions."
801
 
802
- #: adrotate.php:696
803
  #, fuzzy
804
  msgid "Disabling this also disables click and impression limits on schedules."
805
  msgstr ""
806
  "La désactivation de cette fonction désactive aussi la limitation des clics "
807
  "et des impressions sujet du calendrier, et désactive les délais."
808
 
809
- #: adrotate.php:700
810
  msgid "Impressions timer"
811
  msgstr "Minuterie de impressions"
812
 
813
- #: adrotate.php:702 adrotate.php:709
814
  msgid "Seconds."
815
  msgstr "Secondes."
816
 
817
- #: adrotate.php:703
818
  msgid "Default: 60."
819
  msgstr ""
820
 
821
- #: adrotate.php:703
822
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
823
  msgstr ""
824
 
825
- #: adrotate.php:707
826
  msgid "Clicks timer"
827
  msgstr "Interval de clicks"
828
 
829
- #: adrotate.php:710
830
  msgid "Default: 86400."
831
  msgstr ""
832
 
833
- #: adrotate.php:710
834
  msgid ""
835
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
836
  msgstr ""
837
 
838
- #: adrotate.php:715
839
  msgid "Bot filter"
840
  msgstr "Filtre de robots"
841
 
842
- #: adrotate.php:718
843
  msgid "User-Agent Filter"
844
  msgstr "Filtrage par User-Agent"
845
 
846
- #: adrotate.php:721
847
  msgid ""
848
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
849
  "prevent impressions and clicks counted on them."
@@ -851,7 +848,7 @@ msgstr ""
851
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
852
  "impressions et le clics fait par les robots/crawlers/user-agents."
853
 
854
- #: adrotate.php:722
855
  msgid ""
856
  "Keep in mind that this might give false positives. The word 'google' also "
857
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -859,11 +856,11 @@ msgstr ""
859
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
860
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
861
 
862
- #: adrotate.php:722
863
  msgid "Keep your list up-to-date"
864
  msgstr "Gardez votre liste à jour"
865
 
866
- #: adrotate.php:723
867
  msgid ""
868
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
869
  "other characters are stripped out."
@@ -871,7 +868,7 @@ msgstr ""
871
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
872
  "sont aussi permis. Tous les autres caractères seront supprimés. "
873
 
874
- #: adrotate.php:724
875
  msgid ""
876
  "Additionally to the list specified here, empty User-Agents are blocked as "
877
  "well."
@@ -879,23 +876,23 @@ msgstr ""
879
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
880
  "bloqués."
881
 
882
- #: adrotate.php:724
883
  msgid "Learn more about"
884
  msgstr "En savoir plus sur"
885
 
886
- #: adrotate.php:724
887
  msgid "user-agents"
888
  msgstr "user-agents"
889
 
890
- #: adrotate.php:733
891
  msgid "Miscellaneous"
892
  msgstr "Divers"
893
 
894
- #: adrotate.php:736
895
  msgid "Widget alignment"
896
  msgstr "Alignement du Widget"
897
 
898
- #: adrotate.php:737
899
  msgid ""
900
  "Check this box if your widgets do not align in your themes sidebar. (Does "
901
  "not always help!)"
@@ -903,11 +900,11 @@ msgstr ""
903
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
904
  "votre thème. Cette fonction peux ne pas régler le soucis!"
905
 
906
- #: adrotate.php:740
907
  msgid "Widget padding"
908
  msgstr "Marge interne du Widget"
909
 
910
- #: adrotate.php:741
911
  msgid ""
912
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
913
  "not always work!)"
@@ -915,11 +912,11 @@ msgstr ""
915
  "Activez cette option pour supprimer la marge (espace vide) autour des "
916
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
917
 
918
- #: adrotate.php:746 adrotate.php:757
919
  msgid "NOTICE:"
920
  msgstr ""
921
 
922
- #: adrotate.php:747
923
  msgid ""
924
  "You have enabled W3 Total Caching support but not defined the security hash. "
925
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -931,15 +928,15 @@ msgstr ""
931
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
932
  "fonction \"late init\" doit être activée dans W3 Total Cache."
933
 
934
- #: adrotate.php:751
935
  msgid "W3 Total Caching"
936
  msgstr "W3 Total Caching"
937
 
938
- #: adrotate.php:752
939
  msgid "Check this box if you use W3 Total Caching on your site."
940
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
941
 
942
- #: adrotate.php:758
943
  msgid ""
944
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
945
  "this function will not work. WP Super Cache has discontinued support for "
@@ -949,15 +946,15 @@ msgstr ""
949
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
950
  "support pour le contenu dynamique."
951
 
952
- #: adrotate.php:762
953
  msgid "WP Super Cache"
954
  msgstr "WP Super Cache"
955
 
956
- #: adrotate.php:763
957
  msgid "Check this box if you use WP Super Cache on your site."
958
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
959
 
960
- #: adrotate.php:768
961
  msgid ""
962
  "It may take a while for the ad to start rotating. The caching plugin needs "
963
  "to refresh the cache. This can take up to a week if not done manually."
@@ -967,7 +964,7 @@ msgstr ""
967
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
968
  "pas fait manuellement."
969
 
970
- #: adrotate.php:768
971
  msgid ""
972
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
973
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -976,15 +973,15 @@ msgstr ""
976
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
977
  "PHP dans le code d'exclusion vous-même."
978
 
979
- #: adrotate.php:772
980
  msgid "Javascript"
981
  msgstr ""
982
 
983
- #: adrotate.php:775
984
  msgid "Load jQuery"
985
  msgstr "Utilisez jQuery"
986
 
987
- #: adrotate.php:776
988
  msgid ""
989
  "jQuery is required for all Javascript features below. Enable this if your "
990
  "theme does not load jQuery already."
@@ -992,11 +989,11 @@ msgstr ""
992
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
993
  "le si votre thème ne charge pas jQuery directement."
994
 
995
- #: adrotate.php:779
996
  msgid "Load in footer?"
997
  msgstr "Chargement dans le pied de page?"
998
 
999
- #: adrotate.php:780
1000
  msgid ""
1001
  "Enable if you want to load the above libraries in the footer. Your theme "
1002
  "needs to call wp_footer() for this to work."
@@ -1004,11 +1001,11 @@ msgstr ""
1004
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1005
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1006
 
1007
- #: adrotate.php:788
1008
  msgid "Maintenance"
1009
  msgstr "Maintenance"
1010
 
1011
- #: adrotate.php:789
1012
  msgid ""
1013
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1014
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1022,19 +1019,19 @@ msgstr ""
1022
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1023
  "de données est lente ou ne réponds pas."
1024
 
1025
- #: adrotate.php:804 adrotate.php:806
1026
  msgid "Optimize Database"
1027
  msgstr "Optimiser la base de données"
1028
 
1029
- #: adrotate.php:806
1030
  msgid "You are about to optimize the AdRotate database."
1031
  msgstr "Vous allez optimiser la base de données de Adrotate."
1032
 
1033
- #: adrotate.php:806
1034
  msgid "Did you make a backup of your database?"
1035
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1036
 
1037
- #: adrotate.php:806
1038
  msgid ""
1039
  "This may take a moment and may cause your website to respond slow "
1040
  "temporarily!"
@@ -1042,16 +1039,16 @@ msgstr ""
1042
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1043
  "temporaire!"
1044
 
1045
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1046
  #: dashboard/publisher/adrotate-groups-main.php:24
1047
  msgid "OK to continue, CANCEL to stop."
1048
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1049
 
1050
- #: adrotate.php:807
1051
  msgid "Cleans up overhead data in the AdRotate tables."
1052
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1053
 
1054
- #: adrotate.php:808
1055
  msgid ""
1056
  "Overhead data is accumulated garbage resulting from many changes you've "
1057
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1060,11 +1057,11 @@ msgstr ""
1060
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1061
  "KB de données."
1062
 
1063
- #: adrotate.php:812 adrotate.php:814
1064
  msgid "Clean-up Database"
1065
  msgstr "Nettoyer la base de données"
1066
 
1067
- #: adrotate.php:814
1068
  msgid ""
1069
  "You are about to clean up your database. This may delete expired schedules "
1070
  "and older statistics."
@@ -1072,21 +1069,21 @@ msgstr ""
1072
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1073
  "supprimer des calendriers périmés et des vieilles statistiques.."
1074
 
1075
- #: adrotate.php:814
1076
  msgid "Are you sure you want to continue?"
1077
  msgstr "Etes-vous certains de vouloir continuer?"
1078
 
1079
- #: adrotate.php:814 adrotate.php:822
1080
  msgid "This might take a while and may slow down your site during this action!"
1081
  msgstr ""
1082
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1083
  "interval!"
1084
 
1085
- #: adrotate.php:815
1086
  msgid "Delete stats older than 356 days (Optional)."
1087
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1088
 
1089
- #: adrotate.php:816
1090
  msgid ""
1091
  "AdRotate creates empty records when you start making ads or groups. In rare "
1092
  "occasions these records are faulty."
@@ -1094,7 +1091,7 @@ msgstr ""
1094
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1095
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1096
 
1097
- #: adrotate.php:816
1098
  msgid ""
1099
  "If you made an ad or group that does not save when you make it use this "
1100
  "button to delete those empty records."
@@ -1103,7 +1100,7 @@ msgstr ""
1103
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1104
  "registres vides."
1105
 
1106
- #: adrotate.php:816
1107
  msgid ""
1108
  "Additionally you can clean up old statistics. This will improve the speed of "
1109
  "your site."
@@ -1111,19 +1108,19 @@ msgstr ""
1111
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1112
  "d'améliorer la vitesse de votre site."
1113
 
1114
- #: adrotate.php:820
1115
  msgid "Re-evaluate Ads"
1116
  msgstr "Re-évaluer les publicités"
1117
 
1118
- #: adrotate.php:822
1119
  msgid "Re-evaluate all ads"
1120
  msgstr "Re-évaluer toutes les publicités"
1121
 
1122
- #: adrotate.php:822
1123
  msgid "You are about to check all ads for errors."
1124
  msgstr "Vous allez véifier l'état de toutes les publicités."
1125
 
1126
- #: adrotate.php:823
1127
  msgid ""
1128
  "This will apply all evaluation rules to all ads to see if any error slipped "
1129
  "in. Normally you should not need this feature."
@@ -1132,7 +1129,7 @@ msgstr ""
1132
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1133
  "fonctionalité."
1134
 
1135
- #: adrotate.php:827
1136
  msgid ""
1137
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1138
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1149,63 +1146,63 @@ msgstr ""
1149
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1150
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1151
 
1152
- #: adrotate.php:835
1153
  msgid "Troubleshooting"
1154
  msgstr "Diagnostic de dépannage"
1155
 
1156
- #: adrotate.php:838
1157
  msgid "Current version:"
1158
  msgstr "Version actuelle :"
1159
 
1160
- #: adrotate.php:839
1161
  msgid "Previous version:"
1162
  msgstr "Version antérieure :"
1163
 
1164
- #: adrotate.php:842
1165
  msgid "Current database version:"
1166
  msgstr "Version actuelle de la base de données :"
1167
 
1168
- #: adrotate.php:843
1169
  msgid "Previous database version:"
1170
  msgstr "Version antérieure de la base de données :"
1171
 
1172
- #: adrotate.php:846
1173
  msgid "Ad evaluation next run:"
1174
  msgstr ""
1175
 
1176
- #: adrotate.php:847 adrotate.php:851
1177
  msgid "Not scheduled!"
1178
  msgstr "Pas planifié!"
1179
 
1180
- #: adrotate.php:850
1181
  msgid "Clean Trackerdata next run:"
1182
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
1183
 
1184
- #: adrotate.php:854
1185
  msgid "Current status of adverts"
1186
  msgstr "Etat actuel des publicités"
1187
 
1188
- #: adrotate.php:855
1189
  msgid "Normal"
1190
  msgstr "Normal"
1191
 
1192
- #: adrotate.php:855
1193
  msgid "Error"
1194
  msgstr "Erreur"
1195
 
1196
- #: adrotate.php:855
1197
  msgid "Expired"
1198
  msgstr "Expiré"
1199
 
1200
- #: adrotate.php:855
1201
  msgid "Expires Soon"
1202
  msgstr "Expire bientôt"
1203
 
1204
- #: adrotate.php:855
1205
  msgid "Unknown Status"
1206
  msgstr "Statut Inconnu"
1207
 
1208
- #: adrotate.php:858
1209
  msgid ""
1210
  "NOTE: The below options are not meant for normal use and are only there for "
1211
  "developers to review saved settings or how ads are selected. These can be "
@@ -1218,37 +1215,37 @@ msgstr ""
1218
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1219
  "une utilisation normale, ils ne doivent pas être activés!"
1220
 
1221
- #: adrotate.php:862
1222
  msgid "Developer Debug"
1223
  msgstr "Debuggage de développeur"
1224
 
1225
- #: adrotate.php:864
1226
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1227
  msgstr ""
1228
  "Dépannage des publicités. Si cette option est activée, les données seront "
1229
  "placées sur le site."
1230
 
1231
- #: adrotate.php:865
1232
  msgid "Show all settings, dashboard routines and related values."
1233
  msgstr ""
1234
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1235
  "connexes."
1236
 
1237
- #: adrotate.php:866
1238
  msgid "Show array of all userroles and capabilities."
1239
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1240
 
1241
- #: adrotate.php:867
1242
  msgid "Review saved advertisers! Visible to advertisers."
1243
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1244
 
1245
- #: adrotate.php:868
1246
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1247
  msgstr ""
1248
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1249
  "Visible uniquement aux annonceurs."
1250
 
1251
- #: adrotate.php:869
1252
  msgid ""
1253
  "Disable timers for clicks and impressions and enable a alert window for "
1254
  "clicktracking."
@@ -1256,7 +1253,7 @@ msgstr ""
1256
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1257
  "fenêtre d'alerte pour le suivi des clicks."
1258
 
1259
- #: adrotate.php:870
1260
  msgid "Temporarily disable encryption on the redirect url."
1261
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1262
 
@@ -1508,10 +1505,8 @@ msgid "The AdCode cannot be empty!"
1508
  msgstr "Le code de la publicité ne peut être vide!"
1509
 
1510
  #: dashboard/publisher/adrotate-ads-edit.php:49
1511
- msgid "You didn't use %image% in your AdCode but did select an image!"
1512
  msgstr ""
1513
- "Vous n'avez pas utilisé %image% dans votre code, mais vous avez selectionné "
1514
- "une image!"
1515
 
1516
  #: dashboard/publisher/adrotate-ads-edit.php:52
1517
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1529,10 +1524,22 @@ msgstr ""
1529
  "publicité!"
1530
 
1531
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1532
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1533
  msgstr ""
1534
 
1535
- #: dashboard/publisher/adrotate-ads-edit.php:63
1536
  msgid ""
1537
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1538
  "the ad!"
@@ -1540,113 +1547,169 @@ msgstr ""
1540
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1541
  "essayez d'enregistrer votre publicité à nouveau!"
1542
 
1543
- #: dashboard/publisher/adrotate-ads-edit.php:66
1544
  msgid "This ad is expired and currently not shown on your website!"
1545
  msgstr ""
1546
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1547
 
1548
- #: dashboard/publisher/adrotate-ads-edit.php:69
1549
  msgid "The ad will expire in less than 2 days!"
1550
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1551
 
1552
- #: dashboard/publisher/adrotate-ads-edit.php:72
1553
  msgid "This ad will expire in less than 7 days!"
1554
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1555
 
1556
- #: dashboard/publisher/adrotate-ads-edit.php:75
1557
  msgid "This ad has been disabled and does not rotate on your site!"
1558
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1559
 
1560
- #: dashboard/publisher/adrotate-ads-edit.php:101
1561
  msgid "New Advert"
1562
  msgstr "Nouvelle pub"
1563
 
1564
- #: dashboard/publisher/adrotate-ads-edit.php:103
1565
  msgid "Edit Advert"
1566
  msgstr "Modifier la pub"
1567
 
1568
- #: dashboard/publisher/adrotate-ads-edit.php:106
1569
- #: dashboard/publisher/adrotate-groups-edit.php:48
1570
- msgid "These are required."
1571
- msgstr "Ces données sont requises."
1572
-
1573
- #: dashboard/publisher/adrotate-ads-edit.php:110
1574
  msgid "Title:"
1575
  msgstr "Titre :"
1576
 
1577
- #: dashboard/publisher/adrotate-ads-edit.php:116
1578
  msgid "AdCode:"
1579
  msgstr "Code :"
1580
 
1581
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1582
  msgid ""
1583
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1584
  msgstr ""
1585
 
1586
- #: dashboard/publisher/adrotate-ads-edit.php:121
1587
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1588
  msgstr ""
1589
 
1590
- #: dashboard/publisher/adrotate-ads-edit.php:122
1591
- msgid "Basic Examples:"
1592
- msgstr "Exemples de base :"
1593
 
1594
- #: dashboard/publisher/adrotate-ads-edit.php:127
1595
- #: dashboard/publisher/adrotate-groups-edit.php:335
1596
- msgid "Options:"
1597
- msgstr "Options :"
1598
 
1599
- #: dashboard/publisher/adrotate-ads-edit.php:129
 
 
 
 
 
 
 
 
 
 
 
 
1600
  msgid ""
1601
- "Place the cursor where you want to add a tag and click to add it to your "
1602
- "AdCode."
1603
  msgstr ""
1604
- "Placez votre curseur à l'emplacement vous voulez ajouter une balise et "
1605
- "cliquer pour l'ajouter à votre AdCode."
1606
 
1607
- #: dashboard/publisher/adrotate-ads-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1608
  msgid "Activate:"
1609
  msgstr "Activer"
1610
 
1611
- #: dashboard/publisher/adrotate-ads-edit.php:137
1612
  msgid "Yes, this ad will be used"
1613
  msgstr "Oui, cette publicité sera utilisée"
1614
 
1615
- #: dashboard/publisher/adrotate-ads-edit.php:138
1616
  msgid "No, do not show this ad anywhere"
1617
  msgstr "Non, cette publicité ne sera pas utilisée"
1618
 
1619
- #: dashboard/publisher/adrotate-ads-edit.php:145
1620
  #: dashboard/publisher/adrotate-ads-main.php:108
1621
- #: dashboard/publisher/adrotate-groups-edit.php:76
1622
  #: dashboard/publisher/adrotate-groups-main.php:87
1623
  msgid "Get more features with AdRotate Pro."
1624
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1625
 
1626
- #: dashboard/publisher/adrotate-ads-edit.php:148
1627
- #: dashboard/publisher/adrotate-ads-edit.php:181
1628
- #: dashboard/publisher/adrotate-ads-edit.php:317
1629
- #: dashboard/publisher/adrotate-ads-edit.php:442
1630
- #: dashboard/publisher/adrotate-ads-edit.php:485
1631
  msgid "Save Advert"
1632
  msgstr "Sauvegarder la pub"
1633
 
1634
- #: dashboard/publisher/adrotate-ads-edit.php:149
1635
- #: dashboard/publisher/adrotate-ads-edit.php:182
1636
- #: dashboard/publisher/adrotate-ads-edit.php:318
1637
- #: dashboard/publisher/adrotate-ads-edit.php:443
1638
- #: dashboard/publisher/adrotate-ads-edit.php:486
1639
- #: dashboard/publisher/adrotate-groups-edit.php:182
1640
- #: dashboard/publisher/adrotate-groups-edit.php:323
1641
- #: dashboard/publisher/adrotate-groups-edit.php:405
1642
  msgid "Cancel"
1643
  msgstr "Annuller"
1644
 
1645
- #: dashboard/publisher/adrotate-ads-edit.php:153
1646
  msgid "Preview"
1647
  msgstr "En avant-première"
1648
 
1649
- #: dashboard/publisher/adrotate-ads-edit.php:159
1650
  msgid ""
1651
  "Note: While this preview is an accurate one, it might look different then it "
1652
  "does on the website."
@@ -1654,93 +1717,130 @@ msgstr ""
1654
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1655
  "différente sur le site."
1656
 
1657
- #: dashboard/publisher/adrotate-ads-edit.php:160
1658
  msgid ""
1659
  "This is because of CSS differences. Your themes CSS file is not active here!"
1660
  msgstr ""
1661
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1662
  "pas actif ici!"
1663
 
1664
- #: dashboard/publisher/adrotate-ads-edit.php:167
1665
- #: dashboard/publisher/adrotate-ads-edit.php:303
1666
- #: dashboard/publisher/adrotate-groups-edit.php:167
1667
- #: dashboard/publisher/adrotate-groups-edit.php:308
1668
  msgid "Usage"
1669
  msgstr "Usage"
1670
 
1671
- #: dashboard/publisher/adrotate-ads-edit.php:168
1672
- #: dashboard/publisher/adrotate-ads-edit.php:304
1673
- #: dashboard/publisher/adrotate-groups-edit.php:168
1674
- #: dashboard/publisher/adrotate-groups-edit.php:309
 
 
 
 
 
1675
  msgid ""
1676
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1677
- "where you want the advert to show up."
1678
  msgstr ""
1679
- "Copiez le shortcode dans un article ou une page. Le code PHP doit être dans "
1680
- "un fichier du thème si vus voulez que cette publicité soit affichée."
1681
 
1682
- #: dashboard/publisher/adrotate-ads-edit.php:172
1683
- #: dashboard/publisher/adrotate-ads-edit.php:308
1684
- #: dashboard/publisher/adrotate-groups-edit.php:172
1685
- #: dashboard/publisher/adrotate-groups-edit.php:313
1686
  msgid "In a post or page:"
1687
  msgstr "Dans un article ou une page :"
1688
 
1689
- #: dashboard/publisher/adrotate-ads-edit.php:174
1690
- #: dashboard/publisher/adrotate-ads-edit.php:310
1691
- #: dashboard/publisher/adrotate-groups-edit.php:174
1692
- #: dashboard/publisher/adrotate-groups-edit.php:315
1693
  msgid "Directly in a theme:"
1694
  msgstr "Directement dans un thème :"
1695
 
1696
- #: dashboard/publisher/adrotate-ads-edit.php:185
1697
- #: dashboard/publisher/adrotate-groups-edit.php:185
1698
- msgid "Advanced"
1699
- msgstr "Avancé"
1700
 
1701
- #: dashboard/publisher/adrotate-ads-edit.php:186
1702
- msgid "Everything below is optional."
1703
- msgstr "Tous les paramètres ci-dessous sont optionels."
1704
 
1705
- #: dashboard/publisher/adrotate-ads-edit.php:191
1706
- msgid "Clicktracking:"
1707
- msgstr "Clicktracking :"
1708
 
1709
- #: dashboard/publisher/adrotate-ads-edit.php:193
1710
- msgid "Enable click tracking for this advert."
1711
- msgstr "Activer le suivi des clicks pour cette publicité."
 
 
 
 
 
 
 
 
1712
 
1713
- #: dashboard/publisher/adrotate-ads-edit.php:194
 
 
 
 
 
 
 
 
 
1714
  msgid ""
1715
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1716
- "those provided by Google AdSense."
 
1717
  msgstr ""
1718
- "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
1719
- "publicités en Javascript telles que celles fournies par Google AdSense."
 
 
1720
 
1721
- #: dashboard/publisher/adrotate-ads-edit.php:195
1722
- msgid "Place the target URL in your adcode - Similar to code example 1."
 
 
1723
  msgstr ""
 
 
 
1724
 
1725
- #: dashboard/publisher/adrotate-ads-edit.php:200
1726
- msgid "Target URL:"
1727
- msgstr "URL Cible :"
1728
 
1729
- #: dashboard/publisher/adrotate-ads-edit.php:203
1730
- msgid ""
1731
- "This field is no longer required. You can place the URL directly in the "
1732
- "adcode (above) instead of %link%."
1733
- msgstr ""
 
 
 
 
 
 
 
 
 
 
1734
 
1735
- #: dashboard/publisher/adrotate-ads-edit.php:208
1736
  msgid "Responsive:"
1737
  msgstr "Responsive :"
1738
 
1739
- #: dashboard/publisher/adrotate-ads-edit.php:210
1740
  msgid "Enable responsive support for this advert."
1741
  msgstr "Activer le support réactif pour cette publicité."
1742
 
1743
- #: dashboard/publisher/adrotate-ads-edit.php:211
1744
  msgid ""
1745
  "Upload your images to the banner folder and make sure the filename is in the "
1746
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1751,319 +1851,150 @@ msgstr ""
1751
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1752
  "fluide."
1753
 
1754
- #: dashboard/publisher/adrotate-ads-edit.php:213
1755
- msgid ""
1756
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1757
- "for different viewports. Requires jQuery."
1758
- msgstr ""
1759
- "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
1760
- "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
1761
-
1762
- #: dashboard/publisher/adrotate-ads-edit.php:217
1763
- msgid "Banner image:"
1764
- msgstr "Image :"
1765
-
1766
- #: dashboard/publisher/adrotate-ads-edit.php:220
1767
- msgid "Media:"
1768
- msgstr "Médias :"
1769
-
1770
- #: dashboard/publisher/adrotate-ads-edit.php:220
1771
- msgid "Select Banner"
1772
- msgstr "Choisir l'image"
1773
-
1774
- #: dashboard/publisher/adrotate-ads-edit.php:222
1775
- msgid "- OR -"
1776
- msgstr "- OU -"
1777
-
1778
- #: dashboard/publisher/adrotate-ads-edit.php:224
1779
- msgid "Banner folder:"
1780
- msgstr "Dossier de bannières :"
1781
-
1782
- #: dashboard/publisher/adrotate-ads-edit.php:225
1783
- msgid "No image selected"
1784
- msgstr "Aucune image sélectionnée"
1785
-
1786
- #: dashboard/publisher/adrotate-ads-edit.php:229
1787
- msgid "Use %image% in the code. Accepted files are:"
1788
- msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
1789
-
1790
- #: dashboard/publisher/adrotate-ads-edit.php:229
1791
- msgid ""
1792
- "Use either the text field or the dropdown. If the textfield has content that "
1793
- "field has priority."
1794
- msgstr ""
1795
- "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1796
- "valeur, ce champ a la priorité."
1797
-
1798
- #: dashboard/publisher/adrotate-ads-edit.php:233
1799
  #, fuzzy
1800
  msgid "Weight:"
1801
  msgstr "Importance"
1802
 
1803
- #: dashboard/publisher/adrotate-ads-edit.php:233
1804
  #, fuzzy
1805
  msgid "AdRotate Pro only"
1806
  msgstr "AdRotate Pro"
1807
 
1808
- #: dashboard/publisher/adrotate-ads-edit.php:236
1809
  msgid "Barely visible"
1810
  msgstr ""
1811
 
1812
- #: dashboard/publisher/adrotate-ads-edit.php:237
1813
  msgid "Less than average"
1814
  msgstr ""
1815
 
1816
- #: dashboard/publisher/adrotate-ads-edit.php:238
1817
  msgid "Normal coverage"
1818
  msgstr ""
1819
 
1820
- #: dashboard/publisher/adrotate-ads-edit.php:239
1821
  msgid "More than average"
1822
  msgstr ""
1823
 
1824
- #: dashboard/publisher/adrotate-ads-edit.php:240
1825
  msgid "Best visibility"
1826
  msgstr ""
1827
 
1828
- #: dashboard/publisher/adrotate-ads-edit.php:245
1829
- #: dashboard/publisher/adrotate-groups-edit.php:212
1830
  msgid "Sortorder:"
1831
  msgstr "Ordre de tri :"
1832
 
1833
- #: dashboard/publisher/adrotate-ads-edit.php:247
1834
- #: dashboard/publisher/adrotate-groups-edit.php:214
1835
  msgid "For administrative purposes set a sortorder."
1836
  msgstr "Pour des raisons administratives définir un ordre de tri."
1837
 
1838
- #: dashboard/publisher/adrotate-ads-edit.php:247
1839
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1840
  msgstr ""
1841
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1842
  "de l'ID de la publicité."
1843
 
1844
- #: dashboard/publisher/adrotate-ads-edit.php:252
1845
  msgid ""
1846
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1847
- "attention."
1848
  msgstr ""
1849
- "Avec AdRotate Pro, vous pouvez aussi mettre un poids pour donner à vos "
1850
- "publicités plus ou moins d'importance."
1851
-
1852
- #: dashboard/publisher/adrotate-ads-edit.php:252
1853
- #: dashboard/publisher/adrotate-ads-edit.php:301
1854
- #: dashboard/publisher/adrotate-ads-edit.php:399
1855
- #: dashboard/publisher/adrotate-groups-edit.php:218
1856
- msgid "Upgrade today"
1857
- msgstr "Mettre à jour aujourd'hui"
1858
 
1859
- #: dashboard/publisher/adrotate-ads-edit.php:254
1860
- #, fuzzy
1861
- msgid "Geo Location in AdRotate Pro"
1862
- msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
1863
 
1864
- #: dashboard/publisher/adrotate-ads-edit.php:255
1865
  msgid ""
1866
- "This works if you assign the advert to a group and enable that group to use "
1867
- "Geo Targeting."
1868
  msgstr ""
1869
 
1870
- #: dashboard/publisher/adrotate-ads-edit.php:259
1871
  msgid "Cities/States:"
1872
  msgstr ""
1873
 
1874
- #: dashboard/publisher/adrotate-ads-edit.php:262
1875
- #: dashboard/publisher/adrotate-ads-edit.php:295
1876
- #, fuzzy
1877
- msgid "Usage:"
1878
- msgstr "Usage"
1879
-
1880
- #: dashboard/publisher/adrotate-ads-edit.php:263
1881
- msgid "A comma separated list of cities and/or states"
1882
  msgstr ""
1883
 
1884
- #: dashboard/publisher/adrotate-ads-edit.php:263
1885
  msgid ""
1886
  "AdRotate does not check the validity of names so make sure you spell them "
1887
  "correctly!"
1888
  msgstr ""
1889
 
1890
- #: dashboard/publisher/adrotate-ads-edit.php:267
1891
  msgid "Countries:"
1892
  msgstr ""
1893
 
1894
- #: dashboard/publisher/adrotate-ads-edit.php:296
1895
  #, fuzzy
1896
  msgid "Select the countries you want the adverts to show in."
1897
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1898
 
1899
- #: dashboard/publisher/adrotate-ads-edit.php:296
1900
  msgid "Cities take priority and will be filtered first."
1901
  msgstr ""
1902
 
1903
- #: dashboard/publisher/adrotate-ads-edit.php:301
1904
- msgid "Target your audience with Geo Location in AdRotate Pro"
1905
- msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
1906
-
1907
- #: dashboard/publisher/adrotate-ads-edit.php:321
1908
- msgid "Schedule"
1909
- msgstr "Planning"
1910
-
1911
- #: dashboard/publisher/adrotate-ads-edit.php:322
1912
- msgid "From when to when is the advert visible?"
1913
- msgstr "Quel est l'interval de dates pendant lequel la publicité est visible?"
1914
-
1915
- #: dashboard/publisher/adrotate-ads-edit.php:326
1916
- msgid "Start date (day/month/year):"
1917
- msgstr "Date de début (jour/mois/année) :"
1918
-
1919
- #: dashboard/publisher/adrotate-ads-edit.php:347
1920
- msgid "End date (day/month/year):"
1921
- msgstr "Date de fin (jour/mois/année) :"
1922
-
1923
- #: dashboard/publisher/adrotate-ads-edit.php:370
1924
- msgid "Start time (hh:mm):"
1925
- msgstr "Début (hh:mm) :"
1926
-
1927
- #: dashboard/publisher/adrotate-ads-edit.php:377
1928
- msgid "End time (hh:mm):"
1929
- msgstr "Fin (hh:mm) :"
1930
-
1931
- #: dashboard/publisher/adrotate-ads-edit.php:387
1932
- msgid "Maximum Clicks:"
1933
- msgstr "Nombre de clicks max :"
1934
-
1935
- #: dashboard/publisher/adrotate-ads-edit.php:388
1936
- #: dashboard/publisher/adrotate-ads-edit.php:390
1937
- msgid "Leave empty or 0 to skip this."
1938
- msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1939
-
1940
- #: dashboard/publisher/adrotate-ads-edit.php:389
1941
- msgid "Maximum Impressions:"
1942
- msgstr "Nombre max de vues :"
1943
-
1944
- #: dashboard/publisher/adrotate-ads-edit.php:395
1945
- msgid ""
1946
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1947
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1948
- "hours. 6AM is 6:00 hours."
1949
- msgstr ""
1950
- "L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes habitués "
1951
- "au système de AM/PM, gardez cela en tête : si l'heure de début ou de fin est "
1952
- "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
1953
- "6:00). "
1954
-
1955
- #: dashboard/publisher/adrotate-ads-edit.php:395
1956
- msgid ""
1957
- "The maximum clicks and impressions are measured over the set schedule only. "
1958
- "Every schedule can have it's own limit!"
1959
- msgstr ""
1960
- "Le nombre maximum de clics et d'impressions est mesuré pour le calendrier en "
1961
- "question uniquement. Tous les calendriers peuvent avoir leurs propres "
1962
- "limites!"
1963
-
1964
- #: dashboard/publisher/adrotate-ads-edit.php:399
1965
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1966
- msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1967
-
1968
- #: dashboard/publisher/adrotate-ads-edit.php:401
1969
- #, fuzzy
1970
- msgid "Choose Multiple Schedules in AdRotate Pro"
1971
- msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1972
-
1973
- #: dashboard/publisher/adrotate-ads-edit.php:402
1974
- msgid "You can add, edit or delete schedules from the"
1975
- msgstr ""
1976
-
1977
- #: dashboard/publisher/adrotate-ads-edit.php:402
1978
- msgid "dashboard. Save your advert first!"
1979
- msgstr ""
1980
-
1981
- #: dashboard/publisher/adrotate-ads-edit.php:409
1982
- msgid "From / Until"
1983
- msgstr ""
1984
-
1985
- #: dashboard/publisher/adrotate-ads-edit.php:411
1986
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1987
- #: dashboard/publisher/adrotate-ads-main.php:45
1988
- #: dashboard/publisher/adrotate-ads-report.php:35
1989
- #: dashboard/publisher/adrotate-groups-edit.php:356
1990
- #: dashboard/publisher/adrotate-groups-main.php:37
1991
- #: dashboard/publisher/adrotate-groups-report.php:41
1992
- msgid "Clicks"
1993
- msgstr "Clicks"
1994
-
1995
- #: dashboard/publisher/adrotate-ads-edit.php:412
1996
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1997
- #: dashboard/publisher/adrotate-ads-report.php:34
1998
- #: dashboard/publisher/adrotate-groups-edit.php:355
1999
- #: dashboard/publisher/adrotate-groups-main.php:35
2000
- #: dashboard/publisher/adrotate-groups-report.php:40
2001
- msgid "Impressions"
2002
- msgstr "Vues"
2003
-
2004
- #: dashboard/publisher/adrotate-ads-edit.php:421
2005
- #, fuzzy
2006
- msgid "impressions per day"
2007
- msgstr "Vues aujourd'hui"
2008
-
2009
- #: dashboard/publisher/adrotate-ads-edit.php:437
2010
- msgid "In use by this advert."
2011
  msgstr ""
2012
 
2013
- #: dashboard/publisher/adrotate-ads-edit.php:448
2014
  msgid "Select Groups"
2015
  msgstr "Choisir groupes"
2016
 
2017
- #: dashboard/publisher/adrotate-ads-edit.php:449
2018
- msgid "Optionally select the group(s) this ad belongs to."
2019
- msgstr "Choisir le groupe auquel cette publicité va être rattachée (optionel)"
2020
-
2021
- #: dashboard/publisher/adrotate-ads-edit.php:454
2022
  msgid "ID - Name"
2023
  msgstr "ID - Nom"
2024
 
2025
- #: dashboard/publisher/adrotate-ads-edit.php:455
2026
  msgid "Ads in group"
2027
  msgstr "Pubs dans le groupe"
2028
 
2029
- #: dashboard/publisher/adrotate-ads-edit.php:464
2030
  #: dashboard/publisher/adrotate-groups-main.php:58
2031
  msgid "Default"
2032
  msgstr "Par défaut"
2033
 
2034
- #: dashboard/publisher/adrotate-ads-edit.php:465
2035
  #: dashboard/publisher/adrotate-groups-main.php:59
2036
  msgid "Dynamic"
2037
  msgstr "Dynamique"
2038
 
2039
- #: dashboard/publisher/adrotate-ads-edit.php:465
2040
  #: dashboard/publisher/adrotate-groups-main.php:59
2041
  msgid "second rotation"
2042
  msgstr "deuxième rotation"
2043
 
2044
- #: dashboard/publisher/adrotate-ads-edit.php:466
2045
  #: dashboard/publisher/adrotate-groups-main.php:60
2046
  msgid "Block"
2047
  msgstr "Bloc"
2048
 
2049
- #: dashboard/publisher/adrotate-ads-edit.php:466
2050
  #: dashboard/publisher/adrotate-groups-main.php:60
2051
  msgid "grid"
2052
  msgstr "grille"
2053
 
2054
- #: dashboard/publisher/adrotate-ads-edit.php:467
2055
- #: dashboard/publisher/adrotate-groups-edit.php:220
2056
  #: dashboard/publisher/adrotate-groups-main.php:61
2057
  msgid "Post Injection"
2058
  msgstr "Injection dans l'article"
2059
 
2060
- #: dashboard/publisher/adrotate-ads-edit.php:468
2061
  #: dashboard/publisher/adrotate-groups-main.php:62
2062
  msgid "Geolocation"
2063
  msgstr "Géolocalisation"
2064
 
2065
- #: dashboard/publisher/adrotate-ads-edit.php:474
2066
- #: dashboard/publisher/adrotate-groups-edit.php:62
2067
  #: dashboard/publisher/adrotate-groups-main.php:69
2068
  msgid "Mode"
2069
  msgstr "Mode"
@@ -2094,6 +2025,23 @@ msgstr "Début / Fin"
2094
  msgid "Title"
2095
  msgstr "Titre"
2096
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2097
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2098
  #: dashboard/publisher/adrotate-ads-main.php:47
2099
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2155,7 +2103,7 @@ msgid "For 7 days"
2155
  msgstr "Pour 7 jours"
2156
 
2157
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2158
- #: dashboard/publisher/adrotate-groups-edit.php:398
2159
  msgid "Configuration errors."
2160
  msgstr "Erreurs de configuration."
2161
 
@@ -2168,7 +2116,7 @@ msgid "Export to XML"
2168
  msgstr ""
2169
 
2170
  #: dashboard/publisher/adrotate-ads-main.php:42
2171
- #: dashboard/publisher/adrotate-groups-edit.php:357
2172
  msgid "Weight"
2173
  msgstr "Importance"
2174
 
@@ -2233,300 +2181,303 @@ msgstr "Nouveau Groupe"
2233
  msgid "Edit Group"
2234
  msgstr "Modifier Groupe"
2235
 
2236
- #: dashboard/publisher/adrotate-groups-edit.php:56
2237
  msgid "Name:"
2238
  msgstr "Nom :"
2239
 
2240
- #: dashboard/publisher/adrotate-groups-edit.php:65
2241
  msgid "Default - Show one ad at a time"
2242
  msgstr "Par defaut - Montrer une pub "
2243
 
2244
- #: dashboard/publisher/adrotate-groups-edit.php:66
2245
  msgid "Dynamic Mode - Show a different ad every few seconds"
2246
  msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
2247
 
2248
- #: dashboard/publisher/adrotate-groups-edit.php:67
2249
  msgid "Block Mode - Show a block of ads"
2250
  msgstr "Mode en Bloc - Montrer un bloc de pubs"
2251
 
2252
- #: dashboard/publisher/adrotate-groups-edit.php:71
2253
  #, fuzzy
2254
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2255
  msgstr ""
2256
  "En mode Dynamique, jQuery et jQuery Groups doivent être chargés. Vous pouvez "
2257
  "activer cette options dans les réglages de AdRotate."
2258
 
2259
- #: dashboard/publisher/adrotate-groups-edit.php:78
2260
- #: dashboard/publisher/adrotate-groups-edit.php:135
2261
  msgid "Dynamic and Block Mode"
2262
  msgstr "Mode Dynamique et en Bloc"
2263
 
2264
- #: dashboard/publisher/adrotate-groups-edit.php:79
2265
  msgid "Only required if your group is in Dynamic or Block mode."
2266
  msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
2267
 
2268
- #: dashboard/publisher/adrotate-groups-edit.php:83
2269
- msgid "Block shape and border"
2270
- msgstr "Dimensions et bordure du bloc"
2271
 
2272
- #: dashboard/publisher/adrotate-groups-edit.php:110
2273
  msgid "rows"
2274
  msgstr "lignes"
2275
 
2276
- #: dashboard/publisher/adrotate-groups-edit.php:123
2277
  msgid "columns"
2278
  msgstr "colonnes"
2279
 
2280
- #: dashboard/publisher/adrotate-groups-edit.php:126
2281
  msgid "Block Mode"
2282
  msgstr "Mode en Bloc"
2283
 
2284
- #: dashboard/publisher/adrotate-groups-edit.php:126
2285
- msgid ""
2286
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2287
- "showing a maximum of 6 ads. Default: 2x2."
2288
  msgstr ""
2289
- "Créer une grille pour vos publicités. Choisissez 3 et 2 créera une grille "
2290
- "avec 2 colonnes montrant un maximum de 6 publicités. Valeur par défaut : 2x2."
2291
 
2292
- #: dashboard/publisher/adrotate-groups-edit.php:130
2293
- msgid "Advert Width and Height"
2294
- msgstr "Dimensions des publicités"
2295
 
2296
- #: dashboard/publisher/adrotate-groups-edit.php:132
2297
  msgid "pixel(s) wide"
2298
  msgstr "largeur en pixels"
2299
 
2300
- #: dashboard/publisher/adrotate-groups-edit.php:132
2301
  msgid "pixel(s) high."
2302
  msgstr "hauteur en pixels"
2303
 
2304
- #: dashboard/publisher/adrotate-groups-edit.php:135
2305
  msgid ""
2306
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2307
  "recommended). Default: 125/125."
2308
  msgstr ""
2309
 
2310
- #: dashboard/publisher/adrotate-groups-edit.php:139
2311
  msgid "Automated refresh"
2312
  msgstr "Rafraîchissement automatique"
2313
 
2314
- #: dashboard/publisher/adrotate-groups-edit.php:158
2315
  msgid "seconds."
2316
  msgstr "secondes."
2317
 
2318
- #: dashboard/publisher/adrotate-groups-edit.php:161
2319
  msgid "Dynamic Mode"
2320
  msgstr "Mode dynamique"
2321
 
2322
- #: dashboard/publisher/adrotate-groups-edit.php:161
2323
  msgid ""
2324
  "Load a new advert in this interval without reloading the page. Default: 6."
2325
  msgstr ""
2326
  "Chargez une nouvelle publicité sans recharger le page après cette "
2327
  "intervalle. La valeur par défaut est : 6."
2328
 
2329
- #: dashboard/publisher/adrotate-groups-edit.php:181
2330
- #: dashboard/publisher/adrotate-groups-edit.php:322
2331
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2332
  msgid "Save Group"
2333
  msgstr "Sauvegarder groupe"
2334
 
2335
- #: dashboard/publisher/adrotate-groups-edit.php:189
2336
  msgid "Advert Margin"
2337
  msgstr "Marges autour de la pub"
2338
 
2339
- #: dashboard/publisher/adrotate-groups-edit.php:191
2340
  msgid "pixel(s)"
2341
  msgstr "pixel(s)"
2342
 
2343
- #: dashboard/publisher/adrotate-groups-edit.php:194
2344
  msgid "A transparent area outside the advert in pixels. Default: 0."
2345
  msgstr ""
2346
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
2347
  "défaut : 0."
2348
 
2349
- #: dashboard/publisher/adrotate-groups-edit.php:194
2350
  msgid "Set to 0 to disable."
2351
  msgstr "Mettre 0 pour désactiver."
2352
 
2353
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2354
  msgid "Align the group"
2355
  msgstr ""
2356
 
2357
- #: dashboard/publisher/adrotate-groups-edit.php:201
2358
  msgid "None (Default)"
2359
  msgstr ""
2360
 
2361
- #: dashboard/publisher/adrotate-groups-edit.php:202
2362
  msgid "Left"
2363
  msgstr ""
2364
 
2365
- #: dashboard/publisher/adrotate-groups-edit.php:203
2366
  msgid "Right"
2367
  msgstr ""
2368
 
2369
- #: dashboard/publisher/adrotate-groups-edit.php:204
2370
  msgid "Center"
2371
  msgstr ""
2372
 
2373
- #: dashboard/publisher/adrotate-groups-edit.php:208
2374
  msgid ""
2375
  "Align the group in your post or page. Using 'center' may affect your margin "
2376
  "setting. Not every theme supports this feature."
2377
  msgstr ""
2378
 
2379
- #: dashboard/publisher/adrotate-groups-edit.php:214
2380
  msgid "Leave empty or 0 to skip this. Will default to group id."
2381
  msgstr ""
2382
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2383
  "défaut de l'identifiant du groupe."
2384
 
2385
- #: dashboard/publisher/adrotate-groups-edit.php:218
2386
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2387
  msgstr ""
2388
  "Mettre en place un groupe de secours, et utiliser la localisation "
2389
  "géographique dans AdRotate Pro"
2390
 
2391
- #: dashboard/publisher/adrotate-groups-edit.php:221
2392
- msgid "Insert ads to the begin or end of a post/page."
2393
- msgstr "Insérer des publicités au début ou à la fin de l'article/page."
2394
-
2395
- #: dashboard/publisher/adrotate-groups-edit.php:224
2396
  msgid "Include ads in categories?"
2397
  msgstr "Intégrer les publicités dans les catégories?"
2398
 
2399
- #: dashboard/publisher/adrotate-groups-edit.php:228
2400
- #: dashboard/publisher/adrotate-groups-edit.php:269
2401
  msgid "Disabled"
2402
  msgstr "Désactivé"
2403
 
2404
- #: dashboard/publisher/adrotate-groups-edit.php:229
2405
- #: dashboard/publisher/adrotate-groups-edit.php:270
2406
  msgid "Before content"
2407
  msgstr "Avant le contenu"
2408
 
2409
- #: dashboard/publisher/adrotate-groups-edit.php:230
2410
- #: dashboard/publisher/adrotate-groups-edit.php:271
2411
  msgid "After content"
2412
  msgstr "Après le contenu"
2413
 
2414
- #: dashboard/publisher/adrotate-groups-edit.php:231
2415
- #: dashboard/publisher/adrotate-groups-edit.php:272
2416
  msgid "Before and after content"
2417
  msgstr "Avant et après le contenu"
2418
 
2419
- #: dashboard/publisher/adrotate-groups-edit.php:232
2420
- #: dashboard/publisher/adrotate-groups-edit.php:273
2421
  msgid "After..."
2422
  msgstr "Après..."
2423
 
2424
- #: dashboard/publisher/adrotate-groups-edit.php:238
2425
- #: dashboard/publisher/adrotate-groups-edit.php:279
2426
  msgid "the first paragraph"
2427
  msgstr "le premier parapgraphe"
2428
 
2429
- #: dashboard/publisher/adrotate-groups-edit.php:239
2430
- #: dashboard/publisher/adrotate-groups-edit.php:280
2431
  msgid "the 2nd paragraph"
2432
  msgstr "le second paragraphe"
2433
 
2434
- #: dashboard/publisher/adrotate-groups-edit.php:240
2435
- #: dashboard/publisher/adrotate-groups-edit.php:281
2436
  msgid "the 3rd paragraph"
2437
  msgstr "le troisième paragraphe"
2438
 
2439
- #: dashboard/publisher/adrotate-groups-edit.php:241
2440
- #: dashboard/publisher/adrotate-groups-edit.php:282
2441
  msgid "the 4th paragraph"
2442
  msgstr "le quatrième paragraphe"
2443
 
2444
- #: dashboard/publisher/adrotate-groups-edit.php:243
2445
- #: dashboard/publisher/adrotate-groups-edit.php:284
2446
  msgid "every 2nd paragraph"
2447
  msgstr "chaque second paragraphe"
2448
 
2449
- #: dashboard/publisher/adrotate-groups-edit.php:244
2450
- #: dashboard/publisher/adrotate-groups-edit.php:285
2451
  msgid "every 3rd paragraph"
2452
  msgstr "chaque 3ème paragraphe"
2453
 
2454
- #: dashboard/publisher/adrotate-groups-edit.php:245
2455
- #: dashboard/publisher/adrotate-groups-edit.php:286
2456
  msgid "every 4th paragraph"
2457
  msgstr "chaque 4ème paragraphe"
2458
 
2459
- #: dashboard/publisher/adrotate-groups-edit.php:246
2460
- #: dashboard/publisher/adrotate-groups-edit.php:287
2461
  msgid "every 5th paragraph"
2462
  msgstr "chaque 5ème paragraphe"
2463
 
2464
- #: dashboard/publisher/adrotate-groups-edit.php:247
2465
- #: dashboard/publisher/adrotate-groups-edit.php:288
2466
  msgid "every 6th paragraph"
2467
  msgstr "chaque 6ème paragraphe"
2468
 
2469
- #: dashboard/publisher/adrotate-groups-edit.php:248
2470
- #: dashboard/publisher/adrotate-groups-edit.php:289
2471
  msgid "every 7th paragraph"
2472
  msgstr "chaque 7ème paragraphe"
2473
 
2474
- #: dashboard/publisher/adrotate-groups-edit.php:249
2475
- #: dashboard/publisher/adrotate-groups-edit.php:290
2476
  msgid "every 8th paragraph"
2477
  msgstr "chaque 8ème paragraphe"
2478
 
2479
- #: dashboard/publisher/adrotate-groups-edit.php:255
2480
  msgid "Which categories?"
2481
  msgstr "Quelles catégories?"
2482
 
2483
- #: dashboard/publisher/adrotate-groups-edit.php:260
2484
  msgid "Click the categories posts you want the adverts to show in."
2485
  msgstr ""
2486
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2487
  "pulicités."
2488
 
2489
- #: dashboard/publisher/adrotate-groups-edit.php:265
2490
  msgid "Include ads in pages?"
2491
  msgstr "Intégrer les publicités dans les pages?"
2492
 
2493
- #: dashboard/publisher/adrotate-groups-edit.php:296
2494
  msgid "Which pages?"
2495
  msgstr "Quelles pages?"
2496
 
2497
- #: dashboard/publisher/adrotate-groups-edit.php:301
2498
  msgid "Click the pages you want the adverts to show in."
2499
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2500
 
2501
- #: dashboard/publisher/adrotate-groups-edit.php:326
2502
  msgid "Wrapper code"
2503
  msgstr "Code enveloppant"
2504
 
2505
- #: dashboard/publisher/adrotate-groups-edit.php:327
2506
- msgid "Wraps around each ad."
2507
- msgstr "Code qui enveloppe chaque publicité."
2508
 
2509
- #: dashboard/publisher/adrotate-groups-edit.php:331
2510
  msgid "Before ad"
2511
  msgstr "Avant la pub"
2512
 
2513
- #: dashboard/publisher/adrotate-groups-edit.php:336
2514
- msgid "HTML/JavaScript allowed, use with care!"
2515
- msgstr "HTML/Javascript est authorisé, utiliser avec précaution!"
2516
 
2517
- #: dashboard/publisher/adrotate-groups-edit.php:340
2518
  msgid "After ad"
2519
  msgstr "Après la pub"
2520
 
2521
- #: dashboard/publisher/adrotate-groups-edit.php:349
2522
  msgid "Select Ads"
2523
  msgstr "Choisir les pubs"
2524
 
2525
- #: dashboard/publisher/adrotate-groups-edit.php:358
2526
  msgid "Visible until"
2527
  msgstr "Visible jusqu'à"
2528
 
2529
- #: dashboard/publisher/adrotate-groups-edit.php:391
2530
  msgid "No ads created!"
2531
  msgstr "Aucune pub créée!"
2532
 
@@ -2558,6 +2509,109 @@ msgstr "Aucun groupe n'a été créé!"
2558
  msgid "Statistics for group"
2559
  msgstr "Statistiques pour le groupe"
2560
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2561
  #~ msgid "Block of Ads (Obsolete)"
2562
  #~ msgstr "Bloc de publicité (obsolète)"
2563
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:809
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:812
25
  msgid "Folder not found or not accessible"
26
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
27
 
28
+ #: adrotate-output.php:745
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
+ #: adrotate-output.php:746
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
38
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
39
  "votre navigateur."
40
 
41
+ #: adrotate-output.php:747
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
46
 
47
+ #: adrotate-output.php:748
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
+ #: adrotate-output.php:766
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
56
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
57
  "horaires/géographiques ou n'existe pas!"
58
 
59
+ #: adrotate-output.php:768
60
  msgid ""
61
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "restrictions!"
64
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
65
  "horaires/géographiques!"
66
 
67
+ #: adrotate-output.php:775 adrotate-output.php:777
68
  msgid ""
69
  "Either there are no banners, they are disabled or none qualified for this "
70
  "location!"
72
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
73
  "cet endroit!"
74
 
75
+ #: adrotate-output.php:783
76
  msgid "Error, no Ad ID set! Check your syntax!"
77
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
78
 
79
+ #: adrotate-output.php:789
80
  msgid "Error, no group ID set! Check your syntax!"
81
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
82
 
83
+ #: adrotate-output.php:794
84
  msgid "Error, group does not exist! Check your syntax!"
85
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
86
 
87
+ #: adrotate-output.php:800
88
  msgid ""
89
  "There was an error locating the database tables for AdRotate. Please "
90
  "deactivate and re-activate AdRotate from the plugin page!!"
93
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
94
  "extensions. "
95
 
96
+ #: adrotate-output.php:800
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr ""
99
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
100
  "support à"
101
 
102
+ #: adrotate-output.php:806
103
  msgid "An unknown error occured."
104
  msgstr "Une erreur inconnue s'est produite."
105
 
106
+ #: adrotate-output.php:831
107
  msgid "active ad(s) expired."
108
  msgstr "publicité(s) active(s) ont expirée(s)."
109
 
110
+ #: adrotate-output.php:831
111
  msgid "Take action now"
112
  msgstr "Agir maintenant"
113
 
114
+ #: adrotate-output.php:833
115
  msgid "active ad(s) are about to expire."
116
  msgstr "publicité(s) active(s) sont sur le point d'expirer"
117
 
118
+ #: adrotate-output.php:833
119
  msgid "Check it out"
120
  msgstr "Vérifier-le"
121
 
122
+ #: adrotate-output.php:835
123
  msgid "active ad(s) with configuration errors."
124
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
125
 
126
+ #: adrotate-output.php:835
127
  msgid "Solve this"
128
  msgstr "Résoudre"
129
 
130
+ #: adrotate-output.php:837
131
  msgid "ad(s) expired."
132
  msgstr "publicité(s) expirée(s)"
133
 
134
+ #: adrotate-output.php:837
135
  msgid "ad(s) are about to expire."
136
  msgstr "publicité(s) sont sur le point d'expirer"
137
 
138
+ #: adrotate-output.php:837
139
  msgid "ad(s) with configuration errors."
140
  msgstr "publicité(s) avec des erreurs de configuration."
141
 
142
+ #: adrotate-output.php:837
143
  msgid "Fix this as soon as possible"
144
  msgstr "Résoudre ce soucis dans les meilleurs délais"
145
 
146
+ #: adrotate-output.php:849
147
  #, fuzzy
148
  msgid "Learn More"
149
  msgstr "En savoir plus"
150
 
151
+ #: adrotate-output.php:850
152
  msgid ""
153
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
154
  "to the <strong>PRO</strong> version"
155
  msgstr ""
156
 
157
+ #: adrotate-output.php:850
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
+ #: adrotate-output.php:850
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:894
166
  msgid ""
167
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
168
+ "this menu. Check out the"
169
  msgstr ""
170
 
171
+ #: adrotate-output.php:894
172
  msgid "manuals"
173
  msgstr "manuels"
174
 
175
+ #: adrotate-output.php:894 adrotate-output.php:971
176
+ #: dashboard/publisher/adrotate-ads-edit.php:151
177
  msgid "and"
178
  msgstr ""
179
 
180
+ #: adrotate-output.php:894
181
  msgid "forums"
182
  msgstr ""
183
 
184
+ #: adrotate-output.php:930
185
  msgid "Useful Links"
186
  msgstr ""
187
 
188
+ #: adrotate-output.php:931
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:933
193
  msgid "AdRotate Page"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:934
197
  msgid "Getting Started With AdRotate"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:935
201
  msgid "AdRotate manuals"
202
  msgstr ""
203
 
204
+ #: adrotate-output.php:936
205
  msgid "AdRotate Support Forum"
206
  msgstr ""
207
 
208
+ #: adrotate-output.php:937
209
  msgid "WordPress.org Forum"
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:963
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "AdRotate Pro"
216
 
217
+ #: adrotate-output.php:964
218
  msgid "Brought to you by"
219
  msgstr "Présenté par"
220
 
221
+ #: adrotate-output.php:971
222
  msgid ""
223
  "A lot of users only think to review AdRotate when something goes wrong while "
224
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:971
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:971
232
  msgid "rating"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:971
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "En avant-première"
239
 
240
+ #: adrotate-output.php:971
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:974
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
249
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
250
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
251
 
252
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Visitez le"
255
 
256
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "site"
259
 
260
+ #: adrotate-output.php:1004
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Disponible dans Adrotate Pro"
263
 
264
+ #: adrotate-output.php:1004
265
  msgid "More information..."
266
  msgstr "Plus d'informations..."
267
 
268
+ #: adrotate-output.php:1005
269
  msgid "This feature is available in AdRotate Pro"
270
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
271
 
272
+ #: adrotate-output.php:1005
273
  msgid "Learn more"
274
  msgstr "En savoir plus"
275
 
276
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
277
+ #: dashboard/publisher/adrotate-ads-edit.php:245
278
  msgid "January"
279
  msgstr "Janvier"
280
 
281
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
282
+ #: dashboard/publisher/adrotate-ads-edit.php:246
283
  msgid "February"
284
  msgstr "Février"
285
 
286
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
287
+ #: dashboard/publisher/adrotate-ads-edit.php:247
288
  msgid "March"
289
  msgstr "Mars"
290
 
291
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
292
+ #: dashboard/publisher/adrotate-ads-edit.php:248
293
  msgid "April"
294
  msgstr "Avril"
295
 
296
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
297
+ #: dashboard/publisher/adrotate-ads-edit.php:249
298
  msgid "May"
299
  msgstr "Mai"
300
 
301
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
302
+ #: dashboard/publisher/adrotate-ads-edit.php:250
303
  msgid "June"
304
  msgstr "Juin"
305
 
306
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
307
+ #: dashboard/publisher/adrotate-ads-edit.php:251
308
  msgid "July"
309
  msgstr "Juillet"
310
 
311
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
312
+ #: dashboard/publisher/adrotate-ads-edit.php:252
313
  msgid "August"
314
  msgstr "Août"
315
 
316
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
317
+ #: dashboard/publisher/adrotate-ads-edit.php:253
318
  msgid "September"
319
  msgstr "Septembre"
320
 
321
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
322
+ #: dashboard/publisher/adrotate-ads-edit.php:254
323
  msgid "October"
324
  msgstr "Octobre"
325
 
326
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
327
+ #: dashboard/publisher/adrotate-ads-edit.php:255
328
  msgid "November"
329
  msgstr "Novembre"
330
 
331
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
332
+ #: dashboard/publisher/adrotate-ads-edit.php:256
333
  msgid "December"
334
  msgstr "Décembre"
335
 
383
  msgid "Choose what you want to use this widget for"
384
  msgstr "Choisissez le fonction de ce widget"
385
 
386
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
387
  msgid "ID:"
388
  msgstr "ID :"
389
 
391
  msgid "Fill in the ID of the type you want to display!"
392
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
393
 
394
+ #: adrotate.php:107
395
  msgid "General Info"
396
  msgstr "Informations générales"
397
 
398
+ #: adrotate.php:108
399
  msgid "AdRotate Pro"
400
  msgstr "AdRotate Pro"
401
 
402
+ #: adrotate.php:109
403
  msgid "Manage Ads"
404
  msgstr "Gérer les pubs"
405
 
406
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
407
  msgid "Manage Groups"
408
  msgstr "Gérer les groupes"
409
 
410
+ #: adrotate.php:111 adrotate.php:440
 
411
  #, fuzzy
412
  msgid "Manage Schedules"
413
  msgstr "Gérer les pubs"
414
 
415
+ #: adrotate.php:112
416
  #, fuzzy
417
  msgid "Manage Media"
418
  msgstr "Gérer les pubs"
419
 
420
+ #: adrotate.php:113
421
  msgid "Settings"
422
  msgstr "Paramètres"
423
 
424
+ #: adrotate.php:136
425
  msgid "AdRotate Info"
426
  msgstr "Informations sur Adrotate"
427
 
428
+ #: adrotate.php:157
429
  msgid "AdRotate Professional"
430
  msgstr "AdRotate professionel"
431
 
432
+ #: adrotate.php:200
433
  msgid "Ad Management"
434
  msgstr "Gestion des pubs"
435
 
436
+ #: adrotate.php:203
437
  msgid "Ad created"
438
  msgstr "Publicité créée"
439
 
440
+ #: adrotate.php:205
441
  msgid "Ad updated"
442
  msgstr "Publicité mise à jour"
443
 
444
+ #: adrotate.php:207
445
  msgid "Ad(s) deleted"
446
  msgstr "Publicité(s) supprimée(s)"
447
 
448
+ #: adrotate.php:209
449
  msgid "Ad(s) statistics reset"
450
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
451
 
452
+ #: adrotate.php:211
453
  msgid "Ad(s) renewed"
454
  msgstr "publicité(s) renouvellée(s)"
455
 
456
+ #: adrotate.php:213
457
  msgid "Ad(s) deactivated"
458
  msgstr "Publicité(s) désactivée(s)"
459
 
460
+ #: adrotate.php:215
461
  msgid "Ad(s) activated"
462
  msgstr "Publicité(s) activée(s)"
463
 
464
+ #: adrotate.php:217
465
  msgid ""
466
  "The ad was saved but has an issue which might prevent it from working "
467
  "properly. Review the yellow marked ad."
469
  "La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
470
  "fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
471
 
472
+ #: adrotate.php:219
473
  #, fuzzy
474
  msgid "Export created"
475
  msgstr "Publicité créée"
476
 
477
+ #: adrotate.php:223
478
  msgid "Action prohibited"
479
  msgstr "Action interdite"
480
 
481
+ #: adrotate.php:225 adrotate.php:373
482
  msgid "No data found in selected time period"
483
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
484
 
485
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
486
  msgid "Manage"
487
  msgstr "Gérer"
488
 
489
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
490
  msgid "Add New"
491
  msgstr "Ajouter"
492
 
493
+ #: adrotate.php:362
494
  msgid "Group Management"
495
  msgstr "Gérer les groupes"
496
 
497
+ #: adrotate.php:365
498
  msgid "Group created"
499
  msgstr "Groupe créé"
500
 
501
+ #: adrotate.php:367
502
  msgid "Group updated"
503
  msgstr "Groupe mis à jour"
504
 
505
+ #: adrotate.php:369
506
  msgid "Group deleted"
507
  msgstr "Groupe supprimé"
508
 
509
+ #: adrotate.php:371
510
  msgid "Group including it's Ads deleted"
511
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
512
 
513
+ #: adrotate.php:431
514
  #, fuzzy
515
  msgid "Schedule Management available in AdRotate Pro"
516
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
517
 
518
+ #: adrotate.php:441
519
  #, fuzzy
520
  msgid ""
521
  "Schedule management and multiple schedules per advert is available in "
522
  "AdRotate Pro."
523
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
524
 
525
+ #: adrotate.php:441 adrotate.php:528
526
+ #: dashboard/publisher/adrotate-ads-edit.php:177
527
  #: dashboard/publisher/adrotate-ads-main.php:108
528
+ #: dashboard/publisher/adrotate-groups-edit.php:75
529
  #: dashboard/publisher/adrotate-groups-main.php:87
530
  msgid "More information"
531
  msgstr "Plus d'information"
532
 
533
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
534
  #: dashboard/publisher/adrotate-ads-main-error.php:19
535
  #: dashboard/publisher/adrotate-ads-main.php:20
536
  #: dashboard/publisher/adrotate-groups-main.php:20
537
  msgid "Bulk Actions"
538
  msgstr "Actions en vrac"
539
 
540
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
541
  #: dashboard/publisher/adrotate-ads-main-error.php:29
542
  #: dashboard/publisher/adrotate-ads-main.php:30
543
  #: dashboard/publisher/adrotate-groups-main.php:24
544
  msgid "Go"
545
  msgstr "Aller"
546
 
547
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
548
  #: dashboard/publisher/adrotate-ads-main-error.php:39
549
  #: dashboard/publisher/adrotate-ads-main.php:39
550
  #: dashboard/publisher/adrotate-groups-main.php:32
551
  msgid "ID"
552
  msgstr "ID"
553
 
554
+ #: adrotate.php:459
555
  #, fuzzy
556
  msgid "Start"
557
  msgstr "Début / Fin"
558
 
559
+ #: adrotate.php:459
560
  msgid "End"
561
  msgstr ""
562
 
563
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
564
  #: dashboard/publisher/adrotate-groups-main.php:34
565
  msgid "Ads"
566
  msgstr "Pubs"
567
 
568
+ #: adrotate.php:462
569
  #, fuzzy
570
  msgid "Max Clicks"
571
  msgstr "Nombre de clicks max :"
572
 
573
+ #: adrotate.php:463
574
  #, fuzzy
575
  msgid "Max Impressions"
576
  msgstr "Nombre max de vues :"
577
 
578
+ #: adrotate.php:493
579
  #, fuzzy
580
  msgid "No schedules created yet!"
581
  msgstr "Aucune pub n'a encore été créé!"
582
 
583
+ #: adrotate.php:498
584
  #, fuzzy
585
  msgid "Easily manage your schedules from here with AdRotate Pro."
586
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
587
 
588
+ #: adrotate.php:498 adrotate.php:561
589
  #, fuzzy
590
  msgid "Upgrade today!"
591
  msgstr "Mettre à jour aujourd'hui"
592
 
593
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
594
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
595
  msgid "Expires soon."
596
  msgstr "Expire bientôt."
597
 
598
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
599
+ #: dashboard/publisher/adrotate-groups-edit.php:373
600
  msgid "Has expired."
601
  msgstr "A expiré."
602
 
603
+ #: adrotate.php:526
604
  #, fuzzy
605
  msgid "Media Management available in AdRotate Pro"
606
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
607
 
608
+ #: adrotate.php:528
609
  msgid ""
610
  "Upload images to the AdRotate Pro banners folder from here. This is "
611
  "especially useful if you use responsive adverts with multiple images."
612
  msgstr ""
613
 
614
+ #: adrotate.php:528
615
  #, fuzzy
616
  msgid "Media uploading and management is available in AdRotate Pro."
617
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
618
 
619
+ #: adrotate.php:530
620
  #, fuzzy
621
  msgid "Upload new banner image"
622
  msgstr "Image :"
623
 
624
+ #: adrotate.php:531
625
  #, fuzzy
626
  msgid "Accepted files are:"
627
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
628
 
629
+ #: adrotate.php:531
630
  msgid "Maximum size is 512Kb."
631
  msgstr ""
632
 
633
+ #: adrotate.php:531
634
  msgid "Important:"
635
  msgstr ""
636
 
637
+ #: adrotate.php:531
638
  msgid ""
639
  "Make sure your file has no spaces or special characters in the name. Replace "
640
  "spaces with a - or _."
641
  msgstr ""
642
 
643
+ #: adrotate.php:533
644
  #, fuzzy
645
  msgid ""
646
  "For responsive adverts make sure the filename is in the following format; "
651
  "complet d'images de tailles différentes est recommendé si vous avez un site "
652
  "fluide."
653
 
654
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
655
  msgid ""
656
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
657
  "filename instead of \".full\" for the various viewports."
660
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
661
  "tailles d'écran."
662
 
663
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
664
+ #: dashboard/publisher/adrotate-groups-edit.php:308
665
+ #: dashboard/publisher/adrotate-groups-edit.php:316
666
  msgid "Example:"
667
  msgstr "Exemple :"
668
 
669
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
670
  #, fuzzy
671
  msgid ""
672
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
675
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
676
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
677
 
678
+ #: adrotate.php:539
679
  msgid "Upload image"
680
  msgstr ""
681
 
682
+ #: adrotate.php:542
683
  msgid "Available banner images in"
684
  msgstr ""
685
 
686
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
687
  msgid "Name"
688
  msgstr "Nom"
689
 
690
+ #: adrotate.php:548
691
  #, fuzzy
692
  msgid "Actions"
693
  msgstr "Actions en vrac"
694
 
695
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
696
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
697
  #: dashboard/publisher/adrotate-ads-main-error.php:21
698
  #: dashboard/publisher/adrotate-ads-main.php:22
699
  msgid "Delete"
700
  msgstr "Effacer"
701
 
702
+ #: adrotate.php:561
703
  msgid ""
704
  "Make sure the banner images are not in use by adverts when you delete them!"
705
  msgstr ""
706
 
707
+ #: adrotate.php:561
708
  #, fuzzy
709
  msgid "Manage your banner folder from here with AdRotate Pro."
710
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
711
 
712
+ #: adrotate.php:605
713
  msgid "AdRotate Settings"
714
  msgstr "Paramètres de AdRotate"
715
 
716
+ #: adrotate.php:608
717
  msgid "Settings saved"
718
  msgstr "Paramètres sauvegardés"
719
 
720
+ #: adrotate.php:610
721
  msgid "Database optimized"
722
  msgstr "Base de données optimisée"
723
 
724
+ #: adrotate.php:612
725
  msgid "Database repaired"
726
  msgstr "Base de données réparée"
727
 
728
+ #: adrotate.php:614
729
  msgid "Ads evaluated and statuses have been corrected where required"
730
  msgstr ""
731
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
732
 
733
+ #: adrotate.php:616
734
  msgid "Empty database records removed"
735
  msgstr "Les registres vides de la base de données ont été supprimés"
736
 
737
+ #: adrotate.php:618
738
  msgid "Database can only be optimized or cleaned once every hour"
739
  msgstr ""
740
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
741
 
742
+ #: adrotate.php:626
743
  msgid "Access Rights"
744
  msgstr "Droits d'Accès"
745
 
746
+ #: adrotate.php:627
747
  msgid "Who has access to what?"
748
  msgstr "Qui a accès à quoi?"
749
 
750
+ #: adrotate.php:630
751
  msgid "Manage/Add/Edit adverts"
752
  msgstr "Gérer/Ajouter/Modifier les publicités"
753
 
754
+ #: adrotate.php:634
755
  msgid "Role to see and add/edit ads."
756
  msgstr "Rôle pour voir et gérer/modifier les publicités."
757
 
758
+ #: adrotate.php:638
759
  msgid "Delete/Reset adverts"
760
  msgstr "Supprimer/Mettre à zéro les publicités"
761
 
762
+ #: adrotate.php:642
763
  msgid "Role to delete ads and reset stats."
764
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
765
 
766
+ #: adrotate.php:646
767
  msgid "Manage/Add/Edit groups"
768
  msgstr "Gérer/Ajouter/Modifier les groupes"
769
 
770
+ #: adrotate.php:650
771
  msgid "Role to see and add/edit groups."
772
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
773
 
774
+ #: adrotate.php:654
775
  msgid "Delete groups"
776
  msgstr "Effacer les groups"
777
 
778
+ #: adrotate.php:658
779
  msgid "Role to delete groups."
780
  msgstr "Rôle pour supprimer les groupes."
781
 
782
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
783
+ #: adrotate.php:875
784
  msgid "Update Options"
785
  msgstr "Mettre à jour les options"
786
 
787
+ #: adrotate.php:690
788
  msgid "Statistics"
789
  msgstr "Statistiques"
790
 
791
+ #: adrotate.php:693
792
  msgid "Enable stats"
793
  msgstr "Statistiques activés"
794
 
795
+ #: adrotate.php:695
796
  msgid "Track clicks and impressions."
797
  msgstr "Suivi des clicks et des impressions."
798
 
799
+ #: adrotate.php:695
800
  #, fuzzy
801
  msgid "Disabling this also disables click and impression limits on schedules."
802
  msgstr ""
803
  "La désactivation de cette fonction désactive aussi la limitation des clics "
804
  "et des impressions sujet du calendrier, et désactive les délais."
805
 
806
+ #: adrotate.php:699
807
  msgid "Impressions timer"
808
  msgstr "Minuterie de impressions"
809
 
810
+ #: adrotate.php:701 adrotate.php:708
811
  msgid "Seconds."
812
  msgstr "Secondes."
813
 
814
+ #: adrotate.php:702
815
  msgid "Default: 60."
816
  msgstr ""
817
 
818
+ #: adrotate.php:702
819
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
820
  msgstr ""
821
 
822
+ #: adrotate.php:706
823
  msgid "Clicks timer"
824
  msgstr "Interval de clicks"
825
 
826
+ #: adrotate.php:709
827
  msgid "Default: 86400."
828
  msgstr ""
829
 
830
+ #: adrotate.php:709
831
  msgid ""
832
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
833
  msgstr ""
834
 
835
+ #: adrotate.php:714
836
  msgid "Bot filter"
837
  msgstr "Filtre de robots"
838
 
839
+ #: adrotate.php:717
840
  msgid "User-Agent Filter"
841
  msgstr "Filtrage par User-Agent"
842
 
843
+ #: adrotate.php:720
844
  msgid ""
845
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
846
  "prevent impressions and clicks counted on them."
848
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
849
  "impressions et le clics fait par les robots/crawlers/user-agents."
850
 
851
+ #: adrotate.php:721
852
  msgid ""
853
  "Keep in mind that this might give false positives. The word 'google' also "
854
  "matches 'googlebot', but not vice-versa. So be careful!"
856
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
857
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
858
 
859
+ #: adrotate.php:721
860
  msgid "Keep your list up-to-date"
861
  msgstr "Gardez votre liste à jour"
862
 
863
+ #: adrotate.php:722
864
  msgid ""
865
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
866
  "other characters are stripped out."
868
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
869
  "sont aussi permis. Tous les autres caractères seront supprimés. "
870
 
871
+ #: adrotate.php:723
872
  msgid ""
873
  "Additionally to the list specified here, empty User-Agents are blocked as "
874
  "well."
876
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
877
  "bloqués."
878
 
879
+ #: adrotate.php:723
880
  msgid "Learn more about"
881
  msgstr "En savoir plus sur"
882
 
883
+ #: adrotate.php:723
884
  msgid "user-agents"
885
  msgstr "user-agents"
886
 
887
+ #: adrotate.php:732
888
  msgid "Miscellaneous"
889
  msgstr "Divers"
890
 
891
+ #: adrotate.php:735
892
  msgid "Widget alignment"
893
  msgstr "Alignement du Widget"
894
 
895
+ #: adrotate.php:736
896
  msgid ""
897
  "Check this box if your widgets do not align in your themes sidebar. (Does "
898
  "not always help!)"
900
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
901
  "votre thème. Cette fonction peux ne pas régler le soucis!"
902
 
903
+ #: adrotate.php:739
904
  msgid "Widget padding"
905
  msgstr "Marge interne du Widget"
906
 
907
+ #: adrotate.php:740
908
  msgid ""
909
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
910
  "not always work!)"
912
  "Activez cette option pour supprimer la marge (espace vide) autour des "
913
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
914
 
915
+ #: adrotate.php:745 adrotate.php:756
916
  msgid "NOTICE:"
917
  msgstr ""
918
 
919
+ #: adrotate.php:746
920
  msgid ""
921
  "You have enabled W3 Total Caching support but not defined the security hash. "
922
  "You need to add the following line to your wp-config.php near the bottom or "
928
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
929
  "fonction \"late init\" doit être activée dans W3 Total Cache."
930
 
931
+ #: adrotate.php:750
932
  msgid "W3 Total Caching"
933
  msgstr "W3 Total Caching"
934
 
935
+ #: adrotate.php:751
936
  msgid "Check this box if you use W3 Total Caching on your site."
937
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
938
 
939
+ #: adrotate.php:757
940
  msgid ""
941
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
942
  "this function will not work. WP Super Cache has discontinued support for "
946
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
947
  "support pour le contenu dynamique."
948
 
949
+ #: adrotate.php:761
950
  msgid "WP Super Cache"
951
  msgstr "WP Super Cache"
952
 
953
+ #: adrotate.php:762
954
  msgid "Check this box if you use WP Super Cache on your site."
955
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
956
 
957
+ #: adrotate.php:767
958
  msgid ""
959
  "It may take a while for the ad to start rotating. The caching plugin needs "
960
  "to refresh the cache. This can take up to a week if not done manually."
964
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
965
  "pas fait manuellement."
966
 
967
+ #: adrotate.php:767
968
  msgid ""
969
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
970
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
973
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
974
  "PHP dans le code d'exclusion vous-même."
975
 
976
+ #: adrotate.php:771
977
  msgid "Javascript"
978
  msgstr ""
979
 
980
+ #: adrotate.php:774
981
  msgid "Load jQuery"
982
  msgstr "Utilisez jQuery"
983
 
984
+ #: adrotate.php:775
985
  msgid ""
986
  "jQuery is required for all Javascript features below. Enable this if your "
987
  "theme does not load jQuery already."
989
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
990
  "le si votre thème ne charge pas jQuery directement."
991
 
992
+ #: adrotate.php:778
993
  msgid "Load in footer?"
994
  msgstr "Chargement dans le pied de page?"
995
 
996
+ #: adrotate.php:779
997
  msgid ""
998
  "Enable if you want to load the above libraries in the footer. Your theme "
999
  "needs to call wp_footer() for this to work."
1001
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1002
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1003
 
1004
+ #: adrotate.php:787
1005
  msgid "Maintenance"
1006
  msgstr "Maintenance"
1007
 
1008
+ #: adrotate.php:788
1009
  msgid ""
1010
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1011
  "They only apply to your ads/groups and stats. Not to other settings or other "
1019
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1020
  "de données est lente ou ne réponds pas."
1021
 
1022
+ #: adrotate.php:803 adrotate.php:805
1023
  msgid "Optimize Database"
1024
  msgstr "Optimiser la base de données"
1025
 
1026
+ #: adrotate.php:805
1027
  msgid "You are about to optimize the AdRotate database."
1028
  msgstr "Vous allez optimiser la base de données de Adrotate."
1029
 
1030
+ #: adrotate.php:805
1031
  msgid "Did you make a backup of your database?"
1032
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1033
 
1034
+ #: adrotate.php:805
1035
  msgid ""
1036
  "This may take a moment and may cause your website to respond slow "
1037
  "temporarily!"
1039
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1040
  "temporaire!"
1041
 
1042
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1043
  #: dashboard/publisher/adrotate-groups-main.php:24
1044
  msgid "OK to continue, CANCEL to stop."
1045
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1046
 
1047
+ #: adrotate.php:806
1048
  msgid "Cleans up overhead data in the AdRotate tables."
1049
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1050
 
1051
+ #: adrotate.php:807
1052
  msgid ""
1053
  "Overhead data is accumulated garbage resulting from many changes you've "
1054
  "made. This can vary from nothing to hundreds of KiB of data."
1057
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1058
  "KB de données."
1059
 
1060
+ #: adrotate.php:811 adrotate.php:813
1061
  msgid "Clean-up Database"
1062
  msgstr "Nettoyer la base de données"
1063
 
1064
+ #: adrotate.php:813
1065
  msgid ""
1066
  "You are about to clean up your database. This may delete expired schedules "
1067
  "and older statistics."
1069
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1070
  "supprimer des calendriers périmés et des vieilles statistiques.."
1071
 
1072
+ #: adrotate.php:813
1073
  msgid "Are you sure you want to continue?"
1074
  msgstr "Etes-vous certains de vouloir continuer?"
1075
 
1076
+ #: adrotate.php:813 adrotate.php:821
1077
  msgid "This might take a while and may slow down your site during this action!"
1078
  msgstr ""
1079
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1080
  "interval!"
1081
 
1082
+ #: adrotate.php:814
1083
  msgid "Delete stats older than 356 days (Optional)."
1084
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1085
 
1086
+ #: adrotate.php:815
1087
  msgid ""
1088
  "AdRotate creates empty records when you start making ads or groups. In rare "
1089
  "occasions these records are faulty."
1091
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1092
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1093
 
1094
+ #: adrotate.php:815
1095
  msgid ""
1096
  "If you made an ad or group that does not save when you make it use this "
1097
  "button to delete those empty records."
1100
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1101
  "registres vides."
1102
 
1103
+ #: adrotate.php:815
1104
  msgid ""
1105
  "Additionally you can clean up old statistics. This will improve the speed of "
1106
  "your site."
1108
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1109
  "d'améliorer la vitesse de votre site."
1110
 
1111
+ #: adrotate.php:819
1112
  msgid "Re-evaluate Ads"
1113
  msgstr "Re-évaluer les publicités"
1114
 
1115
+ #: adrotate.php:821
1116
  msgid "Re-evaluate all ads"
1117
  msgstr "Re-évaluer toutes les publicités"
1118
 
1119
+ #: adrotate.php:821
1120
  msgid "You are about to check all ads for errors."
1121
  msgstr "Vous allez véifier l'état de toutes les publicités."
1122
 
1123
+ #: adrotate.php:822
1124
  msgid ""
1125
  "This will apply all evaluation rules to all ads to see if any error slipped "
1126
  "in. Normally you should not need this feature."
1129
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1130
  "fonctionalité."
1131
 
1132
+ #: adrotate.php:826
1133
  msgid ""
1134
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1135
  "becomes unusable in any way or by any means in whichever way I will not take "
1146
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1147
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1148
 
1149
+ #: adrotate.php:834
1150
  msgid "Troubleshooting"
1151
  msgstr "Diagnostic de dépannage"
1152
 
1153
+ #: adrotate.php:837
1154
  msgid "Current version:"
1155
  msgstr "Version actuelle :"
1156
 
1157
+ #: adrotate.php:838
1158
  msgid "Previous version:"
1159
  msgstr "Version antérieure :"
1160
 
1161
+ #: adrotate.php:841
1162
  msgid "Current database version:"
1163
  msgstr "Version actuelle de la base de données :"
1164
 
1165
+ #: adrotate.php:842
1166
  msgid "Previous database version:"
1167
  msgstr "Version antérieure de la base de données :"
1168
 
1169
+ #: adrotate.php:845
1170
  msgid "Ad evaluation next run:"
1171
  msgstr ""
1172
 
1173
+ #: adrotate.php:846 adrotate.php:850
1174
  msgid "Not scheduled!"
1175
  msgstr "Pas planifié!"
1176
 
1177
+ #: adrotate.php:849
1178
  msgid "Clean Trackerdata next run:"
1179
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
1180
 
1181
+ #: adrotate.php:853
1182
  msgid "Current status of adverts"
1183
  msgstr "Etat actuel des publicités"
1184
 
1185
+ #: adrotate.php:854
1186
  msgid "Normal"
1187
  msgstr "Normal"
1188
 
1189
+ #: adrotate.php:854
1190
  msgid "Error"
1191
  msgstr "Erreur"
1192
 
1193
+ #: adrotate.php:854
1194
  msgid "Expired"
1195
  msgstr "Expiré"
1196
 
1197
+ #: adrotate.php:854
1198
  msgid "Expires Soon"
1199
  msgstr "Expire bientôt"
1200
 
1201
+ #: adrotate.php:854
1202
  msgid "Unknown Status"
1203
  msgstr "Statut Inconnu"
1204
 
1205
+ #: adrotate.php:857
1206
  msgid ""
1207
  "NOTE: The below options are not meant for normal use and are only there for "
1208
  "developers to review saved settings or how ads are selected. These can be "
1215
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1216
  "une utilisation normale, ils ne doivent pas être activés!"
1217
 
1218
+ #: adrotate.php:861
1219
  msgid "Developer Debug"
1220
  msgstr "Debuggage de développeur"
1221
 
1222
+ #: adrotate.php:863
1223
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1224
  msgstr ""
1225
  "Dépannage des publicités. Si cette option est activée, les données seront "
1226
  "placées sur le site."
1227
 
1228
+ #: adrotate.php:864
1229
  msgid "Show all settings, dashboard routines and related values."
1230
  msgstr ""
1231
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1232
  "connexes."
1233
 
1234
+ #: adrotate.php:865
1235
  msgid "Show array of all userroles and capabilities."
1236
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1237
 
1238
+ #: adrotate.php:866
1239
  msgid "Review saved advertisers! Visible to advertisers."
1240
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1241
 
1242
+ #: adrotate.php:867
1243
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1244
  msgstr ""
1245
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1246
  "Visible uniquement aux annonceurs."
1247
 
1248
+ #: adrotate.php:868
1249
  msgid ""
1250
  "Disable timers for clicks and impressions and enable a alert window for "
1251
  "clicktracking."
1253
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1254
  "fenêtre d'alerte pour le suivi des clicks."
1255
 
1256
+ #: adrotate.php:869
1257
  msgid "Temporarily disable encryption on the redirect url."
1258
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1259
 
1505
  msgstr "Le code de la publicité ne peut être vide!"
1506
 
1507
  #: dashboard/publisher/adrotate-ads-edit.php:49
1508
+ msgid "You did not use %image% in your AdCode but did select an image!"
1509
  msgstr ""
 
 
1510
 
1511
  #: dashboard/publisher/adrotate-ads-edit.php:52
1512
  msgid "You did use %image% in your AdCode but did not select an image!"
1524
  "publicité!"
1525
 
1526
  #: dashboard/publisher/adrotate-ads-edit.php:58
1527
+ msgid ""
1528
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1529
+ "ineffective."
1530
+ msgstr ""
1531
+
1532
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1533
+ msgid ""
1534
+ "Your chosen banner image does not have the right name. Check the responsive "
1535
+ "description and try again."
1536
+ msgstr ""
1537
+
1538
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1539
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1540
  msgstr ""
1541
 
1542
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1543
  msgid ""
1544
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1545
  "the ad!"
1547
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1548
  "essayez d'enregistrer votre publicité à nouveau!"
1549
 
1550
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1551
  msgid "This ad is expired and currently not shown on your website!"
1552
  msgstr ""
1553
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1554
 
1555
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1556
  msgid "The ad will expire in less than 2 days!"
1557
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1558
 
1559
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1560
  msgid "This ad will expire in less than 7 days!"
1561
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1562
 
1563
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1564
  msgid "This ad has been disabled and does not rotate on your site!"
1565
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1566
 
1567
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1568
  msgid "New Advert"
1569
  msgstr "Nouvelle pub"
1570
 
1571
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1572
  msgid "Edit Advert"
1573
  msgstr "Modifier la pub"
1574
 
1575
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
1576
  msgid "Title:"
1577
  msgstr "Titre :"
1578
 
1579
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1580
  msgid "AdCode:"
1581
  msgstr "Code :"
1582
 
1583
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1584
+ msgid "Basic Examples:"
1585
+ msgstr "Exemples de base :"
1586
+
1587
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1588
+ msgid "Useful tags:"
1589
+ msgstr ""
1590
+
1591
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1592
+ msgid "Insert the advert ID Number."
1593
+ msgstr ""
1594
+
1595
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1596
+ msgid "Insert the %image% tag. Required when selecting a image below."
1597
+ msgstr ""
1598
+
1599
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1600
+ msgid "Insert the advert name."
1601
+ msgstr ""
1602
+
1603
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1604
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1605
+ msgstr ""
1606
+
1607
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1608
+ msgid "Add inside the <a> tag to open advert in a new window."
1609
+ msgstr ""
1610
+
1611
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1612
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1613
+ msgstr ""
1614
+
1615
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1616
  msgid ""
1617
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1618
+ "click to add it."
1619
  msgstr ""
1620
 
1621
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1622
+ msgid "Banner image:"
1623
+ msgstr "Image :"
1624
+
1625
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1626
+ msgid "WordPress media:"
1627
  msgstr ""
1628
 
1629
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1630
+ msgid "Select Banner"
1631
+ msgstr "Choisir l'image"
1632
 
1633
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1634
+ msgid "- OR -"
1635
+ msgstr "- OU -"
 
1636
 
1637
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1638
+ msgid "Banner folder:"
1639
+ msgstr "Dossier de bannières :"
1640
+
1641
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1642
+ msgid "No image selected"
1643
+ msgstr "Aucune image sélectionnée"
1644
+
1645
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1646
+ msgid "Use %image% in the code. Accepted files are:"
1647
+ msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
1648
+
1649
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1650
  msgid ""
1651
+ "Use either the text field or the dropdown. If the textfield has content that "
1652
+ "field has priority."
1653
  msgstr ""
1654
+ "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1655
+ "valeur, ce champ a la priorité."
1656
 
1657
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1658
+ msgid "Clicktracking:"
1659
+ msgstr "Clicktracking :"
1660
+
1661
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1662
+ msgid "Enable click tracking for this advert."
1663
+ msgstr "Activer le suivi des clicks pour cette publicité."
1664
+
1665
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1666
+ msgid ""
1667
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1668
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1669
+ "supported."
1670
+ msgstr ""
1671
+
1672
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1673
  msgid "Activate:"
1674
  msgstr "Activer"
1675
 
1676
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1677
  msgid "Yes, this ad will be used"
1678
  msgstr "Oui, cette publicité sera utilisée"
1679
 
1680
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1681
  msgid "No, do not show this ad anywhere"
1682
  msgstr "Non, cette publicité ne sera pas utilisée"
1683
 
1684
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1685
  #: dashboard/publisher/adrotate-ads-main.php:108
1686
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1687
  #: dashboard/publisher/adrotate-groups-main.php:87
1688
  msgid "Get more features with AdRotate Pro."
1689
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1690
 
1691
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1692
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1693
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1694
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1695
  msgid "Save Advert"
1696
  msgstr "Sauvegarder la pub"
1697
 
1698
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1699
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1700
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1701
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1702
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1703
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1704
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1705
  msgid "Cancel"
1706
  msgstr "Annuller"
1707
 
1708
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1709
  msgid "Preview"
1710
  msgstr "En avant-première"
1711
 
1712
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1713
  msgid ""
1714
  "Note: While this preview is an accurate one, it might look different then it "
1715
  "does on the website."
1717
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1718
  "différente sur le site."
1719
 
1720
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1721
  msgid ""
1722
  "This is because of CSS differences. Your themes CSS file is not active here!"
1723
  msgstr ""
1724
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1725
  "pas actif ici!"
1726
 
1727
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1728
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1729
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1730
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1731
  msgid "Usage"
1732
  msgstr "Usage"
1733
 
1734
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1735
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1736
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1737
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1738
+ msgid "Widget:"
1739
+ msgstr ""
1740
+
1741
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1742
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1743
  msgid ""
1744
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1745
+ "and enter ID"
1746
  msgstr ""
 
 
1747
 
1748
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1749
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1750
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1751
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1752
  msgid "In a post or page:"
1753
  msgstr "Dans un article ou une page :"
1754
 
1755
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1756
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1757
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1758
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1759
  msgid "Directly in a theme:"
1760
  msgstr "Directement dans un thème :"
1761
 
1762
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1763
+ msgid "Schedule your advert"
1764
+ msgstr ""
 
1765
 
1766
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1767
+ msgid "Start date (day/month/year):"
1768
+ msgstr "Date de début (jour/mois/année) :"
1769
 
1770
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1771
+ msgid "End date (day/month/year):"
1772
+ msgstr "Date de fin (jour/mois/année) :"
1773
 
1774
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1775
+ msgid "Start time (hh:mm):"
1776
+ msgstr "Début (hh:mm) :"
1777
+
1778
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1779
+ msgid "End time (hh:mm):"
1780
+ msgstr "Fin (hh:mm) :"
1781
+
1782
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1783
+ msgid "Maximum Clicks:"
1784
+ msgstr "Nombre de clicks max :"
1785
 
1786
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1787
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1788
+ msgid "Leave empty or 0 to skip this."
1789
+ msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1790
+
1791
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1792
+ msgid "Maximum Impressions:"
1793
+ msgstr "Nombre max de vues :"
1794
+
1795
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1796
  msgid ""
1797
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1798
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1799
+ "hours. 6AM is 6:00 hours."
1800
  msgstr ""
1801
+ "L'horaire utilise la mesure normalle de 24 heures. Quand vous êtes habitués "
1802
+ "au système de AM/PM, gardez cela en tête : si l'heure de début ou de fin est "
1803
+ "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
1804
+ "6:00). "
1805
 
1806
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1807
+ msgid ""
1808
+ "The maximum clicks and impressions are measured over the set schedule only. "
1809
+ "Every schedule can have it's own limit!"
1810
  msgstr ""
1811
+ "Le nombre maximum de clics et d'impressions est mesuré pour le calendrier en "
1812
+ "question uniquement. Tous les calendriers peuvent avoir leurs propres "
1813
+ "limites!"
1814
 
1815
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1816
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
1817
+ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1818
 
1819
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1820
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1821
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1822
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1823
+ msgid "Upgrade today"
1824
+ msgstr "Mettre à jour aujourd'hui"
1825
+
1826
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1827
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1828
+ msgid "Advanced"
1829
+ msgstr "Avancé"
1830
+
1831
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1832
+ msgid "Everything below is optional."
1833
+ msgstr "Tous les paramètres ci-dessous sont optionels."
1834
 
1835
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1836
  msgid "Responsive:"
1837
  msgstr "Responsive :"
1838
 
1839
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1840
  msgid "Enable responsive support for this advert."
1841
  msgstr "Activer le support réactif pour cette publicité."
1842
 
1843
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1844
  msgid ""
1845
  "Upload your images to the banner folder and make sure the filename is in the "
1846
  "following format; \"imagename.full.ext\". A full set of sized images is "
1851
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1852
  "fluide."
1853
 
1854
+ #: dashboard/publisher/adrotate-ads-edit.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1855
  #, fuzzy
1856
  msgid "Weight:"
1857
  msgstr "Importance"
1858
 
1859
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1860
  #, fuzzy
1861
  msgid "AdRotate Pro only"
1862
  msgstr "AdRotate Pro"
1863
 
1864
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1865
  msgid "Barely visible"
1866
  msgstr ""
1867
 
1868
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1869
  msgid "Less than average"
1870
  msgstr ""
1871
 
1872
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1873
  msgid "Normal coverage"
1874
  msgstr ""
1875
 
1876
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1877
  msgid "More than average"
1878
  msgstr ""
1879
 
1880
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1881
  msgid "Best visibility"
1882
  msgstr ""
1883
 
1884
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1885
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1886
  msgid "Sortorder:"
1887
  msgstr "Ordre de tri :"
1888
 
1889
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1890
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1891
  msgid "For administrative purposes set a sortorder."
1892
  msgstr "Pour des raisons administratives définir un ordre de tri."
1893
 
1894
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1895
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1896
  msgstr ""
1897
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1898
  "de l'ID de la publicité."
1899
 
1900
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1901
  msgid ""
1902
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1903
+ "exposure."
1904
  msgstr ""
 
 
 
 
 
 
 
 
 
1905
 
1906
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1907
+ msgid "Geo Targeting in AdRotate Pro"
1908
+ msgstr ""
 
1909
 
1910
+ #: dashboard/publisher/adrotate-ads-edit.php:335
1911
  msgid ""
1912
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1913
  msgstr ""
1914
 
1915
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1916
  msgid "Cities/States:"
1917
  msgstr ""
1918
 
1919
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1920
+ msgid ""
1921
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1922
+ "states ISO codes are supported)"
 
 
 
 
1923
  msgstr ""
1924
 
1925
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1926
  msgid ""
1927
  "AdRotate does not check the validity of names so make sure you spell them "
1928
  "correctly!"
1929
  msgstr ""
1930
 
1931
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1932
  msgid "Countries:"
1933
  msgstr ""
1934
 
1935
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1936
  #, fuzzy
1937
  msgid "Select the countries you want the adverts to show in."
1938
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1939
 
1940
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1941
  msgid "Cities take priority and will be filtered first."
1942
  msgstr ""
1943
 
1944
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1945
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1946
  msgstr ""
1947
 
1948
+ #: dashboard/publisher/adrotate-ads-edit.php:400
1949
  msgid "Select Groups"
1950
  msgstr "Choisir groupes"
1951
 
1952
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
1953
  msgid "ID - Name"
1954
  msgstr "ID - Nom"
1955
 
1956
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1957
  msgid "Ads in group"
1958
  msgstr "Pubs dans le groupe"
1959
 
1960
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1961
  #: dashboard/publisher/adrotate-groups-main.php:58
1962
  msgid "Default"
1963
  msgstr "Par défaut"
1964
 
1965
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1966
  #: dashboard/publisher/adrotate-groups-main.php:59
1967
  msgid "Dynamic"
1968
  msgstr "Dynamique"
1969
 
1970
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1971
  #: dashboard/publisher/adrotate-groups-main.php:59
1972
  msgid "second rotation"
1973
  msgstr "deuxième rotation"
1974
 
1975
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1976
  #: dashboard/publisher/adrotate-groups-main.php:60
1977
  msgid "Block"
1978
  msgstr "Bloc"
1979
 
1980
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1981
  #: dashboard/publisher/adrotate-groups-main.php:60
1982
  msgid "grid"
1983
  msgstr "grille"
1984
 
1985
+ #: dashboard/publisher/adrotate-ads-edit.php:418
1986
+ #: dashboard/publisher/adrotate-groups-edit.php:192
1987
  #: dashboard/publisher/adrotate-groups-main.php:61
1988
  msgid "Post Injection"
1989
  msgstr "Injection dans l'article"
1990
 
1991
+ #: dashboard/publisher/adrotate-ads-edit.php:419
1992
  #: dashboard/publisher/adrotate-groups-main.php:62
1993
  msgid "Geolocation"
1994
  msgstr "Géolocalisation"
1995
 
1996
+ #: dashboard/publisher/adrotate-ads-edit.php:425
1997
+ #: dashboard/publisher/adrotate-groups-edit.php:61
1998
  #: dashboard/publisher/adrotate-groups-main.php:69
1999
  msgid "Mode"
2000
  msgstr "Mode"
2025
  msgid "Title"
2026
  msgstr "Titre"
2027
 
2028
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2029
+ #: dashboard/publisher/adrotate-ads-report.php:34
2030
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2031
+ #: dashboard/publisher/adrotate-groups-main.php:35
2032
+ #: dashboard/publisher/adrotate-groups-report.php:40
2033
+ msgid "Impressions"
2034
+ msgstr "Vues"
2035
+
2036
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2037
+ #: dashboard/publisher/adrotate-ads-main.php:45
2038
+ #: dashboard/publisher/adrotate-ads-report.php:35
2039
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2040
+ #: dashboard/publisher/adrotate-groups-main.php:37
2041
+ #: dashboard/publisher/adrotate-groups-report.php:41
2042
+ msgid "Clicks"
2043
+ msgstr "Clicks"
2044
+
2045
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2046
  #: dashboard/publisher/adrotate-ads-main.php:47
2047
  #: dashboard/publisher/adrotate-ads-report.php:38
2103
  msgstr "Pour 7 jours"
2104
 
2105
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2106
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2107
  msgid "Configuration errors."
2108
  msgstr "Erreurs de configuration."
2109
 
2116
  msgstr ""
2117
 
2118
  #: dashboard/publisher/adrotate-ads-main.php:42
2119
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2120
  msgid "Weight"
2121
  msgstr "Importance"
2122
 
2181
  msgid "Edit Group"
2182
  msgstr "Modifier Groupe"
2183
 
2184
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2185
  msgid "Name:"
2186
  msgstr "Nom :"
2187
 
2188
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2189
  msgid "Default - Show one ad at a time"
2190
  msgstr "Par defaut - Montrer une pub "
2191
 
2192
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2193
  msgid "Dynamic Mode - Show a different ad every few seconds"
2194
  msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
2195
 
2196
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2197
  msgid "Block Mode - Show a block of ads"
2198
  msgstr "Mode en Bloc - Montrer un bloc de pubs"
2199
 
2200
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2201
  #, fuzzy
2202
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2203
  msgstr ""
2204
  "En mode Dynamique, jQuery et jQuery Groups doivent être chargés. Vous pouvez "
2205
  "activer cette options dans les réglages de AdRotate."
2206
 
2207
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2208
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2209
  msgid "Dynamic and Block Mode"
2210
  msgstr "Mode Dynamique et en Bloc"
2211
 
2212
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2213
  msgid "Only required if your group is in Dynamic or Block mode."
2214
  msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
2215
 
2216
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2217
+ msgid "Block size"
2218
+ msgstr ""
2219
 
2220
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2221
  msgid "rows"
2222
  msgstr "lignes"
2223
 
2224
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2225
  msgid "columns"
2226
  msgstr "colonnes"
2227
 
2228
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2229
  msgid "Block Mode"
2230
  msgstr "Mode en Bloc"
2231
 
2232
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2233
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
2234
  msgstr ""
 
 
2235
 
2236
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2237
+ msgid "Advert size"
2238
+ msgstr ""
2239
 
2240
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2241
  msgid "pixel(s) wide"
2242
  msgstr "largeur en pixels"
2243
 
2244
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2245
  msgid "pixel(s) high."
2246
  msgstr "hauteur en pixels"
2247
 
2248
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2249
  msgid ""
2250
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2251
  "recommended). Default: 125/125."
2252
  msgstr ""
2253
 
2254
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2255
  msgid "Automated refresh"
2256
  msgstr "Rafraîchissement automatique"
2257
 
2258
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2259
  msgid "seconds."
2260
  msgstr "secondes."
2261
 
2262
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2263
  msgid "Dynamic Mode"
2264
  msgstr "Mode dynamique"
2265
 
2266
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2267
  msgid ""
2268
  "Load a new advert in this interval without reloading the page. Default: 6."
2269
  msgstr ""
2270
  "Chargez une nouvelle publicité sans recharger le page après cette "
2271
  "intervalle. La valeur par défaut est : 6."
2272
 
2273
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2274
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2275
+ msgid ""
2276
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2277
+ "\" and enter ID"
2278
+ msgstr ""
2279
+
2280
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2281
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2282
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2283
  msgid "Save Group"
2284
  msgstr "Sauvegarder groupe"
2285
 
2286
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2287
  msgid "Advert Margin"
2288
  msgstr "Marges autour de la pub"
2289
 
2290
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2291
  msgid "pixel(s)"
2292
  msgstr "pixel(s)"
2293
 
2294
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2295
  msgid "A transparent area outside the advert in pixels. Default: 0."
2296
  msgstr ""
2297
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
2298
  "défaut : 0."
2299
 
2300
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2301
  msgid "Set to 0 to disable."
2302
  msgstr "Mettre 0 pour désactiver."
2303
 
2304
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2305
+ msgid "Margins are automatically disabled for blocks where required."
2306
+ msgstr ""
2307
+
2308
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2309
  msgid "Align the group"
2310
  msgstr ""
2311
 
2312
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2313
  msgid "None (Default)"
2314
  msgstr ""
2315
 
2316
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2317
  msgid "Left"
2318
  msgstr ""
2319
 
2320
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2321
  msgid "Right"
2322
  msgstr ""
2323
 
2324
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2325
  msgid "Center"
2326
  msgstr ""
2327
 
2328
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2329
  msgid ""
2330
  "Align the group in your post or page. Using 'center' may affect your margin "
2331
  "setting. Not every theme supports this feature."
2332
  msgstr ""
2333
 
2334
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2335
  msgid "Leave empty or 0 to skip this. Will default to group id."
2336
  msgstr ""
2337
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2338
  "défaut de l'identifiant du groupe."
2339
 
2340
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2341
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2342
  msgstr ""
2343
  "Mettre en place un groupe de secours, et utiliser la localisation "
2344
  "géographique dans AdRotate Pro"
2345
 
2346
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2347
  msgid "Include ads in categories?"
2348
  msgstr "Intégrer les publicités dans les catégories?"
2349
 
2350
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2351
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2352
  msgid "Disabled"
2353
  msgstr "Désactivé"
2354
 
2355
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2356
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2357
  msgid "Before content"
2358
  msgstr "Avant le contenu"
2359
 
2360
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2362
  msgid "After content"
2363
  msgstr "Après le contenu"
2364
 
2365
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2366
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2367
  msgid "Before and after content"
2368
  msgstr "Avant et après le contenu"
2369
 
2370
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2371
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2372
  msgid "After..."
2373
  msgstr "Après..."
2374
 
2375
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2376
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2377
  msgid "the first paragraph"
2378
  msgstr "le premier parapgraphe"
2379
 
2380
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2381
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2382
  msgid "the 2nd paragraph"
2383
  msgstr "le second paragraphe"
2384
 
2385
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2386
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2387
  msgid "the 3rd paragraph"
2388
  msgstr "le troisième paragraphe"
2389
 
2390
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2391
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2392
  msgid "the 4th paragraph"
2393
  msgstr "le quatrième paragraphe"
2394
 
2395
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2396
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2397
  msgid "every 2nd paragraph"
2398
  msgstr "chaque second paragraphe"
2399
 
2400
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2401
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2402
  msgid "every 3rd paragraph"
2403
  msgstr "chaque 3ème paragraphe"
2404
 
2405
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2406
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2407
  msgid "every 4th paragraph"
2408
  msgstr "chaque 4ème paragraphe"
2409
 
2410
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2411
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2412
  msgid "every 5th paragraph"
2413
  msgstr "chaque 5ème paragraphe"
2414
 
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2416
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2417
  msgid "every 6th paragraph"
2418
  msgstr "chaque 6ème paragraphe"
2419
 
2420
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2421
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2422
  msgid "every 7th paragraph"
2423
  msgstr "chaque 7ème paragraphe"
2424
 
2425
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2426
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2427
  msgid "every 8th paragraph"
2428
  msgstr "chaque 8ème paragraphe"
2429
 
2430
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2431
  msgid "Which categories?"
2432
  msgstr "Quelles catégories?"
2433
 
2434
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2435
  msgid "Click the categories posts you want the adverts to show in."
2436
  msgstr ""
2437
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2438
  "pulicités."
2439
 
2440
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2441
  msgid "Include ads in pages?"
2442
  msgstr "Intégrer les publicités dans les pages?"
2443
 
2444
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2445
  msgid "Which pages?"
2446
  msgstr "Quelles pages?"
2447
 
2448
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2449
  msgid "Click the pages you want the adverts to show in."
2450
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2451
 
2452
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2453
  msgid "Wrapper code"
2454
  msgstr "Code enveloppant"
2455
 
2456
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2457
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2458
+ msgstr ""
2459
 
2460
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2461
  msgid "Before ad"
2462
  msgstr "Avant la pub"
2463
 
2464
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2465
+ msgid "Options:"
2466
+ msgstr "Options :"
2467
 
2468
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2469
  msgid "After ad"
2470
  msgstr "Après la pub"
2471
 
2472
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2473
  msgid "Select Ads"
2474
  msgstr "Choisir les pubs"
2475
 
2476
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2477
  msgid "Visible until"
2478
  msgstr "Visible jusqu'à"
2479
 
2480
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2481
  msgid "No ads created!"
2482
  msgstr "Aucune pub créée!"
2483
 
2509
  msgid "Statistics for group"
2510
  msgstr "Statistiques pour le groupe"
2511
 
2512
+ #, fuzzy
2513
+ #~ msgid "Usage:"
2514
+ #~ msgstr "Usage"
2515
+
2516
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2517
+ #~ msgstr ""
2518
+ #~ "Vous n'avez pas utilisé %image% dans votre code, mais vous avez "
2519
+ #~ "selectionné une image!"
2520
+
2521
+ #~ msgid "These are required."
2522
+ #~ msgstr "Ces données sont requises."
2523
+
2524
+ #~ msgid ""
2525
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2526
+ #~ "AdCode."
2527
+ #~ msgstr ""
2528
+ #~ "Placez votre curseur à l'emplacement où vous voulez ajouter une balise et "
2529
+ #~ "cliquer pour l'ajouter à votre AdCode."
2530
+
2531
+ #~ msgid ""
2532
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2533
+ #~ "where you want the advert to show up."
2534
+ #~ msgstr ""
2535
+ #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
2536
+ #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
2537
+
2538
+ #~ msgid ""
2539
+ #~ "Note: Clicktracking does generally not work for Javascript adverts such "
2540
+ #~ "as those provided by Google AdSense."
2541
+ #~ msgstr ""
2542
+ #~ "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
2543
+ #~ "publicités en Javascript telles que celles fournies par Google AdSense."
2544
+
2545
+ #~ msgid "Target URL:"
2546
+ #~ msgstr "URL Cible :"
2547
+
2548
+ #~ msgid ""
2549
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2550
+ #~ "advert for different viewports. Requires jQuery."
2551
+ #~ msgstr ""
2552
+ #~ "image.full.jpg, image.320.jpg et image.768.jpg serviront la même "
2553
+ #~ "publicité pour différentes tailles d'écran si le site est fluide. "
2554
+ #~ "Nécessite jQuery."
2555
+
2556
+ #~ msgid "Media:"
2557
+ #~ msgstr "Médias :"
2558
+
2559
+ #~ msgid ""
2560
+ #~ "With AdRotate Pro you can also set a weight to give adverts more or less "
2561
+ #~ "attention."
2562
+ #~ msgstr ""
2563
+ #~ "Avec AdRotate Pro, vous pouvez aussi mettre un poids pour donner à vos "
2564
+ #~ "publicités plus ou moins d'importance."
2565
+
2566
+ #, fuzzy
2567
+ #~ msgid "Geo Location in AdRotate Pro"
2568
+ #~ msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
2569
+
2570
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2571
+ #~ msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
2572
+
2573
+ #~ msgid "Schedule"
2574
+ #~ msgstr "Planning"
2575
+
2576
+ #~ msgid "From when to when is the advert visible?"
2577
+ #~ msgstr ""
2578
+ #~ "Quel est l'interval de dates pendant lequel la publicité est visible?"
2579
+
2580
+ #, fuzzy
2581
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2582
+ #~ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2583
+
2584
+ #, fuzzy
2585
+ #~ msgid "impressions per day"
2586
+ #~ msgstr "Vues aujourd'hui"
2587
+
2588
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2589
+ #~ msgstr ""
2590
+ #~ "Choisir le groupe auquel cette publicité va être rattachée (optionel)"
2591
+
2592
+ #~ msgid "Block shape and border"
2593
+ #~ msgstr "Dimensions et bordure du bloc"
2594
+
2595
+ #~ msgid ""
2596
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2597
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2598
+ #~ msgstr ""
2599
+ #~ "Créer une grille pour vos publicités. Choisissez 3 et 2 créera une grille "
2600
+ #~ "avec 2 colonnes montrant un maximum de 6 publicités. Valeur par défaut : "
2601
+ #~ "2x2."
2602
+
2603
+ #~ msgid "Advert Width and Height"
2604
+ #~ msgstr "Dimensions des publicités"
2605
+
2606
+ #~ msgid "Insert ads to the begin or end of a post/page."
2607
+ #~ msgstr "Insérer des publicités au début ou à la fin de l'article/page."
2608
+
2609
+ #~ msgid "Wraps around each ad."
2610
+ #~ msgstr "Code qui enveloppe chaque publicité."
2611
+
2612
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2613
+ #~ msgstr "HTML/Javascript est authorisé, utiliser avec précaution!"
2614
+
2615
  #~ msgid "Block of Ads (Obsolete)"
2616
  #~ msgstr "Bloc de publicité (obsolète)"
2617
 
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -16,19 +16,19 @@ msgstr ""
16
  "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:807
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
- #: adrotate-functions.php:810
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
- #: adrotate-output.php:747
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
- #: adrotate-output.php:748
32
  #, fuzzy
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
@@ -38,28 +38,28 @@ msgstr ""
38
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
39
  "さい。英語ですが。"
40
 
41
- #: adrotate-output.php:749
42
  #, fuzzy
43
  msgid ""
44
  "If you have received the url you want to visit via email, you are being "
45
  "tricked!"
46
  msgstr "このウィジェットに使いたい物を選んで下さい。"
47
 
48
- #: adrotate-output.php:750
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
- #: adrotate-output.php:768
56
  #, fuzzy
57
  msgid ""
58
  "Error, Ad is not available at this time due to schedule/geolocation "
59
  "restrictions or does not exist!"
60
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
61
 
62
- #: adrotate-output.php:770
63
  #, fuzzy
64
  msgid ""
65
  "Error, Ad is not available at this time due to schedule/geolocation "
@@ -68,30 +68,30 @@ msgstr ""
68
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
69
  "を再度保存してください!"
70
 
71
- #: adrotate-output.php:777 adrotate-output.php:779
72
  msgid ""
73
  "Either there are no banners, they are disabled or none qualified for this "
74
  "location!"
75
  msgstr "バナーがないか、利用不可か適応されていません。"
76
 
77
- #: adrotate-output.php:785
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
- #: adrotate-output.php:791
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
- #: adrotate-output.php:796
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
- #: adrotate-output.php:802
95
  msgid ""
96
  "There was an error locating the database tables for AdRotate. Please "
97
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -99,164 +99,164 @@ msgstr ""
99
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
100
  "して、再登録して下さい。"
101
 
102
- #: adrotate-output.php:802
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
- #: adrotate-output.php:808
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
- #: adrotate-output.php:834
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
- #: adrotate-output.php:834
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
- #: adrotate-output.php:836
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
- #: adrotate-output.php:836
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
- #: adrotate-output.php:838
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
- #: adrotate-output.php:838
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
- #: adrotate-output.php:840
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
- #: adrotate-output.php:840
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
- #: adrotate-output.php:840
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
- #: adrotate-output.php:840
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
- #: adrotate-output.php:853
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
- #: adrotate-output.php:855
158
  msgid ""
159
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
160
  "to the <strong>PRO</strong> version"
161
  msgstr ""
162
 
163
- #: adrotate-output.php:856
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
- #: adrotate-output.php:856
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
- #: adrotate-output.php:896
173
  msgid ""
174
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
175
- "Pro is in this menu. Check out the"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:896
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
- #: adrotate-output.php:896 adrotate-output.php:973
183
- #: dashboard/publisher/adrotate-ads-edit.php:229
184
  msgid "and"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:896
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
- #: adrotate-output.php:932
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
- #: adrotate-output.php:933
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
- #: adrotate-output.php:935
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
- #: adrotate-output.php:936
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
- #: adrotate-output.php:937
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
- #: adrotate-output.php:938
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
- #: adrotate-output.php:939
224
  msgid "WordPress.org Forum"
225
  msgstr ""
226
 
227
- #: adrotate-output.php:965
228
  #, fuzzy
229
  msgid "Help AdRotate Grow"
230
  msgstr "AdRotate Blog"
231
 
232
- #: adrotate-output.php:966
233
  msgid "Brought to you by"
234
  msgstr "サービス紹介"
235
 
236
- #: adrotate-output.php:973
237
  msgid ""
238
  "A lot of users only think to review AdRotate when something goes wrong while "
239
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
240
  msgstr ""
241
 
242
- #: adrotate-output.php:973
243
  msgid "If you find AdRotate useful please leave your honest"
244
  msgstr ""
245
 
246
- #: adrotate-output.php:973
247
  msgid "rating"
248
  msgstr ""
249
 
250
- #: adrotate-output.php:973
251
  #, fuzzy
252
  msgid "review"
253
  msgstr "全般レポートを見れる権限"
254
 
255
- #: adrotate-output.php:973
256
  msgid "on WordPress.org to help AdRotate grow in a positive way"
257
  msgstr ""
258
 
259
- #: adrotate-output.php:976
260
  #, fuzzy
261
  msgid ""
262
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -266,7 +266,7 @@ msgstr ""
266
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
267
  "さい。英語ですが。"
268
 
269
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
270
  #, fuzzy
271
  msgid "Visit the"
272
  msgstr ""
@@ -274,88 +274,88 @@ msgstr ""
274
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
275
  "さい。英語ですが。"
276
 
277
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
278
  #, fuzzy
279
  msgid "website"
280
  msgstr "開発者のWEBサイトは以下です。"
281
 
282
- #: adrotate-output.php:1006
283
  #, fuzzy
284
  msgid "Available in AdRotate Pro"
285
  msgstr "AdRotate Blog"
286
 
287
- #: adrotate-output.php:1006
288
  #, fuzzy
289
  msgid "More information..."
290
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
291
 
292
- #: adrotate-output.php:1007
293
  #, fuzzy
294
  msgid "This feature is available in AdRotate Pro"
295
  msgstr "この機能は使いません。"
296
 
297
- #: adrotate-output.php:1007
298
  #, fuzzy
299
  msgid "Learn more"
300
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
301
 
302
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
303
- #: dashboard/publisher/adrotate-ads-edit.php:352
304
  msgid "January"
305
  msgstr "1月"
306
 
307
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
308
- #: dashboard/publisher/adrotate-ads-edit.php:353
309
  msgid "February"
310
  msgstr "2月"
311
 
312
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
313
- #: dashboard/publisher/adrotate-ads-edit.php:354
314
  msgid "March"
315
  msgstr "3月"
316
 
317
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
318
- #: dashboard/publisher/adrotate-ads-edit.php:355
319
  msgid "April"
320
  msgstr "4月"
321
 
322
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
323
- #: dashboard/publisher/adrotate-ads-edit.php:356
324
  msgid "May"
325
  msgstr "5月"
326
 
327
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
328
- #: dashboard/publisher/adrotate-ads-edit.php:357
329
  msgid "June"
330
  msgstr "6月"
331
 
332
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
333
- #: dashboard/publisher/adrotate-ads-edit.php:358
334
  msgid "July"
335
  msgstr "7月"
336
 
337
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
338
- #: dashboard/publisher/adrotate-ads-edit.php:359
339
  msgid "August"
340
  msgstr "8月"
341
 
342
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
343
- #: dashboard/publisher/adrotate-ads-edit.php:360
344
  msgid "September"
345
  msgstr "9月"
346
 
347
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
348
- #: dashboard/publisher/adrotate-ads-edit.php:361
349
  msgid "October"
350
  msgstr "10月"
351
 
352
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
353
- #: dashboard/publisher/adrotate-ads-edit.php:362
354
  msgid "November"
355
  msgstr "11月"
356
 
357
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
358
- #: dashboard/publisher/adrotate-ads-edit.php:363
359
  msgid "December"
360
  msgstr "12月"
361
 
@@ -410,7 +410,7 @@ msgstr "広告グループ - グループIDを使ってください。"
410
  msgid "Choose what you want to use this widget for"
411
  msgstr "このウィジェットに使いたい物を選んで下さい。"
412
 
413
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
414
  #, fuzzy
415
  msgid "ID:"
416
  msgstr "広告ブロック - ブロックIDを使ってください。"
@@ -419,82 +419,81 @@ msgstr "広告ブロック - ブロックIDを使ってください。"
419
  msgid "Fill in the ID of the type you want to display!"
420
  msgstr "表示したいタイプのIDを入力してください!"
421
 
422
- #: adrotate.php:108
423
  #, fuzzy
424
  msgid "General Info"
425
  msgstr "一般設定"
426
 
427
- #: adrotate.php:109
428
  #, fuzzy
429
  msgid "AdRotate Pro"
430
  msgstr "AdRotate Blog"
431
 
432
- #: adrotate.php:110
433
  msgid "Manage Ads"
434
  msgstr "広告管理"
435
 
436
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
437
  msgid "Manage Groups"
438
  msgstr "グループの管理"
439
 
440
- #: adrotate.php:112 adrotate.php:441
441
- #: dashboard/publisher/adrotate-ads-edit.php:402
442
  #, fuzzy
443
  msgid "Manage Schedules"
444
  msgstr "管理"
445
 
446
- #: adrotate.php:113
447
  #, fuzzy
448
  msgid "Manage Media"
449
  msgstr "画像リンク先URL:"
450
 
451
- #: adrotate.php:114
452
  msgid "Settings"
453
  msgstr "設定"
454
 
455
- #: adrotate.php:137
456
  #, fuzzy
457
  msgid "AdRotate Info"
458
  msgstr "AdRotate Blog"
459
 
460
- #: adrotate.php:158
461
  #, fuzzy
462
  msgid "AdRotate Professional"
463
  msgstr "AdRotate Blog"
464
 
465
- #: adrotate.php:201
466
  msgid "Ad Management"
467
  msgstr "広告管理"
468
 
469
- #: adrotate.php:204
470
  msgid "Ad created"
471
  msgstr "広告作成"
472
 
473
- #: adrotate.php:206
474
  msgid "Ad updated"
475
  msgstr "広告更新"
476
 
477
- #: adrotate.php:208
478
  msgid "Ad(s) deleted"
479
  msgstr "広告削除"
480
 
481
- #: adrotate.php:210
482
  msgid "Ad(s) statistics reset"
483
  msgstr "広告の統計情報初期化"
484
 
485
- #: adrotate.php:212
486
  msgid "Ad(s) renewed"
487
  msgstr "広告の更新"
488
 
489
- #: adrotate.php:214
490
  msgid "Ad(s) deactivated"
491
  msgstr "広告の利用停止"
492
 
493
- #: adrotate.php:216
494
  msgid "Ad(s) activated"
495
  msgstr "広告の利用可能化"
496
 
497
- #: adrotate.php:218
498
  msgid ""
499
  "The ad was saved but has an issue which might prevent it from working "
500
  "properly. Review the yellow marked ad."
@@ -502,84 +501,83 @@ msgstr ""
502
  "広告は保存されますが、動作してから問題が発生するかもしれません。黄色でマーク"
503
  "された広告を確認して下さい。"
504
 
505
- #: adrotate.php:220
506
  #, fuzzy
507
  msgid "Export created"
508
  msgstr "エクスポートオプション"
509
 
510
- #: adrotate.php:224
511
  msgid "Action prohibited"
512
  msgstr "今の操作は禁止されました。"
513
 
514
- #: adrotate.php:226 adrotate.php:374
515
  msgid "No data found in selected time period"
516
  msgstr "選ばれた期間が見つかりません。"
517
 
518
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
519
  msgid "Manage"
520
  msgstr "管理"
521
 
522
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
523
  msgid "Add New"
524
  msgstr "新規追加"
525
 
526
- #: adrotate.php:363
527
  msgid "Group Management"
528
  msgstr "グループの管理"
529
 
530
- #: adrotate.php:366
531
  msgid "Group created"
532
  msgstr "グループの作成"
533
 
534
- #: adrotate.php:368
535
  msgid "Group updated"
536
  msgstr "グループの更新"
537
 
538
- #: adrotate.php:370
539
  msgid "Group deleted"
540
  msgstr "グループの削除"
541
 
542
- #: adrotate.php:372
543
  msgid "Group including it's Ads deleted"
544
  msgstr "削除された広告がグループに含まれています。"
545
 
546
- #: adrotate.php:432
547
  #, fuzzy
548
  msgid "Schedule Management available in AdRotate Pro"
549
  msgstr "この機能は使いません。"
550
 
551
- #: adrotate.php:442
552
  #, fuzzy
553
  msgid ""
554
  "Schedule management and multiple schedules per advert is available in "
555
  "AdRotate Pro."
556
  msgstr "この機能は使いません。"
557
 
558
- #: adrotate.php:442 adrotate.php:529
559
- #: dashboard/publisher/adrotate-ads-edit.php:145
560
  #: dashboard/publisher/adrotate-ads-main.php:108
561
- #: dashboard/publisher/adrotate-groups-edit.php:76
562
  #: dashboard/publisher/adrotate-groups-main.php:87
563
  #, fuzzy
564
  msgid "More information"
565
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
566
 
567
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
568
  #: dashboard/publisher/adrotate-ads-main-error.php:19
569
  #: dashboard/publisher/adrotate-ads-main.php:20
570
  #: dashboard/publisher/adrotate-groups-main.php:20
571
  msgid "Bulk Actions"
572
  msgstr "一括操作"
573
 
574
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
575
  #: dashboard/publisher/adrotate-ads-main-error.php:29
576
  #: dashboard/publisher/adrotate-ads-main.php:30
577
  #: dashboard/publisher/adrotate-groups-main.php:24
578
  msgid "Go"
579
  msgstr "実行"
580
 
581
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
582
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
583
  #: dashboard/publisher/adrotate-ads-main-error.php:39
584
  #: dashboard/publisher/adrotate-ads-main.php:39
585
  #: dashboard/publisher/adrotate-groups-main.php:32
@@ -587,300 +585,299 @@ msgstr "実行"
587
  msgid "ID"
588
  msgstr "広告ブロック - ブロックIDを使ってください。"
589
 
590
- #: adrotate.php:460
591
  msgid "Start"
592
  msgstr ""
593
 
594
- #: adrotate.php:460
595
  msgid "End"
596
  msgstr ""
597
 
598
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
599
  #: dashboard/publisher/adrotate-groups-main.php:34
600
  msgid "Ads"
601
  msgstr "広告"
602
 
603
- #: adrotate.php:463
604
  #, fuzzy
605
  msgid "Max Clicks"
606
  msgstr "クリック"
607
 
608
- #: adrotate.php:464
609
  #, fuzzy
610
  msgid "Max Impressions"
611
  msgstr "表示数"
612
 
613
- #: adrotate.php:494
614
  #, fuzzy
615
  msgid "No schedules created yet!"
616
  msgstr "まだブロックが作られていません。"
617
 
618
- #: adrotate.php:499
619
  #, fuzzy
620
  msgid "Easily manage your schedules from here with AdRotate Pro."
621
  msgstr ""
622
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
623
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
624
 
625
- #: adrotate.php:499 adrotate.php:562
626
  #, fuzzy
627
  msgid "Upgrade today!"
628
  msgstr "本日"
629
 
630
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
631
- #: dashboard/publisher/adrotate-ads-main-error.php:74
632
- #: dashboard/publisher/adrotate-groups-edit.php:399
633
  #, fuzzy
634
  msgid "Expires soon."
635
  msgstr "これは出来る限り早く修正して下さい。"
636
 
637
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
638
- #: dashboard/publisher/adrotate-groups-edit.php:400
639
  #, fuzzy
640
  msgid "Has expired."
641
  msgstr "個の広告が期限切れです。"
642
 
643
- #: adrotate.php:527
644
  #, fuzzy
645
  msgid "Media Management available in AdRotate Pro"
646
  msgstr "この機能は使いません。"
647
 
648
- #: adrotate.php:529
649
  msgid ""
650
  "Upload images to the AdRotate Pro banners folder from here. This is "
651
  "especially useful if you use responsive adverts with multiple images."
652
  msgstr ""
653
 
654
- #: adrotate.php:529
655
  #, fuzzy
656
  msgid "Media uploading and management is available in AdRotate Pro."
657
  msgstr "この機能は使いません。"
658
 
659
- #: adrotate.php:531
660
  #, fuzzy
661
  msgid "Upload new banner image"
662
  msgstr "バナー画像"
663
 
664
- #: adrotate.php:532
665
  #, fuzzy
666
  msgid "Accepted files are:"
667
  msgstr ""
668
  "%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
669
  "す。"
670
 
671
- #: adrotate.php:532
672
  msgid "Maximum size is 512Kb."
673
  msgstr ""
674
 
675
- #: adrotate.php:532
676
  msgid "Important:"
677
  msgstr ""
678
 
679
- #: adrotate.php:532
680
  msgid ""
681
  "Make sure your file has no spaces or special characters in the name. Replace "
682
  "spaces with a - or _."
683
  msgstr ""
684
 
685
- #: adrotate.php:534
686
  msgid ""
687
  "For responsive adverts make sure the filename is in the following format; "
688
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
689
  msgstr ""
690
 
691
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
692
  msgid ""
693
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
694
  "filename instead of \".full\" for the various viewports."
695
  msgstr ""
696
 
697
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
698
- #: dashboard/publisher/adrotate-groups-edit.php:334
699
- #: dashboard/publisher/adrotate-groups-edit.php:343
700
  msgid "Example:"
701
  msgstr "例:"
702
 
703
- #: adrotate.php:536
704
  msgid ""
705
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
706
  "for different viewports."
707
  msgstr ""
708
 
709
- #: adrotate.php:540
710
  #, fuzzy
711
  msgid "Upload image"
712
  msgstr "バナー画像"
713
 
714
- #: adrotate.php:543
715
  #, fuzzy
716
  msgid "Available banner images in"
717
  msgstr "バナー画像"
718
 
719
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
720
  msgid "Name"
721
  msgstr "名前"
722
 
723
- #: adrotate.php:549
724
  #, fuzzy
725
  msgid "Actions"
726
  msgstr "一括操作"
727
 
728
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
729
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
730
  #: dashboard/publisher/adrotate-ads-main-error.php:21
731
  #: dashboard/publisher/adrotate-ads-main.php:22
732
  msgid "Delete"
733
  msgstr "削除"
734
 
735
- #: adrotate.php:562
736
  msgid ""
737
  "Make sure the banner images are not in use by adverts when you delete them!"
738
  msgstr ""
739
 
740
- #: adrotate.php:562
741
  #, fuzzy
742
  msgid "Manage your banner folder from here with AdRotate Pro."
743
  msgstr ""
744
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
745
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
746
 
747
- #: adrotate.php:606
748
  msgid "AdRotate Settings"
749
  msgstr "AdRotate 設定"
750
 
751
- #: adrotate.php:609
752
  msgid "Settings saved"
753
  msgstr "設定を保存します。"
754
 
755
- #: adrotate.php:611
756
  msgid "Database optimized"
757
  msgstr "データベースの最適化"
758
 
759
- #: adrotate.php:613
760
  msgid "Database repaired"
761
  msgstr "データベースの修復"
762
 
763
- #: adrotate.php:615
764
  #, fuzzy
765
  msgid "Ads evaluated and statuses have been corrected where required"
766
  msgstr "広告"
767
 
768
- #: adrotate.php:617
769
  msgid "Empty database records removed"
770
  msgstr "空のデータベースは削除されました。"
771
 
772
- #: adrotate.php:619
773
  msgid "Database can only be optimized or cleaned once every hour"
774
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
775
 
776
- #: adrotate.php:627
777
  msgid "Access Rights"
778
  msgstr "アクセス権限"
779
 
780
- #: adrotate.php:628
781
  msgid "Who has access to what?"
782
  msgstr ""
783
 
784
- #: adrotate.php:631
785
  msgid "Manage/Add/Edit adverts"
786
  msgstr "広告の追加・編集管理"
787
 
788
- #: adrotate.php:635
789
  msgid "Role to see and add/edit ads."
790
  msgstr "広告を追加・編集する権限"
791
 
792
- #: adrotate.php:639
793
  msgid "Delete/Reset adverts"
794
  msgstr "広告の削除やリセット"
795
 
796
- #: adrotate.php:643
797
  msgid "Role to delete ads and reset stats."
798
  msgstr "広告の削除やリセットする権限"
799
 
800
- #: adrotate.php:647
801
  msgid "Manage/Add/Edit groups"
802
  msgstr "グループの追加・編集管理"
803
 
804
- #: adrotate.php:651
805
  msgid "Role to see and add/edit groups."
806
  msgstr "グループを削除・編集する権限"
807
 
808
- #: adrotate.php:655
809
  msgid "Delete groups"
810
  msgstr "グループの削除"
811
 
812
- #: adrotate.php:659
813
  msgid "Role to delete groups."
814
  msgstr "グループを削除できる権限"
815
 
816
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
817
- #: adrotate.php:876
818
  msgid "Update Options"
819
  msgstr "設定の更新"
820
 
821
- #: adrotate.php:691
822
  msgid "Statistics"
823
  msgstr "統計"
824
 
825
- #: adrotate.php:694
826
  #, fuzzy
827
  msgid "Enable stats"
828
  msgstr "統計リセット"
829
 
830
- #: adrotate.php:696
831
  #, fuzzy
832
  msgid "Track clicks and impressions."
833
  msgstr "クリック"
834
 
835
- #: adrotate.php:696
836
  #, fuzzy
837
  msgid "Disabling this also disables click and impression limits on schedules."
838
  msgstr "現在のスケジュール"
839
 
840
- #: adrotate.php:700
841
  msgid "Impressions timer"
842
  msgstr "表示時間"
843
 
844
- #: adrotate.php:702 adrotate.php:709
845
  msgid "Seconds."
846
  msgstr "秒"
847
 
848
- #: adrotate.php:703
849
  #, fuzzy
850
  msgid "Default: 60."
851
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
852
 
853
- #: adrotate.php:703
854
  #, fuzzy
855
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
856
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
857
 
858
- #: adrotate.php:707
859
  #, fuzzy
860
  msgid "Clicks timer"
861
  msgstr "表示時間"
862
 
863
- #: adrotate.php:710
864
  #, fuzzy
865
  msgid "Default: 86400."
866
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
867
 
868
- #: adrotate.php:710
869
  #, fuzzy
870
  msgid ""
871
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
872
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
873
 
874
- #: adrotate.php:715
875
  #, fuzzy
876
  msgid "Bot filter"
877
  msgstr "ユーザーエージェントフィルター"
878
 
879
- #: adrotate.php:718
880
  msgid "User-Agent Filter"
881
  msgstr "ユーザーエージェントフィルター"
882
 
883
- #: adrotate.php:721
884
  msgid ""
885
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
886
  "prevent impressions and clicks counted on them."
@@ -888,7 +885,7 @@ msgstr ""
888
  "コンマは、キーワードのリストを区切ります。カウント表示回数やクリックを防止す"
889
  "るために、ボット/クローラ/ユーザエージェントを除外します。"
890
 
891
- #: adrotate.php:722
892
  #, fuzzy
893
  msgid ""
894
  "Keep in mind that this might give false positives. The word 'google' also "
@@ -897,21 +894,21 @@ msgstr ""
897
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
898
  "場合があります。"
899
 
900
- #: adrotate.php:722
901
  #, fuzzy
902
  msgid "Keep your list up-to-date"
903
  msgstr ""
904
  "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
905
  "抑えて下さい。"
906
 
907
- #: adrotate.php:723
908
  #, fuzzy
909
  msgid ""
910
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
911
  "other characters are stripped out."
912
  msgstr "HTMLタグは取り除かれます。"
913
 
914
- #: adrotate.php:724
915
  msgid ""
916
  "Additionally to the list specified here, empty User-Agents are blocked as "
917
  "well."
@@ -919,23 +916,23 @@ msgstr ""
919
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
920
  "れます。"
921
 
922
- #: adrotate.php:724
923
  msgid "Learn more about"
924
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
925
 
926
- #: adrotate.php:724
927
  msgid "user-agents"
928
  msgstr "ユーザーエージェント[英語]"
929
 
930
- #: adrotate.php:733
931
  msgid "Miscellaneous"
932
  msgstr "その他"
933
 
934
- #: adrotate.php:736
935
  msgid "Widget alignment"
936
  msgstr "ウィジェットの配置"
937
 
938
- #: adrotate.php:737
939
  msgid ""
940
  "Check this box if your widgets do not align in your themes sidebar. (Does "
941
  "not always help!)"
@@ -943,12 +940,12 @@ msgstr ""
943
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
944
  "クスをオンにします。"
945
 
946
- #: adrotate.php:740
947
  #, fuzzy
948
  msgid "Widget padding"
949
  msgstr "ブロックの隙間"
950
 
951
- #: adrotate.php:741
952
  #, fuzzy
953
  msgid ""
954
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -957,11 +954,11 @@ msgstr ""
957
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
958
  "クスをオンにします。"
959
 
960
- #: adrotate.php:746 adrotate.php:757
961
  msgid "NOTICE:"
962
  msgstr ""
963
 
964
- #: adrotate.php:747
965
  msgid ""
966
  "You have enabled W3 Total Caching support but not defined the security hash. "
967
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -969,36 +966,36 @@ msgid ""
969
  "needs to be enabled in W3 Total Cache as well too."
970
  msgstr ""
971
 
972
- #: adrotate.php:751
973
  msgid "W3 Total Caching"
974
  msgstr ""
975
 
976
- #: adrotate.php:752
977
  #, fuzzy
978
  msgid "Check this box if you use W3 Total Caching on your site."
979
  msgstr ""
980
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
981
  "クスをオンにします。"
982
 
983
- #: adrotate.php:758
984
  msgid ""
985
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
986
  "this function will not work. WP Super Cache has discontinued support for "
987
  "dynamic content."
988
  msgstr ""
989
 
990
- #: adrotate.php:762
991
  msgid "WP Super Cache"
992
  msgstr ""
993
 
994
- #: adrotate.php:763
995
  #, fuzzy
996
  msgid "Check this box if you use WP Super Cache on your site."
997
  msgstr ""
998
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
999
  "クスをオンにします。"
1000
 
1001
- #: adrotate.php:768
1002
  #, fuzzy
1003
  msgid ""
1004
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -1007,33 +1004,33 @@ msgstr ""
1007
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1008
  "可能性があります。"
1009
 
1010
- #: adrotate.php:768
1011
  #, fuzzy
1012
  msgid ""
1013
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1014
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1015
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1016
 
1017
- #: adrotate.php:772
1018
  msgid "Javascript"
1019
  msgstr ""
1020
 
1021
- #: adrotate.php:775
1022
  msgid "Load jQuery"
1023
  msgstr ""
1024
 
1025
- #: adrotate.php:776
1026
  #, fuzzy
1027
  msgid ""
1028
  "jQuery is required for all Javascript features below. Enable this if your "
1029
  "theme does not load jQuery already."
1030
  msgstr "テキストリンク(クリック数調査付):"
1031
 
1032
- #: adrotate.php:779
1033
  msgid "Load in footer?"
1034
  msgstr ""
1035
 
1036
- #: adrotate.php:780
1037
  #, fuzzy
1038
  msgid ""
1039
  "Enable if you want to load the above libraries in the footer. Your theme "
@@ -1043,11 +1040,11 @@ msgstr ""
1043
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1044
  "さい。英語ですが。"
1045
 
1046
- #: adrotate.php:788
1047
  msgid "Maintenance"
1048
  msgstr "メンテナンス"
1049
 
1050
- #: adrotate.php:789
1051
  #, fuzzy
1052
  msgid ""
1053
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1057,19 +1054,19 @@ msgid ""
1057
  "sluggish."
1058
  msgstr "データベースのバックアップを取りましたか?"
1059
 
1060
- #: adrotate.php:804 adrotate.php:806
1061
  msgid "Optimize Database"
1062
  msgstr "データベースの最適化"
1063
 
1064
- #: adrotate.php:806
1065
  msgid "You are about to optimize the AdRotate database."
1066
  msgstr "AdRotateのデータベースの最適化を行います。"
1067
 
1068
- #: adrotate.php:806
1069
  msgid "Did you make a backup of your database?"
1070
  msgstr "データベースのバックアップを取りましたか?"
1071
 
1072
- #: adrotate.php:806
1073
  msgid ""
1074
  "This may take a moment and may cause your website to respond slow "
1075
  "temporarily!"
@@ -1077,91 +1074,91 @@ msgstr ""
1077
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1078
  "可能性があります。"
1079
 
1080
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1081
  #: dashboard/publisher/adrotate-groups-main.php:24
1082
  msgid "OK to continue, CANCEL to stop."
1083
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1084
 
1085
- #: adrotate.php:807
1086
  msgid "Cleans up overhead data in the AdRotate tables."
1087
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1088
 
1089
- #: adrotate.php:808
1090
  #, fuzzy
1091
  msgid ""
1092
  "Overhead data is accumulated garbage resulting from many changes you've "
1093
  "made. This can vary from nothing to hundreds of KiB of data."
1094
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1095
 
1096
- #: adrotate.php:812 adrotate.php:814
1097
  msgid "Clean-up Database"
1098
  msgstr "データベースのクリーンアップ"
1099
 
1100
- #: adrotate.php:814
1101
  #, fuzzy
1102
  msgid ""
1103
  "You are about to clean up your database. This may delete expired schedules "
1104
  "and older statistics."
1105
  msgstr "データベースのクリーンアップ"
1106
 
1107
- #: adrotate.php:814
1108
  #, fuzzy
1109
  msgid "Are you sure you want to continue?"
1110
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1111
 
1112
- #: adrotate.php:814 adrotate.php:822
1113
  #, fuzzy
1114
  msgid "This might take a while and may slow down your site during this action!"
1115
  msgstr ""
1116
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1117
  "可能性があります。"
1118
 
1119
- #: adrotate.php:815
1120
  #, fuzzy
1121
  msgid "Delete stats older than 356 days (Optional)."
1122
  msgstr "広告の削除やリセットする権限"
1123
 
1124
- #: adrotate.php:816
1125
  #, fuzzy
1126
  msgid ""
1127
  "AdRotate creates empty records when you start making ads or groups. In rare "
1128
  "occasions these records are faulty."
1129
  msgstr "空のデータベースは削除されました。"
1130
 
1131
- #: adrotate.php:816
1132
  #, fuzzy
1133
  msgid ""
1134
  "If you made an ad or group that does not save when you make it use this "
1135
  "button to delete those empty records."
1136
  msgstr "グループを削除しようとしています。"
1137
 
1138
- #: adrotate.php:816
1139
  #, fuzzy
1140
  msgid ""
1141
  "Additionally you can clean up old statistics. This will improve the speed of "
1142
  "your site."
1143
  msgstr "データベースのクリーンアップ"
1144
 
1145
- #: adrotate.php:820
1146
  msgid "Re-evaluate Ads"
1147
  msgstr "広告の再評価"
1148
 
1149
- #: adrotate.php:822
1150
  msgid "Re-evaluate all ads"
1151
  msgstr "すべての広告の再評価"
1152
 
1153
- #: adrotate.php:822
1154
  msgid "You are about to check all ads for errors."
1155
  msgstr "すべての広告のエラーをチェックしようとしています。"
1156
 
1157
- #: adrotate.php:823
1158
  #, fuzzy
1159
  msgid ""
1160
  "This will apply all evaluation rules to all ads to see if any error slipped "
1161
  "in. Normally you should not need this feature."
1162
  msgstr "すべての広告のエラーをチェックしようとしています。"
1163
 
1164
- #: adrotate.php:827
1165
  #, fuzzy
1166
  msgid ""
1167
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
@@ -1172,76 +1169,76 @@ msgid ""
1172
  "clicking these buttons is not a valid point in any case."
1173
  msgstr "データベースのバックアップを取りましたか?"
1174
 
1175
- #: adrotate.php:835
1176
  msgid "Troubleshooting"
1177
  msgstr "トラブルシューティング(トラブル対応)"
1178
 
1179
- #: adrotate.php:838
1180
  #, fuzzy
1181
  msgid "Current version:"
1182
  msgstr "現在のスケジュール"
1183
 
1184
- #: adrotate.php:839
1185
  #, fuzzy
1186
  msgid "Previous version:"
1187
  msgstr "プレビュー"
1188
 
1189
- #: adrotate.php:842
1190
  #, fuzzy
1191
  msgid "Current database version:"
1192
  msgstr "現在のスケジュール"
1193
 
1194
- #: adrotate.php:843
1195
  #, fuzzy
1196
  msgid "Previous database version:"
1197
  msgstr "データベースの最適化"
1198
 
1199
- #: adrotate.php:846
1200
  #, fuzzy
1201
  msgid "Ad evaluation next run:"
1202
  msgstr "通知先"
1203
 
1204
- #: adrotate.php:847 adrotate.php:851
1205
  #, fuzzy
1206
  msgid "Not scheduled!"
1207
  msgstr "掲載期間"
1208
 
1209
- #: adrotate.php:850
1210
  #, fuzzy
1211
  msgid "Clean Trackerdata next run:"
1212
  msgstr "データベースのクリーンアップ"
1213
 
1214
- #: adrotate.php:854
1215
  #, fuzzy
1216
  msgid "Current status of adverts"
1217
  msgstr "現在のスケジュール"
1218
 
1219
- #: adrotate.php:855
1220
  #, fuzzy
1221
  msgid "Normal"
1222
  msgstr "平均的表示(50%程度)"
1223
 
1224
- #: adrotate.php:855
1225
  #, fuzzy
1226
  msgid "Error"
1227
  msgstr "理解できないエラーが起こっています。"
1228
 
1229
- #: adrotate.php:855
1230
  #, fuzzy
1231
  msgid "Expired"
1232
  msgstr "個の広告が期限切れです。"
1233
 
1234
- #: adrotate.php:855
1235
  #, fuzzy
1236
  msgid "Expires Soon"
1237
  msgstr "これは出来る限り早く修正して下さい。"
1238
 
1239
- #: adrotate.php:855
1240
  #, fuzzy
1241
  msgid "Unknown Status"
1242
  msgstr "理解できないエラーが起こっています。"
1243
 
1244
- #: adrotate.php:858
1245
  msgid ""
1246
  "NOTE: The below options are not meant for normal use and are only there for "
1247
  "developers to review saved settings or how ads are selected. These can be "
@@ -1251,45 +1248,45 @@ msgstr ""
1251
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1252
  "用しないで下さい。基本的にチェックを入れない!"
1253
 
1254
- #: adrotate.php:862
1255
  msgid "Developer Debug"
1256
  msgstr "開発者向けデバッグ"
1257
 
1258
- #: adrotate.php:864
1259
  #, fuzzy
1260
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1261
  msgstr ""
1262
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1263
  "用しないで下さい。基本的にチェックを入れない!"
1264
 
1265
- #: adrotate.php:865
1266
  #, fuzzy
1267
  msgid "Show all settings, dashboard routines and related values."
1268
  msgstr "設定"
1269
 
1270
- #: adrotate.php:866
1271
  #, fuzzy
1272
  msgid "Show array of all userroles and capabilities."
1273
  msgstr "表示できるデータがありません。"
1274
 
1275
- #: adrotate.php:867
1276
  #, fuzzy
1277
  msgid "Review saved advertisers! Visible to advertisers."
1278
  msgstr "広告主から提出された広告を承認する権限"
1279
 
1280
- #: adrotate.php:868
1281
  #, fuzzy
1282
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1283
  msgstr "統計リセット"
1284
 
1285
- #: adrotate.php:869
1286
  #, fuzzy
1287
  msgid ""
1288
  "Disable timers for clicks and impressions and enable a alert window for "
1289
  "clicktracking."
1290
  msgstr "テキストリンク(クリック数調査付):"
1291
 
1292
- #: adrotate.php:870
1293
  #, fuzzy
1294
  msgid "Temporarily disable encryption on the redirect url."
1295
  msgstr ""
@@ -1537,8 +1534,8 @@ msgid "The AdCode cannot be empty!"
1537
  msgstr "AdCodeを空にすることはできません!"
1538
 
1539
  #: dashboard/publisher/adrotate-ads-edit.php:49
1540
- msgid "You didn't use %image% in your AdCode but did select an image!"
1541
- msgstr "AdCodeに%image%がありませんが、画像が登録されています。"
1542
 
1543
  #: dashboard/publisher/adrotate-ads-edit.php:52
1544
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1553,10 +1550,22 @@ msgstr ""
1553
  "ださい!"
1554
 
1555
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1556
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1557
  msgstr ""
1558
 
1559
- #: dashboard/publisher/adrotate-ads-edit.php:63
1560
  msgid ""
1561
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1562
  "the ad!"
@@ -1564,87 +1573,149 @@ msgstr ""
1564
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
1565
  "を再度保存してください!"
1566
 
1567
- #: dashboard/publisher/adrotate-ads-edit.php:66
1568
  msgid "This ad is expired and currently not shown on your website!"
1569
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1570
 
1571
- #: dashboard/publisher/adrotate-ads-edit.php:69
1572
  msgid "The ad will expire in less than 2 days!"
1573
  msgstr "この広告は期限が2日間ありません。"
1574
 
1575
- #: dashboard/publisher/adrotate-ads-edit.php:72
1576
  msgid "This ad will expire in less than 7 days!"
1577
  msgstr "この広告は期限が7日間ありません。"
1578
 
1579
- #: dashboard/publisher/adrotate-ads-edit.php:75
1580
  msgid "This ad has been disabled and does not rotate on your site!"
1581
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
1582
 
1583
- #: dashboard/publisher/adrotate-ads-edit.php:101
1584
  #, fuzzy
1585
  msgid "New Advert"
1586
  msgstr "新規追加"
1587
 
1588
- #: dashboard/publisher/adrotate-ads-edit.php:103
1589
  #, fuzzy
1590
  msgid "Edit Advert"
1591
  msgstr "編集"
1592
 
1593
- #: dashboard/publisher/adrotate-ads-edit.php:106
1594
- #: dashboard/publisher/adrotate-groups-edit.php:48
1595
- #, fuzzy
1596
- msgid "These are required."
1597
- msgstr "広告の形と枠(必須)ー広告の形とサイズを決めます。"
1598
-
1599
- #: dashboard/publisher/adrotate-ads-edit.php:110
1600
  msgid "Title:"
1601
  msgstr "広告タイトル:"
1602
 
1603
- #: dashboard/publisher/adrotate-ads-edit.php:116
1604
  msgid "AdCode:"
1605
  msgstr "広告コード[AdCode](タグ含む):"
1606
 
1607
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1608
  msgid ""
1609
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1610
  msgstr ""
1611
 
1612
- #: dashboard/publisher/adrotate-ads-edit.php:121
1613
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1614
  msgstr ""
1615
 
1616
- #: dashboard/publisher/adrotate-ads-edit.php:122
1617
- msgid "Basic Examples:"
1618
- msgstr "設定例:"
 
1619
 
1620
- #: dashboard/publisher/adrotate-ads-edit.php:127
1621
- #: dashboard/publisher/adrotate-groups-edit.php:335
1622
- msgid "Options:"
1623
- msgstr "オプション:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1624
 
1625
- #: dashboard/publisher/adrotate-ads-edit.php:129
1626
  #, fuzzy
 
 
 
 
1627
  msgid ""
1628
- "Place the cursor where you want to add a tag and click to add it to your "
1629
- "AdCode."
1630
- msgstr "新規追加"
 
1631
 
1632
- #: dashboard/publisher/adrotate-ads-edit.php:133
1633
  msgid "Activate:"
1634
  msgstr "掲載状況:"
1635
 
1636
- #: dashboard/publisher/adrotate-ads-edit.php:137
1637
  msgid "Yes, this ad will be used"
1638
  msgstr "この広告を掲載されるように設定する"
1639
 
1640
- #: dashboard/publisher/adrotate-ads-edit.php:138
1641
  #, fuzzy
1642
  msgid "No, do not show this ad anywhere"
1643
  msgstr "表示できるデータがありません。"
1644
 
1645
- #: dashboard/publisher/adrotate-ads-edit.php:145
1646
  #: dashboard/publisher/adrotate-ads-main.php:108
1647
- #: dashboard/publisher/adrotate-groups-edit.php:76
1648
  #: dashboard/publisher/adrotate-groups-main.php:87
1649
  #, fuzzy
1650
  msgid "Get more features with AdRotate Pro."
@@ -1652,31 +1723,29 @@ msgstr ""
1652
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1653
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1654
 
1655
- #: dashboard/publisher/adrotate-ads-edit.php:148
1656
- #: dashboard/publisher/adrotate-ads-edit.php:181
1657
- #: dashboard/publisher/adrotate-ads-edit.php:317
1658
- #: dashboard/publisher/adrotate-ads-edit.php:442
1659
- #: dashboard/publisher/adrotate-ads-edit.php:485
1660
  #, fuzzy
1661
  msgid "Save Advert"
1662
  msgstr "保存"
1663
 
1664
- #: dashboard/publisher/adrotate-ads-edit.php:149
1665
- #: dashboard/publisher/adrotate-ads-edit.php:182
1666
- #: dashboard/publisher/adrotate-ads-edit.php:318
1667
- #: dashboard/publisher/adrotate-ads-edit.php:443
1668
- #: dashboard/publisher/adrotate-ads-edit.php:486
1669
- #: dashboard/publisher/adrotate-groups-edit.php:182
1670
- #: dashboard/publisher/adrotate-groups-edit.php:323
1671
- #: dashboard/publisher/adrotate-groups-edit.php:405
1672
  msgid "Cancel"
1673
  msgstr "キャンセル"
1674
 
1675
- #: dashboard/publisher/adrotate-ads-edit.php:153
1676
  msgid "Preview"
1677
  msgstr "プレビュー"
1678
 
1679
- #: dashboard/publisher/adrotate-ads-edit.php:159
1680
  msgid ""
1681
  "Note: While this preview is an accurate one, it might look different then it "
1682
  "does on the website."
@@ -1684,415 +1753,271 @@ msgstr ""
1684
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1685
  "場合があります。"
1686
 
1687
- #: dashboard/publisher/adrotate-ads-edit.php:160
1688
  msgid ""
1689
  "This is because of CSS differences. Your themes CSS file is not active here!"
1690
  msgstr ""
1691
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1692
  "ている場合は実ページでご確認下さい。"
1693
 
1694
- #: dashboard/publisher/adrotate-ads-edit.php:167
1695
- #: dashboard/publisher/adrotate-ads-edit.php:303
1696
- #: dashboard/publisher/adrotate-groups-edit.php:167
1697
- #: dashboard/publisher/adrotate-groups-edit.php:308
1698
  msgid "Usage"
1699
  msgstr "利用タグ"
1700
 
1701
- #: dashboard/publisher/adrotate-ads-edit.php:168
1702
- #: dashboard/publisher/adrotate-ads-edit.php:304
1703
- #: dashboard/publisher/adrotate-groups-edit.php:168
1704
- #: dashboard/publisher/adrotate-groups-edit.php:309
1705
- #, fuzzy
 
 
 
 
1706
  msgid ""
1707
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1708
- "where you want the advert to show up."
1709
- msgstr "投稿及びページ内掲載する場合:"
1710
 
1711
- #: dashboard/publisher/adrotate-ads-edit.php:172
1712
- #: dashboard/publisher/adrotate-ads-edit.php:308
1713
- #: dashboard/publisher/adrotate-groups-edit.php:172
1714
- #: dashboard/publisher/adrotate-groups-edit.php:313
1715
  msgid "In a post or page:"
1716
  msgstr "投稿及びページ内掲載する場合:"
1717
 
1718
- #: dashboard/publisher/adrotate-ads-edit.php:174
1719
- #: dashboard/publisher/adrotate-ads-edit.php:310
1720
- #: dashboard/publisher/adrotate-groups-edit.php:174
1721
- #: dashboard/publisher/adrotate-groups-edit.php:315
1722
  msgid "Directly in a theme:"
1723
  msgstr "テーマ内に直接設定する場合:"
1724
 
1725
- #: dashboard/publisher/adrotate-ads-edit.php:185
1726
- #: dashboard/publisher/adrotate-groups-edit.php:185
1727
- #, fuzzy
1728
- msgid "Advanced"
1729
- msgstr "設定例(高度):"
1730
 
1731
- #: dashboard/publisher/adrotate-ads-edit.php:186
1732
  #, fuzzy
1733
- msgid "Everything below is optional."
1734
- msgstr "タイトル(オプション):"
1735
-
1736
- #: dashboard/publisher/adrotate-ads-edit.php:191
1737
- msgid "Clicktracking:"
1738
- msgstr "テキストリンク(クリック数調査付):"
1739
 
1740
- #: dashboard/publisher/adrotate-ads-edit.php:193
1741
  #, fuzzy
1742
- msgid "Enable click tracking for this advert."
1743
- msgstr "広告の枠線"
1744
 
1745
- #: dashboard/publisher/adrotate-ads-edit.php:194
1746
- msgid ""
1747
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1748
- "those provided by Google AdSense."
1749
- msgstr ""
1750
 
1751
- #: dashboard/publisher/adrotate-ads-edit.php:195
1752
  #, fuzzy
1753
- msgid "Place the target URL in your adcode - Similar to code example 1."
1754
- msgstr "AdCodeに%link%が入っていませんが、クリック数チェックが有効です。"
1755
 
1756
- #: dashboard/publisher/adrotate-ads-edit.php:200
1757
- msgid "Target URL:"
1758
- msgstr ""
1759
 
1760
- #: dashboard/publisher/adrotate-ads-edit.php:203
1761
- #, fuzzy
1762
- msgid ""
1763
- "This field is no longer required. You can place the URL directly in the "
1764
- "adcode (above) instead of %link%."
1765
- msgstr "広告コード[AdCode](タグ含む):"
1766
 
1767
- #: dashboard/publisher/adrotate-ads-edit.php:208
1768
- msgid "Responsive:"
1769
- msgstr ""
1770
 
1771
- #: dashboard/publisher/adrotate-ads-edit.php:210
1772
  #, fuzzy
1773
- msgid "Enable responsive support for this advert."
1774
- msgstr "広告の追加・編集管理"
1775
-
1776
- #: dashboard/publisher/adrotate-ads-edit.php:211
1777
  msgid ""
1778
- "Upload your images to the banner folder and make sure the filename is in the "
1779
- "following format; \"imagename.full.ext\". A full set of sized images is "
1780
- "strongly recommended."
1781
  msgstr ""
 
 
1782
 
1783
- #: dashboard/publisher/adrotate-ads-edit.php:213
1784
  msgid ""
1785
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1786
- "for different viewports. Requires jQuery."
1787
  msgstr ""
 
 
1788
 
1789
- #: dashboard/publisher/adrotate-ads-edit.php:217
1790
- msgid "Banner image:"
1791
- msgstr "バナー画像"
1792
-
1793
- #: dashboard/publisher/adrotate-ads-edit.php:220
1794
- msgid "Media:"
1795
- msgstr "画像リンク先URL:"
1796
 
1797
- #: dashboard/publisher/adrotate-ads-edit.php:220
 
 
 
1798
  #, fuzzy
1799
- msgid "Select Banner"
1800
- msgstr "バナー画像"
1801
-
1802
- #: dashboard/publisher/adrotate-ads-edit.php:222
1803
- msgid "- OR -"
1804
- msgstr "- もしくは -"
1805
 
1806
- #: dashboard/publisher/adrotate-ads-edit.php:224
1807
- msgid "Banner folder:"
1808
- msgstr "画像バナー"
 
 
1809
 
1810
- #: dashboard/publisher/adrotate-ads-edit.php:225
1811
- msgid "No image selected"
1812
- msgstr "画像は設定されていません。"
 
1813
 
1814
- #: dashboard/publisher/adrotate-ads-edit.php:229
1815
- msgid "Use %image% in the code. Accepted files are:"
1816
  msgstr ""
1817
- "%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
1818
- "す。"
1819
 
1820
- #: dashboard/publisher/adrotate-ads-edit.php:229
 
 
 
 
 
1821
  msgid ""
1822
- "Use either the text field or the dropdown. If the textfield has content that "
1823
- "field has priority."
 
1824
  msgstr ""
1825
- "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1826
- "合はそちらが優先されます。"
1827
 
1828
- #: dashboard/publisher/adrotate-ads-edit.php:233
1829
  msgid "Weight:"
1830
  msgstr "表示頻度:"
1831
 
1832
- #: dashboard/publisher/adrotate-ads-edit.php:233
1833
  #, fuzzy
1834
  msgid "AdRotate Pro only"
1835
  msgstr "AdRotate Blog"
1836
 
1837
- #: dashboard/publisher/adrotate-ads-edit.php:236
1838
  msgid "Barely visible"
1839
  msgstr "稀な表示(20%程度)"
1840
 
1841
- #: dashboard/publisher/adrotate-ads-edit.php:237
1842
  msgid "Less than average"
1843
  msgstr "標準より少し少ない表示(40%程度)"
1844
 
1845
- #: dashboard/publisher/adrotate-ads-edit.php:238
1846
  msgid "Normal coverage"
1847
  msgstr "平均的表示(50%程度)"
1848
 
1849
- #: dashboard/publisher/adrotate-ads-edit.php:239
1850
  msgid "More than average"
1851
  msgstr "平均よりも多めの表示(70%程度)"
1852
 
1853
- #: dashboard/publisher/adrotate-ads-edit.php:240
1854
  msgid "Best visibility"
1855
  msgstr "優先表示(100~90%程度)"
1856
 
1857
- #: dashboard/publisher/adrotate-ads-edit.php:245
1858
- #: dashboard/publisher/adrotate-groups-edit.php:212
1859
  msgid "Sortorder:"
1860
  msgstr "並び(ソート)順:"
1861
 
1862
- #: dashboard/publisher/adrotate-ads-edit.php:247
1863
- #: dashboard/publisher/adrotate-groups-edit.php:214
1864
  msgid "For administrative purposes set a sortorder."
1865
  msgstr "管理目的で順序を設定できます。"
1866
 
1867
- #: dashboard/publisher/adrotate-ads-edit.php:247
1868
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1869
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1870
 
1871
- #: dashboard/publisher/adrotate-ads-edit.php:252
1872
  msgid ""
1873
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1874
- "attention."
1875
  msgstr ""
1876
 
1877
- #: dashboard/publisher/adrotate-ads-edit.php:252
1878
- #: dashboard/publisher/adrotate-ads-edit.php:301
1879
- #: dashboard/publisher/adrotate-ads-edit.php:399
1880
- #: dashboard/publisher/adrotate-groups-edit.php:218
1881
- #, fuzzy
1882
- msgid "Upgrade today"
1883
- msgstr "本日"
1884
-
1885
- #: dashboard/publisher/adrotate-ads-edit.php:254
1886
- #, fuzzy
1887
- msgid "Geo Location in AdRotate Pro"
1888
- msgstr "AdRotate Blog"
1889
 
1890
- #: dashboard/publisher/adrotate-ads-edit.php:255
1891
- #, fuzzy
1892
  msgid ""
1893
- "This works if you assign the advert to a group and enable that group to use "
1894
- "Geo Targeting."
1895
- msgstr "広告グループ - グループIDを使ってください。"
1896
 
1897
- #: dashboard/publisher/adrotate-ads-edit.php:259
1898
  msgid "Cities/States:"
1899
  msgstr ""
1900
 
1901
- #: dashboard/publisher/adrotate-ads-edit.php:262
1902
- #: dashboard/publisher/adrotate-ads-edit.php:295
1903
- #, fuzzy
1904
- msgid "Usage:"
1905
- msgstr "利用タグ"
1906
-
1907
- #: dashboard/publisher/adrotate-ads-edit.php:263
1908
- msgid "A comma separated list of cities and/or states"
1909
  msgstr ""
1910
 
1911
- #: dashboard/publisher/adrotate-ads-edit.php:263
1912
  msgid ""
1913
  "AdRotate does not check the validity of names so make sure you spell them "
1914
  "correctly!"
1915
  msgstr ""
1916
 
1917
- #: dashboard/publisher/adrotate-ads-edit.php:267
1918
  msgid "Countries:"
1919
  msgstr ""
1920
 
1921
- #: dashboard/publisher/adrotate-ads-edit.php:296
1922
  #, fuzzy
1923
  msgid "Select the countries you want the adverts to show in."
1924
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1925
 
1926
- #: dashboard/publisher/adrotate-ads-edit.php:296
1927
  msgid "Cities take priority and will be filtered first."
1928
  msgstr ""
1929
 
1930
- #: dashboard/publisher/adrotate-ads-edit.php:301
1931
- #, fuzzy
1932
- msgid "Target your audience with Geo Location in AdRotate Pro"
1933
- msgstr ""
1934
- "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1935
- "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1936
-
1937
- #: dashboard/publisher/adrotate-ads-edit.php:321
1938
- #, fuzzy
1939
- msgid "Schedule"
1940
  msgstr ""
1941
- "最大のクリック数と表示回数が設定されたスケジュールのみで測定されています。そ"
1942
- "れぞれのスケジュールで上限を設定できます!"
1943
 
1944
- #: dashboard/publisher/adrotate-ads-edit.php:322
1945
- #, fuzzy
1946
- msgid "From when to when is the advert visible?"
1947
- msgstr ""
1948
- "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
1949
- "合、メール通知は無効になります。"
1950
-
1951
- #: dashboard/publisher/adrotate-ads-edit.php:326
1952
- #, fuzzy
1953
- msgid "Start date (day/month/year):"
1954
- msgstr "1年間"
1955
-
1956
- #: dashboard/publisher/adrotate-ads-edit.php:347
1957
- #, fuzzy
1958
- msgid "End date (day/month/year):"
1959
- msgstr "1年間"
1960
-
1961
- #: dashboard/publisher/adrotate-ads-edit.php:370
1962
- #, fuzzy
1963
- msgid "Start time (hh:mm):"
1964
- msgstr "選ばれた期間が見つかりません。"
1965
-
1966
- #: dashboard/publisher/adrotate-ads-edit.php:377
1967
- #, fuzzy
1968
- msgid "End time (hh:mm):"
1969
- msgstr "選ばれた期間が見つかりません。"
1970
-
1971
- #: dashboard/publisher/adrotate-ads-edit.php:387
1972
- msgid "Maximum Clicks:"
1973
- msgstr "クリック数上限設定:"
1974
-
1975
- #: dashboard/publisher/adrotate-ads-edit.php:388
1976
- #: dashboard/publisher/adrotate-ads-edit.php:390
1977
- msgid "Leave empty or 0 to skip this."
1978
- msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1979
-
1980
- #: dashboard/publisher/adrotate-ads-edit.php:389
1981
- msgid "Maximum Impressions:"
1982
- msgstr "表示数上限設定:"
1983
-
1984
- #: dashboard/publisher/adrotate-ads-edit.php:395
1985
- #, fuzzy
1986
- msgid ""
1987
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1988
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1989
- "hours. 6AM is 6:00 hours."
1990
- msgstr ""
1991
- "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
1992
- "合、メール通知は無効になります。"
1993
-
1994
- #: dashboard/publisher/adrotate-ads-edit.php:395
1995
- msgid ""
1996
- "The maximum clicks and impressions are measured over the set schedule only. "
1997
- "Every schedule can have it's own limit!"
1998
- msgstr ""
1999
- "最大のクリック数と表示回数が設定されたスケジュールのみで測定されています。そ"
2000
- "れぞれのスケジュールで上限を設定できます!"
2001
-
2002
- #: dashboard/publisher/adrotate-ads-edit.php:399
2003
- msgid "Create multiple schedules for each advert with AdRotate Pro."
2004
- msgstr ""
2005
-
2006
- #: dashboard/publisher/adrotate-ads-edit.php:401
2007
- #, fuzzy
2008
- msgid "Choose Multiple Schedules in AdRotate Pro"
2009
- msgstr "AdRotate Blog"
2010
-
2011
- #: dashboard/publisher/adrotate-ads-edit.php:402
2012
- msgid "You can add, edit or delete schedules from the"
2013
- msgstr ""
2014
-
2015
- #: dashboard/publisher/adrotate-ads-edit.php:402
2016
- msgid "dashboard. Save your advert first!"
2017
- msgstr ""
2018
-
2019
- #: dashboard/publisher/adrotate-ads-edit.php:409
2020
- #, fuzzy
2021
- msgid "From / Until"
2022
- msgstr "掲載期限"
2023
-
2024
- #: dashboard/publisher/adrotate-ads-edit.php:411
2025
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2026
- #: dashboard/publisher/adrotate-ads-main.php:45
2027
- #: dashboard/publisher/adrotate-ads-report.php:35
2028
- #: dashboard/publisher/adrotate-groups-edit.php:356
2029
- #: dashboard/publisher/adrotate-groups-main.php:37
2030
- #: dashboard/publisher/adrotate-groups-report.php:41
2031
- msgid "Clicks"
2032
- msgstr "クリック"
2033
-
2034
- #: dashboard/publisher/adrotate-ads-edit.php:412
2035
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2036
- #: dashboard/publisher/adrotate-ads-report.php:34
2037
- #: dashboard/publisher/adrotate-groups-edit.php:355
2038
- #: dashboard/publisher/adrotate-groups-main.php:35
2039
- #: dashboard/publisher/adrotate-groups-report.php:40
2040
- msgid "Impressions"
2041
- msgstr "表示数"
2042
-
2043
- #: dashboard/publisher/adrotate-ads-edit.php:421
2044
- #, fuzzy
2045
- msgid "impressions per day"
2046
- msgstr "表示数"
2047
-
2048
- #: dashboard/publisher/adrotate-ads-edit.php:437
2049
- #, fuzzy
2050
- msgid "In use by this advert."
2051
- msgstr "広告の枠線"
2052
-
2053
- #: dashboard/publisher/adrotate-ads-edit.php:448
2054
  msgid "Select Groups"
2055
  msgstr "グループを選択"
2056
 
2057
- #: dashboard/publisher/adrotate-ads-edit.php:449
2058
- #, fuzzy
2059
- msgid "Optionally select the group(s) this ad belongs to."
2060
- msgstr "個の広告が期限切れです。"
2061
-
2062
- #: dashboard/publisher/adrotate-ads-edit.php:454
2063
  #, fuzzy
2064
  msgid "ID - Name"
2065
  msgstr "名前"
2066
 
2067
- #: dashboard/publisher/adrotate-ads-edit.php:455
2068
  #, fuzzy
2069
  msgid "Ads in group"
2070
  msgstr "広告グループ - グループIDを使ってください。"
2071
 
2072
- #: dashboard/publisher/adrotate-ads-edit.php:464
2073
  #: dashboard/publisher/adrotate-groups-main.php:58
2074
  #, fuzzy
2075
  msgid "Default"
2076
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2077
 
2078
- #: dashboard/publisher/adrotate-ads-edit.php:465
2079
  #: dashboard/publisher/adrotate-groups-main.php:59
2080
  msgid "Dynamic"
2081
  msgstr ""
2082
 
2083
- #: dashboard/publisher/adrotate-ads-edit.php:465
2084
  #: dashboard/publisher/adrotate-groups-main.php:59
2085
  #, fuzzy
2086
  msgid "second rotation"
2087
  msgstr "バナーがないか、利用不可か適応されていません。"
2088
 
2089
- #: dashboard/publisher/adrotate-ads-edit.php:466
2090
  #: dashboard/publisher/adrotate-groups-main.php:60
2091
  #, fuzzy
2092
  msgid "Block"
2093
  msgstr "ブロック管理"
2094
 
2095
- #: dashboard/publisher/adrotate-ads-edit.php:466
2096
  #: dashboard/publisher/adrotate-groups-main.php:60
2097
  #, fuzzy
2098
  msgid "grid"
@@ -2100,20 +2025,20 @@ msgstr ""
2100
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
2101
  "列です。)"
2102
 
2103
- #: dashboard/publisher/adrotate-ads-edit.php:467
2104
- #: dashboard/publisher/adrotate-groups-edit.php:220
2105
  #: dashboard/publisher/adrotate-groups-main.php:61
2106
  #, fuzzy
2107
  msgid "Post Injection"
2108
  msgstr "投稿及びページ内掲載する場合:"
2109
 
2110
- #: dashboard/publisher/adrotate-ads-edit.php:468
2111
  #: dashboard/publisher/adrotate-groups-main.php:62
2112
  msgid "Geolocation"
2113
  msgstr ""
2114
 
2115
- #: dashboard/publisher/adrotate-ads-edit.php:474
2116
- #: dashboard/publisher/adrotate-groups-edit.php:62
2117
  #: dashboard/publisher/adrotate-groups-main.php:69
2118
  #, fuzzy
2119
  msgid "Mode"
@@ -2145,6 +2070,23 @@ msgstr ""
2145
  msgid "Title"
2146
  msgstr "タイトル"
2147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2148
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2149
  #: dashboard/publisher/adrotate-ads-main.php:47
2150
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2207,7 +2149,7 @@ msgid "For 7 days"
2207
  msgstr "1週間(7日)"
2208
 
2209
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2210
- #: dashboard/publisher/adrotate-groups-edit.php:398
2211
  #, fuzzy
2212
  msgid "Configuration errors."
2213
  msgstr "個の広告が設定エラーになっています。"
@@ -2222,7 +2164,7 @@ msgid "Export to XML"
2222
  msgstr "エクスポートオプション"
2223
 
2224
  #: dashboard/publisher/adrotate-ads-main.php:42
2225
- #: dashboard/publisher/adrotate-groups-edit.php:357
2226
  msgid "Weight"
2227
  msgstr "表示頻度"
2228
 
@@ -2291,84 +2233,77 @@ msgstr "新規追加"
2291
  msgid "Edit Group"
2292
  msgstr "グループ編集"
2293
 
2294
- #: dashboard/publisher/adrotate-groups-edit.php:56
2295
  msgid "Name:"
2296
  msgstr "グループ名:"
2297
 
2298
- #: dashboard/publisher/adrotate-groups-edit.php:65
2299
  #, fuzzy
2300
  msgid "Default - Show one ad at a time"
2301
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
2302
 
2303
- #: dashboard/publisher/adrotate-groups-edit.php:66
2304
  #, fuzzy
2305
  msgid "Dynamic Mode - Show a different ad every few seconds"
2306
  msgstr "秒"
2307
 
2308
- #: dashboard/publisher/adrotate-groups-edit.php:67
2309
  #, fuzzy
2310
  msgid "Block Mode - Show a block of ads"
2311
  msgstr "広告ブロック - ブロックIDを使ってください。"
2312
 
2313
- #: dashboard/publisher/adrotate-groups-edit.php:71
2314
  #, fuzzy
2315
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2316
  msgstr "AdRotate 設定"
2317
 
2318
- #: dashboard/publisher/adrotate-groups-edit.php:78
2319
- #: dashboard/publisher/adrotate-groups-edit.php:135
2320
  #, fuzzy
2321
  msgid "Dynamic and Block Mode"
2322
  msgstr "ブロック管理"
2323
 
2324
- #: dashboard/publisher/adrotate-groups-edit.php:79
2325
  #, fuzzy
2326
  msgid "Only required if your group is in Dynamic or Block mode."
2327
  msgstr ""
2328
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
2329
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
2330
 
2331
- #: dashboard/publisher/adrotate-groups-edit.php:83
2332
- #, fuzzy
2333
- msgid "Block shape and border"
2334
- msgstr "広告の形と枠(必須)ー広告の形とサイズを決めます。"
2335
 
2336
- #: dashboard/publisher/adrotate-groups-edit.php:110
2337
  msgid "rows"
2338
  msgstr "行"
2339
 
2340
- #: dashboard/publisher/adrotate-groups-edit.php:123
2341
  msgid "columns"
2342
  msgstr "列"
2343
 
2344
- #: dashboard/publisher/adrotate-groups-edit.php:126
2345
  #, fuzzy
2346
  msgid "Block Mode"
2347
  msgstr "ブロック管理"
2348
 
2349
- #: dashboard/publisher/adrotate-groups-edit.php:126
2350
- #, fuzzy
2351
- msgid ""
2352
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2353
- "showing a maximum of 6 ads. Default: 2x2."
2354
  msgstr ""
2355
- "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
2356
- "列です。)"
2357
 
2358
- #: dashboard/publisher/adrotate-groups-edit.php:130
2359
- #, fuzzy
2360
- msgid "Advert Width and Height"
2361
- msgstr "幅と高さ"
2362
 
2363
- #: dashboard/publisher/adrotate-groups-edit.php:132
2364
  msgid "pixel(s) wide"
2365
  msgstr "ピクセル(幅)"
2366
 
2367
- #: dashboard/publisher/adrotate-groups-edit.php:132
2368
  msgid "pixel(s) high."
2369
  msgstr "ピクセル(高さ)"
2370
 
2371
- #: dashboard/publisher/adrotate-groups-edit.php:135
2372
  #, fuzzy
2373
  msgid ""
2374
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2376,237 +2311,243 @@ msgid ""
2376
  msgstr ""
2377
  "ピクセル単位で広告の最大サイズを定義します。高さは 'auto'を指定できます。"
2378
 
2379
- #: dashboard/publisher/adrotate-groups-edit.php:139
2380
  msgid "Automated refresh"
2381
  msgstr ""
2382
 
2383
- #: dashboard/publisher/adrotate-groups-edit.php:158
2384
  #, fuzzy
2385
  msgid "seconds."
2386
  msgstr "秒"
2387
 
2388
- #: dashboard/publisher/adrotate-groups-edit.php:161
2389
  msgid "Dynamic Mode"
2390
  msgstr ""
2391
 
2392
- #: dashboard/publisher/adrotate-groups-edit.php:161
2393
  #, fuzzy
2394
  msgid ""
2395
  "Load a new advert in this interval without reloading the page. Default: 6."
2396
  msgstr "新規追加"
2397
 
2398
- #: dashboard/publisher/adrotate-groups-edit.php:181
2399
- #: dashboard/publisher/adrotate-groups-edit.php:322
2400
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2401
  #, fuzzy
2402
  msgid "Save Group"
2403
  msgstr "保存"
2404
 
2405
- #: dashboard/publisher/adrotate-groups-edit.php:189
2406
  #, fuzzy
2407
  msgid "Advert Margin"
2408
  msgstr "ピクセル(margin)"
2409
 
2410
- #: dashboard/publisher/adrotate-groups-edit.php:191
2411
  msgid "pixel(s)"
2412
  msgstr "ピクセル"
2413
 
2414
- #: dashboard/publisher/adrotate-groups-edit.php:194
2415
  #, fuzzy
2416
  msgid "A transparent area outside the advert in pixels. Default: 0."
2417
  msgstr ""
2418
  "ブロックに見えない枠(ピクセル単位)を作れます。(初期設定では1ピクセルで"
2419
  "す。)"
2420
 
2421
- #: dashboard/publisher/adrotate-groups-edit.php:194
2422
  #, fuzzy
2423
  msgid "Set to 0 to disable."
2424
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2425
 
2426
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2427
  #, fuzzy
2428
  msgid "Align the group"
2429
  msgstr "広告グループ - グループIDを使ってください。"
2430
 
2431
- #: dashboard/publisher/adrotate-groups-edit.php:201
2432
  #, fuzzy
2433
  msgid "None (Default)"
2434
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2435
 
2436
- #: dashboard/publisher/adrotate-groups-edit.php:202
2437
  msgid "Left"
2438
  msgstr "右"
2439
 
2440
- #: dashboard/publisher/adrotate-groups-edit.php:203
2441
  msgid "Right"
2442
  msgstr "左"
2443
 
2444
- #: dashboard/publisher/adrotate-groups-edit.php:204
2445
  msgid "Center"
2446
  msgstr ""
2447
 
2448
- #: dashboard/publisher/adrotate-groups-edit.php:208
2449
  msgid ""
2450
  "Align the group in your post or page. Using 'center' may affect your margin "
2451
  "setting. Not every theme supports this feature."
2452
  msgstr ""
2453
 
2454
- #: dashboard/publisher/adrotate-groups-edit.php:214
2455
  msgid "Leave empty or 0 to skip this. Will default to group id."
2456
  msgstr ""
2457
  "この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
2458
  "す。"
2459
 
2460
- #: dashboard/publisher/adrotate-groups-edit.php:218
2461
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2462
  msgstr ""
2463
 
2464
- #: dashboard/publisher/adrotate-groups-edit.php:221
2465
- msgid "Insert ads to the begin or end of a post/page."
2466
- msgstr ""
2467
-
2468
- #: dashboard/publisher/adrotate-groups-edit.php:224
2469
  msgid "Include ads in categories?"
2470
  msgstr "カテゴリーに広告を含めますか?"
2471
 
2472
- #: dashboard/publisher/adrotate-groups-edit.php:228
2473
- #: dashboard/publisher/adrotate-groups-edit.php:269
2474
  #, fuzzy
2475
  msgid "Disabled"
2476
  msgstr "掲載不可広告"
2477
 
2478
- #: dashboard/publisher/adrotate-groups-edit.php:229
2479
- #: dashboard/publisher/adrotate-groups-edit.php:270
2480
  #, fuzzy
2481
  msgid "Before content"
2482
  msgstr "投稿内容の前"
2483
 
2484
- #: dashboard/publisher/adrotate-groups-edit.php:230
2485
- #: dashboard/publisher/adrotate-groups-edit.php:271
2486
  #, fuzzy
2487
  msgid "After content"
2488
  msgstr "コンテンツの前と後ろ"
2489
 
2490
- #: dashboard/publisher/adrotate-groups-edit.php:231
2491
- #: dashboard/publisher/adrotate-groups-edit.php:272
2492
  #, fuzzy
2493
  msgid "Before and after content"
2494
  msgstr "コンテンツの前と後ろ"
2495
 
2496
- #: dashboard/publisher/adrotate-groups-edit.php:232
2497
- #: dashboard/publisher/adrotate-groups-edit.php:273
2498
  #, fuzzy
2499
  msgid "After..."
2500
  msgstr "広告の後に入れるタグ"
2501
 
2502
- #: dashboard/publisher/adrotate-groups-edit.php:238
2503
- #: dashboard/publisher/adrotate-groups-edit.php:279
2504
  msgid "the first paragraph"
2505
  msgstr ""
2506
 
2507
- #: dashboard/publisher/adrotate-groups-edit.php:239
2508
- #: dashboard/publisher/adrotate-groups-edit.php:280
2509
  msgid "the 2nd paragraph"
2510
  msgstr ""
2511
 
2512
- #: dashboard/publisher/adrotate-groups-edit.php:240
2513
- #: dashboard/publisher/adrotate-groups-edit.php:281
2514
  msgid "the 3rd paragraph"
2515
  msgstr ""
2516
 
2517
- #: dashboard/publisher/adrotate-groups-edit.php:241
2518
- #: dashboard/publisher/adrotate-groups-edit.php:282
2519
  msgid "the 4th paragraph"
2520
  msgstr ""
2521
 
2522
- #: dashboard/publisher/adrotate-groups-edit.php:243
2523
- #: dashboard/publisher/adrotate-groups-edit.php:284
2524
  msgid "every 2nd paragraph"
2525
  msgstr ""
2526
 
2527
- #: dashboard/publisher/adrotate-groups-edit.php:244
2528
- #: dashboard/publisher/adrotate-groups-edit.php:285
2529
  msgid "every 3rd paragraph"
2530
  msgstr ""
2531
 
2532
- #: dashboard/publisher/adrotate-groups-edit.php:245
2533
- #: dashboard/publisher/adrotate-groups-edit.php:286
2534
  msgid "every 4th paragraph"
2535
  msgstr ""
2536
 
2537
- #: dashboard/publisher/adrotate-groups-edit.php:246
2538
- #: dashboard/publisher/adrotate-groups-edit.php:287
2539
  msgid "every 5th paragraph"
2540
  msgstr ""
2541
 
2542
- #: dashboard/publisher/adrotate-groups-edit.php:247
2543
- #: dashboard/publisher/adrotate-groups-edit.php:288
2544
  msgid "every 6th paragraph"
2545
  msgstr ""
2546
 
2547
- #: dashboard/publisher/adrotate-groups-edit.php:248
2548
- #: dashboard/publisher/adrotate-groups-edit.php:289
2549
  msgid "every 7th paragraph"
2550
  msgstr ""
2551
 
2552
- #: dashboard/publisher/adrotate-groups-edit.php:249
2553
- #: dashboard/publisher/adrotate-groups-edit.php:290
2554
  msgid "every 8th paragraph"
2555
  msgstr ""
2556
 
2557
- #: dashboard/publisher/adrotate-groups-edit.php:255
2558
  msgid "Which categories?"
2559
  msgstr "どのカテゴリーですか?"
2560
 
2561
- #: dashboard/publisher/adrotate-groups-edit.php:260
2562
  #, fuzzy
2563
  msgid "Click the categories posts you want the adverts to show in."
2564
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2565
 
2566
- #: dashboard/publisher/adrotate-groups-edit.php:265
2567
  msgid "Include ads in pages?"
2568
  msgstr "固有ページに広告を含めますか?"
2569
 
2570
- #: dashboard/publisher/adrotate-groups-edit.php:296
2571
  msgid "Which pages?"
2572
  msgstr "どのページですか?"
2573
 
2574
- #: dashboard/publisher/adrotate-groups-edit.php:301
2575
  #, fuzzy
2576
  msgid "Click the pages you want the adverts to show in."
2577
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2578
 
2579
- #: dashboard/publisher/adrotate-groups-edit.php:326
2580
  #, fuzzy
2581
  msgid "Wrapper code"
2582
  msgstr "Wrapper code (Optional) - 各広告を囲みます。"
2583
 
2584
- #: dashboard/publisher/adrotate-groups-edit.php:327
2585
- #, fuzzy
2586
- msgid "Wraps around each ad."
2587
- msgstr "Wrapper code (Optional) - 各広告を囲みます。"
2588
 
2589
- #: dashboard/publisher/adrotate-groups-edit.php:331
2590
  msgid "Before ad"
2591
  msgstr "広告の前に入れるタグ"
2592
 
2593
- #: dashboard/publisher/adrotate-groups-edit.php:336
2594
- msgid "HTML/JavaScript allowed, use with care!"
2595
- msgstr "HTML/JavaScriptの利用は可能ですが、利用にはご注意下さい。"
2596
 
2597
- #: dashboard/publisher/adrotate-groups-edit.php:340
2598
  msgid "After ad"
2599
  msgstr "広告の後に入れるタグ"
2600
 
2601
- #: dashboard/publisher/adrotate-groups-edit.php:349
2602
  msgid "Select Ads"
2603
  msgstr "広告選択"
2604
 
2605
- #: dashboard/publisher/adrotate-groups-edit.php:358
2606
  msgid "Visible until"
2607
  msgstr "掲載期限"
2608
 
2609
- #: dashboard/publisher/adrotate-groups-edit.php:391
2610
  msgid "No ads created!"
2611
  msgstr "広告が作成されていません!"
2612
 
@@ -2639,6 +2580,114 @@ msgstr "グループがまだ作られていません。"
2639
  msgid "Statistics for group"
2640
  msgstr "統計 "
2641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2642
  #, fuzzy
2643
  #~ msgid "AdRotate Website."
2644
  #~ msgstr "AdRotate Blog"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
16
  "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:809
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:812
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-output.php:745
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
+ #: adrotate-output.php:746
32
  #, fuzzy
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
38
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
39
  "さい。英語ですが。"
40
 
41
+ #: adrotate-output.php:747
42
  #, fuzzy
43
  msgid ""
44
  "If you have received the url you want to visit via email, you are being "
45
  "tricked!"
46
  msgstr "このウィジェットに使いたい物を選んで下さい。"
47
 
48
+ #: adrotate-output.php:748
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
+ #: adrotate-output.php:766
56
  #, fuzzy
57
  msgid ""
58
  "Error, Ad is not available at this time due to schedule/geolocation "
59
  "restrictions or does not exist!"
60
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
61
 
62
+ #: adrotate-output.php:768
63
  #, fuzzy
64
  msgid ""
65
  "Error, Ad is not available at this time due to schedule/geolocation "
68
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
69
  "を再度保存してください!"
70
 
71
+ #: adrotate-output.php:775 adrotate-output.php:777
72
  msgid ""
73
  "Either there are no banners, they are disabled or none qualified for this "
74
  "location!"
75
  msgstr "バナーがないか、利用不可か適応されていません。"
76
 
77
+ #: adrotate-output.php:783
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
+ #: adrotate-output.php:789
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
+ #: adrotate-output.php:794
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
+ #: adrotate-output.php:800
95
  msgid ""
96
  "There was an error locating the database tables for AdRotate. Please "
97
  "deactivate and re-activate AdRotate from the plugin page!!"
99
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
100
  "して、再登録して下さい。"
101
 
102
+ #: adrotate-output.php:800
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
+ #: adrotate-output.php:806
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
+ #: adrotate-output.php:831
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
+ #: adrotate-output.php:831
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
+ #: adrotate-output.php:833
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
+ #: adrotate-output.php:833
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
+ #: adrotate-output.php:835
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
+ #: adrotate-output.php:835
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
+ #: adrotate-output.php:837
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
+ #: adrotate-output.php:837
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
+ #: adrotate-output.php:837
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
+ #: adrotate-output.php:837
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
+ #: adrotate-output.php:849
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
+ #: adrotate-output.php:850
158
  msgid ""
159
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
160
  "to the <strong>PRO</strong> version"
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:850
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
+ #: adrotate-output.php:850
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
+ #: adrotate-output.php:894
173
  msgid ""
174
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
175
+ "this menu. Check out the"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:894
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
+ #: adrotate-output.php:894 adrotate-output.php:971
183
+ #: dashboard/publisher/adrotate-ads-edit.php:151
184
  msgid "and"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:894
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
+ #: adrotate-output.php:930
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
+ #: adrotate-output.php:931
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:933
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
+ #: adrotate-output.php:934
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
+ #: adrotate-output.php:935
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
+ #: adrotate-output.php:936
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
+ #: adrotate-output.php:937
224
  msgid "WordPress.org Forum"
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:963
228
  #, fuzzy
229
  msgid "Help AdRotate Grow"
230
  msgstr "AdRotate Blog"
231
 
232
+ #: adrotate-output.php:964
233
  msgid "Brought to you by"
234
  msgstr "サービス紹介"
235
 
236
+ #: adrotate-output.php:971
237
  msgid ""
238
  "A lot of users only think to review AdRotate when something goes wrong while "
239
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:971
243
  msgid "If you find AdRotate useful please leave your honest"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:971
247
  msgid "rating"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:971
251
  #, fuzzy
252
  msgid "review"
253
  msgstr "全般レポートを見れる権限"
254
 
255
+ #: adrotate-output.php:971
256
  msgid "on WordPress.org to help AdRotate grow in a positive way"
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:974
260
  #, fuzzy
261
  msgid ""
262
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
266
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
267
  "さい。英語ですが。"
268
 
269
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
270
  #, fuzzy
271
  msgid "Visit the"
272
  msgstr ""
274
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
275
  "さい。英語ですが。"
276
 
277
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
278
  #, fuzzy
279
  msgid "website"
280
  msgstr "開発者のWEBサイトは以下です。"
281
 
282
+ #: adrotate-output.php:1004
283
  #, fuzzy
284
  msgid "Available in AdRotate Pro"
285
  msgstr "AdRotate Blog"
286
 
287
+ #: adrotate-output.php:1004
288
  #, fuzzy
289
  msgid "More information..."
290
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
291
 
292
+ #: adrotate-output.php:1005
293
  #, fuzzy
294
  msgid "This feature is available in AdRotate Pro"
295
  msgstr "この機能は使いません。"
296
 
297
+ #: adrotate-output.php:1005
298
  #, fuzzy
299
  msgid "Learn more"
300
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
301
 
302
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
303
+ #: dashboard/publisher/adrotate-ads-edit.php:245
304
  msgid "January"
305
  msgstr "1月"
306
 
307
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
308
+ #: dashboard/publisher/adrotate-ads-edit.php:246
309
  msgid "February"
310
  msgstr "2月"
311
 
312
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
313
+ #: dashboard/publisher/adrotate-ads-edit.php:247
314
  msgid "March"
315
  msgstr "3月"
316
 
317
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
318
+ #: dashboard/publisher/adrotate-ads-edit.php:248
319
  msgid "April"
320
  msgstr "4月"
321
 
322
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
323
+ #: dashboard/publisher/adrotate-ads-edit.php:249
324
  msgid "May"
325
  msgstr "5月"
326
 
327
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
328
+ #: dashboard/publisher/adrotate-ads-edit.php:250
329
  msgid "June"
330
  msgstr "6月"
331
 
332
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
333
+ #: dashboard/publisher/adrotate-ads-edit.php:251
334
  msgid "July"
335
  msgstr "7月"
336
 
337
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
338
+ #: dashboard/publisher/adrotate-ads-edit.php:252
339
  msgid "August"
340
  msgstr "8月"
341
 
342
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
343
+ #: dashboard/publisher/adrotate-ads-edit.php:253
344
  msgid "September"
345
  msgstr "9月"
346
 
347
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
348
+ #: dashboard/publisher/adrotate-ads-edit.php:254
349
  msgid "October"
350
  msgstr "10月"
351
 
352
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
353
+ #: dashboard/publisher/adrotate-ads-edit.php:255
354
  msgid "November"
355
  msgstr "11月"
356
 
357
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
358
+ #: dashboard/publisher/adrotate-ads-edit.php:256
359
  msgid "December"
360
  msgstr "12月"
361
 
410
  msgid "Choose what you want to use this widget for"
411
  msgstr "このウィジェットに使いたい物を選んで下さい。"
412
 
413
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
414
  #, fuzzy
415
  msgid "ID:"
416
  msgstr "広告ブロック - ブロックIDを使ってください。"
419
  msgid "Fill in the ID of the type you want to display!"
420
  msgstr "表示したいタイプのIDを入力してください!"
421
 
422
+ #: adrotate.php:107
423
  #, fuzzy
424
  msgid "General Info"
425
  msgstr "一般設定"
426
 
427
+ #: adrotate.php:108
428
  #, fuzzy
429
  msgid "AdRotate Pro"
430
  msgstr "AdRotate Blog"
431
 
432
+ #: adrotate.php:109
433
  msgid "Manage Ads"
434
  msgstr "広告管理"
435
 
436
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
437
  msgid "Manage Groups"
438
  msgstr "グループの管理"
439
 
440
+ #: adrotate.php:111 adrotate.php:440
 
441
  #, fuzzy
442
  msgid "Manage Schedules"
443
  msgstr "管理"
444
 
445
+ #: adrotate.php:112
446
  #, fuzzy
447
  msgid "Manage Media"
448
  msgstr "画像リンク先URL:"
449
 
450
+ #: adrotate.php:113
451
  msgid "Settings"
452
  msgstr "設定"
453
 
454
+ #: adrotate.php:136
455
  #, fuzzy
456
  msgid "AdRotate Info"
457
  msgstr "AdRotate Blog"
458
 
459
+ #: adrotate.php:157
460
  #, fuzzy
461
  msgid "AdRotate Professional"
462
  msgstr "AdRotate Blog"
463
 
464
+ #: adrotate.php:200
465
  msgid "Ad Management"
466
  msgstr "広告管理"
467
 
468
+ #: adrotate.php:203
469
  msgid "Ad created"
470
  msgstr "広告作成"
471
 
472
+ #: adrotate.php:205
473
  msgid "Ad updated"
474
  msgstr "広告更新"
475
 
476
+ #: adrotate.php:207
477
  msgid "Ad(s) deleted"
478
  msgstr "広告削除"
479
 
480
+ #: adrotate.php:209
481
  msgid "Ad(s) statistics reset"
482
  msgstr "広告の統計情報初期化"
483
 
484
+ #: adrotate.php:211
485
  msgid "Ad(s) renewed"
486
  msgstr "広告の更新"
487
 
488
+ #: adrotate.php:213
489
  msgid "Ad(s) deactivated"
490
  msgstr "広告の利用停止"
491
 
492
+ #: adrotate.php:215
493
  msgid "Ad(s) activated"
494
  msgstr "広告の利用可能化"
495
 
496
+ #: adrotate.php:217
497
  msgid ""
498
  "The ad was saved but has an issue which might prevent it from working "
499
  "properly. Review the yellow marked ad."
501
  "広告は保存されますが、動作してから問題が発生するかもしれません。黄色でマーク"
502
  "された広告を確認して下さい。"
503
 
504
+ #: adrotate.php:219
505
  #, fuzzy
506
  msgid "Export created"
507
  msgstr "エクスポートオプション"
508
 
509
+ #: adrotate.php:223
510
  msgid "Action prohibited"
511
  msgstr "今の操作は禁止されました。"
512
 
513
+ #: adrotate.php:225 adrotate.php:373
514
  msgid "No data found in selected time period"
515
  msgstr "選ばれた期間が見つかりません。"
516
 
517
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
518
  msgid "Manage"
519
  msgstr "管理"
520
 
521
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
522
  msgid "Add New"
523
  msgstr "新規追加"
524
 
525
+ #: adrotate.php:362
526
  msgid "Group Management"
527
  msgstr "グループの管理"
528
 
529
+ #: adrotate.php:365
530
  msgid "Group created"
531
  msgstr "グループの作成"
532
 
533
+ #: adrotate.php:367
534
  msgid "Group updated"
535
  msgstr "グループの更新"
536
 
537
+ #: adrotate.php:369
538
  msgid "Group deleted"
539
  msgstr "グループの削除"
540
 
541
+ #: adrotate.php:371
542
  msgid "Group including it's Ads deleted"
543
  msgstr "削除された広告がグループに含まれています。"
544
 
545
+ #: adrotate.php:431
546
  #, fuzzy
547
  msgid "Schedule Management available in AdRotate Pro"
548
  msgstr "この機能は使いません。"
549
 
550
+ #: adrotate.php:441
551
  #, fuzzy
552
  msgid ""
553
  "Schedule management and multiple schedules per advert is available in "
554
  "AdRotate Pro."
555
  msgstr "この機能は使いません。"
556
 
557
+ #: adrotate.php:441 adrotate.php:528
558
+ #: dashboard/publisher/adrotate-ads-edit.php:177
559
  #: dashboard/publisher/adrotate-ads-main.php:108
560
+ #: dashboard/publisher/adrotate-groups-edit.php:75
561
  #: dashboard/publisher/adrotate-groups-main.php:87
562
  #, fuzzy
563
  msgid "More information"
564
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
565
 
566
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
567
  #: dashboard/publisher/adrotate-ads-main-error.php:19
568
  #: dashboard/publisher/adrotate-ads-main.php:20
569
  #: dashboard/publisher/adrotate-groups-main.php:20
570
  msgid "Bulk Actions"
571
  msgstr "一括操作"
572
 
573
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
574
  #: dashboard/publisher/adrotate-ads-main-error.php:29
575
  #: dashboard/publisher/adrotate-ads-main.php:30
576
  #: dashboard/publisher/adrotate-groups-main.php:24
577
  msgid "Go"
578
  msgstr "実行"
579
 
580
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
581
  #: dashboard/publisher/adrotate-ads-main-error.php:39
582
  #: dashboard/publisher/adrotate-ads-main.php:39
583
  #: dashboard/publisher/adrotate-groups-main.php:32
585
  msgid "ID"
586
  msgstr "広告ブロック - ブロックIDを使ってください。"
587
 
588
+ #: adrotate.php:459
589
  msgid "Start"
590
  msgstr ""
591
 
592
+ #: adrotate.php:459
593
  msgid "End"
594
  msgstr ""
595
 
596
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
597
  #: dashboard/publisher/adrotate-groups-main.php:34
598
  msgid "Ads"
599
  msgstr "広告"
600
 
601
+ #: adrotate.php:462
602
  #, fuzzy
603
  msgid "Max Clicks"
604
  msgstr "クリック"
605
 
606
+ #: adrotate.php:463
607
  #, fuzzy
608
  msgid "Max Impressions"
609
  msgstr "表示数"
610
 
611
+ #: adrotate.php:493
612
  #, fuzzy
613
  msgid "No schedules created yet!"
614
  msgstr "まだブロックが作られていません。"
615
 
616
+ #: adrotate.php:498
617
  #, fuzzy
618
  msgid "Easily manage your schedules from here with AdRotate Pro."
619
  msgstr ""
620
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
621
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
622
 
623
+ #: adrotate.php:498 adrotate.php:561
624
  #, fuzzy
625
  msgid "Upgrade today!"
626
  msgstr "本日"
627
 
628
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
629
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
630
  #, fuzzy
631
  msgid "Expires soon."
632
  msgstr "これは出来る限り早く修正して下さい。"
633
 
634
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
635
+ #: dashboard/publisher/adrotate-groups-edit.php:373
636
  #, fuzzy
637
  msgid "Has expired."
638
  msgstr "個の広告が期限切れです。"
639
 
640
+ #: adrotate.php:526
641
  #, fuzzy
642
  msgid "Media Management available in AdRotate Pro"
643
  msgstr "この機能は使いません。"
644
 
645
+ #: adrotate.php:528
646
  msgid ""
647
  "Upload images to the AdRotate Pro banners folder from here. This is "
648
  "especially useful if you use responsive adverts with multiple images."
649
  msgstr ""
650
 
651
+ #: adrotate.php:528
652
  #, fuzzy
653
  msgid "Media uploading and management is available in AdRotate Pro."
654
  msgstr "この機能は使いません。"
655
 
656
+ #: adrotate.php:530
657
  #, fuzzy
658
  msgid "Upload new banner image"
659
  msgstr "バナー画像"
660
 
661
+ #: adrotate.php:531
662
  #, fuzzy
663
  msgid "Accepted files are:"
664
  msgstr ""
665
  "%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
666
  "す。"
667
 
668
+ #: adrotate.php:531
669
  msgid "Maximum size is 512Kb."
670
  msgstr ""
671
 
672
+ #: adrotate.php:531
673
  msgid "Important:"
674
  msgstr ""
675
 
676
+ #: adrotate.php:531
677
  msgid ""
678
  "Make sure your file has no spaces or special characters in the name. Replace "
679
  "spaces with a - or _."
680
  msgstr ""
681
 
682
+ #: adrotate.php:533
683
  msgid ""
684
  "For responsive adverts make sure the filename is in the following format; "
685
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
686
  msgstr ""
687
 
688
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
689
  msgid ""
690
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
691
  "filename instead of \".full\" for the various viewports."
692
  msgstr ""
693
 
694
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
695
+ #: dashboard/publisher/adrotate-groups-edit.php:308
696
+ #: dashboard/publisher/adrotate-groups-edit.php:316
697
  msgid "Example:"
698
  msgstr "例:"
699
 
700
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
701
  msgid ""
702
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
703
  "for different viewports."
704
  msgstr ""
705
 
706
+ #: adrotate.php:539
707
  #, fuzzy
708
  msgid "Upload image"
709
  msgstr "バナー画像"
710
 
711
+ #: adrotate.php:542
712
  #, fuzzy
713
  msgid "Available banner images in"
714
  msgstr "バナー画像"
715
 
716
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
717
  msgid "Name"
718
  msgstr "名前"
719
 
720
+ #: adrotate.php:548
721
  #, fuzzy
722
  msgid "Actions"
723
  msgstr "一括操作"
724
 
725
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
726
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
727
  #: dashboard/publisher/adrotate-ads-main-error.php:21
728
  #: dashboard/publisher/adrotate-ads-main.php:22
729
  msgid "Delete"
730
  msgstr "削除"
731
 
732
+ #: adrotate.php:561
733
  msgid ""
734
  "Make sure the banner images are not in use by adverts when you delete them!"
735
  msgstr ""
736
 
737
+ #: adrotate.php:561
738
  #, fuzzy
739
  msgid "Manage your banner folder from here with AdRotate Pro."
740
  msgstr ""
741
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
742
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
743
 
744
+ #: adrotate.php:605
745
  msgid "AdRotate Settings"
746
  msgstr "AdRotate 設定"
747
 
748
+ #: adrotate.php:608
749
  msgid "Settings saved"
750
  msgstr "設定を保存します。"
751
 
752
+ #: adrotate.php:610
753
  msgid "Database optimized"
754
  msgstr "データベースの最適化"
755
 
756
+ #: adrotate.php:612
757
  msgid "Database repaired"
758
  msgstr "データベースの修復"
759
 
760
+ #: adrotate.php:614
761
  #, fuzzy
762
  msgid "Ads evaluated and statuses have been corrected where required"
763
  msgstr "広告"
764
 
765
+ #: adrotate.php:616
766
  msgid "Empty database records removed"
767
  msgstr "空のデータベースは削除されました。"
768
 
769
+ #: adrotate.php:618
770
  msgid "Database can only be optimized or cleaned once every hour"
771
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
772
 
773
+ #: adrotate.php:626
774
  msgid "Access Rights"
775
  msgstr "アクセス権限"
776
 
777
+ #: adrotate.php:627
778
  msgid "Who has access to what?"
779
  msgstr ""
780
 
781
+ #: adrotate.php:630
782
  msgid "Manage/Add/Edit adverts"
783
  msgstr "広告の追加・編集管理"
784
 
785
+ #: adrotate.php:634
786
  msgid "Role to see and add/edit ads."
787
  msgstr "広告を追加・編集する権限"
788
 
789
+ #: adrotate.php:638
790
  msgid "Delete/Reset adverts"
791
  msgstr "広告の削除やリセット"
792
 
793
+ #: adrotate.php:642
794
  msgid "Role to delete ads and reset stats."
795
  msgstr "広告の削除やリセットする権限"
796
 
797
+ #: adrotate.php:646
798
  msgid "Manage/Add/Edit groups"
799
  msgstr "グループの追加・編集管理"
800
 
801
+ #: adrotate.php:650
802
  msgid "Role to see and add/edit groups."
803
  msgstr "グループを削除・編集する権限"
804
 
805
+ #: adrotate.php:654
806
  msgid "Delete groups"
807
  msgstr "グループの削除"
808
 
809
+ #: adrotate.php:658
810
  msgid "Role to delete groups."
811
  msgstr "グループを削除できる権限"
812
 
813
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
814
+ #: adrotate.php:875
815
  msgid "Update Options"
816
  msgstr "設定の更新"
817
 
818
+ #: adrotate.php:690
819
  msgid "Statistics"
820
  msgstr "統計"
821
 
822
+ #: adrotate.php:693
823
  #, fuzzy
824
  msgid "Enable stats"
825
  msgstr "統計リセット"
826
 
827
+ #: adrotate.php:695
828
  #, fuzzy
829
  msgid "Track clicks and impressions."
830
  msgstr "クリック"
831
 
832
+ #: adrotate.php:695
833
  #, fuzzy
834
  msgid "Disabling this also disables click and impression limits on schedules."
835
  msgstr "現在のスケジュール"
836
 
837
+ #: adrotate.php:699
838
  msgid "Impressions timer"
839
  msgstr "表示時間"
840
 
841
+ #: adrotate.php:701 adrotate.php:708
842
  msgid "Seconds."
843
  msgstr "秒"
844
 
845
+ #: adrotate.php:702
846
  #, fuzzy
847
  msgid "Default: 60."
848
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
849
 
850
+ #: adrotate.php:702
851
  #, fuzzy
852
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
853
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
854
 
855
+ #: adrotate.php:706
856
  #, fuzzy
857
  msgid "Clicks timer"
858
  msgstr "表示時間"
859
 
860
+ #: adrotate.php:709
861
  #, fuzzy
862
  msgid "Default: 86400."
863
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
864
 
865
+ #: adrotate.php:709
866
  #, fuzzy
867
  msgid ""
868
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
869
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
870
 
871
+ #: adrotate.php:714
872
  #, fuzzy
873
  msgid "Bot filter"
874
  msgstr "ユーザーエージェントフィルター"
875
 
876
+ #: adrotate.php:717
877
  msgid "User-Agent Filter"
878
  msgstr "ユーザーエージェントフィルター"
879
 
880
+ #: adrotate.php:720
881
  msgid ""
882
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
883
  "prevent impressions and clicks counted on them."
885
  "コンマは、キーワードのリストを区切ります。カウント表示回数やクリックを防止す"
886
  "るために、ボット/クローラ/ユーザエージェントを除外します。"
887
 
888
+ #: adrotate.php:721
889
  #, fuzzy
890
  msgid ""
891
  "Keep in mind that this might give false positives. The word 'google' also "
894
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
895
  "場合があります。"
896
 
897
+ #: adrotate.php:721
898
  #, fuzzy
899
  msgid "Keep your list up-to-date"
900
  msgstr ""
901
  "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
902
  "抑えて下さい。"
903
 
904
+ #: adrotate.php:722
905
  #, fuzzy
906
  msgid ""
907
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
908
  "other characters are stripped out."
909
  msgstr "HTMLタグは取り除かれます。"
910
 
911
+ #: adrotate.php:723
912
  msgid ""
913
  "Additionally to the list specified here, empty User-Agents are blocked as "
914
  "well."
916
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
917
  "れます。"
918
 
919
+ #: adrotate.php:723
920
  msgid "Learn more about"
921
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
922
 
923
+ #: adrotate.php:723
924
  msgid "user-agents"
925
  msgstr "ユーザーエージェント[英語]"
926
 
927
+ #: adrotate.php:732
928
  msgid "Miscellaneous"
929
  msgstr "その他"
930
 
931
+ #: adrotate.php:735
932
  msgid "Widget alignment"
933
  msgstr "ウィジェットの配置"
934
 
935
+ #: adrotate.php:736
936
  msgid ""
937
  "Check this box if your widgets do not align in your themes sidebar. (Does "
938
  "not always help!)"
940
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
941
  "クスをオンにします。"
942
 
943
+ #: adrotate.php:739
944
  #, fuzzy
945
  msgid "Widget padding"
946
  msgstr "ブロックの隙間"
947
 
948
+ #: adrotate.php:740
949
  #, fuzzy
950
  msgid ""
951
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
954
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
955
  "クスをオンにします。"
956
 
957
+ #: adrotate.php:745 adrotate.php:756
958
  msgid "NOTICE:"
959
  msgstr ""
960
 
961
+ #: adrotate.php:746
962
  msgid ""
963
  "You have enabled W3 Total Caching support but not defined the security hash. "
964
  "You need to add the following line to your wp-config.php near the bottom or "
966
  "needs to be enabled in W3 Total Cache as well too."
967
  msgstr ""
968
 
969
+ #: adrotate.php:750
970
  msgid "W3 Total Caching"
971
  msgstr ""
972
 
973
+ #: adrotate.php:751
974
  #, fuzzy
975
  msgid "Check this box if you use W3 Total Caching on your site."
976
  msgstr ""
977
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
978
  "クスをオンにします。"
979
 
980
+ #: adrotate.php:757
981
  msgid ""
982
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
983
  "this function will not work. WP Super Cache has discontinued support for "
984
  "dynamic content."
985
  msgstr ""
986
 
987
+ #: adrotate.php:761
988
  msgid "WP Super Cache"
989
  msgstr ""
990
 
991
+ #: adrotate.php:762
992
  #, fuzzy
993
  msgid "Check this box if you use WP Super Cache on your site."
994
  msgstr ""
995
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
996
  "クスをオンにします。"
997
 
998
+ #: adrotate.php:767
999
  #, fuzzy
1000
  msgid ""
1001
  "It may take a while for the ad to start rotating. The caching plugin needs "
1004
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1005
  "可能性があります。"
1006
 
1007
+ #: adrotate.php:767
1008
  #, fuzzy
1009
  msgid ""
1010
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1011
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1012
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1013
 
1014
+ #: adrotate.php:771
1015
  msgid "Javascript"
1016
  msgstr ""
1017
 
1018
+ #: adrotate.php:774
1019
  msgid "Load jQuery"
1020
  msgstr ""
1021
 
1022
+ #: adrotate.php:775
1023
  #, fuzzy
1024
  msgid ""
1025
  "jQuery is required for all Javascript features below. Enable this if your "
1026
  "theme does not load jQuery already."
1027
  msgstr "テキストリンク(クリック数調査付):"
1028
 
1029
+ #: adrotate.php:778
1030
  msgid "Load in footer?"
1031
  msgstr ""
1032
 
1033
+ #: adrotate.php:779
1034
  #, fuzzy
1035
  msgid ""
1036
  "Enable if you want to load the above libraries in the footer. Your theme "
1040
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1041
  "さい。英語ですが。"
1042
 
1043
+ #: adrotate.php:787
1044
  msgid "Maintenance"
1045
  msgstr "メンテナンス"
1046
 
1047
+ #: adrotate.php:788
1048
  #, fuzzy
1049
  msgid ""
1050
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1054
  "sluggish."
1055
  msgstr "データベースのバックアップを取りましたか?"
1056
 
1057
+ #: adrotate.php:803 adrotate.php:805
1058
  msgid "Optimize Database"
1059
  msgstr "データベースの最適化"
1060
 
1061
+ #: adrotate.php:805
1062
  msgid "You are about to optimize the AdRotate database."
1063
  msgstr "AdRotateのデータベースの最適化を行います。"
1064
 
1065
+ #: adrotate.php:805
1066
  msgid "Did you make a backup of your database?"
1067
  msgstr "データベースのバックアップを取りましたか?"
1068
 
1069
+ #: adrotate.php:805
1070
  msgid ""
1071
  "This may take a moment and may cause your website to respond slow "
1072
  "temporarily!"
1074
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1075
  "可能性があります。"
1076
 
1077
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1078
  #: dashboard/publisher/adrotate-groups-main.php:24
1079
  msgid "OK to continue, CANCEL to stop."
1080
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1081
 
1082
+ #: adrotate.php:806
1083
  msgid "Cleans up overhead data in the AdRotate tables."
1084
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1085
 
1086
+ #: adrotate.php:807
1087
  #, fuzzy
1088
  msgid ""
1089
  "Overhead data is accumulated garbage resulting from many changes you've "
1090
  "made. This can vary from nothing to hundreds of KiB of data."
1091
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1092
 
1093
+ #: adrotate.php:811 adrotate.php:813
1094
  msgid "Clean-up Database"
1095
  msgstr "データベースのクリーンアップ"
1096
 
1097
+ #: adrotate.php:813
1098
  #, fuzzy
1099
  msgid ""
1100
  "You are about to clean up your database. This may delete expired schedules "
1101
  "and older statistics."
1102
  msgstr "データベースのクリーンアップ"
1103
 
1104
+ #: adrotate.php:813
1105
  #, fuzzy
1106
  msgid "Are you sure you want to continue?"
1107
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1108
 
1109
+ #: adrotate.php:813 adrotate.php:821
1110
  #, fuzzy
1111
  msgid "This might take a while and may slow down your site during this action!"
1112
  msgstr ""
1113
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1114
  "可能性があります。"
1115
 
1116
+ #: adrotate.php:814
1117
  #, fuzzy
1118
  msgid "Delete stats older than 356 days (Optional)."
1119
  msgstr "広告の削除やリセットする権限"
1120
 
1121
+ #: adrotate.php:815
1122
  #, fuzzy
1123
  msgid ""
1124
  "AdRotate creates empty records when you start making ads or groups. In rare "
1125
  "occasions these records are faulty."
1126
  msgstr "空のデータベースは削除されました。"
1127
 
1128
+ #: adrotate.php:815
1129
  #, fuzzy
1130
  msgid ""
1131
  "If you made an ad or group that does not save when you make it use this "
1132
  "button to delete those empty records."
1133
  msgstr "グループを削除しようとしています。"
1134
 
1135
+ #: adrotate.php:815
1136
  #, fuzzy
1137
  msgid ""
1138
  "Additionally you can clean up old statistics. This will improve the speed of "
1139
  "your site."
1140
  msgstr "データベースのクリーンアップ"
1141
 
1142
+ #: adrotate.php:819
1143
  msgid "Re-evaluate Ads"
1144
  msgstr "広告の再評価"
1145
 
1146
+ #: adrotate.php:821
1147
  msgid "Re-evaluate all ads"
1148
  msgstr "すべての広告の再評価"
1149
 
1150
+ #: adrotate.php:821
1151
  msgid "You are about to check all ads for errors."
1152
  msgstr "すべての広告のエラーをチェックしようとしています。"
1153
 
1154
+ #: adrotate.php:822
1155
  #, fuzzy
1156
  msgid ""
1157
  "This will apply all evaluation rules to all ads to see if any error slipped "
1158
  "in. Normally you should not need this feature."
1159
  msgstr "すべての広告のエラーをチェックしようとしています。"
1160
 
1161
+ #: adrotate.php:826
1162
  #, fuzzy
1163
  msgid ""
1164
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1169
  "clicking these buttons is not a valid point in any case."
1170
  msgstr "データベースのバックアップを取りましたか?"
1171
 
1172
+ #: adrotate.php:834
1173
  msgid "Troubleshooting"
1174
  msgstr "トラブルシューティング(トラブル対応)"
1175
 
1176
+ #: adrotate.php:837
1177
  #, fuzzy
1178
  msgid "Current version:"
1179
  msgstr "現在のスケジュール"
1180
 
1181
+ #: adrotate.php:838
1182
  #, fuzzy
1183
  msgid "Previous version:"
1184
  msgstr "プレビュー"
1185
 
1186
+ #: adrotate.php:841
1187
  #, fuzzy
1188
  msgid "Current database version:"
1189
  msgstr "現在のスケジュール"
1190
 
1191
+ #: adrotate.php:842
1192
  #, fuzzy
1193
  msgid "Previous database version:"
1194
  msgstr "データベースの最適化"
1195
 
1196
+ #: adrotate.php:845
1197
  #, fuzzy
1198
  msgid "Ad evaluation next run:"
1199
  msgstr "通知先"
1200
 
1201
+ #: adrotate.php:846 adrotate.php:850
1202
  #, fuzzy
1203
  msgid "Not scheduled!"
1204
  msgstr "掲載期間"
1205
 
1206
+ #: adrotate.php:849
1207
  #, fuzzy
1208
  msgid "Clean Trackerdata next run:"
1209
  msgstr "データベースのクリーンアップ"
1210
 
1211
+ #: adrotate.php:853
1212
  #, fuzzy
1213
  msgid "Current status of adverts"
1214
  msgstr "現在のスケジュール"
1215
 
1216
+ #: adrotate.php:854
1217
  #, fuzzy
1218
  msgid "Normal"
1219
  msgstr "平均的表示(50%程度)"
1220
 
1221
+ #: adrotate.php:854
1222
  #, fuzzy
1223
  msgid "Error"
1224
  msgstr "理解できないエラーが起こっています。"
1225
 
1226
+ #: adrotate.php:854
1227
  #, fuzzy
1228
  msgid "Expired"
1229
  msgstr "個の広告が期限切れです。"
1230
 
1231
+ #: adrotate.php:854
1232
  #, fuzzy
1233
  msgid "Expires Soon"
1234
  msgstr "これは出来る限り早く修正して下さい。"
1235
 
1236
+ #: adrotate.php:854
1237
  #, fuzzy
1238
  msgid "Unknown Status"
1239
  msgstr "理解できないエラーが起こっています。"
1240
 
1241
+ #: adrotate.php:857
1242
  msgid ""
1243
  "NOTE: The below options are not meant for normal use and are only there for "
1244
  "developers to review saved settings or how ads are selected. These can be "
1248
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1249
  "用しないで下さい。基本的にチェックを入れない!"
1250
 
1251
+ #: adrotate.php:861
1252
  msgid "Developer Debug"
1253
  msgstr "開発者向けデバッグ"
1254
 
1255
+ #: adrotate.php:863
1256
  #, fuzzy
1257
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1258
  msgstr ""
1259
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1260
  "用しないで下さい。基本的にチェックを入れない!"
1261
 
1262
+ #: adrotate.php:864
1263
  #, fuzzy
1264
  msgid "Show all settings, dashboard routines and related values."
1265
  msgstr "設定"
1266
 
1267
+ #: adrotate.php:865
1268
  #, fuzzy
1269
  msgid "Show array of all userroles and capabilities."
1270
  msgstr "表示できるデータがありません。"
1271
 
1272
+ #: adrotate.php:866
1273
  #, fuzzy
1274
  msgid "Review saved advertisers! Visible to advertisers."
1275
  msgstr "広告主から提出された広告を承認する権限"
1276
 
1277
+ #: adrotate.php:867
1278
  #, fuzzy
1279
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1280
  msgstr "統計リセット"
1281
 
1282
+ #: adrotate.php:868
1283
  #, fuzzy
1284
  msgid ""
1285
  "Disable timers for clicks and impressions and enable a alert window for "
1286
  "clicktracking."
1287
  msgstr "テキストリンク(クリック数調査付):"
1288
 
1289
+ #: adrotate.php:869
1290
  #, fuzzy
1291
  msgid "Temporarily disable encryption on the redirect url."
1292
  msgstr ""
1534
  msgstr "AdCodeを空にすることはできません!"
1535
 
1536
  #: dashboard/publisher/adrotate-ads-edit.php:49
1537
+ msgid "You did not use %image% in your AdCode but did select an image!"
1538
+ msgstr ""
1539
 
1540
  #: dashboard/publisher/adrotate-ads-edit.php:52
1541
  msgid "You did use %image% in your AdCode but did not select an image!"
1550
  "ださい!"
1551
 
1552
  #: dashboard/publisher/adrotate-ads-edit.php:58
1553
+ msgid ""
1554
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1555
+ "ineffective."
1556
+ msgstr ""
1557
+
1558
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1559
+ msgid ""
1560
+ "Your chosen banner image does not have the right name. Check the responsive "
1561
+ "description and try again."
1562
+ msgstr ""
1563
+
1564
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1565
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1566
  msgstr ""
1567
 
1568
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1569
  msgid ""
1570
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1571
  "the ad!"
1573
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
1574
  "を再度保存してください!"
1575
 
1576
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1577
  msgid "This ad is expired and currently not shown on your website!"
1578
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1579
 
1580
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1581
  msgid "The ad will expire in less than 2 days!"
1582
  msgstr "この広告は期限が2日間ありません。"
1583
 
1584
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1585
  msgid "This ad will expire in less than 7 days!"
1586
  msgstr "この広告は期限が7日間ありません。"
1587
 
1588
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1589
  msgid "This ad has been disabled and does not rotate on your site!"
1590
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
1591
 
1592
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1593
  #, fuzzy
1594
  msgid "New Advert"
1595
  msgstr "新規追加"
1596
 
1597
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1598
  #, fuzzy
1599
  msgid "Edit Advert"
1600
  msgstr "編集"
1601
 
1602
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
 
1603
  msgid "Title:"
1604
  msgstr "広告タイトル:"
1605
 
1606
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1607
  msgid "AdCode:"
1608
  msgstr "広告コード[AdCode](タグ含む):"
1609
 
1610
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1611
+ msgid "Basic Examples:"
1612
+ msgstr "設定例:"
1613
+
1614
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1615
+ msgid "Useful tags:"
1616
+ msgstr ""
1617
+
1618
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1619
+ msgid "Insert the advert ID Number."
1620
+ msgstr ""
1621
+
1622
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1623
+ msgid "Insert the %image% tag. Required when selecting a image below."
1624
+ msgstr ""
1625
+
1626
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1627
+ msgid "Insert the advert name."
1628
+ msgstr ""
1629
+
1630
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1631
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1632
+ msgstr ""
1633
+
1634
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1635
+ msgid "Add inside the <a> tag to open advert in a new window."
1636
+ msgstr ""
1637
+
1638
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1639
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1640
+ msgstr ""
1641
+
1642
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1643
  msgid ""
1644
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1645
+ "click to add it."
1646
  msgstr ""
1647
 
1648
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1649
+ msgid "Banner image:"
1650
+ msgstr "バナー画像"
1651
+
1652
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1653
+ msgid "WordPress media:"
1654
  msgstr ""
1655
 
1656
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1657
+ #, fuzzy
1658
+ msgid "Select Banner"
1659
+ msgstr "バナー画像"
1660
 
1661
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1662
+ msgid "- OR -"
1663
+ msgstr "- もしくは -"
1664
+
1665
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1666
+ msgid "Banner folder:"
1667
+ msgstr "画像バナー"
1668
+
1669
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1670
+ msgid "No image selected"
1671
+ msgstr "画像は設定されていません。"
1672
+
1673
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1674
+ msgid "Use %image% in the code. Accepted files are:"
1675
+ msgstr ""
1676
+ "%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
1677
+ "す。"
1678
+
1679
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1680
+ msgid ""
1681
+ "Use either the text field or the dropdown. If the textfield has content that "
1682
+ "field has priority."
1683
+ msgstr ""
1684
+ "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1685
+ "合はそちらが優先されます。"
1686
+
1687
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1688
+ msgid "Clicktracking:"
1689
+ msgstr "テキストリンク(クリック数調査付):"
1690
 
1691
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1692
  #, fuzzy
1693
+ msgid "Enable click tracking for this advert."
1694
+ msgstr "広告の枠線"
1695
+
1696
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1697
  msgid ""
1698
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1699
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1700
+ "supported."
1701
+ msgstr ""
1702
 
1703
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1704
  msgid "Activate:"
1705
  msgstr "掲載状況:"
1706
 
1707
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1708
  msgid "Yes, this ad will be used"
1709
  msgstr "この広告を掲載されるように設定する"
1710
 
1711
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1712
  #, fuzzy
1713
  msgid "No, do not show this ad anywhere"
1714
  msgstr "表示できるデータがありません。"
1715
 
1716
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1717
  #: dashboard/publisher/adrotate-ads-main.php:108
1718
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1719
  #: dashboard/publisher/adrotate-groups-main.php:87
1720
  #, fuzzy
1721
  msgid "Get more features with AdRotate Pro."
1723
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1724
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1725
 
1726
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1727
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1728
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1729
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1730
  #, fuzzy
1731
  msgid "Save Advert"
1732
  msgstr "保存"
1733
 
1734
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1735
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1736
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1737
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1738
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1739
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1740
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1741
  msgid "Cancel"
1742
  msgstr "キャンセル"
1743
 
1744
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1745
  msgid "Preview"
1746
  msgstr "プレビュー"
1747
 
1748
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1749
  msgid ""
1750
  "Note: While this preview is an accurate one, it might look different then it "
1751
  "does on the website."
1753
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1754
  "場合があります。"
1755
 
1756
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1757
  msgid ""
1758
  "This is because of CSS differences. Your themes CSS file is not active here!"
1759
  msgstr ""
1760
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1761
  "ている場合は実ページでご確認下さい。"
1762
 
1763
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1764
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1765
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1766
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1767
  msgid "Usage"
1768
  msgstr "利用タグ"
1769
 
1770
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1771
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1772
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1773
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1774
+ msgid "Widget:"
1775
+ msgstr ""
1776
+
1777
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1778
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1779
  msgid ""
1780
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1781
+ "and enter ID"
1782
+ msgstr ""
1783
 
1784
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1785
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1786
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1787
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1788
  msgid "In a post or page:"
1789
  msgstr "投稿及びページ内掲載する場合:"
1790
 
1791
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1792
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1793
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1794
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1795
  msgid "Directly in a theme:"
1796
  msgstr "テーマ内に直接設定する場合:"
1797
 
1798
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1799
+ msgid "Schedule your advert"
1800
+ msgstr ""
 
 
1801
 
1802
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1803
  #, fuzzy
1804
+ msgid "Start date (day/month/year):"
1805
+ msgstr "1年間"
 
 
 
 
1806
 
1807
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1808
  #, fuzzy
1809
+ msgid "End date (day/month/year):"
1810
+ msgstr "1年間"
1811
 
1812
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1813
+ #, fuzzy
1814
+ msgid "Start time (hh:mm):"
1815
+ msgstr "選ばれた期間が見つかりません。"
 
1816
 
1817
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1818
  #, fuzzy
1819
+ msgid "End time (hh:mm):"
1820
+ msgstr "選ばれた期間が見つかりません。"
1821
 
1822
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1823
+ msgid "Maximum Clicks:"
1824
+ msgstr "クリック数上限設定:"
1825
 
1826
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1827
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1828
+ msgid "Leave empty or 0 to skip this."
1829
+ msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
 
 
1830
 
1831
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1832
+ msgid "Maximum Impressions:"
1833
+ msgstr "表示数上限設定:"
1834
 
1835
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1836
  #, fuzzy
 
 
 
 
1837
  msgid ""
1838
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1839
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1840
+ "hours. 6AM is 6:00 hours."
1841
  msgstr ""
1842
+ "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
1843
+ "合、メール通知は無効になります。"
1844
 
1845
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1846
  msgid ""
1847
+ "The maximum clicks and impressions are measured over the set schedule only. "
1848
+ "Every schedule can have it's own limit!"
1849
  msgstr ""
1850
+ "最大のクリック数と表示回数が設定されたスケジュールのみで測定されています。そ"
1851
+ "れぞれのスケジュールで上限を設定できます!"
1852
 
1853
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1854
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
1855
+ msgstr ""
 
 
 
 
1856
 
1857
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1858
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1859
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1860
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1861
  #, fuzzy
1862
+ msgid "Upgrade today"
1863
+ msgstr "本日"
 
 
 
 
1864
 
1865
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1866
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1867
+ #, fuzzy
1868
+ msgid "Advanced"
1869
+ msgstr "設定例(高度):"
1870
 
1871
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1872
+ #, fuzzy
1873
+ msgid "Everything below is optional."
1874
+ msgstr "タイトル(オプション):"
1875
 
1876
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1877
+ msgid "Responsive:"
1878
  msgstr ""
 
 
1879
 
1880
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1881
+ #, fuzzy
1882
+ msgid "Enable responsive support for this advert."
1883
+ msgstr "広告の追加・編集管理"
1884
+
1885
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1886
  msgid ""
1887
+ "Upload your images to the banner folder and make sure the filename is in the "
1888
+ "following format; \"imagename.full.ext\". A full set of sized images is "
1889
+ "strongly recommended."
1890
  msgstr ""
 
 
1891
 
1892
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1893
  msgid "Weight:"
1894
  msgstr "表示頻度:"
1895
 
1896
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1897
  #, fuzzy
1898
  msgid "AdRotate Pro only"
1899
  msgstr "AdRotate Blog"
1900
 
1901
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1902
  msgid "Barely visible"
1903
  msgstr "稀な表示(20%程度)"
1904
 
1905
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1906
  msgid "Less than average"
1907
  msgstr "標準より少し少ない表示(40%程度)"
1908
 
1909
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1910
  msgid "Normal coverage"
1911
  msgstr "平均的表示(50%程度)"
1912
 
1913
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1914
  msgid "More than average"
1915
  msgstr "平均よりも多めの表示(70%程度)"
1916
 
1917
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1918
  msgid "Best visibility"
1919
  msgstr "優先表示(100~90%程度)"
1920
 
1921
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1922
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1923
  msgid "Sortorder:"
1924
  msgstr "並び(ソート)順:"
1925
 
1926
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1927
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1928
  msgid "For administrative purposes set a sortorder."
1929
  msgstr "管理目的で順序を設定できます。"
1930
 
1931
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1932
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1933
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1934
 
1935
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1936
  msgid ""
1937
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1938
+ "exposure."
1939
  msgstr ""
1940
 
1941
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1942
+ msgid "Geo Targeting in AdRotate Pro"
1943
+ msgstr ""
 
 
 
 
 
 
 
 
 
1944
 
1945
+ #: dashboard/publisher/adrotate-ads-edit.php:335
 
1946
  msgid ""
1947
+ "Assign the advert to a group and enable that group to use Geo Targeting."
1948
+ msgstr ""
 
1949
 
1950
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1951
  msgid "Cities/States:"
1952
  msgstr ""
1953
 
1954
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1955
+ msgid ""
1956
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1957
+ "states ISO codes are supported)"
 
 
 
 
1958
  msgstr ""
1959
 
1960
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1961
  msgid ""
1962
  "AdRotate does not check the validity of names so make sure you spell them "
1963
  "correctly!"
1964
  msgstr ""
1965
 
1966
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1967
  msgid "Countries:"
1968
  msgstr ""
1969
 
1970
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1971
  #, fuzzy
1972
  msgid "Select the countries you want the adverts to show in."
1973
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1974
 
1975
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1976
  msgid "Cities take priority and will be filtered first."
1977
  msgstr ""
1978
 
1979
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1980
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
1981
  msgstr ""
 
 
1982
 
1983
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1984
  msgid "Select Groups"
1985
  msgstr "グループを選択"
1986
 
1987
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
 
1988
  #, fuzzy
1989
  msgid "ID - Name"
1990
  msgstr "名前"
1991
 
1992
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1993
  #, fuzzy
1994
  msgid "Ads in group"
1995
  msgstr "広告グループ - グループIDを使ってください。"
1996
 
1997
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1998
  #: dashboard/publisher/adrotate-groups-main.php:58
1999
  #, fuzzy
2000
  msgid "Default"
2001
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2002
 
2003
+ #: dashboard/publisher/adrotate-ads-edit.php:416
2004
  #: dashboard/publisher/adrotate-groups-main.php:59
2005
  msgid "Dynamic"
2006
  msgstr ""
2007
 
2008
+ #: dashboard/publisher/adrotate-ads-edit.php:416
2009
  #: dashboard/publisher/adrotate-groups-main.php:59
2010
  #, fuzzy
2011
  msgid "second rotation"
2012
  msgstr "バナーがないか、利用不可か適応されていません。"
2013
 
2014
+ #: dashboard/publisher/adrotate-ads-edit.php:417
2015
  #: dashboard/publisher/adrotate-groups-main.php:60
2016
  #, fuzzy
2017
  msgid "Block"
2018
  msgstr "ブロック管理"
2019
 
2020
+ #: dashboard/publisher/adrotate-ads-edit.php:417
2021
  #: dashboard/publisher/adrotate-groups-main.php:60
2022
  #, fuzzy
2023
  msgid "grid"
2025
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
2026
  "列です。)"
2027
 
2028
+ #: dashboard/publisher/adrotate-ads-edit.php:418
2029
+ #: dashboard/publisher/adrotate-groups-edit.php:192
2030
  #: dashboard/publisher/adrotate-groups-main.php:61
2031
  #, fuzzy
2032
  msgid "Post Injection"
2033
  msgstr "投稿及びページ内掲載する場合:"
2034
 
2035
+ #: dashboard/publisher/adrotate-ads-edit.php:419
2036
  #: dashboard/publisher/adrotate-groups-main.php:62
2037
  msgid "Geolocation"
2038
  msgstr ""
2039
 
2040
+ #: dashboard/publisher/adrotate-ads-edit.php:425
2041
+ #: dashboard/publisher/adrotate-groups-edit.php:61
2042
  #: dashboard/publisher/adrotate-groups-main.php:69
2043
  #, fuzzy
2044
  msgid "Mode"
2070
  msgid "Title"
2071
  msgstr "タイトル"
2072
 
2073
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2074
+ #: dashboard/publisher/adrotate-ads-report.php:34
2075
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2076
+ #: dashboard/publisher/adrotate-groups-main.php:35
2077
+ #: dashboard/publisher/adrotate-groups-report.php:40
2078
+ msgid "Impressions"
2079
+ msgstr "表示数"
2080
+
2081
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2082
+ #: dashboard/publisher/adrotate-ads-main.php:45
2083
+ #: dashboard/publisher/adrotate-ads-report.php:35
2084
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2085
+ #: dashboard/publisher/adrotate-groups-main.php:37
2086
+ #: dashboard/publisher/adrotate-groups-report.php:41
2087
+ msgid "Clicks"
2088
+ msgstr "クリック"
2089
+
2090
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2091
  #: dashboard/publisher/adrotate-ads-main.php:47
2092
  #: dashboard/publisher/adrotate-ads-report.php:38
2149
  msgstr "1週間(7日)"
2150
 
2151
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2152
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2153
  #, fuzzy
2154
  msgid "Configuration errors."
2155
  msgstr "個の広告が設定エラーになっています。"
2164
  msgstr "エクスポートオプション"
2165
 
2166
  #: dashboard/publisher/adrotate-ads-main.php:42
2167
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2168
  msgid "Weight"
2169
  msgstr "表示頻度"
2170
 
2233
  msgid "Edit Group"
2234
  msgstr "グループ編集"
2235
 
2236
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2237
  msgid "Name:"
2238
  msgstr "グループ名:"
2239
 
2240
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2241
  #, fuzzy
2242
  msgid "Default - Show one ad at a time"
2243
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
2244
 
2245
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2246
  #, fuzzy
2247
  msgid "Dynamic Mode - Show a different ad every few seconds"
2248
  msgstr "秒"
2249
 
2250
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2251
  #, fuzzy
2252
  msgid "Block Mode - Show a block of ads"
2253
  msgstr "広告ブロック - ブロックIDを使ってください。"
2254
 
2255
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2256
  #, fuzzy
2257
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2258
  msgstr "AdRotate 設定"
2259
 
2260
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2261
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2262
  #, fuzzy
2263
  msgid "Dynamic and Block Mode"
2264
  msgstr "ブロック管理"
2265
 
2266
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2267
  #, fuzzy
2268
  msgid "Only required if your group is in Dynamic or Block mode."
2269
  msgstr ""
2270
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
2271
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
2272
 
2273
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2274
+ msgid "Block size"
2275
+ msgstr ""
 
2276
 
2277
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2278
  msgid "rows"
2279
  msgstr "行"
2280
 
2281
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2282
  msgid "columns"
2283
  msgstr "列"
2284
 
2285
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2286
  #, fuzzy
2287
  msgid "Block Mode"
2288
  msgstr "ブロック管理"
2289
 
2290
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2291
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
 
2292
  msgstr ""
 
 
2293
 
2294
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2295
+ msgid "Advert size"
2296
+ msgstr ""
 
2297
 
2298
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2299
  msgid "pixel(s) wide"
2300
  msgstr "ピクセル(幅)"
2301
 
2302
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2303
  msgid "pixel(s) high."
2304
  msgstr "ピクセル(高さ)"
2305
 
2306
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2307
  #, fuzzy
2308
  msgid ""
2309
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2311
  msgstr ""
2312
  "ピクセル単位で広告の最大サイズを定義します。高さは 'auto'を指定できます。"
2313
 
2314
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2315
  msgid "Automated refresh"
2316
  msgstr ""
2317
 
2318
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2319
  #, fuzzy
2320
  msgid "seconds."
2321
  msgstr "秒"
2322
 
2323
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2324
  msgid "Dynamic Mode"
2325
  msgstr ""
2326
 
2327
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2328
  #, fuzzy
2329
  msgid ""
2330
  "Load a new advert in this interval without reloading the page. Default: 6."
2331
  msgstr "新規追加"
2332
 
2333
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2334
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2335
+ msgid ""
2336
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2337
+ "\" and enter ID"
2338
+ msgstr ""
2339
+
2340
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2341
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2342
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2343
  #, fuzzy
2344
  msgid "Save Group"
2345
  msgstr "保存"
2346
 
2347
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2348
  #, fuzzy
2349
  msgid "Advert Margin"
2350
  msgstr "ピクセル(margin)"
2351
 
2352
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2353
  msgid "pixel(s)"
2354
  msgstr "ピクセル"
2355
 
2356
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2357
  #, fuzzy
2358
  msgid "A transparent area outside the advert in pixels. Default: 0."
2359
  msgstr ""
2360
  "ブロックに見えない枠(ピクセル単位)を作れます。(初期設定では1ピクセルで"
2361
  "す。)"
2362
 
2363
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2364
  #, fuzzy
2365
  msgid "Set to 0 to disable."
2366
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2367
 
2368
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2369
+ msgid "Margins are automatically disabled for blocks where required."
2370
+ msgstr ""
2371
+
2372
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2373
  #, fuzzy
2374
  msgid "Align the group"
2375
  msgstr "広告グループ - グループIDを使ってください。"
2376
 
2377
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2378
  #, fuzzy
2379
  msgid "None (Default)"
2380
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2381
 
2382
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2383
  msgid "Left"
2384
  msgstr "右"
2385
 
2386
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2387
  msgid "Right"
2388
  msgstr "左"
2389
 
2390
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2391
  msgid "Center"
2392
  msgstr ""
2393
 
2394
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2395
  msgid ""
2396
  "Align the group in your post or page. Using 'center' may affect your margin "
2397
  "setting. Not every theme supports this feature."
2398
  msgstr ""
2399
 
2400
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2401
  msgid "Leave empty or 0 to skip this. Will default to group id."
2402
  msgstr ""
2403
  "この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
2404
  "す。"
2405
 
2406
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2407
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2408
  msgstr ""
2409
 
2410
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2411
  msgid "Include ads in categories?"
2412
  msgstr "カテゴリーに広告を含めますか?"
2413
 
2414
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2416
  #, fuzzy
2417
  msgid "Disabled"
2418
  msgstr "掲載不可広告"
2419
 
2420
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2421
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2422
  #, fuzzy
2423
  msgid "Before content"
2424
  msgstr "投稿内容の前"
2425
 
2426
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2427
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2428
  #, fuzzy
2429
  msgid "After content"
2430
  msgstr "コンテンツの前と後ろ"
2431
 
2432
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2433
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2434
  #, fuzzy
2435
  msgid "Before and after content"
2436
  msgstr "コンテンツの前と後ろ"
2437
 
2438
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2439
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2440
  #, fuzzy
2441
  msgid "After..."
2442
  msgstr "広告の後に入れるタグ"
2443
 
2444
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2445
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2446
  msgid "the first paragraph"
2447
  msgstr ""
2448
 
2449
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2450
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2451
  msgid "the 2nd paragraph"
2452
  msgstr ""
2453
 
2454
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2455
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2456
  msgid "the 3rd paragraph"
2457
  msgstr ""
2458
 
2459
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2460
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2461
  msgid "the 4th paragraph"
2462
  msgstr ""
2463
 
2464
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2465
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2466
  msgid "every 2nd paragraph"
2467
  msgstr ""
2468
 
2469
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2470
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2471
  msgid "every 3rd paragraph"
2472
  msgstr ""
2473
 
2474
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2475
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2476
  msgid "every 4th paragraph"
2477
  msgstr ""
2478
 
2479
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2480
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2481
  msgid "every 5th paragraph"
2482
  msgstr ""
2483
 
2484
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2485
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2486
  msgid "every 6th paragraph"
2487
  msgstr ""
2488
 
2489
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2490
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2491
  msgid "every 7th paragraph"
2492
  msgstr ""
2493
 
2494
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2495
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2496
  msgid "every 8th paragraph"
2497
  msgstr ""
2498
 
2499
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2500
  msgid "Which categories?"
2501
  msgstr "どのカテゴリーですか?"
2502
 
2503
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2504
  #, fuzzy
2505
  msgid "Click the categories posts you want the adverts to show in."
2506
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2507
 
2508
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2509
  msgid "Include ads in pages?"
2510
  msgstr "固有ページに広告を含めますか?"
2511
 
2512
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2513
  msgid "Which pages?"
2514
  msgstr "どのページですか?"
2515
 
2516
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2517
  #, fuzzy
2518
  msgid "Click the pages you want the adverts to show in."
2519
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2520
 
2521
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2522
  #, fuzzy
2523
  msgid "Wrapper code"
2524
  msgstr "Wrapper code (Optional) - 各広告を囲みます。"
2525
 
2526
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2527
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2528
+ msgstr ""
 
2529
 
2530
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2531
  msgid "Before ad"
2532
  msgstr "広告の前に入れるタグ"
2533
 
2534
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2535
+ msgid "Options:"
2536
+ msgstr "オプション:"
2537
 
2538
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2539
  msgid "After ad"
2540
  msgstr "広告の後に入れるタグ"
2541
 
2542
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2543
  msgid "Select Ads"
2544
  msgstr "広告選択"
2545
 
2546
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2547
  msgid "Visible until"
2548
  msgstr "掲載期限"
2549
 
2550
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2551
  msgid "No ads created!"
2552
  msgstr "広告が作成されていません!"
2553
 
2580
  msgid "Statistics for group"
2581
  msgstr "統計 "
2582
 
2583
+ #, fuzzy
2584
+ #~ msgid "Usage:"
2585
+ #~ msgstr "利用タグ"
2586
+
2587
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2588
+ #~ msgstr "AdCodeに%image%がありませんが、画像が登録されています。"
2589
+
2590
+ #, fuzzy
2591
+ #~ msgid "These are required."
2592
+ #~ msgstr "広告の形と枠(必須)ー広告の形とサイズを決めます。"
2593
+
2594
+ #, fuzzy
2595
+ #~ msgid ""
2596
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2597
+ #~ "AdCode."
2598
+ #~ msgstr "新規追加"
2599
+
2600
+ #, fuzzy
2601
+ #~ msgid ""
2602
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2603
+ #~ "where you want the advert to show up."
2604
+ #~ msgstr "投稿及びページ内掲載する場合:"
2605
+
2606
+ #, fuzzy
2607
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2608
+ #~ msgstr "AdCodeに%link%が入っていませんが、クリック数チェックが有効です。"
2609
+
2610
+ #, fuzzy
2611
+ #~ msgid ""
2612
+ #~ "This field is no longer required. You can place the URL directly in the "
2613
+ #~ "adcode (above) instead of %link%."
2614
+ #~ msgstr "広告コード[AdCode](タグ含む):"
2615
+
2616
+ #~ msgid "Media:"
2617
+ #~ msgstr "画像リンク先URL:"
2618
+
2619
+ #, fuzzy
2620
+ #~ msgid "Geo Location in AdRotate Pro"
2621
+ #~ msgstr "AdRotate Blog"
2622
+
2623
+ #, fuzzy
2624
+ #~ msgid ""
2625
+ #~ "This works if you assign the advert to a group and enable that group to "
2626
+ #~ "use Geo Targeting."
2627
+ #~ msgstr "広告グループ - グループIDを使ってください。"
2628
+
2629
+ #, fuzzy
2630
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2631
+ #~ msgstr ""
2632
+ #~ "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーな"
2633
+ #~ "どにはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さ"
2634
+ #~ "い。"
2635
+
2636
+ #, fuzzy
2637
+ #~ msgid "Schedule"
2638
+ #~ msgstr ""
2639
+ #~ "最大のクリック数と表示回数が設定されたスケジュールのみで測定されています。"
2640
+ #~ "それぞれのスケジュールで上限を設定できます!"
2641
+
2642
+ #, fuzzy
2643
+ #~ msgid "From when to when is the advert visible?"
2644
+ #~ msgstr ""
2645
+ #~ "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である"
2646
+ #~ "場合、メール通知は無効になります。"
2647
+
2648
+ #, fuzzy
2649
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2650
+ #~ msgstr "AdRotate Blog"
2651
+
2652
+ #, fuzzy
2653
+ #~ msgid "From / Until"
2654
+ #~ msgstr "掲載期限"
2655
+
2656
+ #, fuzzy
2657
+ #~ msgid "impressions per day"
2658
+ #~ msgstr "表示数"
2659
+
2660
+ #, fuzzy
2661
+ #~ msgid "In use by this advert."
2662
+ #~ msgstr "広告の枠線"
2663
+
2664
+ #, fuzzy
2665
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2666
+ #~ msgstr "個の広告が期限切れです。"
2667
+
2668
+ #, fuzzy
2669
+ #~ msgid "Block shape and border"
2670
+ #~ msgstr "広告の形と枠(必須)ー広告の形とサイズを決めます。"
2671
+
2672
+ #, fuzzy
2673
+ #~ msgid ""
2674
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2675
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2676
+ #~ msgstr ""
2677
+ #~ "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2"
2678
+ #~ "行2列です。)"
2679
+
2680
+ #, fuzzy
2681
+ #~ msgid "Advert Width and Height"
2682
+ #~ msgstr "幅と高さ"
2683
+
2684
+ #, fuzzy
2685
+ #~ msgid "Wraps around each ad."
2686
+ #~ msgstr "Wrapper code (Optional) - 各広告を囲みます。"
2687
+
2688
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2689
+ #~ msgstr "HTML/JavaScriptの利用は可能ですが、利用にはご注意下さい。"
2690
+
2691
  #, fuzzy
2692
  #~ msgid "AdRotate Website."
2693
  #~ msgstr "AdRotate Blog"
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-04-02 01:52+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:52+0100\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"
@@ -20,19 +20,19 @@ msgstr ""
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: adrotate-functions.php:807
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
- #: adrotate-functions.php:810
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
- #: adrotate-output.php:747
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
- #: adrotate-output.php:748
36
  msgid ""
37
  "WordPress was unable to verify the authenticity of the url you have clicked. "
38
  "Verify if the url used is valid or log in via your browser."
@@ -40,7 +40,7 @@ msgstr ""
40
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
41
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
42
 
43
- #: adrotate-output.php:749
44
  msgid ""
45
  "If you have received the url you want to visit via email, you are being "
46
  "tricked!"
@@ -48,11 +48,11 @@ msgstr ""
48
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
49
  "zostałeś oszukany. "
50
 
51
- #: adrotate-output.php:750
52
  msgid "Contact support if the issue persists:"
53
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
54
 
55
- #: adrotate-output.php:768
56
  msgid ""
57
  "Error, Ad is not available at this time due to schedule/geolocation "
58
  "restrictions or does not exist!"
@@ -60,7 +60,7 @@ msgstr ""
60
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
61
  "harmonogramie lub geolokalizacji lub może nie istnieć."
62
 
63
- #: adrotate-output.php:770
64
  msgid ""
65
  "Error, Ad is not available at this time due to schedule/geolocation "
66
  "restrictions!"
@@ -68,7 +68,7 @@ msgstr ""
68
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
69
  "harmonogramie lub geolokalizacji."
70
 
71
- #: adrotate-output.php:777 adrotate-output.php:779
72
  msgid ""
73
  "Either there are no banners, they are disabled or none qualified for this "
74
  "location!"
@@ -76,19 +76,19 @@ msgstr ""
76
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
77
  "lokalizacji!"
78
 
79
- #: adrotate-output.php:785
80
  msgid "Error, no Ad ID set! Check your syntax!"
81
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
82
 
83
- #: adrotate-output.php:791
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
86
 
87
- #: adrotate-output.php:796
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
90
 
91
- #: adrotate-output.php:802
92
  msgid ""
93
  "There was an error locating the database tables for AdRotate. Please "
94
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -96,161 +96,161 @@ msgstr ""
96
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
97
  "AdRote na panelu wtyczek."
98
 
99
- #: adrotate-output.php:802
100
  msgid "If this does not solve the issue please seek support at"
101
  msgstr ""
102
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
103
 
104
- #: adrotate-output.php:808
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
- #: adrotate-output.php:834
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
- #: adrotate-output.php:834
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
- #: adrotate-output.php:836
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
- #: adrotate-output.php:836
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
- #: adrotate-output.php:838
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
- #: adrotate-output.php:838
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
- #: adrotate-output.php:840
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
- #: adrotate-output.php:840
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
- #: adrotate-output.php:840
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
- #: adrotate-output.php:840
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
- #: adrotate-output.php:853
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
- #: adrotate-output.php:855
154
  msgid ""
155
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
156
  "to the <strong>PRO</strong> version"
157
  msgstr ""
158
 
159
- #: adrotate-output.php:856
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
- #: adrotate-output.php:856
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
- #: adrotate-output.php:896
169
  msgid ""
170
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
171
- "Pro is in this menu. Check out the"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:896
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
- #: adrotate-output.php:896 adrotate-output.php:973
179
- #: dashboard/publisher/adrotate-ads-edit.php:229
180
  msgid "and"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:896
184
  msgid "forums"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:932
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
- #: adrotate-output.php:933
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:935
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
- #: adrotate-output.php:936
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
- #: adrotate-output.php:937
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
- #: adrotate-output.php:938
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
- #: adrotate-output.php:939
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
- #: adrotate-output.php:965
221
  #, fuzzy
222
  msgid "Help AdRotate Grow"
223
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
224
 
225
- #: adrotate-output.php:966
226
  msgid "Brought to you by"
227
  msgstr "Dostarczone przez "
228
 
229
- #: adrotate-output.php:973
230
  msgid ""
231
  "A lot of users only think to review AdRotate when something goes wrong while "
232
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
233
  msgstr ""
234
 
235
- #: adrotate-output.php:973
236
  msgid "If you find AdRotate useful please leave your honest"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:973
240
  msgid "rating"
241
  msgstr ""
242
 
243
- #: adrotate-output.php:973
244
  #, fuzzy
245
  msgid "review"
246
  msgstr ""
247
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
248
 
249
- #: adrotate-output.php:973
250
  msgid "on WordPress.org to help AdRotate grow in a positive way"
251
  msgstr ""
252
 
253
- #: adrotate-output.php:976
254
  msgid ""
255
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
256
  "out more about what I can do for you!"
@@ -259,87 +259,87 @@ msgstr ""
259
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
260
  "więcej dla Wordpress'a."
261
 
262
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
263
  msgid "Visit the"
264
  msgstr "Odwiedź"
265
 
266
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
267
  msgid "website"
268
  msgstr "strone internetową"
269
 
270
- #: adrotate-output.php:1006
271
  msgid "Available in AdRotate Pro"
272
  msgstr "Dostępne w wersji AdRotate Pro"
273
 
274
- #: adrotate-output.php:1006
275
  msgid "More information..."
276
  msgstr "Więcej informacji"
277
 
278
- #: adrotate-output.php:1007
279
  msgid "This feature is available in AdRotate Pro"
280
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
281
 
282
- #: adrotate-output.php:1007
283
  msgid "Learn more"
284
  msgstr "Dowiedź się więcej"
285
 
286
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
287
- #: dashboard/publisher/adrotate-ads-edit.php:352
288
  msgid "January"
289
  msgstr "Styczeń "
290
 
291
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
292
- #: dashboard/publisher/adrotate-ads-edit.php:353
293
  msgid "February"
294
  msgstr "Luty"
295
 
296
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
297
- #: dashboard/publisher/adrotate-ads-edit.php:354
298
  msgid "March"
299
  msgstr "Marzec"
300
 
301
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
302
- #: dashboard/publisher/adrotate-ads-edit.php:355
303
  msgid "April"
304
  msgstr "Kwiecień"
305
 
306
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
307
- #: dashboard/publisher/adrotate-ads-edit.php:356
308
  msgid "May"
309
  msgstr "Maj"
310
 
311
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
312
- #: dashboard/publisher/adrotate-ads-edit.php:357
313
  msgid "June"
314
  msgstr "Czerwiec"
315
 
316
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
317
- #: dashboard/publisher/adrotate-ads-edit.php:358
318
  msgid "July"
319
  msgstr "Lipiec"
320
 
321
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
322
- #: dashboard/publisher/adrotate-ads-edit.php:359
323
  msgid "August"
324
  msgstr "Sierpień"
325
 
326
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
327
- #: dashboard/publisher/adrotate-ads-edit.php:360
328
  msgid "September"
329
  msgstr "Wrzesień"
330
 
331
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
332
- #: dashboard/publisher/adrotate-ads-edit.php:361
333
  msgid "October"
334
  msgstr "Pażdziernik"
335
 
336
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
337
- #: dashboard/publisher/adrotate-ads-edit.php:362
338
  msgid "November"
339
  msgstr "Listopad"
340
 
341
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
342
- #: dashboard/publisher/adrotate-ads-edit.php:363
343
  msgid "December"
344
  msgstr "Grudzień"
345
 
@@ -391,7 +391,7 @@ msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
391
  msgid "Choose what you want to use this widget for"
392
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
393
 
394
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
395
  msgid "ID:"
396
  msgstr "ID:"
397
 
@@ -399,78 +399,77 @@ msgstr "ID:"
399
  msgid "Fill in the ID of the type you want to display!"
400
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
401
 
402
- #: adrotate.php:108
403
  msgid "General Info"
404
  msgstr "Informacje główne"
405
 
406
- #: adrotate.php:109
407
  msgid "AdRotate Pro"
408
  msgstr "AdRotate Pro"
409
 
410
- #: adrotate.php:110
411
  msgid "Manage Ads"
412
  msgstr "Zarządzaj reklamami"
413
 
414
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
415
  msgid "Manage Groups"
416
  msgstr "Zarządzaj grupami"
417
 
418
- #: adrotate.php:112 adrotate.php:441
419
- #: dashboard/publisher/adrotate-ads-edit.php:402
420
  #, fuzzy
421
  msgid "Manage Schedules"
422
  msgstr "Zarządzaj"
423
 
424
- #: adrotate.php:113
425
  #, fuzzy
426
  msgid "Manage Media"
427
  msgstr "Media:"
428
 
429
- #: adrotate.php:114
430
  msgid "Settings"
431
  msgstr "Ustawienia"
432
 
433
- #: adrotate.php:137
434
  msgid "AdRotate Info"
435
  msgstr "Informacja AdRotate "
436
 
437
- #: adrotate.php:158
438
  msgid "AdRotate Professional"
439
  msgstr "AdRotate Professional"
440
 
441
- #: adrotate.php:201
442
  msgid "Ad Management"
443
  msgstr "Zarządzanie Reklamami"
444
 
445
- #: adrotate.php:204
446
  msgid "Ad created"
447
  msgstr "Reklama utworzona"
448
 
449
- #: adrotate.php:206
450
  msgid "Ad updated"
451
  msgstr "Reklamy zaktualizowana"
452
 
453
- #: adrotate.php:208
454
  msgid "Ad(s) deleted"
455
  msgstr "Reklama usunięta"
456
 
457
- #: adrotate.php:210
458
  msgid "Ad(s) statistics reset"
459
  msgstr "Resetuj statystyki reklamy"
460
 
461
- #: adrotate.php:212
462
  msgid "Ad(s) renewed"
463
  msgstr "Odnów reklamę"
464
 
465
- #: adrotate.php:214
466
  msgid "Ad(s) deactivated"
467
  msgstr "Reklama wyłączona"
468
 
469
- #: adrotate.php:216
470
  msgid "Ad(s) activated"
471
  msgstr "Reklama włączona"
472
 
473
- #: adrotate.php:218
474
  msgid ""
475
  "The ad was saved but has an issue which might prevent it from working "
476
  "properly. Review the yellow marked ad."
@@ -478,179 +477,177 @@ msgstr ""
478
  "Reklama została zapisana jednak powstał jakiś błąd który uniemożliwia jej "
479
  "prawidłowe działanie. Przjrzyj reklamę zaznaczoną żóltym kolorem."
480
 
481
- #: adrotate.php:220
482
  #, fuzzy
483
  msgid "Export created"
484
  msgstr "Reklama utworzona"
485
 
486
- #: adrotate.php:224
487
  msgid "Action prohibited"
488
  msgstr "Czynność zabroniona."
489
 
490
- #: adrotate.php:226 adrotate.php:374
491
  msgid "No data found in selected time period"
492
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
493
 
494
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
495
  msgid "Manage"
496
  msgstr "Zarządzaj"
497
 
498
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
499
  msgid "Add New"
500
  msgstr "Dodaj nową"
501
 
502
- #: adrotate.php:363
503
  msgid "Group Management"
504
  msgstr "Zarządzanie grupą reklam"
505
 
506
- #: adrotate.php:366
507
  msgid "Group created"
508
  msgstr "Grupa utworzona."
509
 
510
- #: adrotate.php:368
511
  msgid "Group updated"
512
  msgstr "Grupa zaktualizowana"
513
 
514
- #: adrotate.php:370
515
  msgid "Group deleted"
516
  msgstr "Grupa usunięta"
517
 
518
- #: adrotate.php:372
519
  msgid "Group including it's Ads deleted"
520
  msgstr "Grupa wraz z reklamami usunięta"
521
 
522
- #: adrotate.php:432
523
  #, fuzzy
524
  msgid "Schedule Management available in AdRotate Pro"
525
  msgstr "Dostępne w wersji AdRotate Pro"
526
 
527
- #: adrotate.php:442
528
  msgid ""
529
  "Schedule management and multiple schedules per advert is available in "
530
  "AdRotate Pro."
531
  msgstr ""
532
 
533
- #: adrotate.php:442 adrotate.php:529
534
- #: dashboard/publisher/adrotate-ads-edit.php:145
535
  #: dashboard/publisher/adrotate-ads-main.php:108
536
- #: dashboard/publisher/adrotate-groups-edit.php:76
537
  #: dashboard/publisher/adrotate-groups-main.php:87
538
  #, fuzzy
539
  msgid "More information"
540
  msgstr "Więcej informacji"
541
 
542
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
543
  #: dashboard/publisher/adrotate-ads-main-error.php:19
544
  #: dashboard/publisher/adrotate-ads-main.php:20
545
  #: dashboard/publisher/adrotate-groups-main.php:20
546
  msgid "Bulk Actions"
547
  msgstr "Działania masowe"
548
 
549
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
550
  #: dashboard/publisher/adrotate-ads-main-error.php:29
551
  #: dashboard/publisher/adrotate-ads-main.php:30
552
  #: dashboard/publisher/adrotate-groups-main.php:24
553
  msgid "Go"
554
  msgstr "Idź"
555
 
556
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
557
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
558
  #: dashboard/publisher/adrotate-ads-main-error.php:39
559
  #: dashboard/publisher/adrotate-ads-main.php:39
560
  #: dashboard/publisher/adrotate-groups-main.php:32
561
  msgid "ID"
562
  msgstr "ID"
563
 
564
- #: adrotate.php:460
565
  #, fuzzy
566
  msgid "Start"
567
  msgstr "Start / Koniec"
568
 
569
- #: adrotate.php:460
570
  #, fuzzy
571
  msgid "End"
572
  msgstr "Start / Koniec"
573
 
574
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
575
  #: dashboard/publisher/adrotate-groups-main.php:34
576
  msgid "Ads"
577
  msgstr "Reklamy"
578
 
579
- #: adrotate.php:463
580
  msgid "Max Clicks"
581
  msgstr "Maksymalna liczna kliknięć"
582
 
583
- #: adrotate.php:464
584
  msgid "Max Impressions"
585
  msgstr "Maksymalna liczba wyświetleń"
586
 
587
- #: adrotate.php:494
588
  #, fuzzy
589
  msgid "No schedules created yet!"
590
  msgstr "Nie utworzono jeszcze żadnych reklam!"
591
 
592
- #: adrotate.php:499
593
  #, fuzzy
594
  msgid "Easily manage your schedules from here with AdRotate Pro."
595
  msgstr "Więcej ustawień z AdRotate Pro"
596
 
597
- #: adrotate.php:499 adrotate.php:562
598
  #, fuzzy
599
  msgid "Upgrade today!"
600
  msgstr "Dziś"
601
 
602
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
603
- #: dashboard/publisher/adrotate-ads-main-error.php:74
604
- #: dashboard/publisher/adrotate-groups-edit.php:399
605
  msgid "Expires soon."
606
  msgstr "Wygasa wkrótce."
607
 
608
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
609
- #: dashboard/publisher/adrotate-groups-edit.php:400
610
  msgid "Has expired."
611
  msgstr "Wygasła."
612
 
613
- #: adrotate.php:527
614
  #, fuzzy
615
  msgid "Media Management available in AdRotate Pro"
616
  msgstr "Dostępne w wersji AdRotate Pro"
617
 
618
- #: adrotate.php:529
619
  msgid ""
620
  "Upload images to the AdRotate Pro banners folder from here. This is "
621
  "especially useful if you use responsive adverts with multiple images."
622
  msgstr ""
623
 
624
- #: adrotate.php:529
625
  #, fuzzy
626
  msgid "Media uploading and management is available in AdRotate Pro."
627
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
628
 
629
- #: adrotate.php:531
630
  #, fuzzy
631
  msgid "Upload new banner image"
632
  msgstr "Obraz banera:"
633
 
634
- #: adrotate.php:532
635
  #, fuzzy
636
  msgid "Accepted files are:"
637
  msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
638
 
639
- #: adrotate.php:532
640
  msgid "Maximum size is 512Kb."
641
  msgstr ""
642
 
643
- #: adrotate.php:532
644
  msgid "Important:"
645
  msgstr ""
646
 
647
- #: adrotate.php:532
648
  msgid ""
649
  "Make sure your file has no spaces or special characters in the name. Replace "
650
  "spaces with a - or _."
651
  msgstr ""
652
 
653
- #: adrotate.php:534
654
  #, fuzzy
655
  msgid ""
656
  "For responsive adverts make sure the filename is in the following format; "
@@ -660,7 +657,7 @@ msgstr ""
660
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
661
  "pełnego wachlarza rozmiarów.'"
662
 
663
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
664
  msgid ""
665
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
666
  "filename instead of \".full\" for the various viewports."
@@ -668,13 +665,13 @@ msgstr ""
668
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
669
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
670
 
671
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
672
- #: dashboard/publisher/adrotate-groups-edit.php:334
673
- #: dashboard/publisher/adrotate-groups-edit.php:343
674
  msgid "Example:"
675
  msgstr "Przykład:"
676
 
677
- #: adrotate.php:536
678
  #, fuzzy
679
  msgid ""
680
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -683,127 +680,127 @@ msgstr ""
683
  "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
684
  "różnych widokach. Wymaga jQuery."
685
 
686
- #: adrotate.php:540
687
  #, fuzzy
688
  msgid "Upload image"
689
  msgstr "Obraz banera:"
690
 
691
- #: adrotate.php:543
692
  msgid "Available banner images in"
693
  msgstr ""
694
 
695
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
696
  msgid "Name"
697
  msgstr "Nazwa"
698
 
699
- #: adrotate.php:549
700
  #, fuzzy
701
  msgid "Actions"
702
  msgstr "Działania masowe"
703
 
704
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
705
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
706
  #: dashboard/publisher/adrotate-ads-main-error.php:21
707
  #: dashboard/publisher/adrotate-ads-main.php:22
708
  msgid "Delete"
709
  msgstr "Usuń"
710
 
711
- #: adrotate.php:562
712
  msgid ""
713
  "Make sure the banner images are not in use by adverts when you delete them!"
714
  msgstr ""
715
 
716
- #: adrotate.php:562
717
  #, fuzzy
718
  msgid "Manage your banner folder from here with AdRotate Pro."
719
  msgstr "Więcej ustawień z AdRotate Pro"
720
 
721
- #: adrotate.php:606
722
  msgid "AdRotate Settings"
723
  msgstr "Ustawienia AdRotate"
724
 
725
- #: adrotate.php:609
726
  msgid "Settings saved"
727
  msgstr "Ustawienia zapisane"
728
 
729
- #: adrotate.php:611
730
  msgid "Database optimized"
731
  msgstr "Baza danych zoptymalizowana"
732
 
733
- #: adrotate.php:613
734
  msgid "Database repaired"
735
  msgstr "Baza danych naprawiona"
736
 
737
- #: adrotate.php:615
738
  msgid "Ads evaluated and statuses have been corrected where required"
739
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
740
 
741
- #: adrotate.php:617
742
  msgid "Empty database records removed"
743
  msgstr "Usunięto puste rekordy bazy danych"
744
 
745
- #: adrotate.php:619
746
  msgid "Database can only be optimized or cleaned once every hour"
747
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
748
 
749
- #: adrotate.php:627
750
  msgid "Access Rights"
751
  msgstr "Prawa dostępu"
752
 
753
- #: adrotate.php:628
754
  msgid "Who has access to what?"
755
  msgstr "Kto ma dostęp i do czego?"
756
 
757
- #: adrotate.php:631
758
  msgid "Manage/Add/Edit adverts"
759
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
760
 
761
- #: adrotate.php:635
762
  msgid "Role to see and add/edit ads."
763
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
764
 
765
- #: adrotate.php:639
766
  msgid "Delete/Reset adverts"
767
  msgstr "Usuń/Resetuj reklamy"
768
 
769
- #: adrotate.php:643
770
  msgid "Role to delete ads and reset stats."
771
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
772
 
773
- #: adrotate.php:647
774
  msgid "Manage/Add/Edit groups"
775
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
776
 
777
- #: adrotate.php:651
778
  msgid "Role to see and add/edit groups."
779
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
780
 
781
- #: adrotate.php:655
782
  msgid "Delete groups"
783
  msgstr "Usuwanie grup"
784
 
785
- #: adrotate.php:659
786
  msgid "Role to delete groups."
787
  msgstr "Uprawnienia do usuwania grup"
788
 
789
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
790
- #: adrotate.php:876
791
  msgid "Update Options"
792
  msgstr "Zapisz opcje"
793
 
794
- #: adrotate.php:691
795
  msgid "Statistics"
796
  msgstr "Statystyki"
797
 
798
- #: adrotate.php:694
799
  msgid "Enable stats"
800
  msgstr "Włącz statystyki"
801
 
802
- #: adrotate.php:696
803
  msgid "Track clicks and impressions."
804
  msgstr "Śledź kliknięcia i wyświetlenia."
805
 
806
- #: adrotate.php:696
807
  #, fuzzy
808
  msgid "Disabling this also disables click and impression limits on schedules."
809
  msgstr ""
@@ -811,49 +808,49 @@ msgstr ""
811
  "wyświetleń ustalonych w harmonogramach dodatkowo wyłącza ustalone przedziały "
812
  "czasowe dla wyświetlania reklam."
813
 
814
- #: adrotate.php:700
815
  msgid "Impressions timer"
816
  msgstr "Licznik wyświetleń"
817
 
818
- #: adrotate.php:702 adrotate.php:709
819
  msgid "Seconds."
820
  msgstr "Sekundy"
821
 
822
- #: adrotate.php:703
823
  #, fuzzy
824
  msgid "Default: 60."
825
  msgstr "Domyślny"
826
 
827
- #: adrotate.php:703
828
  #, fuzzy
829
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
830
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
831
 
832
- #: adrotate.php:707
833
  msgid "Clicks timer"
834
  msgstr "Licznik kliknięć"
835
 
836
- #: adrotate.php:710
837
  #, fuzzy
838
  msgid "Default: 86400."
839
  msgstr "Domyślny"
840
 
841
- #: adrotate.php:710
842
  #, fuzzy
843
  msgid ""
844
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
845
  msgstr ""
846
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
847
 
848
- #: adrotate.php:715
849
  msgid "Bot filter"
850
  msgstr "Filtr Botów Internetowych"
851
 
852
- #: adrotate.php:718
853
  msgid "User-Agent Filter"
854
  msgstr "Filtr Agentów"
855
 
856
- #: adrotate.php:721
857
  msgid ""
858
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
859
  "prevent impressions and clicks counted on them."
@@ -861,7 +858,7 @@ msgstr ""
861
  "Średnik oddziala listę słów. Filtruj boty/pajączki/agentów by chronić się "
862
  "przed zliczaniem kliknięć i wyświetleń przez te programy."
863
 
864
- #: adrotate.php:722
865
  msgid ""
866
  "Keep in mind that this might give false positives. The word 'google' also "
867
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -870,11 +867,11 @@ msgstr ""
870
  "również do słowa \"Googlebot\", ale nie odwrotnie. Więc należy być "
871
  "ostrożnym!"
872
 
873
- #: adrotate.php:722
874
  msgid "Keep your list up-to-date"
875
  msgstr "Pamietaj by twoja lista była akutalna."
876
 
877
- #: adrotate.php:723
878
  msgid ""
879
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
880
  "other characters are stripped out."
@@ -882,29 +879,29 @@ msgstr ""
882
  "Używaj tylko słów z literami i cyframi, [- _] są też dozwolone. Wszystkie "
883
  "inne znaki są usuwane."
884
 
885
- #: adrotate.php:724
886
  msgid ""
887
  "Additionally to the list specified here, empty User-Agents are blocked as "
888
  "well."
889
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
890
 
891
- #: adrotate.php:724
892
  msgid "Learn more about"
893
  msgstr "Dowiedź się więcej o"
894
 
895
- #: adrotate.php:724
896
  msgid "user-agents"
897
  msgstr "Agenci przeglądarek"
898
 
899
- #: adrotate.php:733
900
  msgid "Miscellaneous"
901
  msgstr "Różne"
902
 
903
- #: adrotate.php:736
904
  msgid "Widget alignment"
905
  msgstr "Wyrównanie widżetu"
906
 
907
- #: adrotate.php:737
908
  msgid ""
909
  "Check this box if your widgets do not align in your themes sidebar. (Does "
910
  "not always help!)"
@@ -912,11 +909,11 @@ msgstr ""
912
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
913
  "pomaga!)"
914
 
915
- #: adrotate.php:740
916
  msgid "Widget padding"
917
  msgstr "Pusta przestrzeń Widżetu"
918
 
919
- #: adrotate.php:741
920
  msgid ""
921
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
922
  "not always work!)"
@@ -924,7 +921,7 @@ msgstr ""
924
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
925
  "działa)"
926
 
927
- #: adrotate.php:746 adrotate.php:757
928
  #, fuzzy
929
  msgid "NOTICE:"
930
  msgstr ""
@@ -934,7 +931,7 @@ msgstr ""
934
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
935
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
936
 
937
- #: adrotate.php:747
938
  msgid ""
939
  "You have enabled W3 Total Caching support but not defined the security hash. "
940
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -942,30 +939,30 @@ msgid ""
942
  "needs to be enabled in W3 Total Cache as well too."
943
  msgstr ""
944
 
945
- #: adrotate.php:751
946
  msgid "W3 Total Caching"
947
  msgstr "W3 Total Caching"
948
 
949
- #: adrotate.php:752
950
  msgid "Check this box if you use W3 Total Caching on your site."
951
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
952
 
953
- #: adrotate.php:758
954
  msgid ""
955
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
956
  "this function will not work. WP Super Cache has discontinued support for "
957
  "dynamic content."
958
  msgstr ""
959
 
960
- #: adrotate.php:762
961
  msgid "WP Super Cache"
962
  msgstr "WP Super Cache"
963
 
964
- #: adrotate.php:763
965
  msgid "Check this box if you use WP Super Cache on your site."
966
  msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
967
 
968
- #: adrotate.php:768
969
  msgid ""
970
  "It may take a while for the ad to start rotating. The caching plugin needs "
971
  "to refresh the cache. This can take up to a week if not done manually."
@@ -974,7 +971,7 @@ msgstr ""
974
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
975
  "jeśli nie wykonasz tego ręcznie."
976
 
977
- #: adrotate.php:768
978
  msgid ""
979
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
980
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -983,15 +980,15 @@ msgstr ""
983
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
984
  "strony."
985
 
986
- #: adrotate.php:772
987
  msgid "Javascript"
988
  msgstr ""
989
 
990
- #: adrotate.php:775
991
  msgid "Load jQuery"
992
  msgstr "Załąduj jQuery"
993
 
994
- #: adrotate.php:776
995
  msgid ""
996
  "jQuery is required for all Javascript features below. Enable this if your "
997
  "theme does not load jQuery already."
@@ -999,11 +996,11 @@ msgstr ""
999
  "jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
1000
  "jeśli strona nie załądowałą jeszcze jQuery."
1001
 
1002
- #: adrotate.php:779
1003
  msgid "Load in footer?"
1004
  msgstr "Załadować do stopki?"
1005
 
1006
- #: adrotate.php:780
1007
  msgid ""
1008
  "Enable if you want to load the above libraries in the footer. Your theme "
1009
  "needs to call wp_footer() for this to work."
@@ -1011,11 +1008,11 @@ msgstr ""
1011
  "Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
1012
  "szablon musi odwoływać się do wp_footer() by działać."
1013
 
1014
- #: adrotate.php:788
1015
  msgid "Maintenance"
1016
  msgstr "Ostrzeżenie"
1017
 
1018
- #: adrotate.php:789
1019
  msgid ""
1020
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1021
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1029,19 +1026,19 @@ msgstr ""
1029
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
1030
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
1031
 
1032
- #: adrotate.php:804 adrotate.php:806
1033
  msgid "Optimize Database"
1034
  msgstr "Optymalizuj bazę danych"
1035
 
1036
- #: adrotate.php:806
1037
  msgid "You are about to optimize the AdRotate database."
1038
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
1039
 
1040
- #: adrotate.php:806
1041
  msgid "Did you make a backup of your database?"
1042
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
1043
 
1044
- #: adrotate.php:806
1045
  msgid ""
1046
  "This may take a moment and may cause your website to respond slow "
1047
  "temporarily!"
@@ -1049,16 +1046,16 @@ msgstr ""
1049
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
1050
  "wolniej przez jakiś czas."
1051
 
1052
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1053
  #: dashboard/publisher/adrotate-groups-main.php:24
1054
  msgid "OK to continue, CANCEL to stop."
1055
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1056
 
1057
- #: adrotate.php:807
1058
  msgid "Cleans up overhead data in the AdRotate tables."
1059
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
1060
 
1061
- #: adrotate.php:808
1062
  msgid ""
1063
  "Overhead data is accumulated garbage resulting from many changes you've "
1064
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1067,11 +1064,11 @@ msgstr ""
1067
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
1068
  "kilobajtow do kilku GB."
1069
 
1070
- #: adrotate.php:812 adrotate.php:814
1071
  msgid "Clean-up Database"
1072
  msgstr "Wyczyść bazę danych"
1073
 
1074
- #: adrotate.php:814
1075
  msgid ""
1076
  "You are about to clean up your database. This may delete expired schedules "
1077
  "and older statistics."
@@ -1079,19 +1076,19 @@ msgstr ""
1079
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
1080
  "harmonogramów i starych statystyk."
1081
 
1082
- #: adrotate.php:814
1083
  msgid "Are you sure you want to continue?"
1084
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
1085
 
1086
- #: adrotate.php:814 adrotate.php:822
1087
  msgid "This might take a while and may slow down your site during this action!"
1088
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
1089
 
1090
- #: adrotate.php:815
1091
  msgid "Delete stats older than 356 days (Optional)."
1092
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
1093
 
1094
- #: adrotate.php:816
1095
  msgid ""
1096
  "AdRotate creates empty records when you start making ads or groups. In rare "
1097
  "occasions these records are faulty."
@@ -1100,7 +1097,7 @@ msgstr ""
1100
  "Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
1101
  "systemu."
1102
 
1103
- #: adrotate.php:816
1104
  msgid ""
1105
  "If you made an ad or group that does not save when you make it use this "
1106
  "button to delete those empty records."
@@ -1108,7 +1105,7 @@ msgstr ""
1108
  "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
1109
  "ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
1110
 
1111
- #: adrotate.php:816
1112
  msgid ""
1113
  "Additionally you can clean up old statistics. This will improve the speed of "
1114
  "your site."
@@ -1116,19 +1113,19 @@ msgstr ""
1116
  "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
1117
  "strony."
1118
 
1119
- #: adrotate.php:820
1120
  msgid "Re-evaluate Ads"
1121
  msgstr "Oszacuj ponownie reklamy."
1122
 
1123
- #: adrotate.php:822
1124
  msgid "Re-evaluate all ads"
1125
  msgstr "Oszacuj ponownie wszystkie reklamy."
1126
 
1127
- #: adrotate.php:822
1128
  msgid "You are about to check all ads for errors."
1129
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
1130
 
1131
- #: adrotate.php:823
1132
  msgid ""
1133
  "This will apply all evaluation rules to all ads to see if any error slipped "
1134
  "in. Normally you should not need this feature."
@@ -1137,7 +1134,7 @@ msgstr ""
1137
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
1138
  "potrzebujesz wykorzystywać tej funkcji."
1139
 
1140
- #: adrotate.php:827
1141
  msgid ""
1142
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1143
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1154,64 +1151,64 @@ msgstr ""
1154
  "kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
1155
  "roszczeń."
1156
 
1157
- #: adrotate.php:835
1158
  msgid "Troubleshooting"
1159
  msgstr "Masz problem"
1160
 
1161
- #: adrotate.php:838
1162
  msgid "Current version:"
1163
  msgstr "Bieżąca wersja:"
1164
 
1165
- #: adrotate.php:839
1166
  msgid "Previous version:"
1167
  msgstr "Poprzednia wersja:"
1168
 
1169
- #: adrotate.php:842
1170
  msgid "Current database version:"
1171
  msgstr "Obecna wersja bazy danych:"
1172
 
1173
- #: adrotate.php:843
1174
  msgid "Previous database version:"
1175
  msgstr "Poprzednia wersja bazy danych:"
1176
 
1177
- #: adrotate.php:846
1178
  #, fuzzy
1179
  msgid "Ad evaluation next run:"
1180
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1181
 
1182
- #: adrotate.php:847 adrotate.php:851
1183
  msgid "Not scheduled!"
1184
  msgstr "Nie ustalono harmnogramu!"
1185
 
1186
- #: adrotate.php:850
1187
  msgid "Clean Trackerdata next run:"
1188
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1189
 
1190
- #: adrotate.php:854
1191
  msgid "Current status of adverts"
1192
  msgstr "Bieżący status reklam"
1193
 
1194
- #: adrotate.php:855
1195
  msgid "Normal"
1196
  msgstr "Normalny"
1197
 
1198
- #: adrotate.php:855
1199
  msgid "Error"
1200
  msgstr "Błąd"
1201
 
1202
- #: adrotate.php:855
1203
  msgid "Expired"
1204
  msgstr "Wygasa"
1205
 
1206
- #: adrotate.php:855
1207
  msgid "Expires Soon"
1208
  msgstr "Wygas wkrótce"
1209
 
1210
- #: adrotate.php:855
1211
  msgid "Unknown Status"
1212
  msgstr "Nieznany status"
1213
 
1214
- #: adrotate.php:858
1215
  msgid ""
1216
  "NOTE: The below options are not meant for normal use and are only there for "
1217
  "developers to review saved settings or how ads are selected. These can be "
@@ -1224,37 +1221,37 @@ msgstr ""
1224
  "problemów na żądanie, ale do normalnego użytkowania, powinny one być "
1225
  "pozostawiona nie zaznaczone!"
1226
 
1227
- #: adrotate.php:862
1228
  msgid "Developer Debug"
1229
  msgstr "Debuger dewelopera"
1230
 
1231
- #: adrotate.php:864
1232
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1233
  msgstr ""
1234
  "Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
1235
  "związane z zewnętrznym widokiem Wordpressa."
1236
 
1237
- #: adrotate.php:865
1238
  msgid "Show all settings, dashboard routines and related values."
1239
  msgstr ""
1240
  "Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
1241
 
1242
- #: adrotate.php:866
1243
  msgid "Show array of all userroles and capabilities."
1244
  msgstr "Pokaż tablice wszystkich ról i uprawnień."
1245
 
1246
- #: adrotate.php:867
1247
  msgid "Review saved advertisers! Visible to advertisers."
1248
  msgstr ""
1249
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
1250
 
1251
- #: adrotate.php:868
1252
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1253
  msgstr ""
1254
  "Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
1255
  "grupy. Widoczne tylko dla reklamodawców."
1256
 
1257
- #: adrotate.php:869
1258
  msgid ""
1259
  "Disable timers for clicks and impressions and enable a alert window for "
1260
  "clicktracking."
@@ -1262,7 +1259,7 @@ msgstr ""
1262
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
1263
  "śledzenia kliknięć."
1264
 
1265
- #: adrotate.php:870
1266
  msgid "Temporarily disable encryption on the redirect url."
1267
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
1268
 
@@ -1508,10 +1505,8 @@ msgid "The AdCode cannot be empty!"
1508
  msgstr "Kod reklamy nie może być pusty!"
1509
 
1510
  #: dashboard/publisher/adrotate-ads-edit.php:49
1511
- msgid "You didn't use %image% in your AdCode but did select an image!"
1512
  msgstr ""
1513
- "Nie użyłeś znacznika %image% w kodzie reklamy ale wybrałeś odpowiednie plik "
1514
- "graficzny!"
1515
 
1516
  #: dashboard/publisher/adrotate-ads-edit.php:52
1517
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1528,13 +1523,25 @@ msgstr ""
1528
  "jeszcze raz swoją reklamę!"
1529
 
1530
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1531
  #, fuzzy
1532
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1533
  msgstr ""
1534
  "Śledzenie kliknięć jQuery zostało ucruchomione ale nie znaleziono "
1535
  "poprawniego znacznika w kodzie reklamy!"
1536
 
1537
- #: dashboard/publisher/adrotate-ads-edit.php:63
1538
  msgid ""
1539
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1540
  "the ad!"
@@ -1542,113 +1549,169 @@ msgstr ""
1542
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
1543
  "błędy. Sprobuj zapisać ją ponownie!"
1544
 
1545
- #: dashboard/publisher/adrotate-ads-edit.php:66
1546
  msgid "This ad is expired and currently not shown on your website!"
1547
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
1548
 
1549
- #: dashboard/publisher/adrotate-ads-edit.php:69
1550
  msgid "The ad will expire in less than 2 days!"
1551
  msgstr "Ta reklama wygaśnie za 2 dni!"
1552
 
1553
- #: dashboard/publisher/adrotate-ads-edit.php:72
1554
  msgid "This ad will expire in less than 7 days!"
1555
  msgstr "Ta reklama wygaśnie za 7 dni!"
1556
 
1557
- #: dashboard/publisher/adrotate-ads-edit.php:75
1558
  msgid "This ad has been disabled and does not rotate on your site!"
1559
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
1560
 
1561
- #: dashboard/publisher/adrotate-ads-edit.php:101
1562
  msgid "New Advert"
1563
  msgstr "Nowa reklama"
1564
 
1565
- #: dashboard/publisher/adrotate-ads-edit.php:103
1566
  msgid "Edit Advert"
1567
  msgstr "Edytuj reklamę"
1568
 
1569
- #: dashboard/publisher/adrotate-ads-edit.php:106
1570
- #: dashboard/publisher/adrotate-groups-edit.php:48
1571
- msgid "These are required."
1572
- msgstr "Wymagane."
1573
-
1574
- #: dashboard/publisher/adrotate-ads-edit.php:110
1575
  msgid "Title:"
1576
  msgstr "Tytuł:"
1577
 
1578
- #: dashboard/publisher/adrotate-ads-edit.php:116
1579
  msgid "AdCode:"
1580
  msgstr "Kod reklamy:"
1581
 
1582
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1583
  msgid ""
1584
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1585
  msgstr ""
1586
 
1587
- #: dashboard/publisher/adrotate-ads-edit.php:121
1588
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1589
  msgstr ""
1590
 
1591
- #: dashboard/publisher/adrotate-ads-edit.php:122
1592
- msgid "Basic Examples:"
1593
- msgstr "Proste przykłady:"
1594
 
1595
- #: dashboard/publisher/adrotate-ads-edit.php:127
1596
- #: dashboard/publisher/adrotate-groups-edit.php:335
1597
- msgid "Options:"
1598
- msgstr "Opcje:"
 
 
 
 
 
 
 
 
 
 
 
1599
 
1600
- #: dashboard/publisher/adrotate-ads-edit.php:129
1601
  msgid ""
1602
- "Place the cursor where you want to add a tag and click to add it to your "
1603
- "AdCode."
1604
  msgstr ""
1605
- "Umieść kursor w miejscu, w którym chcesz dodać znacznik i kliknij, aby go "
1606
- "dodać do kodu reklamy."
1607
 
1608
- #: dashboard/publisher/adrotate-ads-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1609
  msgid "Activate:"
1610
  msgstr "Aktywuj:"
1611
 
1612
- #: dashboard/publisher/adrotate-ads-edit.php:137
1613
  msgid "Yes, this ad will be used"
1614
  msgstr "Uruchom ta reklamę"
1615
 
1616
- #: dashboard/publisher/adrotate-ads-edit.php:138
1617
  msgid "No, do not show this ad anywhere"
1618
  msgstr "Niepokazuj tej reklamy."
1619
 
1620
- #: dashboard/publisher/adrotate-ads-edit.php:145
1621
  #: dashboard/publisher/adrotate-ads-main.php:108
1622
- #: dashboard/publisher/adrotate-groups-edit.php:76
1623
  #: dashboard/publisher/adrotate-groups-main.php:87
1624
  #, fuzzy
1625
  msgid "Get more features with AdRotate Pro."
1626
  msgstr "Więcej ustawień z AdRotate Pro"
1627
 
1628
- #: dashboard/publisher/adrotate-ads-edit.php:148
1629
- #: dashboard/publisher/adrotate-ads-edit.php:181
1630
- #: dashboard/publisher/adrotate-ads-edit.php:317
1631
- #: dashboard/publisher/adrotate-ads-edit.php:442
1632
- #: dashboard/publisher/adrotate-ads-edit.php:485
1633
  msgid "Save Advert"
1634
  msgstr "Zapisz reklamę"
1635
 
1636
- #: dashboard/publisher/adrotate-ads-edit.php:149
1637
- #: dashboard/publisher/adrotate-ads-edit.php:182
1638
- #: dashboard/publisher/adrotate-ads-edit.php:318
1639
- #: dashboard/publisher/adrotate-ads-edit.php:443
1640
- #: dashboard/publisher/adrotate-ads-edit.php:486
1641
- #: dashboard/publisher/adrotate-groups-edit.php:182
1642
- #: dashboard/publisher/adrotate-groups-edit.php:323
1643
- #: dashboard/publisher/adrotate-groups-edit.php:405
1644
  msgid "Cancel"
1645
  msgstr "Anuluj"
1646
 
1647
- #: dashboard/publisher/adrotate-ads-edit.php:153
1648
  msgid "Preview"
1649
  msgstr "Podgląd"
1650
 
1651
- #: dashboard/publisher/adrotate-ads-edit.php:159
1652
  msgid ""
1653
  "Note: While this preview is an accurate one, it might look different then it "
1654
  "does on the website."
@@ -1656,94 +1719,126 @@ msgstr ""
1656
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1657
  "internetowej."
1658
 
1659
- #: dashboard/publisher/adrotate-ads-edit.php:160
1660
  msgid ""
1661
  "This is because of CSS differences. Your themes CSS file is not active here!"
1662
  msgstr ""
1663
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1664
  "działa w tym pliku!."
1665
 
1666
- #: dashboard/publisher/adrotate-ads-edit.php:167
1667
- #: dashboard/publisher/adrotate-ads-edit.php:303
1668
- #: dashboard/publisher/adrotate-groups-edit.php:167
1669
- #: dashboard/publisher/adrotate-groups-edit.php:308
1670
  msgid "Usage"
1671
  msgstr "Użycie"
1672
 
1673
- #: dashboard/publisher/adrotate-ads-edit.php:168
1674
- #: dashboard/publisher/adrotate-ads-edit.php:304
1675
- #: dashboard/publisher/adrotate-groups-edit.php:168
1676
- #: dashboard/publisher/adrotate-groups-edit.php:309
 
 
 
 
 
1677
  msgid ""
1678
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1679
- "where you want the advert to show up."
1680
  msgstr ""
1681
- "Wklej skrót do wpisu lub strony. Kod PHP wklej w odowiednie miejsc w "
1682
- "szablonie w którym chcesz wyświetlać reklamy."
1683
 
1684
- #: dashboard/publisher/adrotate-ads-edit.php:172
1685
- #: dashboard/publisher/adrotate-ads-edit.php:308
1686
- #: dashboard/publisher/adrotate-groups-edit.php:172
1687
- #: dashboard/publisher/adrotate-groups-edit.php:313
1688
  msgid "In a post or page:"
1689
  msgstr "We wpis lub stronę"
1690
 
1691
- #: dashboard/publisher/adrotate-ads-edit.php:174
1692
- #: dashboard/publisher/adrotate-ads-edit.php:310
1693
- #: dashboard/publisher/adrotate-groups-edit.php:174
1694
- #: dashboard/publisher/adrotate-groups-edit.php:315
1695
  msgid "Directly in a theme:"
1696
  msgstr "Bezpośrednio w szablon:"
1697
 
1698
- #: dashboard/publisher/adrotate-ads-edit.php:185
1699
- #: dashboard/publisher/adrotate-groups-edit.php:185
1700
- msgid "Advanced"
1701
- msgstr "Zaawansowane"
1702
 
1703
- #: dashboard/publisher/adrotate-ads-edit.php:186
1704
- msgid "Everything below is optional."
1705
- msgstr "Wszystkie opcje poniżej są opcjonalne."
1706
 
1707
- #: dashboard/publisher/adrotate-ads-edit.php:191
1708
- msgid "Clicktracking:"
1709
- msgstr "Śledzenie kliknięć"
1710
 
1711
- #: dashboard/publisher/adrotate-ads-edit.php:193
1712
- msgid "Enable click tracking for this advert."
1713
- msgstr "Włącz śledzenie kliknięc dla tej strony."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1714
 
1715
- #: dashboard/publisher/adrotate-ads-edit.php:194
1716
  msgid ""
1717
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1718
- "those provided by Google AdSense."
 
 
 
 
 
 
 
 
 
 
 
 
 
1719
  msgstr ""
1720
- "Zapamiętaj. Śledzenie klinięć nie działa dla skryptów java czyli głównie dla "
1721
- "reklam wyświetlanych za pośrednictwem Google AdSense."
1722
 
1723
- #: dashboard/publisher/adrotate-ads-edit.php:195
 
 
 
1724
  #, fuzzy
1725
- msgid "Place the target URL in your adcode - Similar to code example 1."
1726
- msgstr "Umieść docelowy adres URL w kodzie reklamy i włącz śledzenie kliknięć."
1727
 
1728
- #: dashboard/publisher/adrotate-ads-edit.php:200
1729
- msgid "Target URL:"
1730
- msgstr "Docelowy odnośnik URL:"
 
1731
 
1732
- #: dashboard/publisher/adrotate-ads-edit.php:203
1733
- msgid ""
1734
- "This field is no longer required. You can place the URL directly in the "
1735
- "adcode (above) instead of %link%."
1736
- msgstr ""
1737
 
1738
- #: dashboard/publisher/adrotate-ads-edit.php:208
1739
  msgid "Responsive:"
1740
  msgstr "Responsywny wygląd:"
1741
 
1742
- #: dashboard/publisher/adrotate-ads-edit.php:210
1743
  msgid "Enable responsive support for this advert."
1744
  msgstr "Włącz responsywny wygląd dla tej reklamy."
1745
 
1746
- #: dashboard/publisher/adrotate-ads-edit.php:211
1747
  msgid ""
1748
  "Upload your images to the banner folder and make sure the filename is in the "
1749
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1753,314 +1848,149 @@ msgstr ""
1753
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
1754
  "pełnego wachlarza rozmiarów.'"
1755
 
1756
- #: dashboard/publisher/adrotate-ads-edit.php:213
1757
- msgid ""
1758
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1759
- "for different viewports. Requires jQuery."
1760
- msgstr ""
1761
- "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
1762
- "różnych widokach. Wymaga jQuery."
1763
-
1764
- #: dashboard/publisher/adrotate-ads-edit.php:217
1765
- msgid "Banner image:"
1766
- msgstr "Obraz banera:"
1767
-
1768
- #: dashboard/publisher/adrotate-ads-edit.php:220
1769
- msgid "Media:"
1770
- msgstr "Media:"
1771
-
1772
- #: dashboard/publisher/adrotate-ads-edit.php:220
1773
- msgid "Select Banner"
1774
- msgstr "Wybierz baner:"
1775
-
1776
- #: dashboard/publisher/adrotate-ads-edit.php:222
1777
- msgid "- OR -"
1778
- msgstr "--albo-"
1779
-
1780
- #: dashboard/publisher/adrotate-ads-edit.php:224
1781
- msgid "Banner folder:"
1782
- msgstr "Folder banerów:"
1783
-
1784
- #: dashboard/publisher/adrotate-ads-edit.php:225
1785
- msgid "No image selected"
1786
- msgstr "Nie wybrano żadnego obrazu"
1787
-
1788
- #: dashboard/publisher/adrotate-ads-edit.php:229
1789
- msgid "Use %image% in the code. Accepted files are:"
1790
- msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
1791
-
1792
- #: dashboard/publisher/adrotate-ads-edit.php:229
1793
- msgid ""
1794
- "Use either the text field or the dropdown. If the textfield has content that "
1795
- "field has priority."
1796
- msgstr ""
1797
- "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1798
- "zawiera treści, te pole ma pierwszeństwo."
1799
-
1800
- #: dashboard/publisher/adrotate-ads-edit.php:233
1801
  msgid "Weight:"
1802
  msgstr "Waga:"
1803
 
1804
- #: dashboard/publisher/adrotate-ads-edit.php:233
1805
  #, fuzzy
1806
  msgid "AdRotate Pro only"
1807
  msgstr "AdRotate Pro"
1808
 
1809
- #: dashboard/publisher/adrotate-ads-edit.php:236
1810
  msgid "Barely visible"
1811
  msgstr "Ledwno widoczne"
1812
 
1813
- #: dashboard/publisher/adrotate-ads-edit.php:237
1814
  msgid "Less than average"
1815
  msgstr "Mniej niż średnia"
1816
 
1817
- #: dashboard/publisher/adrotate-ads-edit.php:238
1818
  msgid "Normal coverage"
1819
  msgstr "Normalny zasięg"
1820
 
1821
- #: dashboard/publisher/adrotate-ads-edit.php:239
1822
  msgid "More than average"
1823
  msgstr "Więcej niż średnia"
1824
 
1825
- #: dashboard/publisher/adrotate-ads-edit.php:240
1826
  msgid "Best visibility"
1827
  msgstr "Najlepsza widoczność"
1828
 
1829
- #: dashboard/publisher/adrotate-ads-edit.php:245
1830
- #: dashboard/publisher/adrotate-groups-edit.php:212
1831
  msgid "Sortorder:"
1832
  msgstr "Sortowanie:"
1833
 
1834
- #: dashboard/publisher/adrotate-ads-edit.php:247
1835
- #: dashboard/publisher/adrotate-groups-edit.php:214
1836
  msgid "For administrative purposes set a sortorder."
1837
  msgstr "Dla celów administracyjnych ustaw sortowanie."
1838
 
1839
- #: dashboard/publisher/adrotate-ads-edit.php:247
1840
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1841
  msgstr ""
1842
  "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1843
 
1844
- #: dashboard/publisher/adrotate-ads-edit.php:252
1845
  msgid ""
1846
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1847
- "attention."
1848
  msgstr ""
1849
 
1850
- #: dashboard/publisher/adrotate-ads-edit.php:252
1851
- #: dashboard/publisher/adrotate-ads-edit.php:301
1852
- #: dashboard/publisher/adrotate-ads-edit.php:399
1853
- #: dashboard/publisher/adrotate-groups-edit.php:218
1854
- #, fuzzy
1855
- msgid "Upgrade today"
1856
- msgstr "Dziś"
1857
-
1858
- #: dashboard/publisher/adrotate-ads-edit.php:254
1859
- #, fuzzy
1860
- msgid "Geo Location in AdRotate Pro"
1861
- msgstr "AdRotate Pro"
1862
 
1863
- #: dashboard/publisher/adrotate-ads-edit.php:255
1864
  msgid ""
1865
- "This works if you assign the advert to a group and enable that group to use "
1866
- "Geo Targeting."
1867
  msgstr ""
1868
- "Ta opcja działą gdy przypiszesz reklamę do grupy reklama a następnie "
1869
- "włączysz opcję GEO TARGETOWANIA dla utworzonej grupy."
1870
 
1871
- #: dashboard/publisher/adrotate-ads-edit.php:259
1872
  #, fuzzy
1873
  msgid "Cities/States:"
1874
  msgstr "Miasta:"
1875
 
1876
- #: dashboard/publisher/adrotate-ads-edit.php:262
1877
- #: dashboard/publisher/adrotate-ads-edit.php:295
1878
- msgid "Usage:"
1879
- msgstr "Użycie:"
1880
-
1881
- #: dashboard/publisher/adrotate-ads-edit.php:263
1882
- msgid "A comma separated list of cities and/or states"
1883
  msgstr ""
1884
 
1885
- #: dashboard/publisher/adrotate-ads-edit.php:263
1886
  msgid ""
1887
  "AdRotate does not check the validity of names so make sure you spell them "
1888
  "correctly!"
1889
  msgstr ""
1890
 
1891
- #: dashboard/publisher/adrotate-ads-edit.php:267
1892
  #, fuzzy
1893
  msgid "Countries:"
1894
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1895
 
1896
- #: dashboard/publisher/adrotate-ads-edit.php:296
1897
  msgid "Select the countries you want the adverts to show in."
1898
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1899
 
1900
- #: dashboard/publisher/adrotate-ads-edit.php:296
1901
  msgid "Cities take priority and will be filtered first."
1902
  msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1903
 
1904
- #: dashboard/publisher/adrotate-ads-edit.php:301
1905
- #, fuzzy
1906
- msgid "Target your audience with Geo Location in AdRotate Pro"
1907
- msgstr "Więcej ustawień z AdRotate Pro"
1908
-
1909
- #: dashboard/publisher/adrotate-ads-edit.php:321
1910
- msgid "Schedule"
1911
- msgstr "Harmonogram"
1912
-
1913
- #: dashboard/publisher/adrotate-ads-edit.php:322
1914
- msgid "From when to when is the advert visible?"
1915
- msgstr "Od kiedy do kiedy ma być widoczna reklama?"
1916
-
1917
- #: dashboard/publisher/adrotate-ads-edit.php:326
1918
- msgid "Start date (day/month/year):"
1919
- msgstr "Data początkowa (dzień/miesiąc/rok):"
1920
-
1921
- #: dashboard/publisher/adrotate-ads-edit.php:347
1922
- msgid "End date (day/month/year):"
1923
- msgstr "Data końcowa (dzień/miesiąc/rok):"
1924
-
1925
- #: dashboard/publisher/adrotate-ads-edit.php:370
1926
- msgid "Start time (hh:mm):"
1927
- msgstr "Początek czasu (hh:mm):"
1928
-
1929
- #: dashboard/publisher/adrotate-ads-edit.php:377
1930
- msgid "End time (hh:mm):"
1931
- msgstr "Koniec czasu (hh:mm):"
1932
-
1933
- #: dashboard/publisher/adrotate-ads-edit.php:387
1934
- msgid "Maximum Clicks:"
1935
- msgstr "Maksymalna ilość kliknięć:"
1936
-
1937
- #: dashboard/publisher/adrotate-ads-edit.php:388
1938
- #: dashboard/publisher/adrotate-ads-edit.php:390
1939
- msgid "Leave empty or 0 to skip this."
1940
- msgstr "Pozostaw puste albo wpisz 0 ."
1941
-
1942
- #: dashboard/publisher/adrotate-ads-edit.php:389
1943
- msgid "Maximum Impressions:"
1944
- msgstr "Maksymnalna ilość wyświetleń:"
1945
-
1946
- #: dashboard/publisher/adrotate-ads-edit.php:395
1947
- msgid ""
1948
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1949
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1950
- "hours. 6AM is 6:00 hours."
1951
- msgstr "Zegar używa 24 godzinnego systemu. "
1952
-
1953
- #: dashboard/publisher/adrotate-ads-edit.php:395
1954
- msgid ""
1955
- "The maximum clicks and impressions are measured over the set schedule only. "
1956
- "Every schedule can have it's own limit!"
1957
- msgstr ""
1958
- "Maksymalna liczba kliknięc i wyświetleń jest mierzona w obrębie ustalonego "
1959
- "harmonogramu. Każdy harmonogram możę mięć swoje własne ustawienia i limity."
1960
-
1961
- #: dashboard/publisher/adrotate-ads-edit.php:399
1962
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1963
  msgstr ""
1964
 
1965
- #: dashboard/publisher/adrotate-ads-edit.php:401
1966
- #, fuzzy
1967
- msgid "Choose Multiple Schedules in AdRotate Pro"
1968
- msgstr "Dostępne w wersji AdRotate Pro"
1969
-
1970
- #: dashboard/publisher/adrotate-ads-edit.php:402
1971
- msgid "You can add, edit or delete schedules from the"
1972
- msgstr ""
1973
-
1974
- #: dashboard/publisher/adrotate-ads-edit.php:402
1975
- msgid "dashboard. Save your advert first!"
1976
- msgstr ""
1977
-
1978
- #: dashboard/publisher/adrotate-ads-edit.php:409
1979
- msgid "From / Until"
1980
- msgstr "Od/ Do"
1981
-
1982
- #: dashboard/publisher/adrotate-ads-edit.php:411
1983
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1984
- #: dashboard/publisher/adrotate-ads-main.php:45
1985
- #: dashboard/publisher/adrotate-ads-report.php:35
1986
- #: dashboard/publisher/adrotate-groups-edit.php:356
1987
- #: dashboard/publisher/adrotate-groups-main.php:37
1988
- #: dashboard/publisher/adrotate-groups-report.php:41
1989
- msgid "Clicks"
1990
- msgstr "Kliknięcia"
1991
-
1992
- #: dashboard/publisher/adrotate-ads-edit.php:412
1993
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1994
- #: dashboard/publisher/adrotate-ads-report.php:34
1995
- #: dashboard/publisher/adrotate-groups-edit.php:355
1996
- #: dashboard/publisher/adrotate-groups-main.php:35
1997
- #: dashboard/publisher/adrotate-groups-report.php:40
1998
- msgid "Impressions"
1999
- msgstr "Wyświetlenia"
2000
-
2001
- #: dashboard/publisher/adrotate-ads-edit.php:421
2002
- #, fuzzy
2003
- msgid "impressions per day"
2004
- msgstr "Licznik wyświetleń"
2005
-
2006
- #: dashboard/publisher/adrotate-ads-edit.php:437
2007
- msgid "In use by this advert."
2008
- msgstr ""
2009
-
2010
- #: dashboard/publisher/adrotate-ads-edit.php:448
2011
  msgid "Select Groups"
2012
  msgstr "Wybierz grupy"
2013
 
2014
- #: dashboard/publisher/adrotate-ads-edit.php:449
2015
- msgid "Optionally select the group(s) this ad belongs to."
2016
- msgstr "Opcjonalnie wybierz grupy do których należy ta reklama."
2017
-
2018
- #: dashboard/publisher/adrotate-ads-edit.php:454
2019
  msgid "ID - Name"
2020
  msgstr "ID - Nazwa"
2021
 
2022
- #: dashboard/publisher/adrotate-ads-edit.php:455
2023
  msgid "Ads in group"
2024
  msgstr "Reklamy w grupie"
2025
 
2026
- #: dashboard/publisher/adrotate-ads-edit.php:464
2027
  #: dashboard/publisher/adrotate-groups-main.php:58
2028
  msgid "Default"
2029
  msgstr "Domyślny"
2030
 
2031
- #: dashboard/publisher/adrotate-ads-edit.php:465
2032
  #: dashboard/publisher/adrotate-groups-main.php:59
2033
  msgid "Dynamic"
2034
  msgstr "Dynamiczny"
2035
 
2036
- #: dashboard/publisher/adrotate-ads-edit.php:465
2037
  #: dashboard/publisher/adrotate-groups-main.php:59
2038
  msgid "second rotation"
2039
  msgstr "drugi obrót"
2040
 
2041
- #: dashboard/publisher/adrotate-ads-edit.php:466
2042
  #: dashboard/publisher/adrotate-groups-main.php:60
2043
  msgid "Block"
2044
  msgstr "Blok"
2045
 
2046
- #: dashboard/publisher/adrotate-ads-edit.php:466
2047
  #: dashboard/publisher/adrotate-groups-main.php:60
2048
  msgid "grid"
2049
  msgstr "siatka"
2050
 
2051
- #: dashboard/publisher/adrotate-ads-edit.php:467
2052
- #: dashboard/publisher/adrotate-groups-edit.php:220
2053
  #: dashboard/publisher/adrotate-groups-main.php:61
2054
  msgid "Post Injection"
2055
  msgstr "Umieszczanie we wpisach"
2056
 
2057
- #: dashboard/publisher/adrotate-ads-edit.php:468
2058
  #: dashboard/publisher/adrotate-groups-main.php:62
2059
  msgid "Geolocation"
2060
  msgstr "Geolokalizacja"
2061
 
2062
- #: dashboard/publisher/adrotate-ads-edit.php:474
2063
- #: dashboard/publisher/adrotate-groups-edit.php:62
2064
  #: dashboard/publisher/adrotate-groups-main.php:69
2065
  msgid "Mode"
2066
  msgstr "Tryb"
@@ -2091,6 +2021,23 @@ msgstr "Start / Koniec"
2091
  msgid "Title"
2092
  msgstr "tytuł"
2093
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2094
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2095
  #: dashboard/publisher/adrotate-ads-main.php:47
2096
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2152,7 +2099,7 @@ msgid "For 7 days"
2152
  msgstr "Na 7 dni"
2153
 
2154
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2155
- #: dashboard/publisher/adrotate-groups-edit.php:398
2156
  msgid "Configuration errors."
2157
  msgstr "Błedy konfiguracji."
2158
 
@@ -2166,7 +2113,7 @@ msgid "Export to XML"
2166
  msgstr "Eksportuj ustawienia"
2167
 
2168
  #: dashboard/publisher/adrotate-ads-main.php:42
2169
- #: dashboard/publisher/adrotate-groups-edit.php:357
2170
  msgid "Weight"
2171
  msgstr "Waga"
2172
 
@@ -2231,74 +2178,72 @@ msgstr "Nowa grupa"
2231
  msgid "Edit Group"
2232
  msgstr "Edytuj grupę"
2233
 
2234
- #: dashboard/publisher/adrotate-groups-edit.php:56
2235
  msgid "Name:"
2236
  msgstr "Nazwa:"
2237
 
2238
- #: dashboard/publisher/adrotate-groups-edit.php:65
2239
  msgid "Default - Show one ad at a time"
2240
  msgstr "Domyśłne - pokazuj jedną na raz"
2241
 
2242
- #: dashboard/publisher/adrotate-groups-edit.php:66
2243
  msgid "Dynamic Mode - Show a different ad every few seconds"
2244
  msgstr "Tryb dynamiczny - Zmieniaj reklamy co kilka sekund"
2245
 
2246
- #: dashboard/publisher/adrotate-groups-edit.php:67
2247
  msgid "Block Mode - Show a block of ads"
2248
  msgstr "Trym bloku - pokazuj reklamy w bloku"
2249
 
2250
- #: dashboard/publisher/adrotate-groups-edit.php:71
2251
  #, fuzzy
2252
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2253
  msgstr ""
2254
  "Tryb Dynamiczny i Blokowy wymagają załadowania 'jQuery' i jQuery "
2255
  "Wyłączone' . Możesz uruchomić ten tryb w Ustawieniach AdRotate."
2256
 
2257
- #: dashboard/publisher/adrotate-groups-edit.php:78
2258
- #: dashboard/publisher/adrotate-groups-edit.php:135
2259
  msgid "Dynamic and Block Mode"
2260
  msgstr "Tryb dynamiczny i blokowy"
2261
 
2262
- #: dashboard/publisher/adrotate-groups-edit.php:79
2263
  msgid "Only required if your group is in Dynamic or Block mode."
2264
  msgstr ""
2265
  "Wymagane jedynie gdy grupa reklam jest w trybie Dynamicznym lub Blokowym"
2266
 
2267
- #: dashboard/publisher/adrotate-groups-edit.php:83
2268
- msgid "Block shape and border"
2269
- msgstr "Kształt i ramka bloku"
2270
 
2271
- #: dashboard/publisher/adrotate-groups-edit.php:110
2272
  msgid "rows"
2273
  msgstr "wiersze"
2274
 
2275
- #: dashboard/publisher/adrotate-groups-edit.php:123
2276
  msgid "columns"
2277
  msgstr "kolumny"
2278
 
2279
- #: dashboard/publisher/adrotate-groups-edit.php:126
2280
  msgid "Block Mode"
2281
  msgstr "Tryb Bloku"
2282
 
2283
- #: dashboard/publisher/adrotate-groups-edit.php:126
2284
- msgid ""
2285
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2286
- "showing a maximum of 6 ads. Default: 2x2."
2287
- msgstr "Szerokość i wysokość reklamy"
2288
 
2289
- #: dashboard/publisher/adrotate-groups-edit.php:130
2290
- msgid "Advert Width and Height"
2291
- msgstr "Szerkość i wysokość reklamy"
2292
 
2293
- #: dashboard/publisher/adrotate-groups-edit.php:132
2294
  msgid "pixel(s) wide"
2295
  msgstr "szerokość w pikselach"
2296
 
2297
- #: dashboard/publisher/adrotate-groups-edit.php:132
2298
  msgid "pixel(s) high."
2299
  msgstr "wysokość w pikselach"
2300
 
2301
- #: dashboard/publisher/adrotate-groups-edit.php:135
2302
  #, fuzzy
2303
  msgid ""
2304
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2307,224 +2252,231 @@ msgstr ""
2307
  "Ustal maksymalny rozmiar reklam w pikselach po uwzględnieniu marginesu. "
2308
  "Rozmiar może być ustawiony na 'auto' (Nie zalecane). Domyślnie: 125/125."
2309
 
2310
- #: dashboard/publisher/adrotate-groups-edit.php:139
2311
  msgid "Automated refresh"
2312
  msgstr "Automatycznie odświeżane"
2313
 
2314
- #: dashboard/publisher/adrotate-groups-edit.php:158
2315
  msgid "seconds."
2316
  msgstr "sekund."
2317
 
2318
- #: dashboard/publisher/adrotate-groups-edit.php:161
2319
  msgid "Dynamic Mode"
2320
  msgstr "Tryb dynamiczny"
2321
 
2322
- #: dashboard/publisher/adrotate-groups-edit.php:161
2323
  msgid ""
2324
  "Load a new advert in this interval without reloading the page. Default: 6."
2325
  msgstr ""
2326
  "Załąduj nową reklamę w tych odstępach czasowych bez odświeżania strony. "
2327
  "Domyślnie 6."
2328
 
2329
- #: dashboard/publisher/adrotate-groups-edit.php:181
2330
- #: dashboard/publisher/adrotate-groups-edit.php:322
2331
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2332
  msgid "Save Group"
2333
  msgstr "Zapisz grupę"
2334
 
2335
- #: dashboard/publisher/adrotate-groups-edit.php:189
2336
  msgid "Advert Margin"
2337
  msgstr "Margines reklamy"
2338
 
2339
- #: dashboard/publisher/adrotate-groups-edit.php:191
2340
  msgid "pixel(s)"
2341
  msgstr "piksele"
2342
 
2343
- #: dashboard/publisher/adrotate-groups-edit.php:194
2344
  #, fuzzy
2345
  msgid "A transparent area outside the advert in pixels. Default: 0."
2346
  msgstr "Transparentna ramka wokól reklamy- w pikselach. Domyślnie: 1."
2347
 
2348
- #: dashboard/publisher/adrotate-groups-edit.php:194
2349
  #, fuzzy
2350
  msgid "Set to 0 to disable."
2351
  msgstr "Domyślnie: 10. Ustaw 0 by wyłączyć ten licznik."
2352
 
2353
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2354
  #, fuzzy
2355
  msgid "Align the group"
2356
  msgstr "Reklamy w grupie"
2357
 
2358
- #: dashboard/publisher/adrotate-groups-edit.php:201
2359
  #, fuzzy
2360
  msgid "None (Default)"
2361
  msgstr "Domyślny"
2362
 
2363
- #: dashboard/publisher/adrotate-groups-edit.php:202
2364
  msgid "Left"
2365
  msgstr ""
2366
 
2367
- #: dashboard/publisher/adrotate-groups-edit.php:203
2368
  #, fuzzy
2369
  msgid "Right"
2370
  msgstr "Waga"
2371
 
2372
- #: dashboard/publisher/adrotate-groups-edit.php:204
2373
  msgid "Center"
2374
  msgstr ""
2375
 
2376
- #: dashboard/publisher/adrotate-groups-edit.php:208
2377
  msgid ""
2378
  "Align the group in your post or page. Using 'center' may affect your margin "
2379
  "setting. Not every theme supports this feature."
2380
  msgstr ""
2381
 
2382
- #: dashboard/publisher/adrotate-groups-edit.php:214
2383
  msgid "Leave empty or 0 to skip this. Will default to group id."
2384
  msgstr ""
2385
  "Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
2386
 
2387
- #: dashboard/publisher/adrotate-groups-edit.php:218
2388
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2389
  msgstr ""
2390
 
2391
- #: dashboard/publisher/adrotate-groups-edit.php:221
2392
- msgid "Insert ads to the begin or end of a post/page."
2393
- msgstr "Umieść reklamy na początku lub końcu wpisy/strony."
2394
-
2395
- #: dashboard/publisher/adrotate-groups-edit.php:224
2396
  msgid "Include ads in categories?"
2397
  msgstr "Wyświetlać reklamy w kategoriach?"
2398
 
2399
- #: dashboard/publisher/adrotate-groups-edit.php:228
2400
- #: dashboard/publisher/adrotate-groups-edit.php:269
2401
  msgid "Disabled"
2402
  msgstr "Wyłącz"
2403
 
2404
- #: dashboard/publisher/adrotate-groups-edit.php:229
2405
- #: dashboard/publisher/adrotate-groups-edit.php:270
2406
  msgid "Before content"
2407
  msgstr "Przed treścią"
2408
 
2409
- #: dashboard/publisher/adrotate-groups-edit.php:230
2410
- #: dashboard/publisher/adrotate-groups-edit.php:271
2411
  msgid "After content"
2412
  msgstr "Po treści"
2413
 
2414
- #: dashboard/publisher/adrotate-groups-edit.php:231
2415
- #: dashboard/publisher/adrotate-groups-edit.php:272
2416
  msgid "Before and after content"
2417
  msgstr "Przed i po treści"
2418
 
2419
- #: dashboard/publisher/adrotate-groups-edit.php:232
2420
- #: dashboard/publisher/adrotate-groups-edit.php:273
2421
  msgid "After..."
2422
  msgstr "Po ..."
2423
 
2424
- #: dashboard/publisher/adrotate-groups-edit.php:238
2425
- #: dashboard/publisher/adrotate-groups-edit.php:279
2426
  msgid "the first paragraph"
2427
  msgstr "Pierwszy akapit"
2428
 
2429
- #: dashboard/publisher/adrotate-groups-edit.php:239
2430
- #: dashboard/publisher/adrotate-groups-edit.php:280
2431
  msgid "the 2nd paragraph"
2432
  msgstr "Drugi akapit"
2433
 
2434
- #: dashboard/publisher/adrotate-groups-edit.php:240
2435
- #: dashboard/publisher/adrotate-groups-edit.php:281
2436
  msgid "the 3rd paragraph"
2437
  msgstr "Trzeci akapit"
2438
 
2439
- #: dashboard/publisher/adrotate-groups-edit.php:241
2440
- #: dashboard/publisher/adrotate-groups-edit.php:282
2441
  msgid "the 4th paragraph"
2442
  msgstr "Czwarty akapit"
2443
 
2444
- #: dashboard/publisher/adrotate-groups-edit.php:243
2445
- #: dashboard/publisher/adrotate-groups-edit.php:284
2446
  msgid "every 2nd paragraph"
2447
  msgstr "Każdy drugi akapit"
2448
 
2449
- #: dashboard/publisher/adrotate-groups-edit.php:244
2450
- #: dashboard/publisher/adrotate-groups-edit.php:285
2451
  msgid "every 3rd paragraph"
2452
  msgstr "Każdy trzeci akapit"
2453
 
2454
- #: dashboard/publisher/adrotate-groups-edit.php:245
2455
- #: dashboard/publisher/adrotate-groups-edit.php:286
2456
  msgid "every 4th paragraph"
2457
  msgstr "każdy czwarty akapit"
2458
 
2459
- #: dashboard/publisher/adrotate-groups-edit.php:246
2460
- #: dashboard/publisher/adrotate-groups-edit.php:287
2461
  msgid "every 5th paragraph"
2462
  msgstr "każdu piąty akapit"
2463
 
2464
- #: dashboard/publisher/adrotate-groups-edit.php:247
2465
- #: dashboard/publisher/adrotate-groups-edit.php:288
2466
  msgid "every 6th paragraph"
2467
  msgstr "każdy szósty akapit"
2468
 
2469
- #: dashboard/publisher/adrotate-groups-edit.php:248
2470
- #: dashboard/publisher/adrotate-groups-edit.php:289
2471
  msgid "every 7th paragraph"
2472
  msgstr "każdy siódmy akapit"
2473
 
2474
- #: dashboard/publisher/adrotate-groups-edit.php:249
2475
- #: dashboard/publisher/adrotate-groups-edit.php:290
2476
  msgid "every 8th paragraph"
2477
  msgstr "każdy ósmy akapit"
2478
 
2479
- #: dashboard/publisher/adrotate-groups-edit.php:255
2480
  msgid "Which categories?"
2481
  msgstr "Która kategoria?"
2482
 
2483
- #: dashboard/publisher/adrotate-groups-edit.php:260
2484
  msgid "Click the categories posts you want the adverts to show in."
2485
  msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
2486
 
2487
- #: dashboard/publisher/adrotate-groups-edit.php:265
2488
  msgid "Include ads in pages?"
2489
  msgstr "Wyświetlać reklamy na stronach?"
2490
 
2491
- #: dashboard/publisher/adrotate-groups-edit.php:296
2492
  msgid "Which pages?"
2493
  msgstr "Które strony?"
2494
 
2495
- #: dashboard/publisher/adrotate-groups-edit.php:301
2496
  msgid "Click the pages you want the adverts to show in."
2497
  msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
2498
 
2499
- #: dashboard/publisher/adrotate-groups-edit.php:326
2500
  msgid "Wrapper code"
2501
  msgstr "Kod wrappera"
2502
 
2503
- #: dashboard/publisher/adrotate-groups-edit.php:327
2504
- msgid "Wraps around each ad."
2505
- msgstr "Wrapy otaczajac całe reklamy"
2506
 
2507
- #: dashboard/publisher/adrotate-groups-edit.php:331
2508
  msgid "Before ad"
2509
  msgstr "Przed reklamą"
2510
 
2511
- #: dashboard/publisher/adrotate-groups-edit.php:336
2512
- msgid "HTML/JavaScript allowed, use with care!"
2513
- msgstr "HTML/Javascripts dozwolone, korzytaj rozsądnie!"
2514
 
2515
- #: dashboard/publisher/adrotate-groups-edit.php:340
2516
  msgid "After ad"
2517
  msgstr "Po reklamie"
2518
 
2519
- #: dashboard/publisher/adrotate-groups-edit.php:349
2520
  msgid "Select Ads"
2521
  msgstr "Wybierz reklamy"
2522
 
2523
- #: dashboard/publisher/adrotate-groups-edit.php:358
2524
  msgid "Visible until"
2525
  msgstr "Widoczne do"
2526
 
2527
- #: dashboard/publisher/adrotate-groups-edit.php:391
2528
  msgid "No ads created!"
2529
  msgstr "Nie utworzono reklam!"
2530
 
@@ -2556,6 +2508,111 @@ msgstr "Nie utworzono grupy!"
2556
  msgid "Statistics for group"
2557
  msgstr "Statystyki dla grupy"
2558
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2559
  #, fuzzy
2560
  #~ msgid "AdRotate Website."
2561
  #~ msgstr "Sklep AdRotate"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: adrotate-functions.php:809
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:812
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-output.php:745
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
+ #: adrotate-output.php:746
36
  msgid ""
37
  "WordPress was unable to verify the authenticity of the url you have clicked. "
38
  "Verify if the url used is valid or log in via your browser."
40
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
41
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
42
 
43
+ #: adrotate-output.php:747
44
  msgid ""
45
  "If you have received the url you want to visit via email, you are being "
46
  "tricked!"
48
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
49
  "zostałeś oszukany. "
50
 
51
+ #: adrotate-output.php:748
52
  msgid "Contact support if the issue persists:"
53
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
54
 
55
+ #: adrotate-output.php:766
56
  msgid ""
57
  "Error, Ad is not available at this time due to schedule/geolocation "
58
  "restrictions or does not exist!"
60
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
61
  "harmonogramie lub geolokalizacji lub może nie istnieć."
62
 
63
+ #: adrotate-output.php:768
64
  msgid ""
65
  "Error, Ad is not available at this time due to schedule/geolocation "
66
  "restrictions!"
68
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
69
  "harmonogramie lub geolokalizacji."
70
 
71
+ #: adrotate-output.php:775 adrotate-output.php:777
72
  msgid ""
73
  "Either there are no banners, they are disabled or none qualified for this "
74
  "location!"
76
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
77
  "lokalizacji!"
78
 
79
+ #: adrotate-output.php:783
80
  msgid "Error, no Ad ID set! Check your syntax!"
81
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
82
 
83
+ #: adrotate-output.php:789
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
86
 
87
+ #: adrotate-output.php:794
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
90
 
91
+ #: adrotate-output.php:800
92
  msgid ""
93
  "There was an error locating the database tables for AdRotate. Please "
94
  "deactivate and re-activate AdRotate from the plugin page!!"
96
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
97
  "AdRote na panelu wtyczek."
98
 
99
+ #: adrotate-output.php:800
100
  msgid "If this does not solve the issue please seek support at"
101
  msgstr ""
102
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
103
 
104
+ #: adrotate-output.php:806
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
+ #: adrotate-output.php:831
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
+ #: adrotate-output.php:831
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
+ #: adrotate-output.php:833
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
+ #: adrotate-output.php:833
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
+ #: adrotate-output.php:835
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
+ #: adrotate-output.php:835
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
+ #: adrotate-output.php:837
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
+ #: adrotate-output.php:837
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
+ #: adrotate-output.php:837
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
+ #: adrotate-output.php:837
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
+ #: adrotate-output.php:849
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
+ #: adrotate-output.php:850
154
  msgid ""
155
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
156
  "to the <strong>PRO</strong> version"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:850
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:850
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
+ #: adrotate-output.php:894
169
  msgid ""
170
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
171
+ "this menu. Check out the"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:894
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
+ #: adrotate-output.php:894 adrotate-output.php:971
179
+ #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:894
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:930
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
+ #: adrotate-output.php:931
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:933
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:934
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
+ #: adrotate-output.php:935
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
+ #: adrotate-output.php:936
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
+ #: adrotate-output.php:937
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:963
221
  #, fuzzy
222
  msgid "Help AdRotate Grow"
223
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
224
 
225
+ #: adrotate-output.php:964
226
  msgid "Brought to you by"
227
  msgstr "Dostarczone przez "
228
 
229
+ #: adrotate-output.php:971
230
  msgid ""
231
  "A lot of users only think to review AdRotate when something goes wrong while "
232
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:971
236
  msgid "If you find AdRotate useful please leave your honest"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:971
240
  msgid "rating"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:971
244
  #, fuzzy
245
  msgid "review"
246
  msgstr ""
247
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
248
 
249
+ #: adrotate-output.php:971
250
  msgid "on WordPress.org to help AdRotate grow in a positive way"
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:974
254
  msgid ""
255
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
256
  "out more about what I can do for you!"
259
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
260
  "więcej dla Wordpress'a."
261
 
262
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
263
  msgid "Visit the"
264
  msgstr "Odwiedź"
265
 
266
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
267
  msgid "website"
268
  msgstr "strone internetową"
269
 
270
+ #: adrotate-output.php:1004
271
  msgid "Available in AdRotate Pro"
272
  msgstr "Dostępne w wersji AdRotate Pro"
273
 
274
+ #: adrotate-output.php:1004
275
  msgid "More information..."
276
  msgstr "Więcej informacji"
277
 
278
+ #: adrotate-output.php:1005
279
  msgid "This feature is available in AdRotate Pro"
280
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
281
 
282
+ #: adrotate-output.php:1005
283
  msgid "Learn more"
284
  msgstr "Dowiedź się więcej"
285
 
286
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
287
+ #: dashboard/publisher/adrotate-ads-edit.php:245
288
  msgid "January"
289
  msgstr "Styczeń "
290
 
291
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
292
+ #: dashboard/publisher/adrotate-ads-edit.php:246
293
  msgid "February"
294
  msgstr "Luty"
295
 
296
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
297
+ #: dashboard/publisher/adrotate-ads-edit.php:247
298
  msgid "March"
299
  msgstr "Marzec"
300
 
301
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
302
+ #: dashboard/publisher/adrotate-ads-edit.php:248
303
  msgid "April"
304
  msgstr "Kwiecień"
305
 
306
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
307
+ #: dashboard/publisher/adrotate-ads-edit.php:249
308
  msgid "May"
309
  msgstr "Maj"
310
 
311
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
312
+ #: dashboard/publisher/adrotate-ads-edit.php:250
313
  msgid "June"
314
  msgstr "Czerwiec"
315
 
316
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
317
+ #: dashboard/publisher/adrotate-ads-edit.php:251
318
  msgid "July"
319
  msgstr "Lipiec"
320
 
321
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
322
+ #: dashboard/publisher/adrotate-ads-edit.php:252
323
  msgid "August"
324
  msgstr "Sierpień"
325
 
326
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
327
+ #: dashboard/publisher/adrotate-ads-edit.php:253
328
  msgid "September"
329
  msgstr "Wrzesień"
330
 
331
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
332
+ #: dashboard/publisher/adrotate-ads-edit.php:254
333
  msgid "October"
334
  msgstr "Pażdziernik"
335
 
336
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
337
+ #: dashboard/publisher/adrotate-ads-edit.php:255
338
  msgid "November"
339
  msgstr "Listopad"
340
 
341
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
342
+ #: dashboard/publisher/adrotate-ads-edit.php:256
343
  msgid "December"
344
  msgstr "Grudzień"
345
 
391
  msgid "Choose what you want to use this widget for"
392
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
393
 
394
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
395
  msgid "ID:"
396
  msgstr "ID:"
397
 
399
  msgid "Fill in the ID of the type you want to display!"
400
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
401
 
402
+ #: adrotate.php:107
403
  msgid "General Info"
404
  msgstr "Informacje główne"
405
 
406
+ #: adrotate.php:108
407
  msgid "AdRotate Pro"
408
  msgstr "AdRotate Pro"
409
 
410
+ #: adrotate.php:109
411
  msgid "Manage Ads"
412
  msgstr "Zarządzaj reklamami"
413
 
414
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
415
  msgid "Manage Groups"
416
  msgstr "Zarządzaj grupami"
417
 
418
+ #: adrotate.php:111 adrotate.php:440
 
419
  #, fuzzy
420
  msgid "Manage Schedules"
421
  msgstr "Zarządzaj"
422
 
423
+ #: adrotate.php:112
424
  #, fuzzy
425
  msgid "Manage Media"
426
  msgstr "Media:"
427
 
428
+ #: adrotate.php:113
429
  msgid "Settings"
430
  msgstr "Ustawienia"
431
 
432
+ #: adrotate.php:136
433
  msgid "AdRotate Info"
434
  msgstr "Informacja AdRotate "
435
 
436
+ #: adrotate.php:157
437
  msgid "AdRotate Professional"
438
  msgstr "AdRotate Professional"
439
 
440
+ #: adrotate.php:200
441
  msgid "Ad Management"
442
  msgstr "Zarządzanie Reklamami"
443
 
444
+ #: adrotate.php:203
445
  msgid "Ad created"
446
  msgstr "Reklama utworzona"
447
 
448
+ #: adrotate.php:205
449
  msgid "Ad updated"
450
  msgstr "Reklamy zaktualizowana"
451
 
452
+ #: adrotate.php:207
453
  msgid "Ad(s) deleted"
454
  msgstr "Reklama usunięta"
455
 
456
+ #: adrotate.php:209
457
  msgid "Ad(s) statistics reset"
458
  msgstr "Resetuj statystyki reklamy"
459
 
460
+ #: adrotate.php:211
461
  msgid "Ad(s) renewed"
462
  msgstr "Odnów reklamę"
463
 
464
+ #: adrotate.php:213
465
  msgid "Ad(s) deactivated"
466
  msgstr "Reklama wyłączona"
467
 
468
+ #: adrotate.php:215
469
  msgid "Ad(s) activated"
470
  msgstr "Reklama włączona"
471
 
472
+ #: adrotate.php:217
473
  msgid ""
474
  "The ad was saved but has an issue which might prevent it from working "
475
  "properly. Review the yellow marked ad."
477
  "Reklama została zapisana jednak powstał jakiś błąd który uniemożliwia jej "
478
  "prawidłowe działanie. Przjrzyj reklamę zaznaczoną żóltym kolorem."
479
 
480
+ #: adrotate.php:219
481
  #, fuzzy
482
  msgid "Export created"
483
  msgstr "Reklama utworzona"
484
 
485
+ #: adrotate.php:223
486
  msgid "Action prohibited"
487
  msgstr "Czynność zabroniona."
488
 
489
+ #: adrotate.php:225 adrotate.php:373
490
  msgid "No data found in selected time period"
491
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
492
 
493
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
494
  msgid "Manage"
495
  msgstr "Zarządzaj"
496
 
497
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
498
  msgid "Add New"
499
  msgstr "Dodaj nową"
500
 
501
+ #: adrotate.php:362
502
  msgid "Group Management"
503
  msgstr "Zarządzanie grupą reklam"
504
 
505
+ #: adrotate.php:365
506
  msgid "Group created"
507
  msgstr "Grupa utworzona."
508
 
509
+ #: adrotate.php:367
510
  msgid "Group updated"
511
  msgstr "Grupa zaktualizowana"
512
 
513
+ #: adrotate.php:369
514
  msgid "Group deleted"
515
  msgstr "Grupa usunięta"
516
 
517
+ #: adrotate.php:371
518
  msgid "Group including it's Ads deleted"
519
  msgstr "Grupa wraz z reklamami usunięta"
520
 
521
+ #: adrotate.php:431
522
  #, fuzzy
523
  msgid "Schedule Management available in AdRotate Pro"
524
  msgstr "Dostępne w wersji AdRotate Pro"
525
 
526
+ #: adrotate.php:441
527
  msgid ""
528
  "Schedule management and multiple schedules per advert is available in "
529
  "AdRotate Pro."
530
  msgstr ""
531
 
532
+ #: adrotate.php:441 adrotate.php:528
533
+ #: dashboard/publisher/adrotate-ads-edit.php:177
534
  #: dashboard/publisher/adrotate-ads-main.php:108
535
+ #: dashboard/publisher/adrotate-groups-edit.php:75
536
  #: dashboard/publisher/adrotate-groups-main.php:87
537
  #, fuzzy
538
  msgid "More information"
539
  msgstr "Więcej informacji"
540
 
541
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
542
  #: dashboard/publisher/adrotate-ads-main-error.php:19
543
  #: dashboard/publisher/adrotate-ads-main.php:20
544
  #: dashboard/publisher/adrotate-groups-main.php:20
545
  msgid "Bulk Actions"
546
  msgstr "Działania masowe"
547
 
548
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
549
  #: dashboard/publisher/adrotate-ads-main-error.php:29
550
  #: dashboard/publisher/adrotate-ads-main.php:30
551
  #: dashboard/publisher/adrotate-groups-main.php:24
552
  msgid "Go"
553
  msgstr "Idź"
554
 
555
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
556
  #: dashboard/publisher/adrotate-ads-main-error.php:39
557
  #: dashboard/publisher/adrotate-ads-main.php:39
558
  #: dashboard/publisher/adrotate-groups-main.php:32
559
  msgid "ID"
560
  msgstr "ID"
561
 
562
+ #: adrotate.php:459
563
  #, fuzzy
564
  msgid "Start"
565
  msgstr "Start / Koniec"
566
 
567
+ #: adrotate.php:459
568
  #, fuzzy
569
  msgid "End"
570
  msgstr "Start / Koniec"
571
 
572
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
573
  #: dashboard/publisher/adrotate-groups-main.php:34
574
  msgid "Ads"
575
  msgstr "Reklamy"
576
 
577
+ #: adrotate.php:462
578
  msgid "Max Clicks"
579
  msgstr "Maksymalna liczna kliknięć"
580
 
581
+ #: adrotate.php:463
582
  msgid "Max Impressions"
583
  msgstr "Maksymalna liczba wyświetleń"
584
 
585
+ #: adrotate.php:493
586
  #, fuzzy
587
  msgid "No schedules created yet!"
588
  msgstr "Nie utworzono jeszcze żadnych reklam!"
589
 
590
+ #: adrotate.php:498
591
  #, fuzzy
592
  msgid "Easily manage your schedules from here with AdRotate Pro."
593
  msgstr "Więcej ustawień z AdRotate Pro"
594
 
595
+ #: adrotate.php:498 adrotate.php:561
596
  #, fuzzy
597
  msgid "Upgrade today!"
598
  msgstr "Dziś"
599
 
600
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
601
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
602
  msgid "Expires soon."
603
  msgstr "Wygasa wkrótce."
604
 
605
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
606
+ #: dashboard/publisher/adrotate-groups-edit.php:373
607
  msgid "Has expired."
608
  msgstr "Wygasła."
609
 
610
+ #: adrotate.php:526
611
  #, fuzzy
612
  msgid "Media Management available in AdRotate Pro"
613
  msgstr "Dostępne w wersji AdRotate Pro"
614
 
615
+ #: adrotate.php:528
616
  msgid ""
617
  "Upload images to the AdRotate Pro banners folder from here. This is "
618
  "especially useful if you use responsive adverts with multiple images."
619
  msgstr ""
620
 
621
+ #: adrotate.php:528
622
  #, fuzzy
623
  msgid "Media uploading and management is available in AdRotate Pro."
624
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
625
 
626
+ #: adrotate.php:530
627
  #, fuzzy
628
  msgid "Upload new banner image"
629
  msgstr "Obraz banera:"
630
 
631
+ #: adrotate.php:531
632
  #, fuzzy
633
  msgid "Accepted files are:"
634
  msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
635
 
636
+ #: adrotate.php:531
637
  msgid "Maximum size is 512Kb."
638
  msgstr ""
639
 
640
+ #: adrotate.php:531
641
  msgid "Important:"
642
  msgstr ""
643
 
644
+ #: adrotate.php:531
645
  msgid ""
646
  "Make sure your file has no spaces or special characters in the name. Replace "
647
  "spaces with a - or _."
648
  msgstr ""
649
 
650
+ #: adrotate.php:533
651
  #, fuzzy
652
  msgid ""
653
  "For responsive adverts make sure the filename is in the following format; "
657
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
658
  "pełnego wachlarza rozmiarów.'"
659
 
660
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
661
  msgid ""
662
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
663
  "filename instead of \".full\" for the various viewports."
665
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
666
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
667
 
668
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
669
+ #: dashboard/publisher/adrotate-groups-edit.php:308
670
+ #: dashboard/publisher/adrotate-groups-edit.php:316
671
  msgid "Example:"
672
  msgstr "Przykład:"
673
 
674
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
675
  #, fuzzy
676
  msgid ""
677
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
680
  "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
681
  "różnych widokach. Wymaga jQuery."
682
 
683
+ #: adrotate.php:539
684
  #, fuzzy
685
  msgid "Upload image"
686
  msgstr "Obraz banera:"
687
 
688
+ #: adrotate.php:542
689
  msgid "Available banner images in"
690
  msgstr ""
691
 
692
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
693
  msgid "Name"
694
  msgstr "Nazwa"
695
 
696
+ #: adrotate.php:548
697
  #, fuzzy
698
  msgid "Actions"
699
  msgstr "Działania masowe"
700
 
701
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
702
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
703
  #: dashboard/publisher/adrotate-ads-main-error.php:21
704
  #: dashboard/publisher/adrotate-ads-main.php:22
705
  msgid "Delete"
706
  msgstr "Usuń"
707
 
708
+ #: adrotate.php:561
709
  msgid ""
710
  "Make sure the banner images are not in use by adverts when you delete them!"
711
  msgstr ""
712
 
713
+ #: adrotate.php:561
714
  #, fuzzy
715
  msgid "Manage your banner folder from here with AdRotate Pro."
716
  msgstr "Więcej ustawień z AdRotate Pro"
717
 
718
+ #: adrotate.php:605
719
  msgid "AdRotate Settings"
720
  msgstr "Ustawienia AdRotate"
721
 
722
+ #: adrotate.php:608
723
  msgid "Settings saved"
724
  msgstr "Ustawienia zapisane"
725
 
726
+ #: adrotate.php:610
727
  msgid "Database optimized"
728
  msgstr "Baza danych zoptymalizowana"
729
 
730
+ #: adrotate.php:612
731
  msgid "Database repaired"
732
  msgstr "Baza danych naprawiona"
733
 
734
+ #: adrotate.php:614
735
  msgid "Ads evaluated and statuses have been corrected where required"
736
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
737
 
738
+ #: adrotate.php:616
739
  msgid "Empty database records removed"
740
  msgstr "Usunięto puste rekordy bazy danych"
741
 
742
+ #: adrotate.php:618
743
  msgid "Database can only be optimized or cleaned once every hour"
744
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
745
 
746
+ #: adrotate.php:626
747
  msgid "Access Rights"
748
  msgstr "Prawa dostępu"
749
 
750
+ #: adrotate.php:627
751
  msgid "Who has access to what?"
752
  msgstr "Kto ma dostęp i do czego?"
753
 
754
+ #: adrotate.php:630
755
  msgid "Manage/Add/Edit adverts"
756
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
757
 
758
+ #: adrotate.php:634
759
  msgid "Role to see and add/edit ads."
760
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
761
 
762
+ #: adrotate.php:638
763
  msgid "Delete/Reset adverts"
764
  msgstr "Usuń/Resetuj reklamy"
765
 
766
+ #: adrotate.php:642
767
  msgid "Role to delete ads and reset stats."
768
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
769
 
770
+ #: adrotate.php:646
771
  msgid "Manage/Add/Edit groups"
772
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
773
 
774
+ #: adrotate.php:650
775
  msgid "Role to see and add/edit groups."
776
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
777
 
778
+ #: adrotate.php:654
779
  msgid "Delete groups"
780
  msgstr "Usuwanie grup"
781
 
782
+ #: adrotate.php:658
783
  msgid "Role to delete groups."
784
  msgstr "Uprawnienia do usuwania grup"
785
 
786
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
787
+ #: adrotate.php:875
788
  msgid "Update Options"
789
  msgstr "Zapisz opcje"
790
 
791
+ #: adrotate.php:690
792
  msgid "Statistics"
793
  msgstr "Statystyki"
794
 
795
+ #: adrotate.php:693
796
  msgid "Enable stats"
797
  msgstr "Włącz statystyki"
798
 
799
+ #: adrotate.php:695
800
  msgid "Track clicks and impressions."
801
  msgstr "Śledź kliknięcia i wyświetlenia."
802
 
803
+ #: adrotate.php:695
804
  #, fuzzy
805
  msgid "Disabling this also disables click and impression limits on schedules."
806
  msgstr ""
808
  "wyświetleń ustalonych w harmonogramach dodatkowo wyłącza ustalone przedziały "
809
  "czasowe dla wyświetlania reklam."
810
 
811
+ #: adrotate.php:699
812
  msgid "Impressions timer"
813
  msgstr "Licznik wyświetleń"
814
 
815
+ #: adrotate.php:701 adrotate.php:708
816
  msgid "Seconds."
817
  msgstr "Sekundy"
818
 
819
+ #: adrotate.php:702
820
  #, fuzzy
821
  msgid "Default: 60."
822
  msgstr "Domyślny"
823
 
824
+ #: adrotate.php:702
825
  #, fuzzy
826
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
827
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
828
 
829
+ #: adrotate.php:706
830
  msgid "Clicks timer"
831
  msgstr "Licznik kliknięć"
832
 
833
+ #: adrotate.php:709
834
  #, fuzzy
835
  msgid "Default: 86400."
836
  msgstr "Domyślny"
837
 
838
+ #: adrotate.php:709
839
  #, fuzzy
840
  msgid ""
841
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
842
  msgstr ""
843
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
844
 
845
+ #: adrotate.php:714
846
  msgid "Bot filter"
847
  msgstr "Filtr Botów Internetowych"
848
 
849
+ #: adrotate.php:717
850
  msgid "User-Agent Filter"
851
  msgstr "Filtr Agentów"
852
 
853
+ #: adrotate.php:720
854
  msgid ""
855
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
856
  "prevent impressions and clicks counted on them."
858
  "Średnik oddziala listę słów. Filtruj boty/pajączki/agentów by chronić się "
859
  "przed zliczaniem kliknięć i wyświetleń przez te programy."
860
 
861
+ #: adrotate.php:721
862
  msgid ""
863
  "Keep in mind that this might give false positives. The word 'google' also "
864
  "matches 'googlebot', but not vice-versa. So be careful!"
867
  "również do słowa \"Googlebot\", ale nie odwrotnie. Więc należy być "
868
  "ostrożnym!"
869
 
870
+ #: adrotate.php:721
871
  msgid "Keep your list up-to-date"
872
  msgstr "Pamietaj by twoja lista była akutalna."
873
 
874
+ #: adrotate.php:722
875
  msgid ""
876
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
877
  "other characters are stripped out."
879
  "Używaj tylko słów z literami i cyframi, [- _] są też dozwolone. Wszystkie "
880
  "inne znaki są usuwane."
881
 
882
+ #: adrotate.php:723
883
  msgid ""
884
  "Additionally to the list specified here, empty User-Agents are blocked as "
885
  "well."
886
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
887
 
888
+ #: adrotate.php:723
889
  msgid "Learn more about"
890
  msgstr "Dowiedź się więcej o"
891
 
892
+ #: adrotate.php:723
893
  msgid "user-agents"
894
  msgstr "Agenci przeglądarek"
895
 
896
+ #: adrotate.php:732
897
  msgid "Miscellaneous"
898
  msgstr "Różne"
899
 
900
+ #: adrotate.php:735
901
  msgid "Widget alignment"
902
  msgstr "Wyrównanie widżetu"
903
 
904
+ #: adrotate.php:736
905
  msgid ""
906
  "Check this box if your widgets do not align in your themes sidebar. (Does "
907
  "not always help!)"
909
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
910
  "pomaga!)"
911
 
912
+ #: adrotate.php:739
913
  msgid "Widget padding"
914
  msgstr "Pusta przestrzeń Widżetu"
915
 
916
+ #: adrotate.php:740
917
  msgid ""
918
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
919
  "not always work!)"
921
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
922
  "działa)"
923
 
924
+ #: adrotate.php:745 adrotate.php:756
925
  #, fuzzy
926
  msgid "NOTICE:"
927
  msgstr ""
931
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
932
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
933
 
934
+ #: adrotate.php:746
935
  msgid ""
936
  "You have enabled W3 Total Caching support but not defined the security hash. "
937
  "You need to add the following line to your wp-config.php near the bottom or "
939
  "needs to be enabled in W3 Total Cache as well too."
940
  msgstr ""
941
 
942
+ #: adrotate.php:750
943
  msgid "W3 Total Caching"
944
  msgstr "W3 Total Caching"
945
 
946
+ #: adrotate.php:751
947
  msgid "Check this box if you use W3 Total Caching on your site."
948
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
949
 
950
+ #: adrotate.php:757
951
  msgid ""
952
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
953
  "this function will not work. WP Super Cache has discontinued support for "
954
  "dynamic content."
955
  msgstr ""
956
 
957
+ #: adrotate.php:761
958
  msgid "WP Super Cache"
959
  msgstr "WP Super Cache"
960
 
961
+ #: adrotate.php:762
962
  msgid "Check this box if you use WP Super Cache on your site."
963
  msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
964
 
965
+ #: adrotate.php:767
966
  msgid ""
967
  "It may take a while for the ad to start rotating. The caching plugin needs "
968
  "to refresh the cache. This can take up to a week if not done manually."
971
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
972
  "jeśli nie wykonasz tego ręcznie."
973
 
974
+ #: adrotate.php:767
975
  msgid ""
976
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
977
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
980
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
981
  "strony."
982
 
983
+ #: adrotate.php:771
984
  msgid "Javascript"
985
  msgstr ""
986
 
987
+ #: adrotate.php:774
988
  msgid "Load jQuery"
989
  msgstr "Załąduj jQuery"
990
 
991
+ #: adrotate.php:775
992
  msgid ""
993
  "jQuery is required for all Javascript features below. Enable this if your "
994
  "theme does not load jQuery already."
996
  "jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
997
  "jeśli strona nie załądowałą jeszcze jQuery."
998
 
999
+ #: adrotate.php:778
1000
  msgid "Load in footer?"
1001
  msgstr "Załadować do stopki?"
1002
 
1003
+ #: adrotate.php:779
1004
  msgid ""
1005
  "Enable if you want to load the above libraries in the footer. Your theme "
1006
  "needs to call wp_footer() for this to work."
1008
  "Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
1009
  "szablon musi odwoływać się do wp_footer() by działać."
1010
 
1011
+ #: adrotate.php:787
1012
  msgid "Maintenance"
1013
  msgstr "Ostrzeżenie"
1014
 
1015
+ #: adrotate.php:788
1016
  msgid ""
1017
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1018
  "They only apply to your ads/groups and stats. Not to other settings or other "
1026
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
1027
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
1028
 
1029
+ #: adrotate.php:803 adrotate.php:805
1030
  msgid "Optimize Database"
1031
  msgstr "Optymalizuj bazę danych"
1032
 
1033
+ #: adrotate.php:805
1034
  msgid "You are about to optimize the AdRotate database."
1035
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
1036
 
1037
+ #: adrotate.php:805
1038
  msgid "Did you make a backup of your database?"
1039
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
1040
 
1041
+ #: adrotate.php:805
1042
  msgid ""
1043
  "This may take a moment and may cause your website to respond slow "
1044
  "temporarily!"
1046
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
1047
  "wolniej przez jakiś czas."
1048
 
1049
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1050
  #: dashboard/publisher/adrotate-groups-main.php:24
1051
  msgid "OK to continue, CANCEL to stop."
1052
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1053
 
1054
+ #: adrotate.php:806
1055
  msgid "Cleans up overhead data in the AdRotate tables."
1056
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
1057
 
1058
+ #: adrotate.php:807
1059
  msgid ""
1060
  "Overhead data is accumulated garbage resulting from many changes you've "
1061
  "made. This can vary from nothing to hundreds of KiB of data."
1064
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
1065
  "kilobajtow do kilku GB."
1066
 
1067
+ #: adrotate.php:811 adrotate.php:813
1068
  msgid "Clean-up Database"
1069
  msgstr "Wyczyść bazę danych"
1070
 
1071
+ #: adrotate.php:813
1072
  msgid ""
1073
  "You are about to clean up your database. This may delete expired schedules "
1074
  "and older statistics."
1076
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
1077
  "harmonogramów i starych statystyk."
1078
 
1079
+ #: adrotate.php:813
1080
  msgid "Are you sure you want to continue?"
1081
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
1082
 
1083
+ #: adrotate.php:813 adrotate.php:821
1084
  msgid "This might take a while and may slow down your site during this action!"
1085
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
1086
 
1087
+ #: adrotate.php:814
1088
  msgid "Delete stats older than 356 days (Optional)."
1089
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
1090
 
1091
+ #: adrotate.php:815
1092
  msgid ""
1093
  "AdRotate creates empty records when you start making ads or groups. In rare "
1094
  "occasions these records are faulty."
1097
  "Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
1098
  "systemu."
1099
 
1100
+ #: adrotate.php:815
1101
  msgid ""
1102
  "If you made an ad or group that does not save when you make it use this "
1103
  "button to delete those empty records."
1105
  "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
1106
  "ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
1107
 
1108
+ #: adrotate.php:815
1109
  msgid ""
1110
  "Additionally you can clean up old statistics. This will improve the speed of "
1111
  "your site."
1113
  "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
1114
  "strony."
1115
 
1116
+ #: adrotate.php:819
1117
  msgid "Re-evaluate Ads"
1118
  msgstr "Oszacuj ponownie reklamy."
1119
 
1120
+ #: adrotate.php:821
1121
  msgid "Re-evaluate all ads"
1122
  msgstr "Oszacuj ponownie wszystkie reklamy."
1123
 
1124
+ #: adrotate.php:821
1125
  msgid "You are about to check all ads for errors."
1126
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
1127
 
1128
+ #: adrotate.php:822
1129
  msgid ""
1130
  "This will apply all evaluation rules to all ads to see if any error slipped "
1131
  "in. Normally you should not need this feature."
1134
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
1135
  "potrzebujesz wykorzystywać tej funkcji."
1136
 
1137
+ #: adrotate.php:826
1138
  msgid ""
1139
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1140
  "becomes unusable in any way or by any means in whichever way I will not take "
1151
  "kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
1152
  "roszczeń."
1153
 
1154
+ #: adrotate.php:834
1155
  msgid "Troubleshooting"
1156
  msgstr "Masz problem"
1157
 
1158
+ #: adrotate.php:837
1159
  msgid "Current version:"
1160
  msgstr "Bieżąca wersja:"
1161
 
1162
+ #: adrotate.php:838
1163
  msgid "Previous version:"
1164
  msgstr "Poprzednia wersja:"
1165
 
1166
+ #: adrotate.php:841
1167
  msgid "Current database version:"
1168
  msgstr "Obecna wersja bazy danych:"
1169
 
1170
+ #: adrotate.php:842
1171
  msgid "Previous database version:"
1172
  msgstr "Poprzednia wersja bazy danych:"
1173
 
1174
+ #: adrotate.php:845
1175
  #, fuzzy
1176
  msgid "Ad evaluation next run:"
1177
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1178
 
1179
+ #: adrotate.php:846 adrotate.php:850
1180
  msgid "Not scheduled!"
1181
  msgstr "Nie ustalono harmnogramu!"
1182
 
1183
+ #: adrotate.php:849
1184
  msgid "Clean Trackerdata next run:"
1185
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1186
 
1187
+ #: adrotate.php:853
1188
  msgid "Current status of adverts"
1189
  msgstr "Bieżący status reklam"
1190
 
1191
+ #: adrotate.php:854
1192
  msgid "Normal"
1193
  msgstr "Normalny"
1194
 
1195
+ #: adrotate.php:854
1196
  msgid "Error"
1197
  msgstr "Błąd"
1198
 
1199
+ #: adrotate.php:854
1200
  msgid "Expired"
1201
  msgstr "Wygasa"
1202
 
1203
+ #: adrotate.php:854
1204
  msgid "Expires Soon"
1205
  msgstr "Wygas wkrótce"
1206
 
1207
+ #: adrotate.php:854
1208
  msgid "Unknown Status"
1209
  msgstr "Nieznany status"
1210
 
1211
+ #: adrotate.php:857
1212
  msgid ""
1213
  "NOTE: The below options are not meant for normal use and are only there for "
1214
  "developers to review saved settings or how ads are selected. These can be "
1221
  "problemów na żądanie, ale do normalnego użytkowania, powinny one być "
1222
  "pozostawiona nie zaznaczone!"
1223
 
1224
+ #: adrotate.php:861
1225
  msgid "Developer Debug"
1226
  msgstr "Debuger dewelopera"
1227
 
1228
+ #: adrotate.php:863
1229
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1230
  msgstr ""
1231
  "Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
1232
  "związane z zewnętrznym widokiem Wordpressa."
1233
 
1234
+ #: adrotate.php:864
1235
  msgid "Show all settings, dashboard routines and related values."
1236
  msgstr ""
1237
  "Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
1238
 
1239
+ #: adrotate.php:865
1240
  msgid "Show array of all userroles and capabilities."
1241
  msgstr "Pokaż tablice wszystkich ról i uprawnień."
1242
 
1243
+ #: adrotate.php:866
1244
  msgid "Review saved advertisers! Visible to advertisers."
1245
  msgstr ""
1246
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
1247
 
1248
+ #: adrotate.php:867
1249
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1250
  msgstr ""
1251
  "Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
1252
  "grupy. Widoczne tylko dla reklamodawców."
1253
 
1254
+ #: adrotate.php:868
1255
  msgid ""
1256
  "Disable timers for clicks and impressions and enable a alert window for "
1257
  "clicktracking."
1259
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
1260
  "śledzenia kliknięć."
1261
 
1262
+ #: adrotate.php:869
1263
  msgid "Temporarily disable encryption on the redirect url."
1264
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
1265
 
1505
  msgstr "Kod reklamy nie może być pusty!"
1506
 
1507
  #: dashboard/publisher/adrotate-ads-edit.php:49
1508
+ msgid "You did not use %image% in your AdCode but did select an image!"
1509
  msgstr ""
 
 
1510
 
1511
  #: dashboard/publisher/adrotate-ads-edit.php:52
1512
  msgid "You did use %image% in your AdCode but did not select an image!"
1523
  "jeszcze raz swoją reklamę!"
1524
 
1525
  #: dashboard/publisher/adrotate-ads-edit.php:58
1526
+ msgid ""
1527
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1528
+ "ineffective."
1529
+ msgstr ""
1530
+
1531
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1532
+ msgid ""
1533
+ "Your chosen banner image does not have the right name. Check the responsive "
1534
+ "description and try again."
1535
+ msgstr ""
1536
+
1537
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1538
  #, fuzzy
1539
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1540
  msgstr ""
1541
  "Śledzenie kliknięć jQuery zostało ucruchomione ale nie znaleziono "
1542
  "poprawniego znacznika w kodzie reklamy!"
1543
 
1544
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1545
  msgid ""
1546
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1547
  "the ad!"
1549
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
1550
  "błędy. Sprobuj zapisać ją ponownie!"
1551
 
1552
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1553
  msgid "This ad is expired and currently not shown on your website!"
1554
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
1555
 
1556
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1557
  msgid "The ad will expire in less than 2 days!"
1558
  msgstr "Ta reklama wygaśnie za 2 dni!"
1559
 
1560
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1561
  msgid "This ad will expire in less than 7 days!"
1562
  msgstr "Ta reklama wygaśnie za 7 dni!"
1563
 
1564
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1565
  msgid "This ad has been disabled and does not rotate on your site!"
1566
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
1567
 
1568
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1569
  msgid "New Advert"
1570
  msgstr "Nowa reklama"
1571
 
1572
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1573
  msgid "Edit Advert"
1574
  msgstr "Edytuj reklamę"
1575
 
1576
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
1577
  msgid "Title:"
1578
  msgstr "Tytuł:"
1579
 
1580
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1581
  msgid "AdCode:"
1582
  msgstr "Kod reklamy:"
1583
 
1584
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1585
+ msgid "Basic Examples:"
1586
+ msgstr "Proste przykłady:"
1587
+
1588
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1589
+ msgid "Useful tags:"
1590
+ msgstr ""
1591
+
1592
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1593
+ msgid "Insert the advert ID Number."
1594
+ msgstr ""
1595
+
1596
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1597
+ msgid "Insert the %image% tag. Required when selecting a image below."
1598
+ msgstr ""
1599
+
1600
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1601
+ msgid "Insert the advert name."
1602
+ msgstr ""
1603
+
1604
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1605
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1606
+ msgstr ""
1607
+
1608
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1609
+ msgid "Add inside the <a> tag to open advert in a new window."
1610
+ msgstr ""
1611
+
1612
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1613
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1614
+ msgstr ""
1615
+
1616
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1617
  msgid ""
1618
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1619
+ "click to add it."
1620
  msgstr ""
1621
 
1622
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1623
+ msgid "Banner image:"
1624
+ msgstr "Obraz banera:"
1625
+
1626
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1627
+ msgid "WordPress media:"
1628
  msgstr ""
1629
 
1630
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1631
+ msgid "Select Banner"
1632
+ msgstr "Wybierz baner:"
1633
 
1634
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1635
+ msgid "- OR -"
1636
+ msgstr "--albo-"
1637
+
1638
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1639
+ msgid "Banner folder:"
1640
+ msgstr "Folder banerów:"
1641
+
1642
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1643
+ msgid "No image selected"
1644
+ msgstr "Nie wybrano żadnego obrazu"
1645
+
1646
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1647
+ msgid "Use %image% in the code. Accepted files are:"
1648
+ msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
1649
 
1650
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1651
  msgid ""
1652
+ "Use either the text field or the dropdown. If the textfield has content that "
1653
+ "field has priority."
1654
  msgstr ""
1655
+ "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1656
+ "zawiera treści, te pole ma pierwszeństwo."
1657
 
1658
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1659
+ msgid "Clicktracking:"
1660
+ msgstr "Śledzenie kliknięć"
1661
+
1662
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1663
+ msgid "Enable click tracking for this advert."
1664
+ msgstr "Włącz śledzenie kliknięc dla tej strony."
1665
+
1666
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1667
+ msgid ""
1668
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1669
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1670
+ "supported."
1671
+ msgstr ""
1672
+
1673
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1674
  msgid "Activate:"
1675
  msgstr "Aktywuj:"
1676
 
1677
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1678
  msgid "Yes, this ad will be used"
1679
  msgstr "Uruchom ta reklamę"
1680
 
1681
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1682
  msgid "No, do not show this ad anywhere"
1683
  msgstr "Niepokazuj tej reklamy."
1684
 
1685
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1686
  #: dashboard/publisher/adrotate-ads-main.php:108
1687
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1688
  #: dashboard/publisher/adrotate-groups-main.php:87
1689
  #, fuzzy
1690
  msgid "Get more features with AdRotate Pro."
1691
  msgstr "Więcej ustawień z AdRotate Pro"
1692
 
1693
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1694
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1695
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1696
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1697
  msgid "Save Advert"
1698
  msgstr "Zapisz reklamę"
1699
 
1700
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1701
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1702
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1703
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1704
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1705
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1706
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1707
  msgid "Cancel"
1708
  msgstr "Anuluj"
1709
 
1710
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1711
  msgid "Preview"
1712
  msgstr "Podgląd"
1713
 
1714
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1715
  msgid ""
1716
  "Note: While this preview is an accurate one, it might look different then it "
1717
  "does on the website."
1719
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1720
  "internetowej."
1721
 
1722
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1723
  msgid ""
1724
  "This is because of CSS differences. Your themes CSS file is not active here!"
1725
  msgstr ""
1726
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1727
  "działa w tym pliku!."
1728
 
1729
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1730
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1731
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1732
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1733
  msgid "Usage"
1734
  msgstr "Użycie"
1735
 
1736
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1737
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1738
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1739
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1740
+ msgid "Widget:"
1741
+ msgstr ""
1742
+
1743
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1744
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1745
  msgid ""
1746
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1747
+ "and enter ID"
1748
  msgstr ""
 
 
1749
 
1750
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1751
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1752
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1753
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1754
  msgid "In a post or page:"
1755
  msgstr "We wpis lub stronę"
1756
 
1757
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1758
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1759
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1760
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1761
  msgid "Directly in a theme:"
1762
  msgstr "Bezpośrednio w szablon:"
1763
 
1764
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1765
+ msgid "Schedule your advert"
1766
+ msgstr ""
 
1767
 
1768
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1769
+ msgid "Start date (day/month/year):"
1770
+ msgstr "Data początkowa (dzień/miesiąc/rok):"
1771
 
1772
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1773
+ msgid "End date (day/month/year):"
1774
+ msgstr "Data końcowa (dzień/miesiąc/rok):"
1775
 
1776
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1777
+ msgid "Start time (hh:mm):"
1778
+ msgstr "Początek czasu (hh:mm):"
1779
+
1780
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1781
+ msgid "End time (hh:mm):"
1782
+ msgstr "Koniec czasu (hh:mm):"
1783
+
1784
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1785
+ msgid "Maximum Clicks:"
1786
+ msgstr "Maksymalna ilość kliknięć:"
1787
+
1788
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1789
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1790
+ msgid "Leave empty or 0 to skip this."
1791
+ msgstr "Pozostaw puste albo wpisz 0 ."
1792
+
1793
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1794
+ msgid "Maximum Impressions:"
1795
+ msgstr "Maksymnalna ilość wyświetleń:"
1796
 
1797
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1798
  msgid ""
1799
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1800
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1801
+ "hours. 6AM is 6:00 hours."
1802
+ msgstr "Zegar używa 24 godzinnego systemu. "
1803
+
1804
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1805
+ msgid ""
1806
+ "The maximum clicks and impressions are measured over the set schedule only. "
1807
+ "Every schedule can have it's own limit!"
1808
+ msgstr ""
1809
+ "Maksymalna liczba kliknięc i wyświetleń jest mierzona w obrębie ustalonego "
1810
+ "harmonogramu. Każdy harmonogram możę mięć swoje własne ustawienia i limity."
1811
+
1812
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1813
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
1814
  msgstr ""
 
 
1815
 
1816
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1817
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1818
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1819
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1820
  #, fuzzy
1821
+ msgid "Upgrade today"
1822
+ msgstr "Dziś"
1823
 
1824
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1825
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1826
+ msgid "Advanced"
1827
+ msgstr "Zaawansowane"
1828
 
1829
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1830
+ msgid "Everything below is optional."
1831
+ msgstr "Wszystkie opcje poniżej opcjonalne."
 
 
1832
 
1833
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1834
  msgid "Responsive:"
1835
  msgstr "Responsywny wygląd:"
1836
 
1837
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1838
  msgid "Enable responsive support for this advert."
1839
  msgstr "Włącz responsywny wygląd dla tej reklamy."
1840
 
1841
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1842
  msgid ""
1843
  "Upload your images to the banner folder and make sure the filename is in the "
1844
  "following format; \"imagename.full.ext\". A full set of sized images is "
1848
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
1849
  "pełnego wachlarza rozmiarów.'"
1850
 
1851
+ #: dashboard/publisher/adrotate-ads-edit.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1852
  msgid "Weight:"
1853
  msgstr "Waga:"
1854
 
1855
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1856
  #, fuzzy
1857
  msgid "AdRotate Pro only"
1858
  msgstr "AdRotate Pro"
1859
 
1860
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1861
  msgid "Barely visible"
1862
  msgstr "Ledwno widoczne"
1863
 
1864
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1865
  msgid "Less than average"
1866
  msgstr "Mniej niż średnia"
1867
 
1868
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1869
  msgid "Normal coverage"
1870
  msgstr "Normalny zasięg"
1871
 
1872
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1873
  msgid "More than average"
1874
  msgstr "Więcej niż średnia"
1875
 
1876
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1877
  msgid "Best visibility"
1878
  msgstr "Najlepsza widoczność"
1879
 
1880
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1881
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1882
  msgid "Sortorder:"
1883
  msgstr "Sortowanie:"
1884
 
1885
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1886
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1887
  msgid "For administrative purposes set a sortorder."
1888
  msgstr "Dla celów administracyjnych ustaw sortowanie."
1889
 
1890
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1891
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1892
  msgstr ""
1893
  "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1894
 
1895
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1896
  msgid ""
1897
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1898
+ "exposure."
1899
  msgstr ""
1900
 
1901
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1902
+ msgid "Geo Targeting in AdRotate Pro"
1903
+ msgstr ""
 
 
 
 
 
 
 
 
 
1904
 
1905
+ #: dashboard/publisher/adrotate-ads-edit.php:335
1906
  msgid ""
1907
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1908
  msgstr ""
 
 
1909
 
1910
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1911
  #, fuzzy
1912
  msgid "Cities/States:"
1913
  msgstr "Miasta:"
1914
 
1915
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1916
+ msgid ""
1917
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1918
+ "states ISO codes are supported)"
 
 
 
1919
  msgstr ""
1920
 
1921
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1922
  msgid ""
1923
  "AdRotate does not check the validity of names so make sure you spell them "
1924
  "correctly!"
1925
  msgstr ""
1926
 
1927
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1928
  #, fuzzy
1929
  msgid "Countries:"
1930
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1931
 
1932
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1933
  msgid "Select the countries you want the adverts to show in."
1934
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1935
 
1936
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1937
  msgid "Cities take priority and will be filtered first."
1938
  msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1939
 
1940
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1941
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1942
  msgstr ""
1943
 
1944
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1945
  msgid "Select Groups"
1946
  msgstr "Wybierz grupy"
1947
 
1948
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
1949
  msgid "ID - Name"
1950
  msgstr "ID - Nazwa"
1951
 
1952
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1953
  msgid "Ads in group"
1954
  msgstr "Reklamy w grupie"
1955
 
1956
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1957
  #: dashboard/publisher/adrotate-groups-main.php:58
1958
  msgid "Default"
1959
  msgstr "Domyślny"
1960
 
1961
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1962
  #: dashboard/publisher/adrotate-groups-main.php:59
1963
  msgid "Dynamic"
1964
  msgstr "Dynamiczny"
1965
 
1966
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1967
  #: dashboard/publisher/adrotate-groups-main.php:59
1968
  msgid "second rotation"
1969
  msgstr "drugi obrót"
1970
 
1971
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1972
  #: dashboard/publisher/adrotate-groups-main.php:60
1973
  msgid "Block"
1974
  msgstr "Blok"
1975
 
1976
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1977
  #: dashboard/publisher/adrotate-groups-main.php:60
1978
  msgid "grid"
1979
  msgstr "siatka"
1980
 
1981
+ #: dashboard/publisher/adrotate-ads-edit.php:418
1982
+ #: dashboard/publisher/adrotate-groups-edit.php:192
1983
  #: dashboard/publisher/adrotate-groups-main.php:61
1984
  msgid "Post Injection"
1985
  msgstr "Umieszczanie we wpisach"
1986
 
1987
+ #: dashboard/publisher/adrotate-ads-edit.php:419
1988
  #: dashboard/publisher/adrotate-groups-main.php:62
1989
  msgid "Geolocation"
1990
  msgstr "Geolokalizacja"
1991
 
1992
+ #: dashboard/publisher/adrotate-ads-edit.php:425
1993
+ #: dashboard/publisher/adrotate-groups-edit.php:61
1994
  #: dashboard/publisher/adrotate-groups-main.php:69
1995
  msgid "Mode"
1996
  msgstr "Tryb"
2021
  msgid "Title"
2022
  msgstr "tytuł"
2023
 
2024
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2025
+ #: dashboard/publisher/adrotate-ads-report.php:34
2026
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2027
+ #: dashboard/publisher/adrotate-groups-main.php:35
2028
+ #: dashboard/publisher/adrotate-groups-report.php:40
2029
+ msgid "Impressions"
2030
+ msgstr "Wyświetlenia"
2031
+
2032
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2033
+ #: dashboard/publisher/adrotate-ads-main.php:45
2034
+ #: dashboard/publisher/adrotate-ads-report.php:35
2035
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2036
+ #: dashboard/publisher/adrotate-groups-main.php:37
2037
+ #: dashboard/publisher/adrotate-groups-report.php:41
2038
+ msgid "Clicks"
2039
+ msgstr "Kliknięcia"
2040
+
2041
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2042
  #: dashboard/publisher/adrotate-ads-main.php:47
2043
  #: dashboard/publisher/adrotate-ads-report.php:38
2099
  msgstr "Na 7 dni"
2100
 
2101
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2102
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2103
  msgid "Configuration errors."
2104
  msgstr "Błedy konfiguracji."
2105
 
2113
  msgstr "Eksportuj ustawienia"
2114
 
2115
  #: dashboard/publisher/adrotate-ads-main.php:42
2116
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2117
  msgid "Weight"
2118
  msgstr "Waga"
2119
 
2178
  msgid "Edit Group"
2179
  msgstr "Edytuj grupę"
2180
 
2181
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2182
  msgid "Name:"
2183
  msgstr "Nazwa:"
2184
 
2185
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2186
  msgid "Default - Show one ad at a time"
2187
  msgstr "Domyśłne - pokazuj jedną na raz"
2188
 
2189
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2190
  msgid "Dynamic Mode - Show a different ad every few seconds"
2191
  msgstr "Tryb dynamiczny - Zmieniaj reklamy co kilka sekund"
2192
 
2193
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2194
  msgid "Block Mode - Show a block of ads"
2195
  msgstr "Trym bloku - pokazuj reklamy w bloku"
2196
 
2197
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2198
  #, fuzzy
2199
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2200
  msgstr ""
2201
  "Tryb Dynamiczny i Blokowy wymagają załadowania 'jQuery' i jQuery "
2202
  "Wyłączone' . Możesz uruchomić ten tryb w Ustawieniach AdRotate."
2203
 
2204
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2205
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2206
  msgid "Dynamic and Block Mode"
2207
  msgstr "Tryb dynamiczny i blokowy"
2208
 
2209
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2210
  msgid "Only required if your group is in Dynamic or Block mode."
2211
  msgstr ""
2212
  "Wymagane jedynie gdy grupa reklam jest w trybie Dynamicznym lub Blokowym"
2213
 
2214
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2215
+ msgid "Block size"
2216
+ msgstr ""
2217
 
2218
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2219
  msgid "rows"
2220
  msgstr "wiersze"
2221
 
2222
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2223
  msgid "columns"
2224
  msgstr "kolumny"
2225
 
2226
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2227
  msgid "Block Mode"
2228
  msgstr "Tryb Bloku"
2229
 
2230
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2231
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
2232
+ msgstr ""
 
 
2233
 
2234
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2235
+ msgid "Advert size"
2236
+ msgstr ""
2237
 
2238
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2239
  msgid "pixel(s) wide"
2240
  msgstr "szerokość w pikselach"
2241
 
2242
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2243
  msgid "pixel(s) high."
2244
  msgstr "wysokość w pikselach"
2245
 
2246
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2247
  #, fuzzy
2248
  msgid ""
2249
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2252
  "Ustal maksymalny rozmiar reklam w pikselach po uwzględnieniu marginesu. "
2253
  "Rozmiar może być ustawiony na 'auto' (Nie zalecane). Domyślnie: 125/125."
2254
 
2255
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2256
  msgid "Automated refresh"
2257
  msgstr "Automatycznie odświeżane"
2258
 
2259
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2260
  msgid "seconds."
2261
  msgstr "sekund."
2262
 
2263
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2264
  msgid "Dynamic Mode"
2265
  msgstr "Tryb dynamiczny"
2266
 
2267
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2268
  msgid ""
2269
  "Load a new advert in this interval without reloading the page. Default: 6."
2270
  msgstr ""
2271
  "Załąduj nową reklamę w tych odstępach czasowych bez odświeżania strony. "
2272
  "Domyślnie 6."
2273
 
2274
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2275
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2276
+ msgid ""
2277
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2278
+ "\" and enter ID"
2279
+ msgstr ""
2280
+
2281
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2282
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2283
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2284
  msgid "Save Group"
2285
  msgstr "Zapisz grupę"
2286
 
2287
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2288
  msgid "Advert Margin"
2289
  msgstr "Margines reklamy"
2290
 
2291
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2292
  msgid "pixel(s)"
2293
  msgstr "piksele"
2294
 
2295
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2296
  #, fuzzy
2297
  msgid "A transparent area outside the advert in pixels. Default: 0."
2298
  msgstr "Transparentna ramka wokól reklamy- w pikselach. Domyślnie: 1."
2299
 
2300
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2301
  #, fuzzy
2302
  msgid "Set to 0 to disable."
2303
  msgstr "Domyślnie: 10. Ustaw 0 by wyłączyć ten licznik."
2304
 
2305
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2306
+ msgid "Margins are automatically disabled for blocks where required."
2307
+ msgstr ""
2308
+
2309
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2310
  #, fuzzy
2311
  msgid "Align the group"
2312
  msgstr "Reklamy w grupie"
2313
 
2314
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2315
  #, fuzzy
2316
  msgid "None (Default)"
2317
  msgstr "Domyślny"
2318
 
2319
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2320
  msgid "Left"
2321
  msgstr ""
2322
 
2323
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2324
  #, fuzzy
2325
  msgid "Right"
2326
  msgstr "Waga"
2327
 
2328
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2329
  msgid "Center"
2330
  msgstr ""
2331
 
2332
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2333
  msgid ""
2334
  "Align the group in your post or page. Using 'center' may affect your margin "
2335
  "setting. Not every theme supports this feature."
2336
  msgstr ""
2337
 
2338
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2339
  msgid "Leave empty or 0 to skip this. Will default to group id."
2340
  msgstr ""
2341
  "Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
2342
 
2343
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2344
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2345
  msgstr ""
2346
 
2347
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2348
  msgid "Include ads in categories?"
2349
  msgstr "Wyświetlać reklamy w kategoriach?"
2350
 
2351
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2352
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2353
  msgid "Disabled"
2354
  msgstr "Wyłącz"
2355
 
2356
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2357
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2358
  msgid "Before content"
2359
  msgstr "Przed treścią"
2360
 
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2362
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2363
  msgid "After content"
2364
  msgstr "Po treści"
2365
 
2366
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2367
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2368
  msgid "Before and after content"
2369
  msgstr "Przed i po treści"
2370
 
2371
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2372
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2373
  msgid "After..."
2374
  msgstr "Po ..."
2375
 
2376
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2377
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2378
  msgid "the first paragraph"
2379
  msgstr "Pierwszy akapit"
2380
 
2381
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2382
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2383
  msgid "the 2nd paragraph"
2384
  msgstr "Drugi akapit"
2385
 
2386
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2387
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2388
  msgid "the 3rd paragraph"
2389
  msgstr "Trzeci akapit"
2390
 
2391
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2392
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2393
  msgid "the 4th paragraph"
2394
  msgstr "Czwarty akapit"
2395
 
2396
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2397
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2398
  msgid "every 2nd paragraph"
2399
  msgstr "Każdy drugi akapit"
2400
 
2401
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2402
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2403
  msgid "every 3rd paragraph"
2404
  msgstr "Każdy trzeci akapit"
2405
 
2406
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2407
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2408
  msgid "every 4th paragraph"
2409
  msgstr "każdy czwarty akapit"
2410
 
2411
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2412
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2413
  msgid "every 5th paragraph"
2414
  msgstr "każdu piąty akapit"
2415
 
2416
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2417
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2418
  msgid "every 6th paragraph"
2419
  msgstr "każdy szósty akapit"
2420
 
2421
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2422
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2423
  msgid "every 7th paragraph"
2424
  msgstr "każdy siódmy akapit"
2425
 
2426
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2427
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2428
  msgid "every 8th paragraph"
2429
  msgstr "każdy ósmy akapit"
2430
 
2431
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2432
  msgid "Which categories?"
2433
  msgstr "Która kategoria?"
2434
 
2435
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2436
  msgid "Click the categories posts you want the adverts to show in."
2437
  msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
2438
 
2439
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2440
  msgid "Include ads in pages?"
2441
  msgstr "Wyświetlać reklamy na stronach?"
2442
 
2443
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2444
  msgid "Which pages?"
2445
  msgstr "Które strony?"
2446
 
2447
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2448
  msgid "Click the pages you want the adverts to show in."
2449
  msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
2450
 
2451
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2452
  msgid "Wrapper code"
2453
  msgstr "Kod wrappera"
2454
 
2455
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2456
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2457
+ msgstr ""
2458
 
2459
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2460
  msgid "Before ad"
2461
  msgstr "Przed reklamą"
2462
 
2463
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2464
+ msgid "Options:"
2465
+ msgstr "Opcje:"
2466
 
2467
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2468
  msgid "After ad"
2469
  msgstr "Po reklamie"
2470
 
2471
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2472
  msgid "Select Ads"
2473
  msgstr "Wybierz reklamy"
2474
 
2475
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2476
  msgid "Visible until"
2477
  msgstr "Widoczne do"
2478
 
2479
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2480
  msgid "No ads created!"
2481
  msgstr "Nie utworzono reklam!"
2482
 
2508
  msgid "Statistics for group"
2509
  msgstr "Statystyki dla grupy"
2510
 
2511
+ #~ msgid "Usage:"
2512
+ #~ msgstr "Użycie:"
2513
+
2514
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2515
+ #~ msgstr ""
2516
+ #~ "Nie użyłeś znacznika %image% w kodzie reklamy ale wybrałeś odpowiednie "
2517
+ #~ "plik graficzny!"
2518
+
2519
+ #~ msgid "These are required."
2520
+ #~ msgstr "Wymagane."
2521
+
2522
+ #~ msgid ""
2523
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2524
+ #~ "AdCode."
2525
+ #~ msgstr ""
2526
+ #~ "Umieść kursor w miejscu, w którym chcesz dodać znacznik i kliknij, aby go "
2527
+ #~ "dodać do kodu reklamy."
2528
+
2529
+ #~ msgid ""
2530
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2531
+ #~ "where you want the advert to show up."
2532
+ #~ msgstr ""
2533
+ #~ "Wklej skrót do wpisu lub strony. Kod PHP wklej w odowiednie miejsc w "
2534
+ #~ "szablonie w którym chcesz wyświetlać reklamy."
2535
+
2536
+ #~ msgid ""
2537
+ #~ "Note: Clicktracking does generally not work for Javascript adverts such "
2538
+ #~ "as those provided by Google AdSense."
2539
+ #~ msgstr ""
2540
+ #~ "Zapamiętaj. Śledzenie klinięć nie działa dla skryptów java czyli głównie "
2541
+ #~ "dla reklam wyświetlanych za pośrednictwem Google AdSense."
2542
+
2543
+ #, fuzzy
2544
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2545
+ #~ msgstr ""
2546
+ #~ "Umieść docelowy adres URL w kodzie reklamy i włącz śledzenie kliknięć."
2547
+
2548
+ #~ msgid "Target URL:"
2549
+ #~ msgstr "Docelowy odnośnik URL:"
2550
+
2551
+ #~ msgid ""
2552
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2553
+ #~ "advert for different viewports. Requires jQuery."
2554
+ #~ msgstr ""
2555
+ #~ "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie "
2556
+ #~ "w różnych widokach. Wymaga jQuery."
2557
+
2558
+ #~ msgid "Media:"
2559
+ #~ msgstr "Media:"
2560
+
2561
+ #, fuzzy
2562
+ #~ msgid "Geo Location in AdRotate Pro"
2563
+ #~ msgstr "AdRotate Pro"
2564
+
2565
+ #~ msgid ""
2566
+ #~ "This works if you assign the advert to a group and enable that group to "
2567
+ #~ "use Geo Targeting."
2568
+ #~ msgstr ""
2569
+ #~ "Ta opcja działą gdy przypiszesz reklamę do grupy reklama a następnie "
2570
+ #~ "włączysz opcję GEO TARGETOWANIA dla utworzonej grupy."
2571
+
2572
+ #, fuzzy
2573
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2574
+ #~ msgstr "Więcej ustawień z AdRotate Pro"
2575
+
2576
+ #~ msgid "Schedule"
2577
+ #~ msgstr "Harmonogram"
2578
+
2579
+ #~ msgid "From when to when is the advert visible?"
2580
+ #~ msgstr "Od kiedy do kiedy ma być widoczna reklama?"
2581
+
2582
+ #, fuzzy
2583
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2584
+ #~ msgstr "Dostępne w wersji AdRotate Pro"
2585
+
2586
+ #~ msgid "From / Until"
2587
+ #~ msgstr "Od/ Do"
2588
+
2589
+ #, fuzzy
2590
+ #~ msgid "impressions per day"
2591
+ #~ msgstr "Licznik wyświetleń"
2592
+
2593
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2594
+ #~ msgstr "Opcjonalnie wybierz grupy do których należy ta reklama."
2595
+
2596
+ #~ msgid "Block shape and border"
2597
+ #~ msgstr "Kształt i ramka bloku"
2598
+
2599
+ #~ msgid ""
2600
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2601
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2602
+ #~ msgstr "Szerokość i wysokość reklamy"
2603
+
2604
+ #~ msgid "Advert Width and Height"
2605
+ #~ msgstr "Szerkość i wysokość reklamy"
2606
+
2607
+ #~ msgid "Insert ads to the begin or end of a post/page."
2608
+ #~ msgstr "Umieść reklamy na początku lub końcu wpisy/strony."
2609
+
2610
+ #~ msgid "Wraps around each ad."
2611
+ #~ msgstr "Wrapy otaczajac całe reklamy"
2612
+
2613
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2614
+ #~ msgstr "HTML/Javascripts dozwolone, korzytaj rozsądnie!"
2615
+
2616
  #, fuzzy
2617
  #~ msgid "AdRotate Website."
2618
  #~ msgstr "Sklep AdRotate"
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-04-02 01:51+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:51+0100\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"
@@ -16,19 +16,19 @@ msgstr ""
16
  "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:807
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
- #: adrotate-functions.php:810
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
- #: adrotate-output.php:747
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
- #: adrotate-output.php:748
32
  msgid ""
33
  "WordPress was unable to verify the authenticity of the url you have clicked. "
34
  "Verify if the url used is valid or log in via your browser."
@@ -37,51 +37,51 @@ msgstr ""
37
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
38
  "pretraživača."
39
 
40
- #: adrotate-output.php:749
41
  msgid ""
42
  "If you have received the url you want to visit via email, you are being "
43
  "tricked!"
44
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
45
 
46
- #: adrotate-output.php:750
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
- #: adrotate-output.php:768
51
  #, fuzzy
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
55
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
56
 
57
- #: adrotate-output.php:770
58
  #, fuzzy
59
  msgid ""
60
  "Error, Ad is not available at this time due to schedule/geolocation "
61
  "restrictions!"
62
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
63
 
64
- #: adrotate-output.php:777 adrotate-output.php:779
65
  msgid ""
66
  "Either there are no banners, they are disabled or none qualified for this "
67
  "location!"
68
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
69
 
70
- #: adrotate-output.php:785
71
  msgid "Error, no Ad ID set! Check your syntax!"
72
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
73
 
74
- #: adrotate-output.php:791
75
  #, fuzzy
76
  msgid "Error, no group ID set! Check your syntax!"
77
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
78
 
79
- #: adrotate-output.php:796
80
  #, fuzzy
81
  msgid "Error, group does not exist! Check your syntax!"
82
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
83
 
84
- #: adrotate-output.php:802
85
  msgid ""
86
  "There was an error locating the database tables for AdRotate. Please "
87
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -89,158 +89,158 @@ msgstr ""
89
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
90
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
91
 
92
- #: adrotate-output.php:802
93
  msgid "If this does not solve the issue please seek support at"
94
  msgstr "Ako ne reši problem potražite podršku na"
95
 
96
- #: adrotate-output.php:808
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
- #: adrotate-output.php:834
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
- #: adrotate-output.php:834
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
- #: adrotate-output.php:836
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
- #: adrotate-output.php:836
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
- #: adrotate-output.php:838
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
- #: adrotate-output.php:838
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
- #: adrotate-output.php:840
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
- #: adrotate-output.php:840
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
- #: adrotate-output.php:840
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
- #: adrotate-output.php:840
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
- #: adrotate-output.php:853
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
- #: adrotate-output.php:855
146
  msgid ""
147
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
148
  "to the <strong>PRO</strong> version"
149
  msgstr ""
150
 
151
- #: adrotate-output.php:856
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
- #: adrotate-output.php:856
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
- #: adrotate-output.php:896
160
  msgid ""
161
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
162
- "Pro is in this menu. Check out the"
163
  msgstr ""
164
 
165
- #: adrotate-output.php:896
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
- #: adrotate-output.php:896 adrotate-output.php:973
170
- #: dashboard/publisher/adrotate-ads-edit.php:229
171
  msgid "and"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:896
175
  msgid "forums"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:932
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
- #: adrotate-output.php:933
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:935
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
- #: adrotate-output.php:936
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
- #: adrotate-output.php:937
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
- #: adrotate-output.php:938
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
- #: adrotate-output.php:939
208
  msgid "WordPress.org Forum"
209
  msgstr ""
210
 
211
- #: adrotate-output.php:965
212
  #, fuzzy
213
  msgid "Help AdRotate Grow"
214
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
215
 
216
- #: adrotate-output.php:966
217
  msgid "Brought to you by"
218
  msgstr "Za tebe od"
219
 
220
- #: adrotate-output.php:973
221
  msgid ""
222
  "A lot of users only think to review AdRotate when something goes wrong while "
223
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
224
  msgstr ""
225
 
226
- #: adrotate-output.php:973
227
  msgid "If you find AdRotate useful please leave your honest"
228
  msgstr ""
229
 
230
- #: adrotate-output.php:973
231
  msgid "rating"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:973
235
  #, fuzzy
236
  msgid "review"
237
  msgstr "Dajte ocenu i komentar"
238
 
239
- #: adrotate-output.php:973
240
  msgid "on WordPress.org to help AdRotate grow in a positive way"
241
  msgstr ""
242
 
243
- #: adrotate-output.php:976
244
  #, fuzzy
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -251,88 +251,88 @@ msgstr ""
251
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
252
  "detalja !"
253
 
254
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
255
  msgid "Visit the"
256
  msgstr "Posetite"
257
 
258
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
259
  msgid "website"
260
  msgstr "websajt"
261
 
262
- #: adrotate-output.php:1006
263
  msgid "Available in AdRotate Pro"
264
  msgstr "Dostupno u AdRotate Pro"
265
 
266
- #: adrotate-output.php:1006
267
  #, fuzzy
268
  msgid "More information..."
269
  msgstr "Saznajte više"
270
 
271
- #: adrotate-output.php:1007
272
  msgid "This feature is available in AdRotate Pro"
273
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
274
 
275
- #: adrotate-output.php:1007
276
  msgid "Learn more"
277
  msgstr "Saznajte više"
278
 
279
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
280
- #: dashboard/publisher/adrotate-ads-edit.php:352
281
  msgid "January"
282
  msgstr "Januar"
283
 
284
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
285
- #: dashboard/publisher/adrotate-ads-edit.php:353
286
  msgid "February"
287
  msgstr "Februar"
288
 
289
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
290
- #: dashboard/publisher/adrotate-ads-edit.php:354
291
  msgid "March"
292
  msgstr "Mart"
293
 
294
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
295
- #: dashboard/publisher/adrotate-ads-edit.php:355
296
  msgid "April"
297
  msgstr "April"
298
 
299
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
300
- #: dashboard/publisher/adrotate-ads-edit.php:356
301
  msgid "May"
302
  msgstr "Maj"
303
 
304
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
305
- #: dashboard/publisher/adrotate-ads-edit.php:357
306
  msgid "June"
307
  msgstr "Jun"
308
 
309
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
310
- #: dashboard/publisher/adrotate-ads-edit.php:358
311
  msgid "July"
312
  msgstr "Jul"
313
 
314
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
315
- #: dashboard/publisher/adrotate-ads-edit.php:359
316
  msgid "August"
317
  msgstr "Avgust"
318
 
319
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
320
- #: dashboard/publisher/adrotate-ads-edit.php:360
321
  msgid "September"
322
  msgstr "Septembar"
323
 
324
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
325
- #: dashboard/publisher/adrotate-ads-edit.php:361
326
  msgid "October"
327
  msgstr "Oktobar"
328
 
329
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
330
- #: dashboard/publisher/adrotate-ads-edit.php:362
331
  msgid "November"
332
  msgstr "Novembar"
333
 
334
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
335
- #: dashboard/publisher/adrotate-ads-edit.php:363
336
  msgid "December"
337
  msgstr "Decembar"
338
 
@@ -386,7 +386,7 @@ msgstr "Gupni oglasi - Koristite grupni ID"
386
  msgid "Choose what you want to use this widget for"
387
  msgstr "Izaberite za šta želite da koristite ovaj widget "
388
 
389
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
390
  msgid "ID:"
391
  msgstr "ID:"
392
 
@@ -394,79 +394,78 @@ msgstr "ID:"
394
  msgid "Fill in the ID of the type you want to display!"
395
  msgstr "Popunite ID tipa koji želite da prikažete!"
396
 
397
- #: adrotate.php:108
398
  msgid "General Info"
399
  msgstr "Opšte informacije"
400
 
401
- #: adrotate.php:109
402
  msgid "AdRotate Pro"
403
  msgstr "AdRotate Pro"
404
 
405
- #: adrotate.php:110
406
  msgid "Manage Ads"
407
  msgstr "Upravljajte oglasima"
408
 
409
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
410
  msgid "Manage Groups"
411
  msgstr "Upravljajte grupama"
412
 
413
- #: adrotate.php:112 adrotate.php:441
414
- #: dashboard/publisher/adrotate-ads-edit.php:402
415
  #, fuzzy
416
  msgid "Manage Schedules"
417
  msgstr "Upravljati"
418
 
419
- #: adrotate.php:113
420
  #, fuzzy
421
  msgid "Manage Media"
422
  msgstr "Media:"
423
 
424
- #: adrotate.php:114
425
  msgid "Settings"
426
  msgstr "Postavke"
427
 
428
- #: adrotate.php:137
429
  msgid "AdRotate Info"
430
  msgstr "AdRotate informacije"
431
 
432
- #: adrotate.php:158
433
  #, fuzzy
434
  msgid "AdRotate Professional"
435
  msgstr "AdRotate promocije"
436
 
437
- #: adrotate.php:201
438
  msgid "Ad Management"
439
  msgstr "Menadžment oglasa"
440
 
441
- #: adrotate.php:204
442
  msgid "Ad created"
443
  msgstr "Stvaranje oglasa"
444
 
445
- #: adrotate.php:206
446
  msgid "Ad updated"
447
  msgstr "Update oglasa"
448
 
449
- #: adrotate.php:208
450
  msgid "Ad(s) deleted"
451
  msgstr "Izbrisani oglasu"
452
 
453
- #: adrotate.php:210
454
  msgid "Ad(s) statistics reset"
455
  msgstr "Statistički resestovani oglasi"
456
 
457
- #: adrotate.php:212
458
  msgid "Ad(s) renewed"
459
  msgstr "Ponovo obnovljeni oglasi"
460
 
461
- #: adrotate.php:214
462
  msgid "Ad(s) deactivated"
463
  msgstr "Deaktivirani oglasi"
464
 
465
- #: adrotate.php:216
466
  msgid "Ad(s) activated"
467
  msgstr "Aktivirani oglasi"
468
 
469
- #: adrotate.php:218
470
  msgid ""
471
  "The ad was saved but has an issue which might prevent it from working "
472
  "properly. Review the yellow marked ad."
@@ -474,379 +473,377 @@ msgstr ""
474
  "Oglas je sačuvan , ali ima taj problem što može da spreči da radi ispravno . "
475
  "Pregledajte žuto označeni oglas. "
476
 
477
- #: adrotate.php:220
478
  #, fuzzy
479
  msgid "Export created"
480
  msgstr "Izlazne opcije za"
481
 
482
- #: adrotate.php:224
483
  msgid "Action prohibited"
484
  msgstr "Zabranjeno delo"
485
 
486
- #: adrotate.php:226 adrotate.php:374
487
  msgid "No data found in selected time period"
488
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
489
 
490
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
491
  msgid "Manage"
492
  msgstr "Upravljati"
493
 
494
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
495
  msgid "Add New"
496
  msgstr "Dodati novi"
497
 
498
- #: adrotate.php:363
499
  msgid "Group Management"
500
  msgstr "Menadžment grupe"
501
 
502
- #: adrotate.php:366
503
  msgid "Group created"
504
  msgstr "Stvorena grupa"
505
 
506
- #: adrotate.php:368
507
  msgid "Group updated"
508
  msgstr "Updateovana grupa"
509
 
510
- #: adrotate.php:370
511
  msgid "Group deleted"
512
  msgstr "Izbrisana grupa"
513
 
514
- #: adrotate.php:372
515
  msgid "Group including it's Ads deleted"
516
  msgstr "Grupa koja podrazumeva obrisane oglase"
517
 
518
- #: adrotate.php:432
519
  #, fuzzy
520
  msgid "Schedule Management available in AdRotate Pro"
521
  msgstr "Dostupno u AdRotate Pro"
522
 
523
- #: adrotate.php:442
524
  #, fuzzy
525
  msgid ""
526
  "Schedule management and multiple schedules per advert is available in "
527
  "AdRotate Pro."
528
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
529
 
530
- #: adrotate.php:442 adrotate.php:529
531
- #: dashboard/publisher/adrotate-ads-edit.php:145
532
  #: dashboard/publisher/adrotate-ads-main.php:108
533
- #: dashboard/publisher/adrotate-groups-edit.php:76
534
  #: dashboard/publisher/adrotate-groups-main.php:87
535
  #, fuzzy
536
  msgid "More information"
537
  msgstr "Saznajte više"
538
 
539
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
540
  #: dashboard/publisher/adrotate-ads-main-error.php:19
541
  #: dashboard/publisher/adrotate-ads-main.php:20
542
  #: dashboard/publisher/adrotate-groups-main.php:20
543
  msgid "Bulk Actions"
544
  msgstr "Delo bulk-ovanja"
545
 
546
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
547
  #: dashboard/publisher/adrotate-ads-main-error.php:29
548
  #: dashboard/publisher/adrotate-ads-main.php:30
549
  #: dashboard/publisher/adrotate-groups-main.php:24
550
  msgid "Go"
551
  msgstr "Kreni"
552
 
553
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
554
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
555
  #: dashboard/publisher/adrotate-ads-main-error.php:39
556
  #: dashboard/publisher/adrotate-ads-main.php:39
557
  #: dashboard/publisher/adrotate-groups-main.php:32
558
  msgid "ID"
559
  msgstr "ID"
560
 
561
- #: adrotate.php:460
562
  #, fuzzy
563
  msgid "Start"
564
  msgstr "Početno vreme (hh:mm):"
565
 
566
- #: adrotate.php:460
567
  #, fuzzy
568
  msgid "End"
569
  msgstr "Završno vreme (hh:mm):"
570
 
571
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
572
  #: dashboard/publisher/adrotate-groups-main.php:34
573
  msgid "Ads"
574
  msgstr "Oglasi"
575
 
576
- #: adrotate.php:463
577
  #, fuzzy
578
  msgid "Max Clicks"
579
  msgstr "Klikovi"
580
 
581
- #: adrotate.php:464
582
  #, fuzzy
583
  msgid "Max Impressions"
584
  msgstr "Utisci"
585
 
586
- #: adrotate.php:494
587
  #, fuzzy
588
  msgid "No schedules created yet!"
589
  msgstr "Nijedan blok nije stvoren još uvek!"
590
 
591
- #: adrotate.php:499
592
  #, fuzzy
593
  msgid "Easily manage your schedules from here with AdRotate Pro."
594
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
595
 
596
- #: adrotate.php:499 adrotate.php:562
597
  #, fuzzy
598
  msgid "Upgrade today!"
599
  msgstr "Danas"
600
 
601
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
602
- #: dashboard/publisher/adrotate-ads-main-error.php:74
603
- #: dashboard/publisher/adrotate-groups-edit.php:399
604
  msgid "Expires soon."
605
  msgstr "Ističe uskoro."
606
 
607
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
608
- #: dashboard/publisher/adrotate-groups-edit.php:400
609
  msgid "Has expired."
610
  msgstr "Isteklo je."
611
 
612
- #: adrotate.php:527
613
  #, fuzzy
614
  msgid "Media Management available in AdRotate Pro"
615
  msgstr "Dostupno u AdRotate Pro"
616
 
617
- #: adrotate.php:529
618
  msgid ""
619
  "Upload images to the AdRotate Pro banners folder from here. This is "
620
  "especially useful if you use responsive adverts with multiple images."
621
  msgstr ""
622
 
623
- #: adrotate.php:529
624
  #, fuzzy
625
  msgid "Media uploading and management is available in AdRotate Pro."
626
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
627
 
628
- #: adrotate.php:531
629
  #, fuzzy
630
  msgid "Upload new banner image"
631
  msgstr "Slika banera:"
632
 
633
- #: adrotate.php:532
634
  #, fuzzy
635
  msgid "Accepted files are:"
636
  msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
637
 
638
- #: adrotate.php:532
639
  msgid "Maximum size is 512Kb."
640
  msgstr ""
641
 
642
- #: adrotate.php:532
643
  msgid "Important:"
644
  msgstr ""
645
 
646
- #: adrotate.php:532
647
  msgid ""
648
  "Make sure your file has no spaces or special characters in the name. Replace "
649
  "spaces with a - or _."
650
  msgstr ""
651
 
652
- #: adrotate.php:534
653
  msgid ""
654
  "For responsive adverts make sure the filename is in the following format; "
655
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
656
  msgstr ""
657
 
658
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
659
  msgid ""
660
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
661
  "filename instead of \".full\" for the various viewports."
662
  msgstr ""
663
 
664
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
665
- #: dashboard/publisher/adrotate-groups-edit.php:334
666
- #: dashboard/publisher/adrotate-groups-edit.php:343
667
  msgid "Example:"
668
  msgstr "Primer"
669
 
670
- #: adrotate.php:536
671
  msgid ""
672
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
673
  "for different viewports."
674
  msgstr ""
675
 
676
- #: adrotate.php:540
677
  #, fuzzy
678
  msgid "Upload image"
679
  msgstr "Slika banera:"
680
 
681
- #: adrotate.php:543
682
  msgid "Available banner images in"
683
  msgstr ""
684
 
685
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
686
  msgid "Name"
687
  msgstr "Ime"
688
 
689
- #: adrotate.php:549
690
  #, fuzzy
691
  msgid "Actions"
692
  msgstr "Delo bulk-ovanja"
693
 
694
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
695
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
696
  #: dashboard/publisher/adrotate-ads-main-error.php:21
697
  #: dashboard/publisher/adrotate-ads-main.php:22
698
  msgid "Delete"
699
  msgstr "Obrisati"
700
 
701
- #: adrotate.php:562
702
  msgid ""
703
  "Make sure the banner images are not in use by adverts when you delete them!"
704
  msgstr ""
705
 
706
- #: adrotate.php:562
707
  #, fuzzy
708
  msgid "Manage your banner folder from here with AdRotate Pro."
709
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
710
 
711
- #: adrotate.php:606
712
  msgid "AdRotate Settings"
713
  msgstr "AdRotate postavke"
714
 
715
- #: adrotate.php:609
716
  msgid "Settings saved"
717
  msgstr "Postavke sačuvane"
718
 
719
- #: adrotate.php:611
720
  msgid "Database optimized"
721
  msgstr "Baza podataka optimizirana"
722
 
723
- #: adrotate.php:613
724
  msgid "Database repaired"
725
  msgstr "Baza podataka popravljena"
726
 
727
- #: adrotate.php:615
728
  msgid "Ads evaluated and statuses have been corrected where required"
729
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
730
 
731
- #: adrotate.php:617
732
  msgid "Empty database records removed"
733
  msgstr "Prazni zapisi baze podataka uklanjaju"
734
 
735
- #: adrotate.php:619
736
  msgid "Database can only be optimized or cleaned once every hour"
737
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
738
 
739
- #: adrotate.php:627
740
  msgid "Access Rights"
741
  msgstr "Prava pristupa"
742
 
743
- #: adrotate.php:628
744
  msgid "Who has access to what?"
745
  msgstr ""
746
 
747
- #: adrotate.php:631
748
  msgid "Manage/Add/Edit adverts"
749
  msgstr "Upravljanje / Add / Edit reklame"
750
 
751
- #: adrotate.php:635
752
  msgid "Role to see and add/edit ads."
753
  msgstr "Uloga videti i add / edit oglase ."
754
 
755
- #: adrotate.php:639
756
  msgid "Delete/Reset adverts"
757
  msgstr "Brisanje / Reset reklame"
758
 
759
- #: adrotate.php:643
760
  msgid "Role to delete ads and reset stats."
761
  msgstr "Uloga obrisati oglase i resetovanje ."
762
 
763
- #: adrotate.php:647
764
  msgid "Manage/Add/Edit groups"
765
  msgstr "Upravljanje / Add / Edit grupama"
766
 
767
- #: adrotate.php:651
768
  msgid "Role to see and add/edit groups."
769
  msgstr "Uloga videti i add / edit grupe ."
770
 
771
- #: adrotate.php:655
772
  msgid "Delete groups"
773
  msgstr "Brisanje grupe"
774
 
775
- #: adrotate.php:659
776
  msgid "Role to delete groups."
777
  msgstr "Uloga za brisanje grupe ."
778
 
779
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
780
- #: adrotate.php:876
781
  msgid "Update Options"
782
  msgstr "Update opcije"
783
 
784
- #: adrotate.php:691
785
  msgid "Statistics"
786
  msgstr "Statistike"
787
 
788
- #: adrotate.php:694
789
  #, fuzzy
790
  msgid "Enable stats"
791
  msgstr "Statistika"
792
 
793
- #: adrotate.php:696
794
  msgid "Track clicks and impressions."
795
  msgstr "Pratite klikove i prikaze ."
796
 
797
- #: adrotate.php:696
798
  #, fuzzy
799
  msgid "Disabling this also disables click and impression limits on schedules."
800
  msgstr ""
801
  "Onemogućavanje ovoga takođe onemogućava klikovima i prikazima granice "
802
  "rasporede i onemogućava rokovima "
803
 
804
- #: adrotate.php:700
805
  msgid "Impressions timer"
806
  msgstr "Utisci tajmer"
807
 
808
- #: adrotate.php:702 adrotate.php:709
809
  msgid "Seconds."
810
  msgstr "Sekunde."
811
 
812
- #: adrotate.php:703
813
  #, fuzzy
814
  msgid "Default: 60."
815
  msgstr "Default - Prikazati po jedan oglas"
816
 
817
- #: adrotate.php:703
818
  #, fuzzy
819
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
820
  msgstr ""
821
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
822
 
823
- #: adrotate.php:707
824
  #, fuzzy
825
  msgid "Clicks timer"
826
  msgstr "Utisci tajmer"
827
 
828
- #: adrotate.php:710
829
  #, fuzzy
830
  msgid "Default: 86400."
831
  msgstr "Default - Prikazati po jedan oglas"
832
 
833
- #: adrotate.php:710
834
  #, fuzzy
835
  msgid ""
836
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
837
  msgstr ""
838
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
839
 
840
- #: adrotate.php:715
841
  #, fuzzy
842
  msgid "Bot filter"
843
  msgstr "User- agent filter"
844
 
845
- #: adrotate.php:718
846
  msgid "User-Agent Filter"
847
  msgstr "User- agent filter"
848
 
849
- #: adrotate.php:721
850
  msgid ""
851
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
852
  "prevent impressions and clicks counted on them."
@@ -854,7 +851,7 @@ msgstr ""
854
  "Zarezom odvojena lista ključnih reči . Filter se botovi / popisivači / user-"
855
  "agent . Da biste sprečili prikaza i klikova na njih računati ."
856
 
857
- #: adrotate.php:722
858
  #, fuzzy
859
  msgid ""
860
  "Keep in mind that this might give false positives. The word 'google' also "
@@ -864,21 +861,21 @@ msgstr ""
864
  "na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
865
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
866
 
867
- #: adrotate.php:722
868
  #, fuzzy
869
  msgid "Keep your list up-to-date"
870
  msgstr ""
871
  "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
872
  "ovu listu na minimum !"
873
 
874
- #: adrotate.php:723
875
  #, fuzzy
876
  msgid ""
877
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
878
  "other characters are stripped out."
879
  msgstr "HTML će biti skinut."
880
 
881
- #: adrotate.php:724
882
  msgid ""
883
  "Additionally to the list specified here, empty User-Agents are blocked as "
884
  "well."
@@ -886,23 +883,23 @@ msgstr ""
886
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
887
  "dobro."
888
 
889
- #: adrotate.php:724
890
  msgid "Learn more about"
891
  msgstr "Saznajte više o"
892
 
893
- #: adrotate.php:724
894
  msgid "user-agents"
895
  msgstr "korisnici-agenti"
896
 
897
- #: adrotate.php:733
898
  msgid "Miscellaneous"
899
  msgstr "Ostalo"
900
 
901
- #: adrotate.php:736
902
  msgid "Widget alignment"
903
  msgstr "Widget alignment"
904
 
905
- #: adrotate.php:737
906
  msgid ""
907
  "Check this box if your widgets do not align in your themes sidebar. (Does "
908
  "not always help!)"
@@ -910,12 +907,12 @@ msgstr ""
910
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
911
  "uvek ! )"
912
 
913
- #: adrotate.php:740
914
  #, fuzzy
915
  msgid "Widget padding"
916
  msgstr "Blokiraj punjenje"
917
 
918
- #: adrotate.php:741
919
  #, fuzzy
920
  msgid ""
921
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -924,7 +921,7 @@ msgstr ""
924
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
925
  "uvek ! )"
926
 
927
- #: adrotate.php:746 adrotate.php:757
928
  #, fuzzy
929
  msgid "NOTICE:"
930
  msgstr ""
@@ -934,7 +931,7 @@ msgstr ""
934
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
935
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
936
 
937
- #: adrotate.php:747
938
  msgid ""
939
  "You have enabled W3 Total Caching support but not defined the security hash. "
940
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -942,34 +939,34 @@ msgid ""
942
  "needs to be enabled in W3 Total Cache as well too."
943
  msgstr ""
944
 
945
- #: adrotate.php:751
946
  msgid "W3 Total Caching"
947
  msgstr "W3 Total Caching"
948
 
949
- #: adrotate.php:752
950
  msgid "Check this box if you use W3 Total Caching on your site."
951
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
952
 
953
- #: adrotate.php:758
954
  msgid ""
955
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
956
  "this function will not work. WP Super Cache has discontinued support for "
957
  "dynamic content."
958
  msgstr ""
959
 
960
- #: adrotate.php:762
961
  #, fuzzy
962
  msgid "WP Super Cache"
963
  msgstr ""
964
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
965
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
966
 
967
- #: adrotate.php:763
968
  #, fuzzy
969
  msgid "Check this box if you use WP Super Cache on your site."
970
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
971
 
972
- #: adrotate.php:768
973
  msgid ""
974
  "It may take a while for the ad to start rotating. The caching plugin needs "
975
  "to refresh the cache. This can take up to a week if not done manually."
@@ -977,7 +974,7 @@ msgstr ""
977
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
978
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
979
 
980
- #: adrotate.php:768
981
  msgid ""
982
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
983
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -985,32 +982,32 @@ msgstr ""
985
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
986
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
987
 
988
- #: adrotate.php:772
989
  msgid "Javascript"
990
  msgstr ""
991
 
992
- #: adrotate.php:775
993
  #, fuzzy
994
  msgid "Load jQuery"
995
  msgstr ""
996
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
997
  "Default: 6."
998
 
999
- #: adrotate.php:776
1000
  #, fuzzy
1001
  msgid ""
1002
  "jQuery is required for all Javascript features below. Enable this if your "
1003
  "theme does not load jQuery already."
1004
  msgstr "Praćenje klikom:"
1005
 
1006
- #: adrotate.php:779
1007
  #, fuzzy
1008
  msgid "Load in footer?"
1009
  msgstr ""
1010
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1011
  "Default: 6."
1012
 
1013
- #: adrotate.php:780
1014
  #, fuzzy
1015
  msgid ""
1016
  "Enable if you want to load the above libraries in the footer. Your theme "
@@ -1021,11 +1018,11 @@ msgstr ""
1021
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1022
  "detalja !"
1023
 
1024
- #: adrotate.php:788
1025
  msgid "Maintenance"
1026
  msgstr "Održavanje"
1027
 
1028
- #: adrotate.php:789
1029
  #, fuzzy
1030
  msgid ""
1031
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1040,19 +1037,19 @@ msgstr ""
1040
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
1041
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
1042
 
1043
- #: adrotate.php:804 adrotate.php:806
1044
  msgid "Optimize Database"
1045
  msgstr "Optimizacija baze podataka"
1046
 
1047
- #: adrotate.php:806
1048
  msgid "You are about to optimize the AdRotate database."
1049
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
1050
 
1051
- #: adrotate.php:806
1052
  msgid "Did you make a backup of your database?"
1053
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
1054
 
1055
- #: adrotate.php:806
1056
  msgid ""
1057
  "This may take a moment and may cause your website to respond slow "
1058
  "temporarily!"
@@ -1060,16 +1057,16 @@ msgstr ""
1060
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1061
  "sporo privremeno !"
1062
 
1063
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1064
  #: dashboard/publisher/adrotate-groups-main.php:24
1065
  msgid "OK to continue, CANCEL to stop."
1066
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1067
 
1068
- #: adrotate.php:807
1069
  msgid "Cleans up overhead data in the AdRotate tables."
1070
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
1071
 
1072
- #: adrotate.php:808
1073
  msgid ""
1074
  "Overhead data is accumulated garbage resulting from many changes you've "
1075
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1077,68 +1074,68 @@ msgstr ""
1077
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
1078
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
1079
 
1080
- #: adrotate.php:812 adrotate.php:814
1081
  msgid "Clean-up Database"
1082
  msgstr "Čišćenje baze"
1083
 
1084
- #: adrotate.php:814
1085
  #, fuzzy
1086
  msgid ""
1087
  "You are about to clean up your database. This may delete expired schedules "
1088
  "and older statistics."
1089
  msgstr "Čišćenje baze"
1090
 
1091
- #: adrotate.php:814
1092
  #, fuzzy
1093
  msgid "Are you sure you want to continue?"
1094
  msgstr "Popunite ID tipa koji želite da prikažete!"
1095
 
1096
- #: adrotate.php:814 adrotate.php:822
1097
  #, fuzzy
1098
  msgid "This might take a while and may slow down your site during this action!"
1099
  msgstr ""
1100
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1101
  "sporo privremeno !"
1102
 
1103
- #: adrotate.php:815
1104
  #, fuzzy
1105
  msgid "Delete stats older than 356 days (Optional)."
1106
  msgstr "Uloga obrisati oglase i resetovanje ."
1107
 
1108
- #: adrotate.php:816
1109
  #, fuzzy
1110
  msgid ""
1111
  "AdRotate creates empty records when you start making ads or groups. In rare "
1112
  "occasions these records are faulty."
1113
  msgstr "Prazni zapisi baze podataka uklanjaju"
1114
 
1115
- #: adrotate.php:816
1116
  #, fuzzy
1117
  msgid ""
1118
  "If you made an ad or group that does not save when you make it use this "
1119
  "button to delete those empty records."
1120
  msgstr "Vi ste na putu da izbrišete grupu"
1121
 
1122
- #: adrotate.php:816
1123
  #, fuzzy
1124
  msgid ""
1125
  "Additionally you can clean up old statistics. This will improve the speed of "
1126
  "your site."
1127
  msgstr "Čišćenje baze"
1128
 
1129
- #: adrotate.php:820
1130
  msgid "Re-evaluate Ads"
1131
  msgstr "Ponovo ocenjeni oglasi"
1132
 
1133
- #: adrotate.php:822
1134
  msgid "Re-evaluate all ads"
1135
  msgstr "Ponovo ocenite sve oglase"
1136
 
1137
- #: adrotate.php:822
1138
  msgid "You are about to check all ads for errors."
1139
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
1140
 
1141
- #: adrotate.php:823
1142
  msgid ""
1143
  "This will apply all evaluation rules to all ads to see if any error slipped "
1144
  "in. Normally you should not need this feature."
@@ -1146,7 +1143,7 @@ msgstr ""
1146
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
1147
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
1148
 
1149
- #: adrotate.php:827
1150
  msgid ""
1151
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1152
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1163,45 +1160,45 @@ msgstr ""
1163
  "već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
1164
  "nijevažna stvar u svakom slučaju ."
1165
 
1166
- #: adrotate.php:835
1167
  msgid "Troubleshooting"
1168
  msgstr "Rešavanje problema"
1169
 
1170
- #: adrotate.php:838
1171
  msgid "Current version:"
1172
  msgstr "Trenutna verzija :"
1173
 
1174
- #: adrotate.php:839
1175
  msgid "Previous version:"
1176
  msgstr "Prethodna verzija :"
1177
 
1178
- #: adrotate.php:842
1179
  msgid "Current database version:"
1180
  msgstr "Trenutna verzija baze podataka :"
1181
 
1182
- #: adrotate.php:843
1183
  msgid "Previous database version:"
1184
  msgstr "Prethodna verzija baze podataka :"
1185
 
1186
- #: adrotate.php:846
1187
  #, fuzzy
1188
  msgid "Ad evaluation next run:"
1189
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1190
 
1191
- #: adrotate.php:847 adrotate.php:851
1192
  msgid "Not scheduled!"
1193
  msgstr "Nije planirano:"
1194
 
1195
- #: adrotate.php:850
1196
  msgid "Clean Trackerdata next run:"
1197
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1198
 
1199
- #: adrotate.php:854
1200
  #, fuzzy
1201
  msgid "Current status of adverts"
1202
  msgstr "Trenutni raspored"
1203
 
1204
- #: adrotate.php:855
1205
  #, fuzzy
1206
  msgid "Normal"
1207
  msgstr ""
@@ -1210,27 +1207,27 @@ msgstr ""
1210
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1211
  "normalnu upotrebu oni treba da budu levo neprovereni "
1212
 
1213
- #: adrotate.php:855
1214
  #, fuzzy
1215
  msgid "Error"
1216
  msgstr "Nepoznati error se ukazao."
1217
 
1218
- #: adrotate.php:855
1219
  #, fuzzy
1220
  msgid "Expired"
1221
  msgstr "Isteklo je."
1222
 
1223
- #: adrotate.php:855
1224
  #, fuzzy
1225
  msgid "Expires Soon"
1226
  msgstr "Ističe uskoro."
1227
 
1228
- #: adrotate.php:855
1229
  #, fuzzy
1230
  msgid "Unknown Status"
1231
  msgstr "Nepoznati error se ukazao."
1232
 
1233
- #: adrotate.php:858
1234
  msgid ""
1235
  "NOTE: The below options are not meant for normal use and are only there for "
1236
  "developers to review saved settings or how ads are selected. These can be "
@@ -1242,43 +1239,43 @@ msgstr ""
1242
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1243
  "normalnu upotrebu oni treba da budu levo neprovereni "
1244
 
1245
- #: adrotate.php:862
1246
  msgid "Developer Debug"
1247
  msgstr "Debug za programera"
1248
 
1249
- #: adrotate.php:864
1250
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1251
  msgstr ""
1252
  "Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
1253
  "izlaza ."
1254
 
1255
- #: adrotate.php:865
1256
  msgid "Show all settings, dashboard routines and related values."
1257
  msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
1258
 
1259
- #: adrotate.php:866
1260
  msgid "Show array of all userroles and capabilities."
1261
  msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
1262
 
1263
- #: adrotate.php:867
1264
  msgid "Review saved advertisers! Visible to advertisers."
1265
  msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
1266
 
1267
- #: adrotate.php:868
1268
  #, fuzzy
1269
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1270
  msgstr ""
1271
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
1272
  "samo izdavačima ."
1273
 
1274
- #: adrotate.php:869
1275
  #, fuzzy
1276
  msgid ""
1277
  "Disable timers for clicks and impressions and enable a alert window for "
1278
  "clicktracking."
1279
  msgstr "Pratite klikove i prikaze ."
1280
 
1281
- #: adrotate.php:870
1282
  msgid "Temporarily disable encryption on the redirect url."
1283
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
1284
 
@@ -1511,8 +1508,8 @@ msgid "The AdCode cannot be empty!"
1511
  msgstr "AdCode ne može biti prazan !"
1512
 
1513
  #: dashboard/publisher/adrotate-ads-edit.php:49
1514
- msgid "You didn't use %image% in your AdCode but did select an image!"
1515
- msgstr "Niste koristili %image% AdCode ali ste izaberali neku sliku !"
1516
 
1517
  #: dashboard/publisher/adrotate-ads-edit.php:52
1518
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1527,10 +1524,22 @@ msgstr ""
1527
  "ponovo sačuvajte oglas !"
1528
 
1529
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1530
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1531
  msgstr ""
1532
 
1533
- #: dashboard/publisher/adrotate-ads-edit.php:63
1534
  msgid ""
1535
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1536
  "the ad!"
@@ -1538,117 +1547,175 @@ msgstr ""
1538
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
1539
  "ponovo čuvanja oglas !"
1540
 
1541
- #: dashboard/publisher/adrotate-ads-edit.php:66
1542
  msgid "This ad is expired and currently not shown on your website!"
1543
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1544
 
1545
- #: dashboard/publisher/adrotate-ads-edit.php:69
1546
  msgid "The ad will expire in less than 2 days!"
1547
  msgstr "Oglas ističe za manje od 2 dana !"
1548
 
1549
- #: dashboard/publisher/adrotate-ads-edit.php:72
1550
  msgid "This ad will expire in less than 7 days!"
1551
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
1552
 
1553
- #: dashboard/publisher/adrotate-ads-edit.php:75
1554
  msgid "This ad has been disabled and does not rotate on your site!"
1555
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
1556
 
1557
- #: dashboard/publisher/adrotate-ads-edit.php:101
1558
  #, fuzzy
1559
  msgid "New Advert"
1560
  msgstr ""
1561
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1562
  "Default: 6."
1563
 
1564
- #: dashboard/publisher/adrotate-ads-edit.php:103
1565
  #, fuzzy
1566
  msgid "Edit Advert"
1567
  msgstr "Edituj"
1568
 
1569
- #: dashboard/publisher/adrotate-ads-edit.php:106
1570
- #: dashboard/publisher/adrotate-groups-edit.php:48
1571
- #, fuzzy
1572
- msgid "These are required."
1573
- msgstr "Blok oblik i granicu (Obavezno ) - Definišite oblik i veličinu bloka"
1574
-
1575
- #: dashboard/publisher/adrotate-ads-edit.php:110
1576
  msgid "Title:"
1577
  msgstr "Naslov :"
1578
 
1579
- #: dashboard/publisher/adrotate-ads-edit.php:116
1580
  msgid "AdCode:"
1581
  msgstr "AdCode:"
1582
 
1583
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1584
  msgid ""
1585
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1586
  msgstr ""
1587
 
1588
- #: dashboard/publisher/adrotate-ads-edit.php:121
1589
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1590
  msgstr ""
1591
 
1592
- #: dashboard/publisher/adrotate-ads-edit.php:122
1593
- msgid "Basic Examples:"
1594
- msgstr "Osnovni Primeri :"
 
1595
 
1596
- #: dashboard/publisher/adrotate-ads-edit.php:127
1597
- #: dashboard/publisher/adrotate-groups-edit.php:335
1598
- msgid "Options:"
1599
- msgstr "Opcije :"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1600
 
1601
- #: dashboard/publisher/adrotate-ads-edit.php:129
1602
  #, fuzzy
 
 
 
 
1603
  msgid ""
1604
- "Place the cursor where you want to add a tag and click to add it to your "
1605
- "AdCode."
1606
- msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
 
1607
 
1608
- #: dashboard/publisher/adrotate-ads-edit.php:133
1609
  msgid "Activate:"
1610
  msgstr "Aktiviranje :"
1611
 
1612
- #: dashboard/publisher/adrotate-ads-edit.php:137
1613
  msgid "Yes, this ad will be used"
1614
  msgstr "Da , ovaj oglas će se koristiti"
1615
 
1616
- #: dashboard/publisher/adrotate-ads-edit.php:138
1617
  msgid "No, do not show this ad anywhere"
1618
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1619
 
1620
- #: dashboard/publisher/adrotate-ads-edit.php:145
1621
  #: dashboard/publisher/adrotate-ads-main.php:108
1622
- #: dashboard/publisher/adrotate-groups-edit.php:76
1623
  #: dashboard/publisher/adrotate-groups-main.php:87
1624
  #, fuzzy
1625
  msgid "Get more features with AdRotate Pro."
1626
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1627
 
1628
- #: dashboard/publisher/adrotate-ads-edit.php:148
1629
- #: dashboard/publisher/adrotate-ads-edit.php:181
1630
- #: dashboard/publisher/adrotate-ads-edit.php:317
1631
- #: dashboard/publisher/adrotate-ads-edit.php:442
1632
- #: dashboard/publisher/adrotate-ads-edit.php:485
1633
  msgid "Save Advert"
1634
  msgstr "Sačuvaj oglas"
1635
 
1636
- #: dashboard/publisher/adrotate-ads-edit.php:149
1637
- #: dashboard/publisher/adrotate-ads-edit.php:182
1638
- #: dashboard/publisher/adrotate-ads-edit.php:318
1639
- #: dashboard/publisher/adrotate-ads-edit.php:443
1640
- #: dashboard/publisher/adrotate-ads-edit.php:486
1641
- #: dashboard/publisher/adrotate-groups-edit.php:182
1642
- #: dashboard/publisher/adrotate-groups-edit.php:323
1643
- #: dashboard/publisher/adrotate-groups-edit.php:405
1644
  msgid "Cancel"
1645
  msgstr "Ukini"
1646
 
1647
- #: dashboard/publisher/adrotate-ads-edit.php:153
1648
  msgid "Preview"
1649
  msgstr "Pregled"
1650
 
1651
- #: dashboard/publisher/adrotate-ads-edit.php:159
1652
  msgid ""
1653
  "Note: While this preview is an accurate one, it might look different then it "
1654
  "does on the website."
@@ -1656,165 +1723,155 @@ msgstr ""
1656
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1657
  "drugačije onda to čini na sajtu ."
1658
 
1659
- #: dashboard/publisher/adrotate-ads-edit.php:160
1660
  msgid ""
1661
  "This is because of CSS differences. Your themes CSS file is not active here!"
1662
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1663
 
1664
- #: dashboard/publisher/adrotate-ads-edit.php:167
1665
- #: dashboard/publisher/adrotate-ads-edit.php:303
1666
- #: dashboard/publisher/adrotate-groups-edit.php:167
1667
- #: dashboard/publisher/adrotate-groups-edit.php:308
1668
  msgid "Usage"
1669
  msgstr "upotreba"
1670
 
1671
- #: dashboard/publisher/adrotate-ads-edit.php:168
1672
- #: dashboard/publisher/adrotate-ads-edit.php:304
1673
- #: dashboard/publisher/adrotate-groups-edit.php:168
1674
- #: dashboard/publisher/adrotate-groups-edit.php:309
1675
- #, fuzzy
 
 
 
 
1676
  msgid ""
1677
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1678
- "where you want the advert to show up."
1679
- msgstr "U post ili stranicu:"
1680
 
1681
- #: dashboard/publisher/adrotate-ads-edit.php:172
1682
- #: dashboard/publisher/adrotate-ads-edit.php:308
1683
- #: dashboard/publisher/adrotate-groups-edit.php:172
1684
- #: dashboard/publisher/adrotate-groups-edit.php:313
1685
  msgid "In a post or page:"
1686
  msgstr "U post ili stranicu:"
1687
 
1688
- #: dashboard/publisher/adrotate-ads-edit.php:174
1689
- #: dashboard/publisher/adrotate-ads-edit.php:310
1690
- #: dashboard/publisher/adrotate-groups-edit.php:174
1691
- #: dashboard/publisher/adrotate-groups-edit.php:315
1692
  msgid "Directly in a theme:"
1693
  msgstr "Direktno na temu :"
1694
 
1695
- #: dashboard/publisher/adrotate-ads-edit.php:185
1696
- #: dashboard/publisher/adrotate-groups-edit.php:185
1697
- msgid "Advanced"
1698
  msgstr ""
1699
 
1700
- #: dashboard/publisher/adrotate-ads-edit.php:186
1701
- #, fuzzy
1702
- msgid "Everything below is optional."
1703
- msgstr "Naslov (opcionalno):"
1704
 
1705
- #: dashboard/publisher/adrotate-ads-edit.php:191
1706
- msgid "Clicktracking:"
1707
- msgstr "Praćenje klikom:"
1708
 
1709
- #: dashboard/publisher/adrotate-ads-edit.php:193
1710
- #, fuzzy
1711
- msgid "Enable click tracking for this advert."
1712
- msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
1713
 
1714
- #: dashboard/publisher/adrotate-ads-edit.php:194
1715
- msgid ""
1716
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1717
- "those provided by Google AdSense."
1718
- msgstr ""
1719
 
1720
- #: dashboard/publisher/adrotate-ads-edit.php:195
1721
- #, fuzzy
1722
- msgid "Place the target URL in your adcode - Similar to code example 1."
1723
- msgstr "Niste koristili %link% u AdCode ali ste aktivirali praćenje klikom!"
 
 
 
 
1724
 
1725
- #: dashboard/publisher/adrotate-ads-edit.php:200
1726
- msgid "Target URL:"
 
 
 
 
 
 
 
1727
  msgstr ""
 
 
 
1728
 
1729
- #: dashboard/publisher/adrotate-ads-edit.php:203
1730
- #, fuzzy
1731
  msgid ""
1732
- "This field is no longer required. You can place the URL directly in the "
1733
- "adcode (above) instead of %link%."
1734
  msgstr ""
1735
- "WordPress nije bio u mogućnosti da verifikuje autentičnost url-a na koji ste "
1736
- "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
1737
- "pretraživača."
1738
 
1739
- #: dashboard/publisher/adrotate-ads-edit.php:208
1740
- msgid "Responsive:"
1741
  msgstr ""
1742
 
1743
- #: dashboard/publisher/adrotate-ads-edit.php:210
 
 
 
1744
  #, fuzzy
1745
- msgid "Enable responsive support for this advert."
1746
- msgstr "Oglasi"
1747
 
1748
- #: dashboard/publisher/adrotate-ads-edit.php:211
1749
- msgid ""
1750
- "Upload your images to the banner folder and make sure the filename is in the "
1751
- "following format; \"imagename.full.ext\". A full set of sized images is "
1752
- "strongly recommended."
1753
- msgstr ""
1754
-
1755
- #: dashboard/publisher/adrotate-ads-edit.php:213
1756
- msgid ""
1757
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1758
- "for different viewports. Requires jQuery."
1759
  msgstr ""
1760
 
1761
- #: dashboard/publisher/adrotate-ads-edit.php:217
1762
- msgid "Banner image:"
1763
- msgstr "Slika banera:"
1764
-
1765
- #: dashboard/publisher/adrotate-ads-edit.php:220
1766
- msgid "Media:"
1767
- msgstr "Media:"
1768
-
1769
- #: dashboard/publisher/adrotate-ads-edit.php:220
1770
  #, fuzzy
1771
- msgid "Select Banner"
1772
- msgstr "Baner Folder"
1773
-
1774
- #: dashboard/publisher/adrotate-ads-edit.php:222
1775
- msgid "- OR -"
1776
- msgstr "- ILI -"
1777
-
1778
- #: dashboard/publisher/adrotate-ads-edit.php:224
1779
- msgid "Banner folder:"
1780
- msgstr "Folder banera:"
1781
 
1782
- #: dashboard/publisher/adrotate-ads-edit.php:225
1783
- msgid "No image selected"
1784
- msgstr "Nijedna slika nije izabrana"
1785
 
1786
- #: dashboard/publisher/adrotate-ads-edit.php:229
1787
- msgid "Use %image% in the code. Accepted files are:"
1788
- msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
 
1789
 
1790
- #: dashboard/publisher/adrotate-ads-edit.php:229
1791
  msgid ""
1792
- "Use either the text field or the dropdown. If the textfield has content that "
1793
- "field has priority."
 
1794
  msgstr ""
1795
- "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1796
- "polje ima prioritet ."
1797
 
1798
- #: dashboard/publisher/adrotate-ads-edit.php:233
1799
  msgid "Weight:"
1800
  msgstr "Težina:"
1801
 
1802
- #: dashboard/publisher/adrotate-ads-edit.php:233
1803
  #, fuzzy
1804
  msgid "AdRotate Pro only"
1805
  msgstr "AdRotate Pro"
1806
 
1807
- #: dashboard/publisher/adrotate-ads-edit.php:236
1808
  #, fuzzy
1809
  msgid "Barely visible"
1810
  msgstr "Vidljivo do"
1811
 
1812
- #: dashboard/publisher/adrotate-ads-edit.php:237
1813
  #, fuzzy
1814
  msgid "Less than average"
1815
  msgstr "Oglas ističe za manje od 2 dana !"
1816
 
1817
- #: dashboard/publisher/adrotate-ads-edit.php:238
1818
  #, fuzzy
1819
  msgid "Normal coverage"
1820
  msgstr ""
@@ -1823,269 +1880,140 @@ msgstr ""
1823
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1824
  "normalnu upotrebu oni treba da budu levo neprovereni "
1825
 
1826
- #: dashboard/publisher/adrotate-ads-edit.php:239
1827
  #, fuzzy
1828
  msgid "More than average"
1829
  msgstr "Saznajte više"
1830
 
1831
- #: dashboard/publisher/adrotate-ads-edit.php:240
1832
  #, fuzzy
1833
  msgid "Best visibility"
1834
  msgstr "Vidljivo do"
1835
 
1836
- #: dashboard/publisher/adrotate-ads-edit.php:245
1837
- #: dashboard/publisher/adrotate-groups-edit.php:212
1838
  msgid "Sortorder:"
1839
  msgstr "Poredak:"
1840
 
1841
- #: dashboard/publisher/adrotate-ads-edit.php:247
1842
- #: dashboard/publisher/adrotate-groups-edit.php:214
1843
  msgid "For administrative purposes set a sortorder."
1844
  msgstr "Za administrativne svrhe postavili sortorder ."
1845
 
1846
- #: dashboard/publisher/adrotate-ads-edit.php:247
1847
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1848
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1849
 
1850
- #: dashboard/publisher/adrotate-ads-edit.php:252
1851
  msgid ""
1852
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1853
- "attention."
1854
  msgstr ""
1855
 
1856
- #: dashboard/publisher/adrotate-ads-edit.php:252
1857
- #: dashboard/publisher/adrotate-ads-edit.php:301
1858
- #: dashboard/publisher/adrotate-ads-edit.php:399
1859
- #: dashboard/publisher/adrotate-groups-edit.php:218
1860
- #, fuzzy
1861
- msgid "Upgrade today"
1862
- msgstr "Danas"
1863
-
1864
- #: dashboard/publisher/adrotate-ads-edit.php:254
1865
- #, fuzzy
1866
- msgid "Geo Location in AdRotate Pro"
1867
- msgstr "AdRotate Pro"
1868
 
1869
- #: dashboard/publisher/adrotate-ads-edit.php:255
1870
- #, fuzzy
1871
  msgid ""
1872
- "This works if you assign the advert to a group and enable that group to use "
1873
- "Geo Targeting."
1874
- msgstr "Gupni oglasi - Koristite grupni ID"
1875
 
1876
- #: dashboard/publisher/adrotate-ads-edit.php:259
1877
  #, fuzzy
1878
  msgid "Cities/States:"
1879
  msgstr "Gradovi:"
1880
 
1881
- #: dashboard/publisher/adrotate-ads-edit.php:262
1882
- #: dashboard/publisher/adrotate-ads-edit.php:295
1883
- #, fuzzy
1884
- msgid "Usage:"
1885
- msgstr "upotreba"
1886
-
1887
- #: dashboard/publisher/adrotate-ads-edit.php:263
1888
- msgid "A comma separated list of cities and/or states"
1889
  msgstr ""
1890
 
1891
- #: dashboard/publisher/adrotate-ads-edit.php:263
1892
  msgid ""
1893
  "AdRotate does not check the validity of names so make sure you spell them "
1894
  "correctly!"
1895
  msgstr ""
1896
 
1897
- #: dashboard/publisher/adrotate-ads-edit.php:267
1898
  #, fuzzy
1899
  msgid "Countries:"
1900
  msgstr "Zemlje:"
1901
 
1902
- #: dashboard/publisher/adrotate-ads-edit.php:296
1903
  #, fuzzy
1904
  msgid "Select the countries you want the adverts to show in."
1905
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1906
 
1907
- #: dashboard/publisher/adrotate-ads-edit.php:296
1908
  msgid "Cities take priority and will be filtered first."
1909
  msgstr ""
1910
 
1911
- #: dashboard/publisher/adrotate-ads-edit.php:301
1912
- #, fuzzy
1913
- msgid "Target your audience with Geo Location in AdRotate Pro"
1914
- msgstr "Targetirajte gradove i zemlje sa GeoLocation."
1915
-
1916
- #: dashboard/publisher/adrotate-ads-edit.php:321
1917
- #, fuzzy
1918
- msgid "Schedule"
1919
- msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
1920
-
1921
- #: dashboard/publisher/adrotate-ads-edit.php:322
1922
- #, fuzzy
1923
- msgid "From when to when is the advert visible?"
1924
- msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
1925
-
1926
- #: dashboard/publisher/adrotate-ads-edit.php:326
1927
- msgid "Start date (day/month/year):"
1928
- msgstr "Datum početka (dan/mesec/godina):"
1929
-
1930
- #: dashboard/publisher/adrotate-ads-edit.php:347
1931
- msgid "End date (day/month/year):"
1932
- msgstr "Datum završetka (dan/mesec/godina)"
1933
-
1934
- #: dashboard/publisher/adrotate-ads-edit.php:370
1935
- msgid "Start time (hh:mm):"
1936
- msgstr "Početno vreme (hh:mm):"
1937
-
1938
- #: dashboard/publisher/adrotate-ads-edit.php:377
1939
- msgid "End time (hh:mm):"
1940
- msgstr "Završno vreme (hh:mm):"
1941
-
1942
- #: dashboard/publisher/adrotate-ads-edit.php:387
1943
- msgid "Maximum Clicks:"
1944
- msgstr "Maksimum klikovi:"
1945
-
1946
- #: dashboard/publisher/adrotate-ads-edit.php:388
1947
- #: dashboard/publisher/adrotate-ads-edit.php:390
1948
- msgid "Leave empty or 0 to skip this."
1949
- msgstr "Ostavite prazno ili 0 da preskoči ovo."
1950
-
1951
- #: dashboard/publisher/adrotate-ads-edit.php:389
1952
- msgid "Maximum Impressions:"
1953
- msgstr "Maksimalni utisci:"
1954
-
1955
- #: dashboard/publisher/adrotate-ads-edit.php:395
1956
- msgid ""
1957
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1958
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1959
- "hours. 6AM is 6:00 hours."
1960
- msgstr ""
1961
- "Sat koristi 24 -časovni sat . Kada se koristi za AM / PM sistem imajte ovo "
1962
- "na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
1963
- "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
1964
-
1965
- #: dashboard/publisher/adrotate-ads-edit.php:395
1966
- msgid ""
1967
- "The maximum clicks and impressions are measured over the set schedule only. "
1968
- "Every schedule can have it's own limit!"
1969
- msgstr ""
1970
- "Maksimalne klikovi i prikazi praćeni tokom postavljenom rasporedu samo . "
1971
- "Svaki raspored može da ima svoju granicu !"
1972
-
1973
- #: dashboard/publisher/adrotate-ads-edit.php:399
1974
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1975
- msgstr ""
1976
-
1977
- #: dashboard/publisher/adrotate-ads-edit.php:401
1978
- #, fuzzy
1979
- msgid "Choose Multiple Schedules in AdRotate Pro"
1980
- msgstr "Dostupno u AdRotate Pro"
1981
-
1982
- #: dashboard/publisher/adrotate-ads-edit.php:402
1983
- msgid "You can add, edit or delete schedules from the"
1984
  msgstr ""
1985
 
1986
- #: dashboard/publisher/adrotate-ads-edit.php:402
1987
- msgid "dashboard. Save your advert first!"
1988
- msgstr ""
1989
-
1990
- #: dashboard/publisher/adrotate-ads-edit.php:409
1991
- #, fuzzy
1992
- msgid "From / Until"
1993
- msgstr "Vidljivo do"
1994
-
1995
- #: dashboard/publisher/adrotate-ads-edit.php:411
1996
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1997
- #: dashboard/publisher/adrotate-ads-main.php:45
1998
- #: dashboard/publisher/adrotate-ads-report.php:35
1999
- #: dashboard/publisher/adrotate-groups-edit.php:356
2000
- #: dashboard/publisher/adrotate-groups-main.php:37
2001
- #: dashboard/publisher/adrotate-groups-report.php:41
2002
- msgid "Clicks"
2003
- msgstr "Klikovi"
2004
-
2005
- #: dashboard/publisher/adrotate-ads-edit.php:412
2006
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2007
- #: dashboard/publisher/adrotate-ads-report.php:34
2008
- #: dashboard/publisher/adrotate-groups-edit.php:355
2009
- #: dashboard/publisher/adrotate-groups-main.php:35
2010
- #: dashboard/publisher/adrotate-groups-report.php:40
2011
- msgid "Impressions"
2012
- msgstr "Utisci"
2013
-
2014
- #: dashboard/publisher/adrotate-ads-edit.php:421
2015
- #, fuzzy
2016
- msgid "impressions per day"
2017
- msgstr "Utisci"
2018
-
2019
- #: dashboard/publisher/adrotate-ads-edit.php:437
2020
- #, fuzzy
2021
- msgid "In use by this advert."
2022
- msgstr "Granica oglasa"
2023
-
2024
- #: dashboard/publisher/adrotate-ads-edit.php:448
2025
  msgid "Select Groups"
2026
  msgstr "Izbor grupe"
2027
 
2028
- #: dashboard/publisher/adrotate-ads-edit.php:449
2029
- #, fuzzy
2030
- msgid "Optionally select the group(s) this ad belongs to."
2031
- msgstr "aktivni ad-ovi su istekli."
2032
-
2033
- #: dashboard/publisher/adrotate-ads-edit.php:454
2034
  #, fuzzy
2035
  msgid "ID - Name"
2036
  msgstr "Ime"
2037
 
2038
- #: dashboard/publisher/adrotate-ads-edit.php:455
2039
  #, fuzzy
2040
  msgid "Ads in group"
2041
  msgstr "Gupni oglasi - Koristite grupni ID"
2042
 
2043
- #: dashboard/publisher/adrotate-ads-edit.php:464
2044
  #: dashboard/publisher/adrotate-groups-main.php:58
2045
  #, fuzzy
2046
  msgid "Default"
2047
  msgstr "Default - Prikazati po jedan oglas"
2048
 
2049
- #: dashboard/publisher/adrotate-ads-edit.php:465
2050
  #: dashboard/publisher/adrotate-groups-main.php:59
2051
  #, fuzzy
2052
  msgid "Dynamic"
2053
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
2054
 
2055
- #: dashboard/publisher/adrotate-ads-edit.php:465
2056
  #: dashboard/publisher/adrotate-groups-main.php:59
2057
  #, fuzzy
2058
  msgid "second rotation"
2059
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2060
 
2061
- #: dashboard/publisher/adrotate-ads-edit.php:466
2062
  #: dashboard/publisher/adrotate-groups-main.php:60
2063
  #, fuzzy
2064
  msgid "Block"
2065
  msgstr "Menadžmet blokiranih"
2066
 
2067
- #: dashboard/publisher/adrotate-ads-edit.php:466
2068
  #: dashboard/publisher/adrotate-groups-main.php:60
2069
  #, fuzzy
2070
  msgid "grid"
2071
  msgstr ""
2072
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
2073
 
2074
- #: dashboard/publisher/adrotate-ads-edit.php:467
2075
- #: dashboard/publisher/adrotate-groups-edit.php:220
2076
  #: dashboard/publisher/adrotate-groups-main.php:61
2077
  #, fuzzy
2078
  msgid "Post Injection"
2079
  msgstr "U post ili stranicu:"
2080
 
2081
- #: dashboard/publisher/adrotate-ads-edit.php:468
2082
  #: dashboard/publisher/adrotate-groups-main.php:62
2083
  #, fuzzy
2084
  msgid "Geolocation"
2085
  msgstr "GeoLocation"
2086
 
2087
- #: dashboard/publisher/adrotate-ads-edit.php:474
2088
- #: dashboard/publisher/adrotate-groups-edit.php:62
2089
  #: dashboard/publisher/adrotate-groups-main.php:69
2090
  msgid "Mode"
2091
  msgstr "Mod"
@@ -2120,6 +2048,23 @@ msgstr ""
2120
  msgid "Title"
2121
  msgstr "Naslov"
2122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2123
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2124
  #: dashboard/publisher/adrotate-ads-main.php:47
2125
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2181,7 +2126,7 @@ msgid "For 7 days"
2181
  msgstr "Za 7 dana"
2182
 
2183
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2184
- #: dashboard/publisher/adrotate-groups-edit.php:398
2185
  msgid "Configuration errors."
2186
  msgstr "Konfiguracione greške."
2187
 
@@ -2195,7 +2140,7 @@ msgid "Export to XML"
2195
  msgstr "Izlazne opcije za"
2196
 
2197
  #: dashboard/publisher/adrotate-ads-main.php:42
2198
- #: dashboard/publisher/adrotate-groups-edit.php:357
2199
  msgid "Weight"
2200
  msgstr "Težina"
2201
 
@@ -2263,79 +2208,72 @@ msgstr "Dodati novi"
2263
  msgid "Edit Group"
2264
  msgstr "Edituj grupu"
2265
 
2266
- #: dashboard/publisher/adrotate-groups-edit.php:56
2267
  msgid "Name:"
2268
  msgstr "Ime:"
2269
 
2270
- #: dashboard/publisher/adrotate-groups-edit.php:65
2271
  msgid "Default - Show one ad at a time"
2272
  msgstr "Default - Prikazati po jedan oglas"
2273
 
2274
- #: dashboard/publisher/adrotate-groups-edit.php:66
2275
  msgid "Dynamic Mode - Show a different ad every few seconds"
2276
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
2277
 
2278
- #: dashboard/publisher/adrotate-groups-edit.php:67
2279
  msgid "Block Mode - Show a block of ads"
2280
  msgstr "Blok mod - Prikaži blokove oglasa"
2281
 
2282
- #: dashboard/publisher/adrotate-groups-edit.php:71
2283
  #, fuzzy
2284
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2285
  msgstr "AdRotate postavke"
2286
 
2287
- #: dashboard/publisher/adrotate-groups-edit.php:78
2288
- #: dashboard/publisher/adrotate-groups-edit.php:135
2289
  #, fuzzy
2290
  msgid "Dynamic and Block Mode"
2291
  msgstr "Blok mod - Prikaži blokove oglasa"
2292
 
2293
- #: dashboard/publisher/adrotate-groups-edit.php:79
2294
  #, fuzzy
2295
  msgid "Only required if your group is in Dynamic or Block mode."
2296
  msgstr "Blok mod - Prikaži blokove oglasa"
2297
 
2298
- #: dashboard/publisher/adrotate-groups-edit.php:83
2299
- #, fuzzy
2300
- msgid "Block shape and border"
2301
- msgstr "Blok oblik i granicu (Obavezno ) - Definišite oblik i veličinu bloka"
2302
 
2303
- #: dashboard/publisher/adrotate-groups-edit.php:110
2304
  msgid "rows"
2305
  msgstr "redovi"
2306
 
2307
- #: dashboard/publisher/adrotate-groups-edit.php:123
2308
  msgid "columns"
2309
  msgstr "kolone"
2310
 
2311
- #: dashboard/publisher/adrotate-groups-edit.php:126
2312
  #, fuzzy
2313
  msgid "Block Mode"
2314
  msgstr "Blok mod - Prikaži blokove oglasa"
2315
 
2316
- #: dashboard/publisher/adrotate-groups-edit.php:126
2317
- #, fuzzy
2318
- msgid ""
2319
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2320
- "showing a maximum of 6 ads. Default: 2x2."
2321
  msgstr ""
2322
- "Napravite mrežu za oglase . Popunjavanje 3 i 2 čini mrežu sa 2 kolone "
2323
- "pokazuju maksimalno 6 oglasa. Default: 2x2."
2324
 
2325
- #: dashboard/publisher/adrotate-groups-edit.php:130
2326
- #, fuzzy
2327
- msgid "Advert Width and Height"
2328
- msgstr "Širina i visina"
2329
 
2330
- #: dashboard/publisher/adrotate-groups-edit.php:132
2331
  msgid "pixel(s) wide"
2332
  msgstr "širina piksela"
2333
 
2334
- #: dashboard/publisher/adrotate-groups-edit.php:132
2335
  msgid "pixel(s) high."
2336
  msgstr "visina piksela"
2337
 
2338
- #: dashboard/publisher/adrotate-groups-edit.php:135
2339
  #, fuzzy
2340
  msgid ""
2341
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2344,235 +2282,241 @@ msgstr ""
2344
  "Definišite maksimalnu veličinu oglasa u pikselima minus margine . Veličina "
2345
  "može biti 'auto' ( ne preporučuje se) . Default: 125/125."
2346
 
2347
- #: dashboard/publisher/adrotate-groups-edit.php:139
2348
  #, fuzzy
2349
  msgid "Automated refresh"
2350
  msgstr ""
2351
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2352
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2353
 
2354
- #: dashboard/publisher/adrotate-groups-edit.php:158
2355
  msgid "seconds."
2356
  msgstr "sekundi."
2357
 
2358
- #: dashboard/publisher/adrotate-groups-edit.php:161
2359
  #, fuzzy
2360
  msgid "Dynamic Mode"
2361
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
2362
 
2363
- #: dashboard/publisher/adrotate-groups-edit.php:161
2364
  msgid ""
2365
  "Load a new advert in this interval without reloading the page. Default: 6."
2366
  msgstr ""
2367
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
2368
  "Default: 6."
2369
 
2370
- #: dashboard/publisher/adrotate-groups-edit.php:181
2371
- #: dashboard/publisher/adrotate-groups-edit.php:322
2372
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2373
  #, fuzzy
2374
  msgid "Save Group"
2375
  msgstr "Sačuvati"
2376
 
2377
- #: dashboard/publisher/adrotate-groups-edit.php:189
2378
  msgid "Advert Margin"
2379
  msgstr "Margina oglasa"
2380
 
2381
- #: dashboard/publisher/adrotate-groups-edit.php:191
2382
  msgid "pixel(s)"
2383
  msgstr "pikseli"
2384
 
2385
- #: dashboard/publisher/adrotate-groups-edit.php:194
2386
  #, fuzzy
2387
  msgid "A transparent area outside the advert in pixels. Default: 0."
2388
  msgstr "Nevidljiva granica van oglasa u pikselima. (Default: 1)"
2389
 
2390
- #: dashboard/publisher/adrotate-groups-edit.php:194
2391
  #, fuzzy
2392
  msgid "Set to 0 to disable."
2393
  msgstr "Default:10 . Podesite na 0 da isključite ovaj tajmer ."
2394
 
2395
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2396
  #, fuzzy
2397
  msgid "Align the group"
2398
  msgstr "Gupni oglasi - Koristite grupni ID"
2399
 
2400
- #: dashboard/publisher/adrotate-groups-edit.php:201
2401
  #, fuzzy
2402
  msgid "None (Default)"
2403
  msgstr "Default - Prikazati po jedan oglas"
2404
 
2405
- #: dashboard/publisher/adrotate-groups-edit.php:202
2406
  msgid "Left"
2407
  msgstr ""
2408
 
2409
- #: dashboard/publisher/adrotate-groups-edit.php:203
2410
  #, fuzzy
2411
  msgid "Right"
2412
  msgstr "Težina"
2413
 
2414
- #: dashboard/publisher/adrotate-groups-edit.php:204
2415
  msgid "Center"
2416
  msgstr ""
2417
 
2418
- #: dashboard/publisher/adrotate-groups-edit.php:208
2419
  msgid ""
2420
  "Align the group in your post or page. Using 'center' may affect your margin "
2421
  "setting. Not every theme supports this feature."
2422
  msgstr ""
2423
 
2424
- #: dashboard/publisher/adrotate-groups-edit.php:214
2425
  msgid "Leave empty or 0 to skip this. Will default to group id."
2426
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
2427
 
2428
- #: dashboard/publisher/adrotate-groups-edit.php:218
2429
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2430
  msgstr ""
2431
 
2432
- #: dashboard/publisher/adrotate-groups-edit.php:221
2433
- msgid "Insert ads to the begin or end of a post/page."
2434
- msgstr ""
2435
-
2436
- #: dashboard/publisher/adrotate-groups-edit.php:224
2437
  msgid "Include ads in categories?"
2438
  msgstr "Uključiti oglase u kategorije?"
2439
 
2440
- #: dashboard/publisher/adrotate-groups-edit.php:228
2441
- #: dashboard/publisher/adrotate-groups-edit.php:269
2442
  #, fuzzy
2443
  msgid "Disabled"
2444
  msgstr "Onemogući odgovore"
2445
 
2446
- #: dashboard/publisher/adrotate-groups-edit.php:229
2447
- #: dashboard/publisher/adrotate-groups-edit.php:270
2448
  #, fuzzy
2449
  msgid "Before content"
2450
  msgstr "Pre objavljenog sadržaja"
2451
 
2452
- #: dashboard/publisher/adrotate-groups-edit.php:230
2453
- #: dashboard/publisher/adrotate-groups-edit.php:271
2454
  #, fuzzy
2455
  msgid "After content"
2456
  msgstr "Pre i posle sadržaju"
2457
 
2458
- #: dashboard/publisher/adrotate-groups-edit.php:231
2459
- #: dashboard/publisher/adrotate-groups-edit.php:272
2460
  #, fuzzy
2461
  msgid "Before and after content"
2462
  msgstr "Pre i posle sadržaju"
2463
 
2464
- #: dashboard/publisher/adrotate-groups-edit.php:232
2465
- #: dashboard/publisher/adrotate-groups-edit.php:273
2466
  #, fuzzy
2467
  msgid "After..."
2468
  msgstr "Posle oglasa"
2469
 
2470
- #: dashboard/publisher/adrotate-groups-edit.php:238
2471
- #: dashboard/publisher/adrotate-groups-edit.php:279
2472
  msgid "the first paragraph"
2473
  msgstr ""
2474
 
2475
- #: dashboard/publisher/adrotate-groups-edit.php:239
2476
- #: dashboard/publisher/adrotate-groups-edit.php:280
2477
  msgid "the 2nd paragraph"
2478
  msgstr ""
2479
 
2480
- #: dashboard/publisher/adrotate-groups-edit.php:240
2481
- #: dashboard/publisher/adrotate-groups-edit.php:281
2482
  msgid "the 3rd paragraph"
2483
  msgstr ""
2484
 
2485
- #: dashboard/publisher/adrotate-groups-edit.php:241
2486
- #: dashboard/publisher/adrotate-groups-edit.php:282
2487
  msgid "the 4th paragraph"
2488
  msgstr ""
2489
 
2490
- #: dashboard/publisher/adrotate-groups-edit.php:243
2491
- #: dashboard/publisher/adrotate-groups-edit.php:284
2492
  msgid "every 2nd paragraph"
2493
  msgstr ""
2494
 
2495
- #: dashboard/publisher/adrotate-groups-edit.php:244
2496
- #: dashboard/publisher/adrotate-groups-edit.php:285
2497
  msgid "every 3rd paragraph"
2498
  msgstr ""
2499
 
2500
- #: dashboard/publisher/adrotate-groups-edit.php:245
2501
- #: dashboard/publisher/adrotate-groups-edit.php:286
2502
  msgid "every 4th paragraph"
2503
  msgstr ""
2504
 
2505
- #: dashboard/publisher/adrotate-groups-edit.php:246
2506
- #: dashboard/publisher/adrotate-groups-edit.php:287
2507
  msgid "every 5th paragraph"
2508
  msgstr ""
2509
 
2510
- #: dashboard/publisher/adrotate-groups-edit.php:247
2511
- #: dashboard/publisher/adrotate-groups-edit.php:288
2512
  msgid "every 6th paragraph"
2513
  msgstr ""
2514
 
2515
- #: dashboard/publisher/adrotate-groups-edit.php:248
2516
- #: dashboard/publisher/adrotate-groups-edit.php:289
2517
  msgid "every 7th paragraph"
2518
  msgstr ""
2519
 
2520
- #: dashboard/publisher/adrotate-groups-edit.php:249
2521
- #: dashboard/publisher/adrotate-groups-edit.php:290
2522
  msgid "every 8th paragraph"
2523
  msgstr ""
2524
 
2525
- #: dashboard/publisher/adrotate-groups-edit.php:255
2526
  msgid "Which categories?"
2527
  msgstr "Koje kategorije?"
2528
 
2529
- #: dashboard/publisher/adrotate-groups-edit.php:260
2530
  msgid "Click the categories posts you want the adverts to show in."
2531
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
2532
 
2533
- #: dashboard/publisher/adrotate-groups-edit.php:265
2534
  msgid "Include ads in pages?"
2535
  msgstr "Uključite oglase na stranicama ?"
2536
 
2537
- #: dashboard/publisher/adrotate-groups-edit.php:296
2538
  msgid "Which pages?"
2539
  msgstr "Koje stranice ?"
2540
 
2541
- #: dashboard/publisher/adrotate-groups-edit.php:301
2542
  msgid "Click the pages you want the adverts to show in."
2543
  msgstr "Izaberite stranice koje želite da reklama pokaže"
2544
 
2545
- #: dashboard/publisher/adrotate-groups-edit.php:326
2546
  #, fuzzy
2547
  msgid "Wrapper code"
2548
  msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
2549
 
2550
- #: dashboard/publisher/adrotate-groups-edit.php:327
2551
- #, fuzzy
2552
- msgid "Wraps around each ad."
2553
- msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
2554
 
2555
- #: dashboard/publisher/adrotate-groups-edit.php:331
2556
  msgid "Before ad"
2557
  msgstr "Pre ad"
2558
 
2559
- #: dashboard/publisher/adrotate-groups-edit.php:336
2560
- msgid "HTML/JavaScript allowed, use with care!"
2561
- msgstr "HTML / JavaScript dozvoljeno , koristite pažljivo !"
2562
 
2563
- #: dashboard/publisher/adrotate-groups-edit.php:340
2564
  msgid "After ad"
2565
  msgstr "Posle oglasa"
2566
 
2567
- #: dashboard/publisher/adrotate-groups-edit.php:349
2568
  msgid "Select Ads"
2569
  msgstr "Izaberite oglase"
2570
 
2571
- #: dashboard/publisher/adrotate-groups-edit.php:358
2572
  msgid "Visible until"
2573
  msgstr "Vidljivo do"
2574
 
2575
- #: dashboard/publisher/adrotate-groups-edit.php:391
2576
  msgid "No ads created!"
2577
  msgstr "Nema oglasa stvorio!"
2578
 
@@ -2605,6 +2549,113 @@ msgstr "Grupa nije napravljena!"
2605
  msgid "Statistics for group"
2606
  msgstr "Sttistike za"
2607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2608
  #, fuzzy
2609
  #~ msgid "AdRotate Website."
2610
  #~ msgstr "AdRotate prodavnica"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
16
  "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:809
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:812
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-output.php:745
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
+ #: adrotate-output.php:746
32
  msgid ""
33
  "WordPress was unable to verify the authenticity of the url you have clicked. "
34
  "Verify if the url used is valid or log in via your browser."
37
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
38
  "pretraživača."
39
 
40
+ #: adrotate-output.php:747
41
  msgid ""
42
  "If you have received the url you want to visit via email, you are being "
43
  "tricked!"
44
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
45
 
46
+ #: adrotate-output.php:748
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
+ #: adrotate-output.php:766
51
  #, fuzzy
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
55
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
56
 
57
+ #: adrotate-output.php:768
58
  #, fuzzy
59
  msgid ""
60
  "Error, Ad is not available at this time due to schedule/geolocation "
61
  "restrictions!"
62
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
63
 
64
+ #: adrotate-output.php:775 adrotate-output.php:777
65
  msgid ""
66
  "Either there are no banners, they are disabled or none qualified for this "
67
  "location!"
68
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
69
 
70
+ #: adrotate-output.php:783
71
  msgid "Error, no Ad ID set! Check your syntax!"
72
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
73
 
74
+ #: adrotate-output.php:789
75
  #, fuzzy
76
  msgid "Error, no group ID set! Check your syntax!"
77
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
78
 
79
+ #: adrotate-output.php:794
80
  #, fuzzy
81
  msgid "Error, group does not exist! Check your syntax!"
82
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
83
 
84
+ #: adrotate-output.php:800
85
  msgid ""
86
  "There was an error locating the database tables for AdRotate. Please "
87
  "deactivate and re-activate AdRotate from the plugin page!!"
89
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
90
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
91
 
92
+ #: adrotate-output.php:800
93
  msgid "If this does not solve the issue please seek support at"
94
  msgstr "Ako ne reši problem potražite podršku na"
95
 
96
+ #: adrotate-output.php:806
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
+ #: adrotate-output.php:831
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
+ #: adrotate-output.php:831
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
+ #: adrotate-output.php:833
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
+ #: adrotate-output.php:833
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
+ #: adrotate-output.php:835
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
+ #: adrotate-output.php:835
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
+ #: adrotate-output.php:837
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
+ #: adrotate-output.php:837
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
+ #: adrotate-output.php:837
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
+ #: adrotate-output.php:837
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
+ #: adrotate-output.php:849
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
+ #: adrotate-output.php:850
146
  msgid ""
147
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
148
  "to the <strong>PRO</strong> version"
149
  msgstr ""
150
 
151
+ #: adrotate-output.php:850
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:850
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:894
160
  msgid ""
161
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
162
+ "this menu. Check out the"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:894
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
+ #: adrotate-output.php:894 adrotate-output.php:971
170
+ #: dashboard/publisher/adrotate-ads-edit.php:151
171
  msgid "and"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:894
175
  msgid "forums"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:930
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
+ #: adrotate-output.php:931
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:933
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
+ #: adrotate-output.php:934
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
+ #: adrotate-output.php:935
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
+ #: adrotate-output.php:936
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
+ #: adrotate-output.php:937
208
  msgid "WordPress.org Forum"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:963
212
  #, fuzzy
213
  msgid "Help AdRotate Grow"
214
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
215
 
216
+ #: adrotate-output.php:964
217
  msgid "Brought to you by"
218
  msgstr "Za tebe od"
219
 
220
+ #: adrotate-output.php:971
221
  msgid ""
222
  "A lot of users only think to review AdRotate when something goes wrong while "
223
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
224
  msgstr ""
225
 
226
+ #: adrotate-output.php:971
227
  msgid "If you find AdRotate useful please leave your honest"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:971
231
  msgid "rating"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:971
235
  #, fuzzy
236
  msgid "review"
237
  msgstr "Dajte ocenu i komentar"
238
 
239
+ #: adrotate-output.php:971
240
  msgid "on WordPress.org to help AdRotate grow in a positive way"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:974
244
  #, fuzzy
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
252
  "detalja !"
253
 
254
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
255
  msgid "Visit the"
256
  msgstr "Posetite"
257
 
258
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
259
  msgid "website"
260
  msgstr "websajt"
261
 
262
+ #: adrotate-output.php:1004
263
  msgid "Available in AdRotate Pro"
264
  msgstr "Dostupno u AdRotate Pro"
265
 
266
+ #: adrotate-output.php:1004
267
  #, fuzzy
268
  msgid "More information..."
269
  msgstr "Saznajte više"
270
 
271
+ #: adrotate-output.php:1005
272
  msgid "This feature is available in AdRotate Pro"
273
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
274
 
275
+ #: adrotate-output.php:1005
276
  msgid "Learn more"
277
  msgstr "Saznajte više"
278
 
279
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
280
+ #: dashboard/publisher/adrotate-ads-edit.php:245
281
  msgid "January"
282
  msgstr "Januar"
283
 
284
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
285
+ #: dashboard/publisher/adrotate-ads-edit.php:246
286
  msgid "February"
287
  msgstr "Februar"
288
 
289
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
290
+ #: dashboard/publisher/adrotate-ads-edit.php:247
291
  msgid "March"
292
  msgstr "Mart"
293
 
294
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
295
+ #: dashboard/publisher/adrotate-ads-edit.php:248
296
  msgid "April"
297
  msgstr "April"
298
 
299
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
300
+ #: dashboard/publisher/adrotate-ads-edit.php:249
301
  msgid "May"
302
  msgstr "Maj"
303
 
304
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
305
+ #: dashboard/publisher/adrotate-ads-edit.php:250
306
  msgid "June"
307
  msgstr "Jun"
308
 
309
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
310
+ #: dashboard/publisher/adrotate-ads-edit.php:251
311
  msgid "July"
312
  msgstr "Jul"
313
 
314
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
315
+ #: dashboard/publisher/adrotate-ads-edit.php:252
316
  msgid "August"
317
  msgstr "Avgust"
318
 
319
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
320
+ #: dashboard/publisher/adrotate-ads-edit.php:253
321
  msgid "September"
322
  msgstr "Septembar"
323
 
324
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
325
+ #: dashboard/publisher/adrotate-ads-edit.php:254
326
  msgid "October"
327
  msgstr "Oktobar"
328
 
329
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
330
+ #: dashboard/publisher/adrotate-ads-edit.php:255
331
  msgid "November"
332
  msgstr "Novembar"
333
 
334
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
335
+ #: dashboard/publisher/adrotate-ads-edit.php:256
336
  msgid "December"
337
  msgstr "Decembar"
338
 
386
  msgid "Choose what you want to use this widget for"
387
  msgstr "Izaberite za šta želite da koristite ovaj widget "
388
 
389
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
390
  msgid "ID:"
391
  msgstr "ID:"
392
 
394
  msgid "Fill in the ID of the type you want to display!"
395
  msgstr "Popunite ID tipa koji želite da prikažete!"
396
 
397
+ #: adrotate.php:107
398
  msgid "General Info"
399
  msgstr "Opšte informacije"
400
 
401
+ #: adrotate.php:108
402
  msgid "AdRotate Pro"
403
  msgstr "AdRotate Pro"
404
 
405
+ #: adrotate.php:109
406
  msgid "Manage Ads"
407
  msgstr "Upravljajte oglasima"
408
 
409
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
410
  msgid "Manage Groups"
411
  msgstr "Upravljajte grupama"
412
 
413
+ #: adrotate.php:111 adrotate.php:440
 
414
  #, fuzzy
415
  msgid "Manage Schedules"
416
  msgstr "Upravljati"
417
 
418
+ #: adrotate.php:112
419
  #, fuzzy
420
  msgid "Manage Media"
421
  msgstr "Media:"
422
 
423
+ #: adrotate.php:113
424
  msgid "Settings"
425
  msgstr "Postavke"
426
 
427
+ #: adrotate.php:136
428
  msgid "AdRotate Info"
429
  msgstr "AdRotate informacije"
430
 
431
+ #: adrotate.php:157
432
  #, fuzzy
433
  msgid "AdRotate Professional"
434
  msgstr "AdRotate promocije"
435
 
436
+ #: adrotate.php:200
437
  msgid "Ad Management"
438
  msgstr "Menadžment oglasa"
439
 
440
+ #: adrotate.php:203
441
  msgid "Ad created"
442
  msgstr "Stvaranje oglasa"
443
 
444
+ #: adrotate.php:205
445
  msgid "Ad updated"
446
  msgstr "Update oglasa"
447
 
448
+ #: adrotate.php:207
449
  msgid "Ad(s) deleted"
450
  msgstr "Izbrisani oglasu"
451
 
452
+ #: adrotate.php:209
453
  msgid "Ad(s) statistics reset"
454
  msgstr "Statistički resestovani oglasi"
455
 
456
+ #: adrotate.php:211
457
  msgid "Ad(s) renewed"
458
  msgstr "Ponovo obnovljeni oglasi"
459
 
460
+ #: adrotate.php:213
461
  msgid "Ad(s) deactivated"
462
  msgstr "Deaktivirani oglasi"
463
 
464
+ #: adrotate.php:215
465
  msgid "Ad(s) activated"
466
  msgstr "Aktivirani oglasi"
467
 
468
+ #: adrotate.php:217
469
  msgid ""
470
  "The ad was saved but has an issue which might prevent it from working "
471
  "properly. Review the yellow marked ad."
473
  "Oglas je sačuvan , ali ima taj problem što može da spreči da radi ispravno . "
474
  "Pregledajte žuto označeni oglas. "
475
 
476
+ #: adrotate.php:219
477
  #, fuzzy
478
  msgid "Export created"
479
  msgstr "Izlazne opcije za"
480
 
481
+ #: adrotate.php:223
482
  msgid "Action prohibited"
483
  msgstr "Zabranjeno delo"
484
 
485
+ #: adrotate.php:225 adrotate.php:373
486
  msgid "No data found in selected time period"
487
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
488
 
489
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
490
  msgid "Manage"
491
  msgstr "Upravljati"
492
 
493
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
494
  msgid "Add New"
495
  msgstr "Dodati novi"
496
 
497
+ #: adrotate.php:362
498
  msgid "Group Management"
499
  msgstr "Menadžment grupe"
500
 
501
+ #: adrotate.php:365
502
  msgid "Group created"
503
  msgstr "Stvorena grupa"
504
 
505
+ #: adrotate.php:367
506
  msgid "Group updated"
507
  msgstr "Updateovana grupa"
508
 
509
+ #: adrotate.php:369
510
  msgid "Group deleted"
511
  msgstr "Izbrisana grupa"
512
 
513
+ #: adrotate.php:371
514
  msgid "Group including it's Ads deleted"
515
  msgstr "Grupa koja podrazumeva obrisane oglase"
516
 
517
+ #: adrotate.php:431
518
  #, fuzzy
519
  msgid "Schedule Management available in AdRotate Pro"
520
  msgstr "Dostupno u AdRotate Pro"
521
 
522
+ #: adrotate.php:441
523
  #, fuzzy
524
  msgid ""
525
  "Schedule management and multiple schedules per advert is available in "
526
  "AdRotate Pro."
527
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
528
 
529
+ #: adrotate.php:441 adrotate.php:528
530
+ #: dashboard/publisher/adrotate-ads-edit.php:177
531
  #: dashboard/publisher/adrotate-ads-main.php:108
532
+ #: dashboard/publisher/adrotate-groups-edit.php:75
533
  #: dashboard/publisher/adrotate-groups-main.php:87
534
  #, fuzzy
535
  msgid "More information"
536
  msgstr "Saznajte više"
537
 
538
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
539
  #: dashboard/publisher/adrotate-ads-main-error.php:19
540
  #: dashboard/publisher/adrotate-ads-main.php:20
541
  #: dashboard/publisher/adrotate-groups-main.php:20
542
  msgid "Bulk Actions"
543
  msgstr "Delo bulk-ovanja"
544
 
545
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
546
  #: dashboard/publisher/adrotate-ads-main-error.php:29
547
  #: dashboard/publisher/adrotate-ads-main.php:30
548
  #: dashboard/publisher/adrotate-groups-main.php:24
549
  msgid "Go"
550
  msgstr "Kreni"
551
 
552
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
553
  #: dashboard/publisher/adrotate-ads-main-error.php:39
554
  #: dashboard/publisher/adrotate-ads-main.php:39
555
  #: dashboard/publisher/adrotate-groups-main.php:32
556
  msgid "ID"
557
  msgstr "ID"
558
 
559
+ #: adrotate.php:459
560
  #, fuzzy
561
  msgid "Start"
562
  msgstr "Početno vreme (hh:mm):"
563
 
564
+ #: adrotate.php:459
565
  #, fuzzy
566
  msgid "End"
567
  msgstr "Završno vreme (hh:mm):"
568
 
569
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
570
  #: dashboard/publisher/adrotate-groups-main.php:34
571
  msgid "Ads"
572
  msgstr "Oglasi"
573
 
574
+ #: adrotate.php:462
575
  #, fuzzy
576
  msgid "Max Clicks"
577
  msgstr "Klikovi"
578
 
579
+ #: adrotate.php:463
580
  #, fuzzy
581
  msgid "Max Impressions"
582
  msgstr "Utisci"
583
 
584
+ #: adrotate.php:493
585
  #, fuzzy
586
  msgid "No schedules created yet!"
587
  msgstr "Nijedan blok nije stvoren još uvek!"
588
 
589
+ #: adrotate.php:498
590
  #, fuzzy
591
  msgid "Easily manage your schedules from here with AdRotate Pro."
592
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
593
 
594
+ #: adrotate.php:498 adrotate.php:561
595
  #, fuzzy
596
  msgid "Upgrade today!"
597
  msgstr "Danas"
598
 
599
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
600
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
601
  msgid "Expires soon."
602
  msgstr "Ističe uskoro."
603
 
604
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
605
+ #: dashboard/publisher/adrotate-groups-edit.php:373
606
  msgid "Has expired."
607
  msgstr "Isteklo je."
608
 
609
+ #: adrotate.php:526
610
  #, fuzzy
611
  msgid "Media Management available in AdRotate Pro"
612
  msgstr "Dostupno u AdRotate Pro"
613
 
614
+ #: adrotate.php:528
615
  msgid ""
616
  "Upload images to the AdRotate Pro banners folder from here. This is "
617
  "especially useful if you use responsive adverts with multiple images."
618
  msgstr ""
619
 
620
+ #: adrotate.php:528
621
  #, fuzzy
622
  msgid "Media uploading and management is available in AdRotate Pro."
623
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
624
 
625
+ #: adrotate.php:530
626
  #, fuzzy
627
  msgid "Upload new banner image"
628
  msgstr "Slika banera:"
629
 
630
+ #: adrotate.php:531
631
  #, fuzzy
632
  msgid "Accepted files are:"
633
  msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
634
 
635
+ #: adrotate.php:531
636
  msgid "Maximum size is 512Kb."
637
  msgstr ""
638
 
639
+ #: adrotate.php:531
640
  msgid "Important:"
641
  msgstr ""
642
 
643
+ #: adrotate.php:531
644
  msgid ""
645
  "Make sure your file has no spaces or special characters in the name. Replace "
646
  "spaces with a - or _."
647
  msgstr ""
648
 
649
+ #: adrotate.php:533
650
  msgid ""
651
  "For responsive adverts make sure the filename is in the following format; "
652
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
653
  msgstr ""
654
 
655
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
656
  msgid ""
657
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
658
  "filename instead of \".full\" for the various viewports."
659
  msgstr ""
660
 
661
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
662
+ #: dashboard/publisher/adrotate-groups-edit.php:308
663
+ #: dashboard/publisher/adrotate-groups-edit.php:316
664
  msgid "Example:"
665
  msgstr "Primer"
666
 
667
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
668
  msgid ""
669
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
670
  "for different viewports."
671
  msgstr ""
672
 
673
+ #: adrotate.php:539
674
  #, fuzzy
675
  msgid "Upload image"
676
  msgstr "Slika banera:"
677
 
678
+ #: adrotate.php:542
679
  msgid "Available banner images in"
680
  msgstr ""
681
 
682
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
683
  msgid "Name"
684
  msgstr "Ime"
685
 
686
+ #: adrotate.php:548
687
  #, fuzzy
688
  msgid "Actions"
689
  msgstr "Delo bulk-ovanja"
690
 
691
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
692
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
693
  #: dashboard/publisher/adrotate-ads-main-error.php:21
694
  #: dashboard/publisher/adrotate-ads-main.php:22
695
  msgid "Delete"
696
  msgstr "Obrisati"
697
 
698
+ #: adrotate.php:561
699
  msgid ""
700
  "Make sure the banner images are not in use by adverts when you delete them!"
701
  msgstr ""
702
 
703
+ #: adrotate.php:561
704
  #, fuzzy
705
  msgid "Manage your banner folder from here with AdRotate Pro."
706
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
707
 
708
+ #: adrotate.php:605
709
  msgid "AdRotate Settings"
710
  msgstr "AdRotate postavke"
711
 
712
+ #: adrotate.php:608
713
  msgid "Settings saved"
714
  msgstr "Postavke sačuvane"
715
 
716
+ #: adrotate.php:610
717
  msgid "Database optimized"
718
  msgstr "Baza podataka optimizirana"
719
 
720
+ #: adrotate.php:612
721
  msgid "Database repaired"
722
  msgstr "Baza podataka popravljena"
723
 
724
+ #: adrotate.php:614
725
  msgid "Ads evaluated and statuses have been corrected where required"
726
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
727
 
728
+ #: adrotate.php:616
729
  msgid "Empty database records removed"
730
  msgstr "Prazni zapisi baze podataka uklanjaju"
731
 
732
+ #: adrotate.php:618
733
  msgid "Database can only be optimized or cleaned once every hour"
734
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
735
 
736
+ #: adrotate.php:626
737
  msgid "Access Rights"
738
  msgstr "Prava pristupa"
739
 
740
+ #: adrotate.php:627
741
  msgid "Who has access to what?"
742
  msgstr ""
743
 
744
+ #: adrotate.php:630
745
  msgid "Manage/Add/Edit adverts"
746
  msgstr "Upravljanje / Add / Edit reklame"
747
 
748
+ #: adrotate.php:634
749
  msgid "Role to see and add/edit ads."
750
  msgstr "Uloga videti i add / edit oglase ."
751
 
752
+ #: adrotate.php:638
753
  msgid "Delete/Reset adverts"
754
  msgstr "Brisanje / Reset reklame"
755
 
756
+ #: adrotate.php:642
757
  msgid "Role to delete ads and reset stats."
758
  msgstr "Uloga obrisati oglase i resetovanje ."
759
 
760
+ #: adrotate.php:646
761
  msgid "Manage/Add/Edit groups"
762
  msgstr "Upravljanje / Add / Edit grupama"
763
 
764
+ #: adrotate.php:650
765
  msgid "Role to see and add/edit groups."
766
  msgstr "Uloga videti i add / edit grupe ."
767
 
768
+ #: adrotate.php:654
769
  msgid "Delete groups"
770
  msgstr "Brisanje grupe"
771
 
772
+ #: adrotate.php:658
773
  msgid "Role to delete groups."
774
  msgstr "Uloga za brisanje grupe ."
775
 
776
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
777
+ #: adrotate.php:875
778
  msgid "Update Options"
779
  msgstr "Update opcije"
780
 
781
+ #: adrotate.php:690
782
  msgid "Statistics"
783
  msgstr "Statistike"
784
 
785
+ #: adrotate.php:693
786
  #, fuzzy
787
  msgid "Enable stats"
788
  msgstr "Statistika"
789
 
790
+ #: adrotate.php:695
791
  msgid "Track clicks and impressions."
792
  msgstr "Pratite klikove i prikaze ."
793
 
794
+ #: adrotate.php:695
795
  #, fuzzy
796
  msgid "Disabling this also disables click and impression limits on schedules."
797
  msgstr ""
798
  "Onemogućavanje ovoga takođe onemogućava klikovima i prikazima granice "
799
  "rasporede i onemogućava rokovima "
800
 
801
+ #: adrotate.php:699
802
  msgid "Impressions timer"
803
  msgstr "Utisci tajmer"
804
 
805
+ #: adrotate.php:701 adrotate.php:708
806
  msgid "Seconds."
807
  msgstr "Sekunde."
808
 
809
+ #: adrotate.php:702
810
  #, fuzzy
811
  msgid "Default: 60."
812
  msgstr "Default - Prikazati po jedan oglas"
813
 
814
+ #: adrotate.php:702
815
  #, fuzzy
816
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
817
  msgstr ""
818
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
819
 
820
+ #: adrotate.php:706
821
  #, fuzzy
822
  msgid "Clicks timer"
823
  msgstr "Utisci tajmer"
824
 
825
+ #: adrotate.php:709
826
  #, fuzzy
827
  msgid "Default: 86400."
828
  msgstr "Default - Prikazati po jedan oglas"
829
 
830
+ #: adrotate.php:709
831
  #, fuzzy
832
  msgid ""
833
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
834
  msgstr ""
835
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
836
 
837
+ #: adrotate.php:714
838
  #, fuzzy
839
  msgid "Bot filter"
840
  msgstr "User- agent filter"
841
 
842
+ #: adrotate.php:717
843
  msgid "User-Agent Filter"
844
  msgstr "User- agent filter"
845
 
846
+ #: adrotate.php:720
847
  msgid ""
848
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
849
  "prevent impressions and clicks counted on them."
851
  "Zarezom odvojena lista ključnih reči . Filter se botovi / popisivači / user-"
852
  "agent . Da biste sprečili prikaza i klikova na njih računati ."
853
 
854
+ #: adrotate.php:721
855
  #, fuzzy
856
  msgid ""
857
  "Keep in mind that this might give false positives. The word 'google' also "
861
  "na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
862
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
863
 
864
+ #: adrotate.php:721
865
  #, fuzzy
866
  msgid "Keep your list up-to-date"
867
  msgstr ""
868
  "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
869
  "ovu listu na minimum !"
870
 
871
+ #: adrotate.php:722
872
  #, fuzzy
873
  msgid ""
874
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
875
  "other characters are stripped out."
876
  msgstr "HTML će biti skinut."
877
 
878
+ #: adrotate.php:723
879
  msgid ""
880
  "Additionally to the list specified here, empty User-Agents are blocked as "
881
  "well."
883
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
884
  "dobro."
885
 
886
+ #: adrotate.php:723
887
  msgid "Learn more about"
888
  msgstr "Saznajte više o"
889
 
890
+ #: adrotate.php:723
891
  msgid "user-agents"
892
  msgstr "korisnici-agenti"
893
 
894
+ #: adrotate.php:732
895
  msgid "Miscellaneous"
896
  msgstr "Ostalo"
897
 
898
+ #: adrotate.php:735
899
  msgid "Widget alignment"
900
  msgstr "Widget alignment"
901
 
902
+ #: adrotate.php:736
903
  msgid ""
904
  "Check this box if your widgets do not align in your themes sidebar. (Does "
905
  "not always help!)"
907
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
908
  "uvek ! )"
909
 
910
+ #: adrotate.php:739
911
  #, fuzzy
912
  msgid "Widget padding"
913
  msgstr "Blokiraj punjenje"
914
 
915
+ #: adrotate.php:740
916
  #, fuzzy
917
  msgid ""
918
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
921
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
922
  "uvek ! )"
923
 
924
+ #: adrotate.php:745 adrotate.php:756
925
  #, fuzzy
926
  msgid "NOTICE:"
927
  msgstr ""
931
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
932
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
933
 
934
+ #: adrotate.php:746
935
  msgid ""
936
  "You have enabled W3 Total Caching support but not defined the security hash. "
937
  "You need to add the following line to your wp-config.php near the bottom or "
939
  "needs to be enabled in W3 Total Cache as well too."
940
  msgstr ""
941
 
942
+ #: adrotate.php:750
943
  msgid "W3 Total Caching"
944
  msgstr "W3 Total Caching"
945
 
946
+ #: adrotate.php:751
947
  msgid "Check this box if you use W3 Total Caching on your site."
948
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
949
 
950
+ #: adrotate.php:757
951
  msgid ""
952
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
953
  "this function will not work. WP Super Cache has discontinued support for "
954
  "dynamic content."
955
  msgstr ""
956
 
957
+ #: adrotate.php:761
958
  #, fuzzy
959
  msgid "WP Super Cache"
960
  msgstr ""
961
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
962
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
963
 
964
+ #: adrotate.php:762
965
  #, fuzzy
966
  msgid "Check this box if you use WP Super Cache on your site."
967
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
968
 
969
+ #: adrotate.php:767
970
  msgid ""
971
  "It may take a while for the ad to start rotating. The caching plugin needs "
972
  "to refresh the cache. This can take up to a week if not done manually."
974
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
975
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
976
 
977
+ #: adrotate.php:767
978
  msgid ""
979
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
980
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
982
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
983
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
984
 
985
+ #: adrotate.php:771
986
  msgid "Javascript"
987
  msgstr ""
988
 
989
+ #: adrotate.php:774
990
  #, fuzzy
991
  msgid "Load jQuery"
992
  msgstr ""
993
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
994
  "Default: 6."
995
 
996
+ #: adrotate.php:775
997
  #, fuzzy
998
  msgid ""
999
  "jQuery is required for all Javascript features below. Enable this if your "
1000
  "theme does not load jQuery already."
1001
  msgstr "Praćenje klikom:"
1002
 
1003
+ #: adrotate.php:778
1004
  #, fuzzy
1005
  msgid "Load in footer?"
1006
  msgstr ""
1007
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1008
  "Default: 6."
1009
 
1010
+ #: adrotate.php:779
1011
  #, fuzzy
1012
  msgid ""
1013
  "Enable if you want to load the above libraries in the footer. Your theme "
1018
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1019
  "detalja !"
1020
 
1021
+ #: adrotate.php:787
1022
  msgid "Maintenance"
1023
  msgstr "Održavanje"
1024
 
1025
+ #: adrotate.php:788
1026
  #, fuzzy
1027
  msgid ""
1028
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1037
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
1038
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
1039
 
1040
+ #: adrotate.php:803 adrotate.php:805
1041
  msgid "Optimize Database"
1042
  msgstr "Optimizacija baze podataka"
1043
 
1044
+ #: adrotate.php:805
1045
  msgid "You are about to optimize the AdRotate database."
1046
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
1047
 
1048
+ #: adrotate.php:805
1049
  msgid "Did you make a backup of your database?"
1050
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
1051
 
1052
+ #: adrotate.php:805
1053
  msgid ""
1054
  "This may take a moment and may cause your website to respond slow "
1055
  "temporarily!"
1057
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1058
  "sporo privremeno !"
1059
 
1060
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1061
  #: dashboard/publisher/adrotate-groups-main.php:24
1062
  msgid "OK to continue, CANCEL to stop."
1063
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1064
 
1065
+ #: adrotate.php:806
1066
  msgid "Cleans up overhead data in the AdRotate tables."
1067
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
1068
 
1069
+ #: adrotate.php:807
1070
  msgid ""
1071
  "Overhead data is accumulated garbage resulting from many changes you've "
1072
  "made. This can vary from nothing to hundreds of KiB of data."
1074
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
1075
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
1076
 
1077
+ #: adrotate.php:811 adrotate.php:813
1078
  msgid "Clean-up Database"
1079
  msgstr "Čišćenje baze"
1080
 
1081
+ #: adrotate.php:813
1082
  #, fuzzy
1083
  msgid ""
1084
  "You are about to clean up your database. This may delete expired schedules "
1085
  "and older statistics."
1086
  msgstr "Čišćenje baze"
1087
 
1088
+ #: adrotate.php:813
1089
  #, fuzzy
1090
  msgid "Are you sure you want to continue?"
1091
  msgstr "Popunite ID tipa koji želite da prikažete!"
1092
 
1093
+ #: adrotate.php:813 adrotate.php:821
1094
  #, fuzzy
1095
  msgid "This might take a while and may slow down your site during this action!"
1096
  msgstr ""
1097
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1098
  "sporo privremeno !"
1099
 
1100
+ #: adrotate.php:814
1101
  #, fuzzy
1102
  msgid "Delete stats older than 356 days (Optional)."
1103
  msgstr "Uloga obrisati oglase i resetovanje ."
1104
 
1105
+ #: adrotate.php:815
1106
  #, fuzzy
1107
  msgid ""
1108
  "AdRotate creates empty records when you start making ads or groups. In rare "
1109
  "occasions these records are faulty."
1110
  msgstr "Prazni zapisi baze podataka uklanjaju"
1111
 
1112
+ #: adrotate.php:815
1113
  #, fuzzy
1114
  msgid ""
1115
  "If you made an ad or group that does not save when you make it use this "
1116
  "button to delete those empty records."
1117
  msgstr "Vi ste na putu da izbrišete grupu"
1118
 
1119
+ #: adrotate.php:815
1120
  #, fuzzy
1121
  msgid ""
1122
  "Additionally you can clean up old statistics. This will improve the speed of "
1123
  "your site."
1124
  msgstr "Čišćenje baze"
1125
 
1126
+ #: adrotate.php:819
1127
  msgid "Re-evaluate Ads"
1128
  msgstr "Ponovo ocenjeni oglasi"
1129
 
1130
+ #: adrotate.php:821
1131
  msgid "Re-evaluate all ads"
1132
  msgstr "Ponovo ocenite sve oglase"
1133
 
1134
+ #: adrotate.php:821
1135
  msgid "You are about to check all ads for errors."
1136
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
1137
 
1138
+ #: adrotate.php:822
1139
  msgid ""
1140
  "This will apply all evaluation rules to all ads to see if any error slipped "
1141
  "in. Normally you should not need this feature."
1143
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
1144
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
1145
 
1146
+ #: adrotate.php:826
1147
  msgid ""
1148
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1149
  "becomes unusable in any way or by any means in whichever way I will not take "
1160
  "već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
1161
  "nijevažna stvar u svakom slučaju ."
1162
 
1163
+ #: adrotate.php:834
1164
  msgid "Troubleshooting"
1165
  msgstr "Rešavanje problema"
1166
 
1167
+ #: adrotate.php:837
1168
  msgid "Current version:"
1169
  msgstr "Trenutna verzija :"
1170
 
1171
+ #: adrotate.php:838
1172
  msgid "Previous version:"
1173
  msgstr "Prethodna verzija :"
1174
 
1175
+ #: adrotate.php:841
1176
  msgid "Current database version:"
1177
  msgstr "Trenutna verzija baze podataka :"
1178
 
1179
+ #: adrotate.php:842
1180
  msgid "Previous database version:"
1181
  msgstr "Prethodna verzija baze podataka :"
1182
 
1183
+ #: adrotate.php:845
1184
  #, fuzzy
1185
  msgid "Ad evaluation next run:"
1186
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1187
 
1188
+ #: adrotate.php:846 adrotate.php:850
1189
  msgid "Not scheduled!"
1190
  msgstr "Nije planirano:"
1191
 
1192
+ #: adrotate.php:849
1193
  msgid "Clean Trackerdata next run:"
1194
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1195
 
1196
+ #: adrotate.php:853
1197
  #, fuzzy
1198
  msgid "Current status of adverts"
1199
  msgstr "Trenutni raspored"
1200
 
1201
+ #: adrotate.php:854
1202
  #, fuzzy
1203
  msgid "Normal"
1204
  msgstr ""
1207
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1208
  "normalnu upotrebu oni treba da budu levo neprovereni "
1209
 
1210
+ #: adrotate.php:854
1211
  #, fuzzy
1212
  msgid "Error"
1213
  msgstr "Nepoznati error se ukazao."
1214
 
1215
+ #: adrotate.php:854
1216
  #, fuzzy
1217
  msgid "Expired"
1218
  msgstr "Isteklo je."
1219
 
1220
+ #: adrotate.php:854
1221
  #, fuzzy
1222
  msgid "Expires Soon"
1223
  msgstr "Ističe uskoro."
1224
 
1225
+ #: adrotate.php:854
1226
  #, fuzzy
1227
  msgid "Unknown Status"
1228
  msgstr "Nepoznati error se ukazao."
1229
 
1230
+ #: adrotate.php:857
1231
  msgid ""
1232
  "NOTE: The below options are not meant for normal use and are only there for "
1233
  "developers to review saved settings or how ads are selected. These can be "
1239
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1240
  "normalnu upotrebu oni treba da budu levo neprovereni "
1241
 
1242
+ #: adrotate.php:861
1243
  msgid "Developer Debug"
1244
  msgstr "Debug za programera"
1245
 
1246
+ #: adrotate.php:863
1247
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1248
  msgstr ""
1249
  "Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
1250
  "izlaza ."
1251
 
1252
+ #: adrotate.php:864
1253
  msgid "Show all settings, dashboard routines and related values."
1254
  msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
1255
 
1256
+ #: adrotate.php:865
1257
  msgid "Show array of all userroles and capabilities."
1258
  msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
1259
 
1260
+ #: adrotate.php:866
1261
  msgid "Review saved advertisers! Visible to advertisers."
1262
  msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
1263
 
1264
+ #: adrotate.php:867
1265
  #, fuzzy
1266
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1267
  msgstr ""
1268
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
1269
  "samo izdavačima ."
1270
 
1271
+ #: adrotate.php:868
1272
  #, fuzzy
1273
  msgid ""
1274
  "Disable timers for clicks and impressions and enable a alert window for "
1275
  "clicktracking."
1276
  msgstr "Pratite klikove i prikaze ."
1277
 
1278
+ #: adrotate.php:869
1279
  msgid "Temporarily disable encryption on the redirect url."
1280
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
1281
 
1508
  msgstr "AdCode ne može biti prazan !"
1509
 
1510
  #: dashboard/publisher/adrotate-ads-edit.php:49
1511
+ msgid "You did not use %image% in your AdCode but did select an image!"
1512
+ msgstr ""
1513
 
1514
  #: dashboard/publisher/adrotate-ads-edit.php:52
1515
  msgid "You did use %image% in your AdCode but did not select an image!"
1524
  "ponovo sačuvajte oglas !"
1525
 
1526
  #: dashboard/publisher/adrotate-ads-edit.php:58
1527
+ msgid ""
1528
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1529
+ "ineffective."
1530
+ msgstr ""
1531
+
1532
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1533
+ msgid ""
1534
+ "Your chosen banner image does not have the right name. Check the responsive "
1535
+ "description and try again."
1536
+ msgstr ""
1537
+
1538
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1539
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1540
  msgstr ""
1541
 
1542
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1543
  msgid ""
1544
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1545
  "the ad!"
1547
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
1548
  "ponovo čuvanja oglas !"
1549
 
1550
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1551
  msgid "This ad is expired and currently not shown on your website!"
1552
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1553
 
1554
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1555
  msgid "The ad will expire in less than 2 days!"
1556
  msgstr "Oglas ističe za manje od 2 dana !"
1557
 
1558
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1559
  msgid "This ad will expire in less than 7 days!"
1560
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
1561
 
1562
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1563
  msgid "This ad has been disabled and does not rotate on your site!"
1564
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
1565
 
1566
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1567
  #, fuzzy
1568
  msgid "New Advert"
1569
  msgstr ""
1570
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1571
  "Default: 6."
1572
 
1573
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1574
  #, fuzzy
1575
  msgid "Edit Advert"
1576
  msgstr "Edituj"
1577
 
1578
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
 
1579
  msgid "Title:"
1580
  msgstr "Naslov :"
1581
 
1582
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1583
  msgid "AdCode:"
1584
  msgstr "AdCode:"
1585
 
1586
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1587
+ msgid "Basic Examples:"
1588
+ msgstr "Osnovni Primeri :"
1589
+
1590
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1591
+ msgid "Useful tags:"
1592
+ msgstr ""
1593
+
1594
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1595
+ msgid "Insert the advert ID Number."
1596
+ msgstr ""
1597
+
1598
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1599
+ msgid "Insert the %image% tag. Required when selecting a image below."
1600
+ msgstr ""
1601
+
1602
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1603
+ msgid "Insert the advert name."
1604
+ msgstr ""
1605
+
1606
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1607
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1608
+ msgstr ""
1609
+
1610
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1611
+ msgid "Add inside the <a> tag to open advert in a new window."
1612
+ msgstr ""
1613
+
1614
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1615
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1616
+ msgstr ""
1617
+
1618
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1619
  msgid ""
1620
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1621
+ "click to add it."
1622
  msgstr ""
1623
 
1624
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1625
+ msgid "Banner image:"
1626
+ msgstr "Slika banera:"
1627
+
1628
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1629
+ msgid "WordPress media:"
1630
  msgstr ""
1631
 
1632
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1633
+ #, fuzzy
1634
+ msgid "Select Banner"
1635
+ msgstr "Baner Folder"
1636
 
1637
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1638
+ msgid "- OR -"
1639
+ msgstr "- ILI -"
1640
+
1641
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1642
+ msgid "Banner folder:"
1643
+ msgstr "Folder banera:"
1644
+
1645
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1646
+ msgid "No image selected"
1647
+ msgstr "Nijedna slika nije izabrana"
1648
+
1649
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1650
+ msgid "Use %image% in the code. Accepted files are:"
1651
+ msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
1652
+
1653
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1654
+ msgid ""
1655
+ "Use either the text field or the dropdown. If the textfield has content that "
1656
+ "field has priority."
1657
+ msgstr ""
1658
+ "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1659
+ "polje ima prioritet ."
1660
+
1661
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1662
+ msgid "Clicktracking:"
1663
+ msgstr "Praćenje klikom:"
1664
 
1665
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1666
  #, fuzzy
1667
+ msgid "Enable click tracking for this advert."
1668
+ msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
1669
+
1670
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1671
  msgid ""
1672
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1673
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1674
+ "supported."
1675
+ msgstr ""
1676
 
1677
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1678
  msgid "Activate:"
1679
  msgstr "Aktiviranje :"
1680
 
1681
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1682
  msgid "Yes, this ad will be used"
1683
  msgstr "Da , ovaj oglas će se koristiti"
1684
 
1685
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1686
  msgid "No, do not show this ad anywhere"
1687
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1688
 
1689
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1690
  #: dashboard/publisher/adrotate-ads-main.php:108
1691
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1692
  #: dashboard/publisher/adrotate-groups-main.php:87
1693
  #, fuzzy
1694
  msgid "Get more features with AdRotate Pro."
1695
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1696
 
1697
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1698
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1699
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1700
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1701
  msgid "Save Advert"
1702
  msgstr "Sačuvaj oglas"
1703
 
1704
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1705
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1706
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1707
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1708
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1709
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1710
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1711
  msgid "Cancel"
1712
  msgstr "Ukini"
1713
 
1714
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1715
  msgid "Preview"
1716
  msgstr "Pregled"
1717
 
1718
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1719
  msgid ""
1720
  "Note: While this preview is an accurate one, it might look different then it "
1721
  "does on the website."
1723
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1724
  "drugačije onda to čini na sajtu ."
1725
 
1726
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1727
  msgid ""
1728
  "This is because of CSS differences. Your themes CSS file is not active here!"
1729
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1730
 
1731
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1732
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1733
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1734
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1735
  msgid "Usage"
1736
  msgstr "upotreba"
1737
 
1738
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1739
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1740
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1741
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1742
+ msgid "Widget:"
1743
+ msgstr ""
1744
+
1745
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1746
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1747
  msgid ""
1748
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1749
+ "and enter ID"
1750
+ msgstr ""
1751
 
1752
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1753
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1754
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1755
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1756
  msgid "In a post or page:"
1757
  msgstr "U post ili stranicu:"
1758
 
1759
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1760
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1761
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1762
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1763
  msgid "Directly in a theme:"
1764
  msgstr "Direktno na temu :"
1765
 
1766
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1767
+ msgid "Schedule your advert"
 
1768
  msgstr ""
1769
 
1770
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1771
+ msgid "Start date (day/month/year):"
1772
+ msgstr "Datum početka (dan/mesec/godina):"
 
1773
 
1774
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1775
+ msgid "End date (day/month/year):"
1776
+ msgstr "Datum završetka (dan/mesec/godina)"
1777
 
1778
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1779
+ msgid "Start time (hh:mm):"
1780
+ msgstr "Početno vreme (hh:mm):"
 
1781
 
1782
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1783
+ msgid "End time (hh:mm):"
1784
+ msgstr "Završno vreme (hh:mm):"
 
 
1785
 
1786
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1787
+ msgid "Maximum Clicks:"
1788
+ msgstr "Maksimum klikovi:"
1789
+
1790
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1791
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1792
+ msgid "Leave empty or 0 to skip this."
1793
+ msgstr "Ostavite prazno ili 0 da preskoči ovo."
1794
 
1795
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1796
+ msgid "Maximum Impressions:"
1797
+ msgstr "Maksimalni utisci:"
1798
+
1799
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1800
+ msgid ""
1801
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1802
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1803
+ "hours. 6AM is 6:00 hours."
1804
  msgstr ""
1805
+ "Sat koristi 24 -časovni sat . Kada se koristi za AM / PM sistem imajte ovo "
1806
+ "na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
1807
+ "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
1808
 
1809
+ #: dashboard/publisher/adrotate-ads-edit.php:288
 
1810
  msgid ""
1811
+ "The maximum clicks and impressions are measured over the set schedule only. "
1812
+ "Every schedule can have it's own limit!"
1813
  msgstr ""
1814
+ "Maksimalne klikovi i prikazi praćeni tokom postavljenom rasporedu samo . "
1815
+ "Svaki raspored može da ima svoju granicu !"
 
1816
 
1817
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1818
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
1819
  msgstr ""
1820
 
1821
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1822
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1823
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1824
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1825
  #, fuzzy
1826
+ msgid "Upgrade today"
1827
+ msgstr "Danas"
1828
 
1829
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1830
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1831
+ msgid "Advanced"
 
 
 
 
 
 
 
 
1832
  msgstr ""
1833
 
1834
+ #: dashboard/publisher/adrotate-ads-edit.php:300
 
 
 
 
 
 
 
 
1835
  #, fuzzy
1836
+ msgid "Everything below is optional."
1837
+ msgstr "Naslov (opcionalno):"
 
 
 
 
 
 
 
 
1838
 
1839
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1840
+ msgid "Responsive:"
1841
+ msgstr ""
1842
 
1843
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1844
+ #, fuzzy
1845
+ msgid "Enable responsive support for this advert."
1846
+ msgstr "Oglasi"
1847
 
1848
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1849
  msgid ""
1850
+ "Upload your images to the banner folder and make sure the filename is in the "
1851
+ "following format; \"imagename.full.ext\". A full set of sized images is "
1852
+ "strongly recommended."
1853
  msgstr ""
 
 
1854
 
1855
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1856
  msgid "Weight:"
1857
  msgstr "Težina:"
1858
 
1859
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1860
  #, fuzzy
1861
  msgid "AdRotate Pro only"
1862
  msgstr "AdRotate Pro"
1863
 
1864
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1865
  #, fuzzy
1866
  msgid "Barely visible"
1867
  msgstr "Vidljivo do"
1868
 
1869
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1870
  #, fuzzy
1871
  msgid "Less than average"
1872
  msgstr "Oglas ističe za manje od 2 dana !"
1873
 
1874
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1875
  #, fuzzy
1876
  msgid "Normal coverage"
1877
  msgstr ""
1880
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1881
  "normalnu upotrebu oni treba da budu levo neprovereni "
1882
 
1883
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1884
  #, fuzzy
1885
  msgid "More than average"
1886
  msgstr "Saznajte više"
1887
 
1888
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1889
  #, fuzzy
1890
  msgid "Best visibility"
1891
  msgstr "Vidljivo do"
1892
 
1893
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1894
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1895
  msgid "Sortorder:"
1896
  msgstr "Poredak:"
1897
 
1898
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1899
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1900
  msgid "For administrative purposes set a sortorder."
1901
  msgstr "Za administrativne svrhe postavili sortorder ."
1902
 
1903
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1904
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1905
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1906
 
1907
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1908
  msgid ""
1909
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1910
+ "exposure."
1911
  msgstr ""
1912
 
1913
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1914
+ msgid "Geo Targeting in AdRotate Pro"
1915
+ msgstr ""
 
 
 
 
 
 
 
 
 
1916
 
1917
+ #: dashboard/publisher/adrotate-ads-edit.php:335
 
1918
  msgid ""
1919
+ "Assign the advert to a group and enable that group to use Geo Targeting."
1920
+ msgstr ""
 
1921
 
1922
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1923
  #, fuzzy
1924
  msgid "Cities/States:"
1925
  msgstr "Gradovi:"
1926
 
1927
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1928
+ msgid ""
1929
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1930
+ "states ISO codes are supported)"
 
 
 
 
1931
  msgstr ""
1932
 
1933
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1934
  msgid ""
1935
  "AdRotate does not check the validity of names so make sure you spell them "
1936
  "correctly!"
1937
  msgstr ""
1938
 
1939
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1940
  #, fuzzy
1941
  msgid "Countries:"
1942
  msgstr "Zemlje:"
1943
 
1944
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1945
  #, fuzzy
1946
  msgid "Select the countries you want the adverts to show in."
1947
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1948
 
1949
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1950
  msgid "Cities take priority and will be filtered first."
1951
  msgstr ""
1952
 
1953
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1954
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1955
  msgstr ""
1956
 
1957
+ #: dashboard/publisher/adrotate-ads-edit.php:400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1958
  msgid "Select Groups"
1959
  msgstr "Izbor grupe"
1960
 
1961
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
 
1962
  #, fuzzy
1963
  msgid "ID - Name"
1964
  msgstr "Ime"
1965
 
1966
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1967
  #, fuzzy
1968
  msgid "Ads in group"
1969
  msgstr "Gupni oglasi - Koristite grupni ID"
1970
 
1971
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1972
  #: dashboard/publisher/adrotate-groups-main.php:58
1973
  #, fuzzy
1974
  msgid "Default"
1975
  msgstr "Default - Prikazati po jedan oglas"
1976
 
1977
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1978
  #: dashboard/publisher/adrotate-groups-main.php:59
1979
  #, fuzzy
1980
  msgid "Dynamic"
1981
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1982
 
1983
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1984
  #: dashboard/publisher/adrotate-groups-main.php:59
1985
  #, fuzzy
1986
  msgid "second rotation"
1987
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1988
 
1989
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1990
  #: dashboard/publisher/adrotate-groups-main.php:60
1991
  #, fuzzy
1992
  msgid "Block"
1993
  msgstr "Menadžmet blokiranih"
1994
 
1995
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1996
  #: dashboard/publisher/adrotate-groups-main.php:60
1997
  #, fuzzy
1998
  msgid "grid"
1999
  msgstr ""
2000
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
2001
 
2002
+ #: dashboard/publisher/adrotate-ads-edit.php:418
2003
+ #: dashboard/publisher/adrotate-groups-edit.php:192
2004
  #: dashboard/publisher/adrotate-groups-main.php:61
2005
  #, fuzzy
2006
  msgid "Post Injection"
2007
  msgstr "U post ili stranicu:"
2008
 
2009
+ #: dashboard/publisher/adrotate-ads-edit.php:419
2010
  #: dashboard/publisher/adrotate-groups-main.php:62
2011
  #, fuzzy
2012
  msgid "Geolocation"
2013
  msgstr "GeoLocation"
2014
 
2015
+ #: dashboard/publisher/adrotate-ads-edit.php:425
2016
+ #: dashboard/publisher/adrotate-groups-edit.php:61
2017
  #: dashboard/publisher/adrotate-groups-main.php:69
2018
  msgid "Mode"
2019
  msgstr "Mod"
2048
  msgid "Title"
2049
  msgstr "Naslov"
2050
 
2051
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2052
+ #: dashboard/publisher/adrotate-ads-report.php:34
2053
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2054
+ #: dashboard/publisher/adrotate-groups-main.php:35
2055
+ #: dashboard/publisher/adrotate-groups-report.php:40
2056
+ msgid "Impressions"
2057
+ msgstr "Utisci"
2058
+
2059
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2060
+ #: dashboard/publisher/adrotate-ads-main.php:45
2061
+ #: dashboard/publisher/adrotate-ads-report.php:35
2062
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2063
+ #: dashboard/publisher/adrotate-groups-main.php:37
2064
+ #: dashboard/publisher/adrotate-groups-report.php:41
2065
+ msgid "Clicks"
2066
+ msgstr "Klikovi"
2067
+
2068
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2069
  #: dashboard/publisher/adrotate-ads-main.php:47
2070
  #: dashboard/publisher/adrotate-ads-report.php:38
2126
  msgstr "Za 7 dana"
2127
 
2128
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2129
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2130
  msgid "Configuration errors."
2131
  msgstr "Konfiguracione greške."
2132
 
2140
  msgstr "Izlazne opcije za"
2141
 
2142
  #: dashboard/publisher/adrotate-ads-main.php:42
2143
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2144
  msgid "Weight"
2145
  msgstr "Težina"
2146
 
2208
  msgid "Edit Group"
2209
  msgstr "Edituj grupu"
2210
 
2211
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2212
  msgid "Name:"
2213
  msgstr "Ime:"
2214
 
2215
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2216
  msgid "Default - Show one ad at a time"
2217
  msgstr "Default - Prikazati po jedan oglas"
2218
 
2219
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2220
  msgid "Dynamic Mode - Show a different ad every few seconds"
2221
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
2222
 
2223
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2224
  msgid "Block Mode - Show a block of ads"
2225
  msgstr "Blok mod - Prikaži blokove oglasa"
2226
 
2227
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2228
  #, fuzzy
2229
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2230
  msgstr "AdRotate postavke"
2231
 
2232
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2233
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2234
  #, fuzzy
2235
  msgid "Dynamic and Block Mode"
2236
  msgstr "Blok mod - Prikaži blokove oglasa"
2237
 
2238
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2239
  #, fuzzy
2240
  msgid "Only required if your group is in Dynamic or Block mode."
2241
  msgstr "Blok mod - Prikaži blokove oglasa"
2242
 
2243
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2244
+ msgid "Block size"
2245
+ msgstr ""
 
2246
 
2247
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2248
  msgid "rows"
2249
  msgstr "redovi"
2250
 
2251
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2252
  msgid "columns"
2253
  msgstr "kolone"
2254
 
2255
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2256
  #, fuzzy
2257
  msgid "Block Mode"
2258
  msgstr "Blok mod - Prikaži blokove oglasa"
2259
 
2260
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2261
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
 
2262
  msgstr ""
 
 
2263
 
2264
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2265
+ msgid "Advert size"
2266
+ msgstr ""
 
2267
 
2268
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2269
  msgid "pixel(s) wide"
2270
  msgstr "širina piksela"
2271
 
2272
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2273
  msgid "pixel(s) high."
2274
  msgstr "visina piksela"
2275
 
2276
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2277
  #, fuzzy
2278
  msgid ""
2279
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2282
  "Definišite maksimalnu veličinu oglasa u pikselima minus margine . Veličina "
2283
  "može biti 'auto' ( ne preporučuje se) . Default: 125/125."
2284
 
2285
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2286
  #, fuzzy
2287
  msgid "Automated refresh"
2288
  msgstr ""
2289
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2290
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2291
 
2292
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2293
  msgid "seconds."
2294
  msgstr "sekundi."
2295
 
2296
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2297
  #, fuzzy
2298
  msgid "Dynamic Mode"
2299
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
2300
 
2301
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2302
  msgid ""
2303
  "Load a new advert in this interval without reloading the page. Default: 6."
2304
  msgstr ""
2305
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
2306
  "Default: 6."
2307
 
2308
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2309
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2310
+ msgid ""
2311
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2312
+ "\" and enter ID"
2313
+ msgstr ""
2314
+
2315
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2316
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2317
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2318
  #, fuzzy
2319
  msgid "Save Group"
2320
  msgstr "Sačuvati"
2321
 
2322
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2323
  msgid "Advert Margin"
2324
  msgstr "Margina oglasa"
2325
 
2326
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2327
  msgid "pixel(s)"
2328
  msgstr "pikseli"
2329
 
2330
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2331
  #, fuzzy
2332
  msgid "A transparent area outside the advert in pixels. Default: 0."
2333
  msgstr "Nevidljiva granica van oglasa u pikselima. (Default: 1)"
2334
 
2335
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2336
  #, fuzzy
2337
  msgid "Set to 0 to disable."
2338
  msgstr "Default:10 . Podesite na 0 da isključite ovaj tajmer ."
2339
 
2340
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2341
+ msgid "Margins are automatically disabled for blocks where required."
2342
+ msgstr ""
2343
+
2344
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2345
  #, fuzzy
2346
  msgid "Align the group"
2347
  msgstr "Gupni oglasi - Koristite grupni ID"
2348
 
2349
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2350
  #, fuzzy
2351
  msgid "None (Default)"
2352
  msgstr "Default - Prikazati po jedan oglas"
2353
 
2354
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2355
  msgid "Left"
2356
  msgstr ""
2357
 
2358
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2359
  #, fuzzy
2360
  msgid "Right"
2361
  msgstr "Težina"
2362
 
2363
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2364
  msgid "Center"
2365
  msgstr ""
2366
 
2367
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2368
  msgid ""
2369
  "Align the group in your post or page. Using 'center' may affect your margin "
2370
  "setting. Not every theme supports this feature."
2371
  msgstr ""
2372
 
2373
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2374
  msgid "Leave empty or 0 to skip this. Will default to group id."
2375
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
2376
 
2377
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2378
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2379
  msgstr ""
2380
 
2381
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2382
  msgid "Include ads in categories?"
2383
  msgstr "Uključiti oglase u kategorije?"
2384
 
2385
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2386
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2387
  #, fuzzy
2388
  msgid "Disabled"
2389
  msgstr "Onemogući odgovore"
2390
 
2391
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2392
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2393
  #, fuzzy
2394
  msgid "Before content"
2395
  msgstr "Pre objavljenog sadržaja"
2396
 
2397
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2398
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2399
  #, fuzzy
2400
  msgid "After content"
2401
  msgstr "Pre i posle sadržaju"
2402
 
2403
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2404
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2405
  #, fuzzy
2406
  msgid "Before and after content"
2407
  msgstr "Pre i posle sadržaju"
2408
 
2409
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2410
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2411
  #, fuzzy
2412
  msgid "After..."
2413
  msgstr "Posle oglasa"
2414
 
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2416
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2417
  msgid "the first paragraph"
2418
  msgstr ""
2419
 
2420
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2421
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2422
  msgid "the 2nd paragraph"
2423
  msgstr ""
2424
 
2425
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2426
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2427
  msgid "the 3rd paragraph"
2428
  msgstr ""
2429
 
2430
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2431
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2432
  msgid "the 4th paragraph"
2433
  msgstr ""
2434
 
2435
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2436
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2437
  msgid "every 2nd paragraph"
2438
  msgstr ""
2439
 
2440
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2441
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2442
  msgid "every 3rd paragraph"
2443
  msgstr ""
2444
 
2445
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2446
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2447
  msgid "every 4th paragraph"
2448
  msgstr ""
2449
 
2450
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2451
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2452
  msgid "every 5th paragraph"
2453
  msgstr ""
2454
 
2455
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2456
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2457
  msgid "every 6th paragraph"
2458
  msgstr ""
2459
 
2460
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2461
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2462
  msgid "every 7th paragraph"
2463
  msgstr ""
2464
 
2465
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2466
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2467
  msgid "every 8th paragraph"
2468
  msgstr ""
2469
 
2470
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2471
  msgid "Which categories?"
2472
  msgstr "Koje kategorije?"
2473
 
2474
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2475
  msgid "Click the categories posts you want the adverts to show in."
2476
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
2477
 
2478
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2479
  msgid "Include ads in pages?"
2480
  msgstr "Uključite oglase na stranicama ?"
2481
 
2482
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2483
  msgid "Which pages?"
2484
  msgstr "Koje stranice ?"
2485
 
2486
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2487
  msgid "Click the pages you want the adverts to show in."
2488
  msgstr "Izaberite stranice koje želite da reklama pokaže"
2489
 
2490
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2491
  #, fuzzy
2492
  msgid "Wrapper code"
2493
  msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
2494
 
2495
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2496
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2497
+ msgstr ""
 
2498
 
2499
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2500
  msgid "Before ad"
2501
  msgstr "Pre ad"
2502
 
2503
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2504
+ msgid "Options:"
2505
+ msgstr "Opcije :"
2506
 
2507
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2508
  msgid "After ad"
2509
  msgstr "Posle oglasa"
2510
 
2511
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2512
  msgid "Select Ads"
2513
  msgstr "Izaberite oglase"
2514
 
2515
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2516
  msgid "Visible until"
2517
  msgstr "Vidljivo do"
2518
 
2519
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2520
  msgid "No ads created!"
2521
  msgstr "Nema oglasa stvorio!"
2522
 
2549
  msgid "Statistics for group"
2550
  msgstr "Sttistike za"
2551
 
2552
+ #, fuzzy
2553
+ #~ msgid "Usage:"
2554
+ #~ msgstr "upotreba"
2555
+
2556
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2557
+ #~ msgstr "Niste koristili %image% AdCode ali ste izaberali neku sliku !"
2558
+
2559
+ #, fuzzy
2560
+ #~ msgid "These are required."
2561
+ #~ msgstr ""
2562
+ #~ "Blok oblik i granicu (Obavezno ) - Definišite oblik i veličinu bloka"
2563
+
2564
+ #, fuzzy
2565
+ #~ msgid ""
2566
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2567
+ #~ "AdCode."
2568
+ #~ msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
2569
+
2570
+ #, fuzzy
2571
+ #~ msgid ""
2572
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2573
+ #~ "where you want the advert to show up."
2574
+ #~ msgstr "U post ili stranicu:"
2575
+
2576
+ #, fuzzy
2577
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2578
+ #~ msgstr ""
2579
+ #~ "Niste koristili %link% u AdCode ali ste aktivirali praćenje klikom!"
2580
+
2581
+ #, fuzzy
2582
+ #~ msgid ""
2583
+ #~ "This field is no longer required. You can place the URL directly in the "
2584
+ #~ "adcode (above) instead of %link%."
2585
+ #~ msgstr ""
2586
+ #~ "WordPress nije bio u mogućnosti da verifikuje autentičnost url-a na koji "
2587
+ #~ "ste kliknuli. Verifikuj ak je url korišćen kao validan ili login via "
2588
+ #~ "vašeg pretraživača."
2589
+
2590
+ #~ msgid "Media:"
2591
+ #~ msgstr "Media:"
2592
+
2593
+ #, fuzzy
2594
+ #~ msgid "Geo Location in AdRotate Pro"
2595
+ #~ msgstr "AdRotate Pro"
2596
+
2597
+ #, fuzzy
2598
+ #~ msgid ""
2599
+ #~ "This works if you assign the advert to a group and enable that group to "
2600
+ #~ "use Geo Targeting."
2601
+ #~ msgstr "Gupni oglasi - Koristite grupni ID"
2602
+
2603
+ #, fuzzy
2604
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2605
+ #~ msgstr "Targetirajte gradove i zemlje sa GeoLocation."
2606
+
2607
+ #, fuzzy
2608
+ #~ msgid "Schedule"
2609
+ #~ msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
2610
+
2611
+ #, fuzzy
2612
+ #~ msgid "From when to when is the advert visible?"
2613
+ #~ msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
2614
+
2615
+ #, fuzzy
2616
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2617
+ #~ msgstr "Dostupno u AdRotate Pro"
2618
+
2619
+ #, fuzzy
2620
+ #~ msgid "From / Until"
2621
+ #~ msgstr "Vidljivo do"
2622
+
2623
+ #, fuzzy
2624
+ #~ msgid "impressions per day"
2625
+ #~ msgstr "Utisci"
2626
+
2627
+ #, fuzzy
2628
+ #~ msgid "In use by this advert."
2629
+ #~ msgstr "Granica oglasa"
2630
+
2631
+ #, fuzzy
2632
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2633
+ #~ msgstr "aktivni ad-ovi su istekli."
2634
+
2635
+ #, fuzzy
2636
+ #~ msgid "Block shape and border"
2637
+ #~ msgstr ""
2638
+ #~ "Blok oblik i granicu (Obavezno ) - Definišite oblik i veličinu bloka"
2639
+
2640
+ #, fuzzy
2641
+ #~ msgid ""
2642
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2643
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2644
+ #~ msgstr ""
2645
+ #~ "Napravite mrežu za oglase . Popunjavanje 3 i 2 čini mrežu sa 2 kolone "
2646
+ #~ "pokazuju maksimalno 6 oglasa. Default: 2x2."
2647
+
2648
+ #, fuzzy
2649
+ #~ msgid "Advert Width and Height"
2650
+ #~ msgstr "Širina i visina"
2651
+
2652
+ #, fuzzy
2653
+ #~ msgid "Wraps around each ad."
2654
+ #~ msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
2655
+
2656
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2657
+ #~ msgstr "HTML / JavaScript dozvoljeno , koristite pažljivo !"
2658
+
2659
  #, fuzzy
2660
  #~ msgid "AdRotate Website."
2661
  #~ msgstr "AdRotate prodavnica"
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-04-02 01:51+0100\n"
6
- "PO-Revision-Date: 2015-04-02 01:51+0100\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"
@@ -17,19 +17,19 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
- #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
- #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
- #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
@@ -38,18 +38,18 @@ msgstr ""
38
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
39
  "via webbläsaren."
40
 
41
- #: adrotate-output.php:749
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr ""
46
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
47
 
48
- #: adrotate-output.php:750
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
- #: adrotate-output.php:768
53
  msgid ""
54
  "Error, Ad is not available at this time due to schedule/geolocation "
55
  "restrictions or does not exist!"
@@ -57,7 +57,7 @@ msgstr ""
57
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
58
  "geolokalisering restriktioner eller finns inte!"
59
 
60
- #: adrotate-output.php:770
61
  msgid ""
62
  "Error, Ad is not available at this time due to schedule/geolocation "
63
  "restrictions!"
@@ -65,7 +65,7 @@ msgstr ""
65
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
66
  "geolokalisering begränsningar!"
67
 
68
- #: adrotate-output.php:777 adrotate-output.php:779
69
  msgid ""
70
  "Either there are no banners, they are disabled or none qualified for this "
71
  "location!"
@@ -73,19 +73,19 @@ msgstr ""
73
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
74
  "kvalificerade för den här platsen!"
75
 
76
- #: adrotate-output.php:785
77
  msgid "Error, no Ad ID set! Check your syntax!"
78
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
79
 
80
- #: adrotate-output.php:791
81
  msgid "Error, no group ID set! Check your syntax!"
82
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
83
 
84
- #: adrotate-output.php:796
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
- #: adrotate-output.php:802
89
  msgid ""
90
  "There was an error locating the database tables for AdRotate. Please "
91
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -93,159 +93,159 @@ msgstr ""
93
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
94
  "avaktivera och återaktivera AdRotate från plugin sidan!"
95
 
96
- #: adrotate-output.php:802
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
99
 
100
- #: adrotate-output.php:808
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
- #: adrotate-output.php:834
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
- #: adrotate-output.php:834
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
- #: adrotate-output.php:836
113
  msgid "active ad(s) are about to expire."
114
  msgstr "aktiv annons(er) är på väg att löpa ut."
115
 
116
- #: adrotate-output.php:836
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
- #: adrotate-output.php:838
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
- #: adrotate-output.php:838
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
- #: adrotate-output.php:840
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
- #: adrotate-output.php:840
133
  msgid "ad(s) are about to expire."
134
  msgstr "annons(er) är på väg att löpa ut."
135
 
136
- #: adrotate-output.php:840
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
- #: adrotate-output.php:840
141
  msgid "Fix this as soon as possible"
142
  msgstr "Lös det här så fort som möjligt"
143
 
144
- #: adrotate-output.php:853
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
- #: adrotate-output.php:855
150
  msgid ""
151
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
152
  "to the <strong>PRO</strong> version"
153
  msgstr ""
154
 
155
- #: adrotate-output.php:856
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
- #: adrotate-output.php:856
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
- #: adrotate-output.php:896
165
  msgid ""
166
- "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
167
- "Pro is in this menu. Check out the"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:896
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
- #: adrotate-output.php:896 adrotate-output.php:973
175
- #: dashboard/publisher/adrotate-ads-edit.php:229
176
  msgid "and"
177
  msgstr ""
178
 
179
- #: adrotate-output.php:896
180
  msgid "forums"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:932
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
- #: adrotate-output.php:933
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:935
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
- #: adrotate-output.php:936
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
- #: adrotate-output.php:937
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
- #: adrotate-output.php:938
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
- #: adrotate-output.php:939
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:965
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Fastnat med AdRotate? Jag hjälper!"
220
 
221
- #: adrotate-output.php:966
222
  msgid "Brought to you by"
223
  msgstr "Presenteras av"
224
 
225
- #: adrotate-output.php:973
226
  msgid ""
227
  "A lot of users only think to review AdRotate when something goes wrong while "
228
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
229
  msgstr ""
230
 
231
- #: adrotate-output.php:973
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:973
236
  msgid "rating"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:973
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Betygsätt och omdöme"
243
 
244
- #: adrotate-output.php:973
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:976
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
@@ -253,89 +253,89 @@ msgstr ""
253
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
254
  "mer om vad jag kan göra för dig!"
255
 
256
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Besök"
259
 
260
- #: adrotate-output.php:976 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "hemsida"
263
 
264
- #: adrotate-output.php:1006
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Tillgänglig i AdRotate Pro"
267
 
268
- #: adrotate-output.php:1006
269
  #, fuzzy
270
  msgid "More information..."
271
  msgstr "Mer info"
272
 
273
- #: adrotate-output.php:1007
274
  msgid "This feature is available in AdRotate Pro"
275
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
276
 
277
- #: adrotate-output.php:1007
278
  #, fuzzy
279
  msgid "Learn more"
280
  msgstr "Läs mer om"
281
 
282
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
283
- #: dashboard/publisher/adrotate-ads-edit.php:352
284
  msgid "January"
285
  msgstr "Januari"
286
 
287
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
288
- #: dashboard/publisher/adrotate-ads-edit.php:353
289
  msgid "February"
290
  msgstr "Februari"
291
 
292
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
293
- #: dashboard/publisher/adrotate-ads-edit.php:354
294
  msgid "March"
295
  msgstr "Mars"
296
 
297
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
298
- #: dashboard/publisher/adrotate-ads-edit.php:355
299
  msgid "April"
300
  msgstr "April"
301
 
302
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
303
- #: dashboard/publisher/adrotate-ads-edit.php:356
304
  msgid "May"
305
  msgstr "Maj"
306
 
307
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
308
- #: dashboard/publisher/adrotate-ads-edit.php:357
309
  msgid "June"
310
  msgstr "Juni"
311
 
312
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
313
- #: dashboard/publisher/adrotate-ads-edit.php:358
314
  msgid "July"
315
  msgstr "Juli"
316
 
317
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
318
- #: dashboard/publisher/adrotate-ads-edit.php:359
319
  msgid "August"
320
  msgstr "Augusti"
321
 
322
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
323
- #: dashboard/publisher/adrotate-ads-edit.php:360
324
  msgid "September"
325
  msgstr "September"
326
 
327
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
328
- #: dashboard/publisher/adrotate-ads-edit.php:361
329
  msgid "October"
330
  msgstr "Oktober"
331
 
332
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
333
- #: dashboard/publisher/adrotate-ads-edit.php:362
334
  msgid "November"
335
  msgstr "November"
336
 
337
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
338
- #: dashboard/publisher/adrotate-ads-edit.php:363
339
  msgid "December"
340
  msgstr "December"
341
 
@@ -388,7 +388,7 @@ msgstr "Grupp av annonser - Använd grupp-ID"
388
  msgid "Choose what you want to use this widget for"
389
  msgstr "Välj vad du vill använda denna widget för"
390
 
391
- #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
392
  msgid "ID:"
393
  msgstr "ID:"
394
 
@@ -396,79 +396,78 @@ msgstr "ID:"
396
  msgid "Fill in the ID of the type you want to display!"
397
  msgstr "Fyll i ID för den typ som du vill visa!"
398
 
399
- #: adrotate.php:108
400
  msgid "General Info"
401
  msgstr "Allmän info"
402
 
403
- #: adrotate.php:109
404
  msgid "AdRotate Pro"
405
  msgstr "AdRotate Pro"
406
 
407
- #: adrotate.php:110
408
  msgid "Manage Ads"
409
  msgstr "Hantera Annonser"
410
 
411
- #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
412
  msgid "Manage Groups"
413
  msgstr "Hantera Grupper"
414
 
415
- #: adrotate.php:112 adrotate.php:441
416
- #: dashboard/publisher/adrotate-ads-edit.php:402
417
  #, fuzzy
418
  msgid "Manage Schedules"
419
  msgstr "Hantera"
420
 
421
- #: adrotate.php:113
422
  #, fuzzy
423
  msgid "Manage Media"
424
  msgstr "Media:"
425
 
426
- #: adrotate.php:114
427
  msgid "Settings"
428
  msgstr "Inställningar"
429
 
430
- #: adrotate.php:137
431
  msgid "AdRotate Info"
432
  msgstr "AdRotate Information"
433
 
434
- #: adrotate.php:158
435
  #, fuzzy
436
  msgid "AdRotate Professional"
437
  msgstr "AdRotate"
438
 
439
- #: adrotate.php:201
440
  msgid "Ad Management"
441
  msgstr "Annonshantering"
442
 
443
- #: adrotate.php:204
444
  msgid "Ad created"
445
  msgstr "Annons skapad"
446
 
447
- #: adrotate.php:206
448
  msgid "Ad updated"
449
  msgstr "Annons uppdaterad"
450
 
451
- #: adrotate.php:208
452
  msgid "Ad(s) deleted"
453
  msgstr "Annons(er) raderas"
454
 
455
- #: adrotate.php:210
456
  msgid "Ad(s) statistics reset"
457
  msgstr "Annons(er) statistik återställning"
458
 
459
- #: adrotate.php:212
460
  msgid "Ad(s) renewed"
461
  msgstr "Annons(er) förnyas"
462
 
463
- #: adrotate.php:214
464
  msgid "Ad(s) deactivated"
465
  msgstr "Annons(er) avaktiveras"
466
 
467
- #: adrotate.php:216
468
  msgid "Ad(s) activated"
469
  msgstr "Annons(er) aktiveras"
470
 
471
- #: adrotate.php:218
472
  msgid ""
473
  "The ad was saved but has an issue which might prevent it from working "
474
  "properly. Review the yellow marked ad."
@@ -476,378 +475,376 @@ msgstr ""
476
  "Annonsen har sparats, men har en fråga som skulle kunna hindra den från att "
477
  "fungera korrekt. Granska den gula markerade annons."
478
 
479
- #: adrotate.php:220
480
  #, fuzzy
481
  msgid "Export created"
482
  msgstr "export skapad"
483
 
484
- #: adrotate.php:224
485
  msgid "Action prohibited"
486
  msgstr "Åtgärden förbjuden"
487
 
488
- #: adrotate.php:226 adrotate.php:374
489
  msgid "No data found in selected time period"
490
  msgstr "Inga data finns i vald tidsperiod"
491
 
492
- #: adrotate.php:284 adrotate.php:380 adrotate.php:436
493
  msgid "Manage"
494
  msgstr "Hantera"
495
 
496
- #: adrotate.php:285 adrotate.php:381 adrotate.php:437
497
  msgid "Add New"
498
  msgstr "Lägg till ny"
499
 
500
- #: adrotate.php:363
501
  msgid "Group Management"
502
  msgstr "Grupp Hantering"
503
 
504
- #: adrotate.php:366
505
  msgid "Group created"
506
  msgstr "Grupp skapad"
507
 
508
- #: adrotate.php:368
509
  msgid "Group updated"
510
  msgstr "Grupp uppdaterad"
511
 
512
- #: adrotate.php:370
513
  msgid "Group deleted"
514
  msgstr "Grupp raderad"
515
 
516
- #: adrotate.php:372
517
  msgid "Group including it's Ads deleted"
518
  msgstr "Grupp inklusive dess annonser raderade"
519
 
520
- #: adrotate.php:432
521
  #, fuzzy
522
  msgid "Schedule Management available in AdRotate Pro"
523
  msgstr "Tillgänglig i AdRotate Pro"
524
 
525
- #: adrotate.php:442
526
  #, fuzzy
527
  msgid ""
528
  "Schedule management and multiple schedules per advert is available in "
529
  "AdRotate Pro."
530
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
531
 
532
- #: adrotate.php:442 adrotate.php:529
533
- #: dashboard/publisher/adrotate-ads-edit.php:145
534
  #: dashboard/publisher/adrotate-ads-main.php:108
535
- #: dashboard/publisher/adrotate-groups-edit.php:76
536
  #: dashboard/publisher/adrotate-groups-main.php:87
537
  #, fuzzy
538
  msgid "More information"
539
  msgstr "Mer info"
540
 
541
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
542
  #: dashboard/publisher/adrotate-ads-main-error.php:19
543
  #: dashboard/publisher/adrotate-ads-main.php:20
544
  #: dashboard/publisher/adrotate-groups-main.php:20
545
  msgid "Bulk Actions"
546
  msgstr "Massåtgärder"
547
 
548
- #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
549
  #: dashboard/publisher/adrotate-ads-main-error.php:29
550
  #: dashboard/publisher/adrotate-ads-main.php:30
551
  #: dashboard/publisher/adrotate-groups-main.php:24
552
  msgid "Go"
553
  msgstr "Gå"
554
 
555
- #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
556
- #: dashboard/publisher/adrotate-ads-main-disabled.php:35
557
  #: dashboard/publisher/adrotate-ads-main-error.php:39
558
  #: dashboard/publisher/adrotate-ads-main.php:39
559
  #: dashboard/publisher/adrotate-groups-main.php:32
560
  msgid "ID"
561
  msgstr "ID"
562
 
563
- #: adrotate.php:460
564
  #, fuzzy
565
  msgid "Start"
566
  msgstr "Starttid (hh: mm):"
567
 
568
- #: adrotate.php:460
569
  #, fuzzy
570
  msgid "End"
571
  msgstr "Avsluta tid (hh: mm):"
572
 
573
- #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
574
  #: dashboard/publisher/adrotate-groups-main.php:34
575
  msgid "Ads"
576
  msgstr "Annonser"
577
 
578
- #: adrotate.php:463
579
  msgid "Max Clicks"
580
  msgstr "Max Klick"
581
 
582
- #: adrotate.php:464
583
  msgid "Max Impressions"
584
  msgstr "Max Intryck"
585
 
586
- #: adrotate.php:494
587
  #, fuzzy
588
  msgid "No schedules created yet!"
589
  msgstr "Inga block har skapats än!"
590
 
591
- #: adrotate.php:499
592
  #, fuzzy
593
  msgid "Easily manage your schedules from here with AdRotate Pro."
594
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
595
 
596
- #: adrotate.php:499 adrotate.php:562
597
  #, fuzzy
598
  msgid "Upgrade today!"
599
  msgstr "i dag"
600
 
601
- #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
602
- #: dashboard/publisher/adrotate-ads-main-error.php:74
603
- #: dashboard/publisher/adrotate-groups-edit.php:399
604
  msgid "Expires soon."
605
  msgstr "Utgår inom kort."
606
 
607
- #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
608
- #: dashboard/publisher/adrotate-groups-edit.php:400
609
  msgid "Has expired."
610
  msgstr "Har gått ut."
611
 
612
- #: adrotate.php:527
613
  #, fuzzy
614
  msgid "Media Management available in AdRotate Pro"
615
  msgstr "Tillgänglig i AdRotate Pro"
616
 
617
- #: adrotate.php:529
618
  msgid ""
619
  "Upload images to the AdRotate Pro banners folder from here. This is "
620
  "especially useful if you use responsive adverts with multiple images."
621
  msgstr ""
622
 
623
- #: adrotate.php:529
624
  #, fuzzy
625
  msgid "Media uploading and management is available in AdRotate Pro."
626
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
627
 
628
- #: adrotate.php:531
629
  #, fuzzy
630
  msgid "Upload new banner image"
631
  msgstr "Banner image:"
632
 
633
- #: adrotate.php:532
634
  #, fuzzy
635
  msgid "Accepted files are:"
636
  msgstr "Godkända filer är:"
637
 
638
- #: adrotate.php:532
639
  #, fuzzy
640
  msgid "Maximum size is 512Kb."
641
  msgstr "Maximal storlek är 512Kb."
642
 
643
- #: adrotate.php:532
644
  msgid "Important:"
645
  msgstr ""
646
 
647
- #: adrotate.php:532
648
  msgid ""
649
  "Make sure your file has no spaces or special characters in the name. Replace "
650
  "spaces with a - or _."
651
  msgstr ""
652
 
653
- #: adrotate.php:534
654
  msgid ""
655
  "For responsive adverts make sure the filename is in the following format; "
656
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
657
  msgstr ""
658
 
659
- #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
660
  msgid ""
661
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
662
  "filename instead of \".full\" for the various viewports."
663
  msgstr ""
664
 
665
- #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
666
- #: dashboard/publisher/adrotate-groups-edit.php:334
667
- #: dashboard/publisher/adrotate-groups-edit.php:343
668
  msgid "Example:"
669
  msgstr "Exempel:"
670
 
671
- #: adrotate.php:536
672
  msgid ""
673
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
674
  "for different viewports."
675
  msgstr ""
676
 
677
- #: adrotate.php:540
678
  #, fuzzy
679
  msgid "Upload image"
680
  msgstr "Överföring ofullständig."
681
 
682
- #: adrotate.php:543
683
  msgid "Available banner images in"
684
  msgstr ""
685
 
686
- #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
687
  msgid "Name"
688
  msgstr "Namn"
689
 
690
- #: adrotate.php:549
691
  #, fuzzy
692
  msgid "Actions"
693
  msgstr "Massåtgärder"
694
 
695
- #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
696
- #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
697
  #: dashboard/publisher/adrotate-ads-main-error.php:21
698
  #: dashboard/publisher/adrotate-ads-main.php:22
699
  msgid "Delete"
700
  msgstr "Radera"
701
 
702
- #: adrotate.php:562
703
  msgid ""
704
  "Make sure the banner images are not in use by adverts when you delete them!"
705
  msgstr ""
706
 
707
- #: adrotate.php:562
708
  #, fuzzy
709
  msgid "Manage your banner folder from here with AdRotate Pro."
710
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
711
 
712
- #: adrotate.php:606
713
  msgid "AdRotate Settings"
714
  msgstr "AdRotate Inställningar"
715
 
716
- #: adrotate.php:609
717
  msgid "Settings saved"
718
  msgstr "Inställningar sparas"
719
 
720
- #: adrotate.php:611
721
  msgid "Database optimized"
722
  msgstr "Databas optimerad"
723
 
724
- #: adrotate.php:613
725
  msgid "Database repaired"
726
  msgstr "Databas reparation"
727
 
728
- #: adrotate.php:615
729
  msgid "Ads evaluated and statuses have been corrected where required"
730
  msgstr "annonser utvärderas och status har rättats till vid behov"
731
 
732
- #: adrotate.php:617
733
  msgid "Empty database records removed"
734
  msgstr "Tomma databasposter tas bort"
735
 
736
- #: adrotate.php:619
737
  msgid "Database can only be optimized or cleaned once every hour"
738
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
739
 
740
- #: adrotate.php:627
741
  msgid "Access Rights"
742
  msgstr "Tillträde"
743
 
744
- #: adrotate.php:628
745
  msgid "Who has access to what?"
746
  msgstr ""
747
 
748
- #: adrotate.php:631
749
  msgid "Manage/Add/Edit adverts"
750
  msgstr "Hantera / Lägg till / redigera annonser"
751
 
752
- #: adrotate.php:635
753
  msgid "Role to see and add/edit ads."
754
  msgstr "Role för att se och lägga till / redigera annonser."
755
 
756
- #: adrotate.php:639
757
  msgid "Delete/Reset adverts"
758
  msgstr "Radera / Reset annonser"
759
 
760
- #: adrotate.php:643
761
  msgid "Role to delete ads and reset stats."
762
  msgstr "Role att ta bort annonser och återställ statistik."
763
 
764
- #: adrotate.php:647
765
  msgid "Manage/Add/Edit groups"
766
  msgstr "Hantera / Lägg till / Redigera grupper"
767
 
768
- #: adrotate.php:651
769
  msgid "Role to see and add/edit groups."
770
  msgstr "Role för att se och lägga till / redigera grupp."
771
 
772
- #: adrotate.php:655
773
  msgid "Delete groups"
774
  msgstr "Ta bort grupper"
775
 
776
- #: adrotate.php:659
777
  msgid "Role to delete groups."
778
  msgstr "Role att ta bort grupper."
779
 
780
- #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
781
- #: adrotate.php:876
782
  msgid "Update Options"
783
  msgstr "Update Options"
784
 
785
- #: adrotate.php:691
786
  msgid "Statistics"
787
  msgstr "Statistik"
788
 
789
- #: adrotate.php:694
790
  #, fuzzy
791
  msgid "Enable stats"
792
  msgstr "Statistik"
793
 
794
- #: adrotate.php:696
795
  msgid "Track clicks and impressions."
796
  msgstr "Spåra klick och visningar."
797
 
798
- #: adrotate.php:696
799
  #, fuzzy
800
  msgid "Disabling this also disables click and impression limits on schedules."
801
  msgstr ""
802
  "Inaktivera detta också inaktiverar klick och visningar gränser för scheman "
803
  "och inaktiverar tidsramar."
804
 
805
- #: adrotate.php:700
806
  msgid "Impressions timer"
807
  msgstr "Intryck timer"
808
 
809
- #: adrotate.php:702 adrotate.php:709
810
  msgid "Seconds."
811
  msgstr "Sekunder."
812
 
813
- #: adrotate.php:703
814
  #, fuzzy
815
  msgid "Default: 60."
816
  msgstr "Default"
817
 
818
- #: adrotate.php:703
819
  #, fuzzy
820
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
821
  msgstr ""
822
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
823
 
824
- #: adrotate.php:707
825
  #, fuzzy
826
  msgid "Clicks timer"
827
  msgstr "Intryck timer"
828
 
829
- #: adrotate.php:710
830
  #, fuzzy
831
  msgid "Default: 86400."
832
  msgstr "Default"
833
 
834
- #: adrotate.php:710
835
  #, fuzzy
836
  msgid ""
837
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
838
  msgstr ""
839
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
840
 
841
- #: adrotate.php:715
842
  #, fuzzy
843
  msgid "Bot filter"
844
  msgstr "User-Agent Filter"
845
 
846
- #: adrotate.php:718
847
  msgid "User-Agent Filter"
848
  msgstr "User-Agent Filter"
849
 
850
- #: adrotate.php:721
851
  msgid ""
852
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
853
  "prevent impressions and clicks counted on them."
@@ -855,7 +852,7 @@ msgstr ""
855
  "En kommaseparerad lista med sökord. Filtrera bort bots / sökrobotar / user-"
856
  "agents. För att förhindra att visningar och klick räknas på dem."
857
 
858
- #: adrotate.php:722
859
  msgid ""
860
  "Keep in mind that this might give false positives. The word 'google' also "
861
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -863,11 +860,11 @@ msgstr ""
863
  "Tänk på att detta kan ge falska positiva. Ordet \"google\" träffar "
864
  "\"googlebot\", men inte vice versa. Så var försiktig!"
865
 
866
- #: adrotate.php:722
867
  msgid "Keep your list up-to-date"
868
  msgstr "Håll din lista up-to-date"
869
 
870
- #: adrotate.php:723
871
  msgid ""
872
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
873
  "other characters are stripped out."
@@ -875,30 +872,30 @@ msgstr ""
875
  "Använd endast ord med alfanumeriska tecken, [- _] tillåts också. Alla andra "
876
  "tecken avskalade ut."
877
 
878
- #: adrotate.php:724
879
  msgid ""
880
  "Additionally to the list specified here, empty User-Agents are blocked as "
881
  "well."
882
  msgstr ""
883
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
884
 
885
- #: adrotate.php:724
886
  msgid "Learn more about"
887
  msgstr "Läs mer om"
888
 
889
- #: adrotate.php:724
890
  msgid "user-agents"
891
  msgstr "user-agents"
892
 
893
- #: adrotate.php:733
894
  msgid "Miscellaneous"
895
  msgstr "Diverse"
896
 
897
- #: adrotate.php:736
898
  msgid "Widget alignment"
899
  msgstr "widget inriktnings"
900
 
901
- #: adrotate.php:737
902
  msgid ""
903
  "Check this box if your widgets do not align in your themes sidebar. (Does "
904
  "not always help!)"
@@ -906,11 +903,11 @@ msgstr ""
906
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
907
  "alltid hjälper!)"
908
 
909
- #: adrotate.php:740
910
  msgid "Widget padding"
911
  msgstr "widget padding"
912
 
913
- #: adrotate.php:741
914
  msgid ""
915
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
916
  "not always work!)"
@@ -918,12 +915,12 @@ msgstr ""
918
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
919
  "widgets. (Fungerar inte alltid!)"
920
 
921
- #: adrotate.php:746 adrotate.php:757
922
  #, fuzzy
923
  msgid "NOTICE:"
924
  msgstr "Meddelande"
925
 
926
- #: adrotate.php:747
927
  msgid ""
928
  "You have enabled W3 Total Caching support but not defined the security hash. "
929
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -931,30 +928,30 @@ msgid ""
931
  "needs to be enabled in W3 Total Cache as well too."
932
  msgstr ""
933
 
934
- #: adrotate.php:751
935
  msgid "W3 Total Caching"
936
  msgstr "W3 Total Caching"
937
 
938
- #: adrotate.php:752
939
  msgid "Check this box if you use W3 Total Caching on your site."
940
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
941
 
942
- #: adrotate.php:758
943
  msgid ""
944
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
945
  "this function will not work. WP Super Cache has discontinued support for "
946
  "dynamic content."
947
  msgstr ""
948
 
949
- #: adrotate.php:762
950
  msgid "WP Super Cache"
951
  msgstr "WP Super Cache"
952
 
953
- #: adrotate.php:763
954
  msgid "Check this box if you use WP Super Cache on your site."
955
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
956
 
957
- #: adrotate.php:768
958
  msgid ""
959
  "It may take a while for the ad to start rotating. The caching plugin needs "
960
  "to refresh the cache. This can take up to a week if not done manually."
@@ -963,7 +960,7 @@ msgstr ""
963
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
964
  "manuellt."
965
 
966
- #: adrotate.php:768
967
  msgid ""
968
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
969
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -971,18 +968,18 @@ msgstr ""
971
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
972
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
973
 
974
- #: adrotate.php:772
975
  msgid "Javascript"
976
  msgstr ""
977
 
978
- #: adrotate.php:775
979
  #, fuzzy
980
  msgid "Load jQuery"
981
  msgstr ""
982
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
983
  "om andra plugins eller teman redan läsa här."
984
 
985
- #: adrotate.php:776
986
  #, fuzzy
987
  msgid ""
988
  "jQuery is required for all Javascript features below. Enable this if your "
@@ -991,24 +988,24 @@ msgstr ""
991
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
992
  "om andra plugins eller teman redan läsa här."
993
 
994
- #: adrotate.php:779
995
  #, fuzzy
996
  msgid "Load in footer?"
997
  msgstr ""
998
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
999
 
1000
- #: adrotate.php:780
1001
  #, fuzzy
1002
  msgid ""
1003
  "Enable if you want to load the above libraries in the footer. Your theme "
1004
  "needs to call wp_footer() for this to work."
1005
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
1006
 
1007
- #: adrotate.php:788
1008
  msgid "Maintenance"
1009
  msgstr "Underhåll"
1010
 
1011
- #: adrotate.php:789
1012
  #, fuzzy
1013
  msgid ""
1014
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1023,19 +1020,19 @@ msgstr ""
1023
  "Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
1024
  "eller märker din databas är långsam, inte svarar och trög."
1025
 
1026
- #: adrotate.php:804 adrotate.php:806
1027
  msgid "Optimize Database"
1028
  msgstr "Optimera Databas"
1029
 
1030
- #: adrotate.php:806
1031
  msgid "You are about to optimize the AdRotate database."
1032
  msgstr "Du håller på att optimera AdRotate databasen."
1033
 
1034
- #: adrotate.php:806
1035
  msgid "Did you make a backup of your database?"
1036
  msgstr "Har du gjort en säkerhetskopia av din databas?"
1037
 
1038
- #: adrotate.php:806
1039
  msgid ""
1040
  "This may take a moment and may cause your website to respond slow "
1041
  "temporarily!"
@@ -1043,16 +1040,16 @@ msgstr ""
1043
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1044
  "tillfälligt!"
1045
 
1046
- #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1047
  #: dashboard/publisher/adrotate-groups-main.php:24
1048
  msgid "OK to continue, CANCEL to stop."
1049
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1050
 
1051
- #: adrotate.php:807
1052
  msgid "Cleans up overhead data in the AdRotate tables."
1053
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
1054
 
1055
- #: adrotate.php:808
1056
  msgid ""
1057
  "Overhead data is accumulated garbage resulting from many changes you've "
1058
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1060,11 +1057,11 @@ msgstr ""
1060
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
1061
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
1062
 
1063
- #: adrotate.php:812 adrotate.php:814
1064
  msgid "Clean-up Database"
1065
  msgstr "Städa upp Databas"
1066
 
1067
- #: adrotate.php:814
1068
  msgid ""
1069
  "You are about to clean up your database. This may delete expired schedules "
1070
  "and older statistics."
@@ -1072,22 +1069,22 @@ msgstr ""
1072
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
1073
  "och äldre statistik."
1074
 
1075
- #: adrotate.php:814
1076
  msgid "Are you sure you want to continue?"
1077
  msgstr "Är du säker på att du vill fortsätta?"
1078
 
1079
- #: adrotate.php:814 adrotate.php:822
1080
  #, fuzzy
1081
  msgid "This might take a while and may slow down your site during this action!"
1082
  msgstr ""
1083
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1084
  "tillfälligt!"
1085
 
1086
- #: adrotate.php:815
1087
  msgid "Delete stats older than 356 days (Optional)."
1088
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
1089
 
1090
- #: adrotate.php:816
1091
  #, fuzzy
1092
  msgid ""
1093
  "AdRotate creates empty records when you start making ads or groups. In rare "
@@ -1096,7 +1093,7 @@ msgstr ""
1096
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1097
  "den här knappen för att ta bort de tomma poster."
1098
 
1099
- #: adrotate.php:816
1100
  msgid ""
1101
  "If you made an ad or group that does not save when you make it use this "
1102
  "button to delete those empty records."
@@ -1104,7 +1101,7 @@ msgstr ""
1104
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1105
  "den här knappen för att ta bort de tomma poster."
1106
 
1107
- #: adrotate.php:816
1108
  msgid ""
1109
  "Additionally you can clean up old statistics. This will improve the speed of "
1110
  "your site."
@@ -1112,22 +1109,22 @@ msgstr ""
1112
  "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
1113
  "hastigheten på din webbplats."
1114
 
1115
- #: adrotate.php:820
1116
  #, fuzzy
1117
  msgid "Re-evaluate Ads"
1118
  msgstr "Omvärdera annonser"
1119
 
1120
- #: adrotate.php:822
1121
  #, fuzzy
1122
  msgid "Re-evaluate all ads"
1123
  msgstr "Omvärdera alla annonser"
1124
 
1125
- #: adrotate.php:822
1126
  #, fuzzy
1127
  msgid "You are about to check all ads for errors."
1128
  msgstr "Du håller på att kolla alla annonser för fel."
1129
 
1130
- #: adrotate.php:823
1131
  #, fuzzy
1132
  msgid ""
1133
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -1136,7 +1133,7 @@ msgstr ""
1136
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
1137
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
1138
 
1139
- #: adrotate.php:827
1140
  msgid ""
1141
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1142
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1153,64 +1150,64 @@ msgstr ""
1153
  "det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
1154
  "alla fall."
1155
 
1156
- #: adrotate.php:835
1157
  msgid "Troubleshooting"
1158
  msgstr "Felsökning"
1159
 
1160
- #: adrotate.php:838
1161
  msgid "Current version:"
1162
  msgstr "Aktuell version:"
1163
 
1164
- #: adrotate.php:839
1165
  msgid "Previous version:"
1166
  msgstr "Tidigare version:"
1167
 
1168
- #: adrotate.php:842
1169
  msgid "Current database version:"
1170
  msgstr "Nuvarande databasversion:"
1171
 
1172
- #: adrotate.php:843
1173
  msgid "Previous database version:"
1174
  msgstr "Tidigare databasversion:"
1175
 
1176
- #: adrotate.php:846
1177
  #, fuzzy
1178
  msgid "Ad evaluation next run:"
1179
  msgstr "Annons Meddelanden nästa körning:"
1180
 
1181
- #: adrotate.php:847 adrotate.php:851
1182
  msgid "Not scheduled!"
1183
  msgstr "Inte planerat!"
1184
 
1185
- #: adrotate.php:850
1186
  msgid "Clean Trackerdata next run:"
1187
  msgstr "Rensa Trackerdata nästa körning:"
1188
 
1189
- #: adrotate.php:854
1190
  msgid "Current status of adverts"
1191
  msgstr "Aktuell status för annonser"
1192
 
1193
- #: adrotate.php:855
1194
  msgid "Normal"
1195
  msgstr "Normal"
1196
 
1197
- #: adrotate.php:855
1198
  msgid "Error"
1199
  msgstr "Error"
1200
 
1201
- #: adrotate.php:855
1202
  msgid "Expired"
1203
  msgstr "Utgånget"
1204
 
1205
- #: adrotate.php:855
1206
  msgid "Expires Soon"
1207
  msgstr "Utgår snart"
1208
 
1209
- #: adrotate.php:855
1210
  msgid "Unknown Status"
1211
  msgstr "Okänd status"
1212
 
1213
- #: adrotate.php:858
1214
  msgid ""
1215
  "NOTE: The below options are not meant for normal use and are only there for "
1216
  "developers to review saved settings or how ads are selected. These can be "
@@ -1222,42 +1219,42 @@ msgstr ""
1222
  "väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
1223
  "normal användning de bör lämnas därhän!"
1224
 
1225
- #: adrotate.php:862
1226
  msgid "Developer Debug"
1227
  msgstr "Utvecklar Debug"
1228
 
1229
- #: adrotate.php:864
1230
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1231
  msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
1232
 
1233
- #: adrotate.php:865
1234
  msgid "Show all settings, dashboard routines and related values."
1235
  msgstr ""
1236
  "Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
1237
 
1238
- #: adrotate.php:866
1239
  msgid "Show array of all userroles and capabilities."
1240
  msgstr "Visa samling av alla userroles och möjligheter."
1241
 
1242
- #: adrotate.php:867
1243
  msgid "Review saved advertisers! Visible to advertisers."
1244
  msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
1245
 
1246
- #: adrotate.php:868
1247
  #, fuzzy
1248
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1249
  msgstr ""
1250
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
1251
  "endast till förlag."
1252
 
1253
- #: adrotate.php:869
1254
  #, fuzzy
1255
  msgid ""
1256
  "Disable timers for clicks and impressions and enable a alert window for "
1257
  "clicktracking."
1258
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
1259
 
1260
- #: adrotate.php:870
1261
  msgid "Temporarily disable encryption on the redirect url."
1262
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
1263
 
@@ -1492,8 +1489,8 @@ msgid "The AdCode cannot be empty!"
1492
  msgstr "Den AdCode kan inte vara tomt!"
1493
 
1494
  #: dashboard/publisher/adrotate-ads-edit.php:49
1495
- msgid "You didn't use %image% in your AdCode but did select an image!"
1496
- msgstr "Du använde inte %image% i AdCode men valde en bild!"
1497
 
1498
  #: dashboard/publisher/adrotate-ads-edit.php:52
1499
  msgid "You did use %image% in your AdCode but did not select an image!"
@@ -1508,10 +1505,22 @@ msgstr ""
1508
  "och åter spara annonsen!"
1509
 
1510
  #: dashboard/publisher/adrotate-ads-edit.php:58
 
 
 
 
 
 
 
 
 
 
 
 
1511
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1512
  msgstr ""
1513
 
1514
- #: dashboard/publisher/adrotate-ads-edit.php:63
1515
  msgid ""
1516
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1517
  "the ad!"
@@ -1519,114 +1528,170 @@ msgstr ""
1519
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
1520
  "åter spara annonsen!"
1521
 
1522
- #: dashboard/publisher/adrotate-ads-edit.php:66
1523
  msgid "This ad is expired and currently not shown on your website!"
1524
  msgstr ""
1525
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
1526
 
1527
- #: dashboard/publisher/adrotate-ads-edit.php:69
1528
  msgid "The ad will expire in less than 2 days!"
1529
  msgstr "Annonsen går ut om mindre än 2 dagar!"
1530
 
1531
- #: dashboard/publisher/adrotate-ads-edit.php:72
1532
  msgid "This ad will expire in less than 7 days!"
1533
  msgstr "Annonsen går ut om mindre än 7 dagar!"
1534
 
1535
- #: dashboard/publisher/adrotate-ads-edit.php:75
1536
  msgid "This ad has been disabled and does not rotate on your site!"
1537
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
1538
 
1539
- #: dashboard/publisher/adrotate-ads-edit.php:101
1540
  msgid "New Advert"
1541
  msgstr "Ny annons"
1542
 
1543
- #: dashboard/publisher/adrotate-ads-edit.php:103
1544
  msgid "Edit Advert"
1545
  msgstr "Redigera annons"
1546
 
1547
- #: dashboard/publisher/adrotate-ads-edit.php:106
1548
- #: dashboard/publisher/adrotate-groups-edit.php:48
1549
- msgid "These are required."
1550
- msgstr "Dessa krävs."
1551
-
1552
- #: dashboard/publisher/adrotate-ads-edit.php:110
1553
  msgid "Title:"
1554
  msgstr "Titel:"
1555
 
1556
- #: dashboard/publisher/adrotate-ads-edit.php:116
1557
  msgid "AdCode:"
1558
  msgstr "AdCode:"
1559
 
1560
- #: dashboard/publisher/adrotate-ads-edit.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1561
  msgid ""
1562
- "Copy your ad tag/code in this field if you have received ready to go adverts."
 
1563
  msgstr ""
1564
 
1565
- #: dashboard/publisher/adrotate-ads-edit.php:121
1566
- msgid "Advertising and affiliate networks often use these."
 
 
 
 
1567
  msgstr ""
1568
 
1569
- #: dashboard/publisher/adrotate-ads-edit.php:122
1570
- msgid "Basic Examples:"
1571
- msgstr "Grundläggande Exempel:"
1572
 
1573
- #: dashboard/publisher/adrotate-ads-edit.php:127
1574
- #: dashboard/publisher/adrotate-groups-edit.php:335
1575
- msgid "Options:"
1576
- msgstr "Options:"
 
 
 
 
 
 
 
 
 
 
 
1577
 
1578
- #: dashboard/publisher/adrotate-ads-edit.php:129
1579
  msgid ""
1580
- "Place the cursor where you want to add a tag and click to add it to your "
1581
- "AdCode."
1582
  msgstr ""
1583
- "Placera markören där du vill lägga till en tagg och klicka för att lägga "
1584
- "till den i din AdCode."
1585
 
1586
- #: dashboard/publisher/adrotate-ads-edit.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1587
  msgid "Activate:"
1588
  msgstr "Aktivera:"
1589
 
1590
- #: dashboard/publisher/adrotate-ads-edit.php:137
1591
  msgid "Yes, this ad will be used"
1592
  msgstr "Ja, kommer denna annons att användas"
1593
 
1594
- #: dashboard/publisher/adrotate-ads-edit.php:138
1595
  msgid "No, do not show this ad anywhere"
1596
  msgstr "Nej, inte visa denna annons någonstans"
1597
 
1598
- #: dashboard/publisher/adrotate-ads-edit.php:145
1599
  #: dashboard/publisher/adrotate-ads-main.php:108
1600
- #: dashboard/publisher/adrotate-groups-edit.php:76
1601
  #: dashboard/publisher/adrotate-groups-main.php:87
1602
  #, fuzzy
1603
  msgid "Get more features with AdRotate Pro."
1604
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1605
 
1606
- #: dashboard/publisher/adrotate-ads-edit.php:148
1607
- #: dashboard/publisher/adrotate-ads-edit.php:181
1608
- #: dashboard/publisher/adrotate-ads-edit.php:317
1609
- #: dashboard/publisher/adrotate-ads-edit.php:442
1610
- #: dashboard/publisher/adrotate-ads-edit.php:485
1611
  msgid "Save Advert"
1612
  msgstr "Spara annons"
1613
 
1614
- #: dashboard/publisher/adrotate-ads-edit.php:149
1615
- #: dashboard/publisher/adrotate-ads-edit.php:182
1616
- #: dashboard/publisher/adrotate-ads-edit.php:318
1617
- #: dashboard/publisher/adrotate-ads-edit.php:443
1618
- #: dashboard/publisher/adrotate-ads-edit.php:486
1619
- #: dashboard/publisher/adrotate-groups-edit.php:182
1620
- #: dashboard/publisher/adrotate-groups-edit.php:323
1621
- #: dashboard/publisher/adrotate-groups-edit.php:405
1622
  msgid "Cancel"
1623
  msgstr "Avbryt"
1624
 
1625
- #: dashboard/publisher/adrotate-ads-edit.php:153
1626
  msgid "Preview"
1627
  msgstr "Förhandsgranska"
1628
 
1629
- #: dashboard/publisher/adrotate-ads-edit.php:159
1630
  msgid ""
1631
  "Note: While this preview is an accurate one, it might look different then it "
1632
  "does on the website."
@@ -1634,233 +1699,206 @@ msgstr ""
1634
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1635
  "gör på webbplatsen."
1636
 
1637
- #: dashboard/publisher/adrotate-ads-edit.php:160
1638
  msgid ""
1639
  "This is because of CSS differences. Your themes CSS file is not active here!"
1640
  msgstr ""
1641
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1642
 
1643
- #: dashboard/publisher/adrotate-ads-edit.php:167
1644
- #: dashboard/publisher/adrotate-ads-edit.php:303
1645
- #: dashboard/publisher/adrotate-groups-edit.php:167
1646
- #: dashboard/publisher/adrotate-groups-edit.php:308
1647
  msgid "Usage"
1648
  msgstr "Användning"
1649
 
1650
- #: dashboard/publisher/adrotate-ads-edit.php:168
1651
- #: dashboard/publisher/adrotate-ads-edit.php:304
1652
- #: dashboard/publisher/adrotate-groups-edit.php:168
1653
- #: dashboard/publisher/adrotate-groups-edit.php:309
 
 
 
 
 
1654
  msgid ""
1655
- "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1656
- "where you want the advert to show up."
1657
  msgstr ""
1658
- "Kopiera kortkod i ett inlägg eller sida. PHP-koden går i ett tema-fil där du "
1659
- "vill att annonsen ska visas."
1660
 
1661
- #: dashboard/publisher/adrotate-ads-edit.php:172
1662
- #: dashboard/publisher/adrotate-ads-edit.php:308
1663
- #: dashboard/publisher/adrotate-groups-edit.php:172
1664
- #: dashboard/publisher/adrotate-groups-edit.php:313
1665
  msgid "In a post or page:"
1666
  msgstr "I ett inlägg eller sida:"
1667
 
1668
- #: dashboard/publisher/adrotate-ads-edit.php:174
1669
- #: dashboard/publisher/adrotate-ads-edit.php:310
1670
- #: dashboard/publisher/adrotate-groups-edit.php:174
1671
- #: dashboard/publisher/adrotate-groups-edit.php:315
1672
  msgid "Directly in a theme:"
1673
  msgstr "Direkt i ett tema:"
1674
 
1675
- #: dashboard/publisher/adrotate-ads-edit.php:185
1676
- #: dashboard/publisher/adrotate-groups-edit.php:185
1677
- msgid "Advanced"
1678
- msgstr "Utökad"
1679
 
1680
- #: dashboard/publisher/adrotate-ads-edit.php:186
1681
- msgid "Everything below is optional."
1682
- msgstr "Allt nedan är frivillig."
1683
 
1684
- #: dashboard/publisher/adrotate-ads-edit.php:191
1685
- msgid "Clicktracking:"
1686
- msgstr "Clicktracking:"
1687
 
1688
- #: dashboard/publisher/adrotate-ads-edit.php:193
1689
- msgid "Enable click tracking for this advert."
1690
- msgstr "Aktivera klickspårning för denna annons."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1691
 
1692
- #: dashboard/publisher/adrotate-ads-edit.php:194
1693
  msgid ""
1694
- "Note: Clicktracking does generally not work for Javascript adverts such as "
1695
- "those provided by Google AdSense."
1696
  msgstr ""
 
 
1697
 
1698
- #: dashboard/publisher/adrotate-ads-edit.php:195
1699
- #, fuzzy
1700
- msgid "Place the target URL in your adcode - Similar to code example 1."
1701
  msgstr ""
1702
- "URL-fältet inte längre behövs. Placering webbadressen i ditt adcode och "
1703
- "möjliggöra klickspårning är tillräcklig."
1704
 
1705
- #: dashboard/publisher/adrotate-ads-edit.php:200
 
 
 
1706
  #, fuzzy
1707
- msgid "Target URL:"
1708
- msgstr ""
1709
- "Ange mål-URL här om du avsikt att använda den här annonsen i utskick eller "
1710
- "på avlägsna sidor."
1711
 
1712
- #: dashboard/publisher/adrotate-ads-edit.php:203
1713
- msgid ""
1714
- "This field is no longer required. You can place the URL directly in the "
1715
- "adcode (above) instead of %link%."
1716
- msgstr ""
 
 
 
1717
 
1718
- #: dashboard/publisher/adrotate-ads-edit.php:208
1719
  msgid "Responsive:"
1720
  msgstr ""
1721
 
1722
- #: dashboard/publisher/adrotate-ads-edit.php:210
1723
  #, fuzzy
1724
  msgid "Enable responsive support for this advert."
1725
  msgstr "Aktivera klickspårning för denna annons."
1726
 
1727
- #: dashboard/publisher/adrotate-ads-edit.php:211
1728
  msgid ""
1729
  "Upload your images to the banner folder and make sure the filename is in the "
1730
  "following format; \"imagename.full.ext\". A full set of sized images is "
1731
  "strongly recommended."
1732
  msgstr ""
1733
 
1734
- #: dashboard/publisher/adrotate-ads-edit.php:213
1735
- msgid ""
1736
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1737
- "for different viewports. Requires jQuery."
1738
- msgstr ""
1739
 
1740
- #: dashboard/publisher/adrotate-ads-edit.php:217
1741
- msgid "Banner image:"
1742
- msgstr "Banner image:"
1743
-
1744
- #: dashboard/publisher/adrotate-ads-edit.php:220
1745
- msgid "Media:"
1746
- msgstr "Media:"
1747
-
1748
- #: dashboard/publisher/adrotate-ads-edit.php:220
1749
- msgid "Select Banner"
1750
- msgstr "Välj Banner"
1751
-
1752
- #: dashboard/publisher/adrotate-ads-edit.php:222
1753
- msgid "- OR -"
1754
- msgstr "- ELLER -"
1755
-
1756
- #: dashboard/publisher/adrotate-ads-edit.php:224
1757
- msgid "Banner folder:"
1758
- msgstr "Banner folder:"
1759
-
1760
- #: dashboard/publisher/adrotate-ads-edit.php:225
1761
- msgid "No image selected"
1762
- msgstr "Ingen bild vald"
1763
-
1764
- #: dashboard/publisher/adrotate-ads-edit.php:229
1765
- msgid "Use %image% in the code. Accepted files are:"
1766
- msgstr "Använd %image% i koden. Godkända filer är:"
1767
-
1768
- #: dashboard/publisher/adrotate-ads-edit.php:229
1769
- msgid ""
1770
- "Use either the text field or the dropdown. If the textfield has content that "
1771
- "field has priority."
1772
- msgstr ""
1773
- "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1774
- "området har företräde."
1775
-
1776
- #: dashboard/publisher/adrotate-ads-edit.php:233
1777
- msgid "Weight:"
1778
- msgstr "Vikt:"
1779
-
1780
- #: dashboard/publisher/adrotate-ads-edit.php:233
1781
  #, fuzzy
1782
  msgid "AdRotate Pro only"
1783
  msgstr "AdRotate Pro"
1784
 
1785
- #: dashboard/publisher/adrotate-ads-edit.php:236
1786
  msgid "Barely visible"
1787
  msgstr "Knappt synlig"
1788
 
1789
- #: dashboard/publisher/adrotate-ads-edit.php:237
1790
  msgid "Less than average"
1791
  msgstr "Mindre än genomsnittet"
1792
 
1793
- #: dashboard/publisher/adrotate-ads-edit.php:238
1794
  msgid "Normal coverage"
1795
  msgstr "Normal täckning"
1796
 
1797
- #: dashboard/publisher/adrotate-ads-edit.php:239
1798
  msgid "More than average"
1799
  msgstr "Mer än genomsnittet"
1800
 
1801
- #: dashboard/publisher/adrotate-ads-edit.php:240
1802
  msgid "Best visibility"
1803
  msgstr "Bästa synlighet"
1804
 
1805
- #: dashboard/publisher/adrotate-ads-edit.php:245
1806
- #: dashboard/publisher/adrotate-groups-edit.php:212
1807
  msgid "Sortorder:"
1808
  msgstr "Sorteringsordning:"
1809
 
1810
- #: dashboard/publisher/adrotate-ads-edit.php:247
1811
- #: dashboard/publisher/adrotate-groups-edit.php:214
1812
  msgid "For administrative purposes set a sortorder."
1813
  msgstr "För administrativa ändamål sätt en sortorder."
1814
 
1815
- #: dashboard/publisher/adrotate-ads-edit.php:247
1816
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1817
  msgstr ""
1818
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1819
 
1820
- #: dashboard/publisher/adrotate-ads-edit.php:252
1821
  msgid ""
1822
- "With AdRotate Pro you can also set a weight to give adverts more or less "
1823
- "attention."
1824
  msgstr ""
1825
 
1826
- #: dashboard/publisher/adrotate-ads-edit.php:252
1827
- #: dashboard/publisher/adrotate-ads-edit.php:301
1828
- #: dashboard/publisher/adrotate-ads-edit.php:399
1829
- #: dashboard/publisher/adrotate-groups-edit.php:218
1830
- #, fuzzy
1831
- msgid "Upgrade today"
1832
- msgstr "i dag"
1833
-
1834
- #: dashboard/publisher/adrotate-ads-edit.php:254
1835
- #, fuzzy
1836
- msgid "Geo Location in AdRotate Pro"
1837
- msgstr "Geo Location"
1838
 
1839
- #: dashboard/publisher/adrotate-ads-edit.php:255
1840
  msgid ""
1841
- "This works if you assign the advert to a group and enable that group to use "
1842
- "Geo Targeting."
1843
  msgstr ""
1844
- "Detta fungerar om du tilldelar annonsen till en grupp och göra det möjligt "
1845
- "för denna grupp att använda Geo inriktning."
1846
 
1847
- #: dashboard/publisher/adrotate-ads-edit.php:259
1848
  #, fuzzy
1849
  msgid "Cities/States:"
1850
  msgstr "Städer"
1851
 
1852
- #: dashboard/publisher/adrotate-ads-edit.php:262
1853
- #: dashboard/publisher/adrotate-ads-edit.php:295
1854
- #, fuzzy
1855
- msgid "Usage:"
1856
- msgstr "Användning:"
1857
-
1858
- #: dashboard/publisher/adrotate-ads-edit.php:263
1859
- #, fuzzy
1860
- msgid "A comma separated list of cities and/or states"
1861
- msgstr "En kommaseparerad lista över städer"
1862
 
1863
- #: dashboard/publisher/adrotate-ads-edit.php:263
1864
  #, fuzzy
1865
  msgid ""
1866
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1869,171 +1907,59 @@ msgstr ""
1869
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1870
  "rätt!"
1871
 
1872
- #: dashboard/publisher/adrotate-ads-edit.php:267
1873
  #, fuzzy
1874
  msgid "Countries:"
1875
  msgstr "Länder"
1876
 
1877
- #: dashboard/publisher/adrotate-ads-edit.php:296
1878
  #, fuzzy
1879
  msgid "Select the countries you want the adverts to show in."
1880
  msgstr "Välj de länder som du vill att annonser för att visa i."
1881
 
1882
- #: dashboard/publisher/adrotate-ads-edit.php:296
1883
  #, fuzzy
1884
  msgid "Cities take priority and will be filtered first."
1885
  msgstr "Städer prioriteras och kommer att filtreras först."
1886
 
1887
- #: dashboard/publisher/adrotate-ads-edit.php:301
1888
- #, fuzzy
1889
- msgid "Target your audience with Geo Location in AdRotate Pro"
1890
- msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1891
-
1892
- #: dashboard/publisher/adrotate-ads-edit.php:321
1893
- msgid "Schedule"
1894
- msgstr "Schema"
1895
-
1896
- #: dashboard/publisher/adrotate-ads-edit.php:322
1897
- msgid "From when to when is the advert visible?"
1898
- msgstr "Från när till när är annonsen syns?"
1899
-
1900
- #: dashboard/publisher/adrotate-ads-edit.php:326
1901
- msgid "Start date (day/month/year):"
1902
- msgstr "Startdatum (dag / månad / år):"
1903
-
1904
- #: dashboard/publisher/adrotate-ads-edit.php:347
1905
- msgid "End date (day/month/year):"
1906
- msgstr "Slutdatum (dag / månad / år):"
1907
-
1908
- #: dashboard/publisher/adrotate-ads-edit.php:370
1909
- msgid "Start time (hh:mm):"
1910
- msgstr "Starttid (hh: mm):"
1911
-
1912
- #: dashboard/publisher/adrotate-ads-edit.php:377
1913
- msgid "End time (hh:mm):"
1914
- msgstr "Avsluta tid (hh: mm):"
1915
-
1916
- #: dashboard/publisher/adrotate-ads-edit.php:387
1917
- msgid "Maximum Clicks:"
1918
- msgstr "Max Klick:"
1919
-
1920
- #: dashboard/publisher/adrotate-ads-edit.php:388
1921
- #: dashboard/publisher/adrotate-ads-edit.php:390
1922
- msgid "Leave empty or 0 to skip this."
1923
- msgstr "Lämna tomt eller 0 för att hoppa över detta."
1924
-
1925
- #: dashboard/publisher/adrotate-ads-edit.php:389
1926
- msgid "Maximum Impressions:"
1927
- msgstr "Maximala Intryck:"
1928
-
1929
- #: dashboard/publisher/adrotate-ads-edit.php:395
1930
- msgid ""
1931
- "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1932
- "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1933
- "hours. 6AM is 6:00 hours."
1934
- msgstr ""
1935
- "Tiden använder en 24-timmarsklocka. När du är van vid AM / PM-systemet ha "
1936
- "detta i åtanke: Om start-eller sluttiden är efter lunch, lägga till 12 "
1937
- "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
1938
-
1939
- #: dashboard/publisher/adrotate-ads-edit.php:395
1940
- msgid ""
1941
- "The maximum clicks and impressions are measured over the set schedule only. "
1942
- "Every schedule can have it's own limit!"
1943
- msgstr ""
1944
- "De maximala klick och visningar mäts över den inställda schema. Varje schema "
1945
- "kan få en egen gräns!"
1946
-
1947
- #: dashboard/publisher/adrotate-ads-edit.php:399
1948
- msgid "Create multiple schedules for each advert with AdRotate Pro."
1949
- msgstr ""
1950
-
1951
- #: dashboard/publisher/adrotate-ads-edit.php:401
1952
- #, fuzzy
1953
- msgid "Choose Multiple Schedules in AdRotate Pro"
1954
- msgstr "Tillgänglig i AdRotate Pro"
1955
-
1956
- #: dashboard/publisher/adrotate-ads-edit.php:402
1957
- msgid "You can add, edit or delete schedules from the"
1958
- msgstr ""
1959
-
1960
- #: dashboard/publisher/adrotate-ads-edit.php:402
1961
- msgid "dashboard. Save your advert first!"
1962
- msgstr ""
1963
-
1964
- #: dashboard/publisher/adrotate-ads-edit.php:409
1965
- msgid "From / Until"
1966
- msgstr "Från / Till"
1967
-
1968
- #: dashboard/publisher/adrotate-ads-edit.php:411
1969
- #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1970
- #: dashboard/publisher/adrotate-ads-main.php:45
1971
- #: dashboard/publisher/adrotate-ads-report.php:35
1972
- #: dashboard/publisher/adrotate-groups-edit.php:356
1973
- #: dashboard/publisher/adrotate-groups-main.php:37
1974
- #: dashboard/publisher/adrotate-groups-report.php:41
1975
- msgid "Clicks"
1976
- msgstr "Klick"
1977
-
1978
- #: dashboard/publisher/adrotate-ads-edit.php:412
1979
- #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1980
- #: dashboard/publisher/adrotate-ads-report.php:34
1981
- #: dashboard/publisher/adrotate-groups-edit.php:355
1982
- #: dashboard/publisher/adrotate-groups-main.php:35
1983
- #: dashboard/publisher/adrotate-groups-report.php:40
1984
- msgid "Impressions"
1985
- msgstr "Intryck"
1986
-
1987
- #: dashboard/publisher/adrotate-ads-edit.php:421
1988
- #, fuzzy
1989
- msgid "impressions per day"
1990
- msgstr "Intryck"
1991
-
1992
- #: dashboard/publisher/adrotate-ads-edit.php:437
1993
- #, fuzzy
1994
- msgid "In use by this advert."
1995
  msgstr ""
1996
- "Ange mål-URL här om du avsikt att använda den här annonsen i utskick eller "
1997
- "på avlägsna sidor."
1998
 
1999
- #: dashboard/publisher/adrotate-ads-edit.php:448
2000
  msgid "Select Groups"
2001
  msgstr "Välj Grupper"
2002
 
2003
- #: dashboard/publisher/adrotate-ads-edit.php:449
2004
- msgid "Optionally select the group(s) this ad belongs to."
2005
- msgstr "Eventuellt välja grupp (er) här annons tillhör."
2006
-
2007
- #: dashboard/publisher/adrotate-ads-edit.php:454
2008
  msgid "ID - Name"
2009
  msgstr "ID - Namn"
2010
 
2011
- #: dashboard/publisher/adrotate-ads-edit.php:455
2012
  msgid "Ads in group"
2013
  msgstr "Annonser i grupp"
2014
 
2015
- #: dashboard/publisher/adrotate-ads-edit.php:464
2016
  #: dashboard/publisher/adrotate-groups-main.php:58
2017
  msgid "Default"
2018
  msgstr "Default"
2019
 
2020
- #: dashboard/publisher/adrotate-ads-edit.php:465
2021
  #: dashboard/publisher/adrotate-groups-main.php:59
2022
  msgid "Dynamic"
2023
  msgstr "Dynamic"
2024
 
2025
- #: dashboard/publisher/adrotate-ads-edit.php:465
2026
  #: dashboard/publisher/adrotate-groups-main.php:59
2027
  #, fuzzy
2028
  msgid "second rotation"
2029
  msgstr "Geo Location"
2030
 
2031
- #: dashboard/publisher/adrotate-ads-edit.php:466
2032
  #: dashboard/publisher/adrotate-groups-main.php:60
2033
  msgid "Block"
2034
  msgstr "Block"
2035
 
2036
- #: dashboard/publisher/adrotate-ads-edit.php:466
2037
  #: dashboard/publisher/adrotate-groups-main.php:60
2038
  #, fuzzy
2039
  msgid "grid"
@@ -2041,19 +1967,19 @@ msgstr ""
2041
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
2042
  "(Standard: 2/2)"
2043
 
2044
- #: dashboard/publisher/adrotate-ads-edit.php:467
2045
- #: dashboard/publisher/adrotate-groups-edit.php:220
2046
  #: dashboard/publisher/adrotate-groups-main.php:61
2047
  msgid "Post Injection"
2048
  msgstr "Post injektion"
2049
 
2050
- #: dashboard/publisher/adrotate-ads-edit.php:468
2051
  #: dashboard/publisher/adrotate-groups-main.php:62
2052
  msgid "Geolocation"
2053
  msgstr "Geolocation"
2054
 
2055
- #: dashboard/publisher/adrotate-ads-edit.php:474
2056
- #: dashboard/publisher/adrotate-groups-edit.php:62
2057
  #: dashboard/publisher/adrotate-groups-main.php:69
2058
  msgid "Mode"
2059
  msgstr "läge"
@@ -2088,6 +2014,23 @@ msgstr ""
2088
  msgid "Title"
2089
  msgstr "Titel"
2090
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2091
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2092
  #: dashboard/publisher/adrotate-ads-main.php:47
2093
  #: dashboard/publisher/adrotate-ads-report.php:38
@@ -2149,7 +2092,7 @@ msgid "For 7 days"
2149
  msgstr "För 7 dagar"
2150
 
2151
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2152
- #: dashboard/publisher/adrotate-groups-edit.php:398
2153
  msgid "Configuration errors."
2154
  msgstr "Konfigurations fel."
2155
 
@@ -2163,7 +2106,7 @@ msgid "Export to XML"
2163
  msgstr "Exportera"
2164
 
2165
  #: dashboard/publisher/adrotate-ads-main.php:42
2166
- #: dashboard/publisher/adrotate-groups-edit.php:357
2167
  msgid "Weight"
2168
  msgstr "Vikt"
2169
 
@@ -2228,76 +2171,71 @@ msgstr "Ny grupp"
2228
  msgid "Edit Group"
2229
  msgstr "Redigera grupp"
2230
 
2231
- #: dashboard/publisher/adrotate-groups-edit.php:56
2232
  msgid "Name:"
2233
  msgstr "Namn:"
2234
 
2235
- #: dashboard/publisher/adrotate-groups-edit.php:65
2236
  msgid "Default - Show one ad at a time"
2237
  msgstr "Standard - Visa en annons i taget"
2238
 
2239
- #: dashboard/publisher/adrotate-groups-edit.php:66
2240
  msgid "Dynamic Mode - Show a different ad every few seconds"
2241
  msgstr "Dynamiskt läge - Visa en annan annons med några sekunders"
2242
 
2243
- #: dashboard/publisher/adrotate-groups-edit.php:67
2244
  msgid "Block Mode - Show a block of ads"
2245
  msgstr "Blockläge - Visa ett block av annonser"
2246
 
2247
- #: dashboard/publisher/adrotate-groups-edit.php:71
2248
  #, fuzzy
2249
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2250
  msgstr ""
2251
  "'Dynamic' och 'block' läge kräver 'jQuery' och 'jQuery Showoff' att laddas. "
2252
  "Du kan aktivera detta i AdRotate inställningar."
2253
 
2254
- #: dashboard/publisher/adrotate-groups-edit.php:78
2255
- #: dashboard/publisher/adrotate-groups-edit.php:135
2256
  msgid "Dynamic and Block Mode"
2257
  msgstr "Dynamisk och Blockläge"
2258
 
2259
- #: dashboard/publisher/adrotate-groups-edit.php:79
2260
  msgid "Only required if your group is in Dynamic or Block mode."
2261
  msgstr "Krävs endast om din grupp är i dynamisk eller Blockera läget."
2262
 
2263
- #: dashboard/publisher/adrotate-groups-edit.php:83
2264
- msgid "Block shape and border"
2265
- msgstr "Block form och border"
2266
 
2267
- #: dashboard/publisher/adrotate-groups-edit.php:110
2268
  msgid "rows"
2269
  msgstr "rader"
2270
 
2271
- #: dashboard/publisher/adrotate-groups-edit.php:123
2272
  msgid "columns"
2273
  msgstr "kolumner"
2274
 
2275
- #: dashboard/publisher/adrotate-groups-edit.php:126
2276
  msgid "Block Mode"
2277
  msgstr "Blockläge"
2278
 
2279
- #: dashboard/publisher/adrotate-groups-edit.php:126
2280
- #, fuzzy
2281
- msgid ""
2282
- "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2283
- "showing a maximum of 6 ads. Default: 2x2."
2284
  msgstr ""
2285
- "Gör ett rutnät för dina annonser. Fylla i 3 och 2 gör ett rutnät med 2 "
2286
- "kolumner som visar maximalt 6 annonser. Standard: 2x2."
2287
 
2288
- #: dashboard/publisher/adrotate-groups-edit.php:130
2289
- msgid "Advert Width and Height"
2290
- msgstr "Annons Bredd och höjd"
2291
 
2292
- #: dashboard/publisher/adrotate-groups-edit.php:132
2293
  msgid "pixel(s) wide"
2294
  msgstr "bildpunkt (er) bredd"
2295
 
2296
- #: dashboard/publisher/adrotate-groups-edit.php:132
2297
  msgid "pixel(s) high."
2298
  msgstr "bildpunkter (er) hög."
2299
 
2300
- #: dashboard/publisher/adrotate-groups-edit.php:135
2301
  #, fuzzy
2302
  msgid ""
2303
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
@@ -2306,229 +2244,236 @@ msgstr ""
2306
  "Ange den maximala storleken på annonserna i pixlar minus marginal. Storlek "
2307
  "kan vara 'auto' (Rekommenderas ej). Standard: 125/125."
2308
 
2309
- #: dashboard/publisher/adrotate-groups-edit.php:139
2310
  msgid "Automated refresh"
2311
  msgstr "Automatisk uppdatering"
2312
 
2313
- #: dashboard/publisher/adrotate-groups-edit.php:158
2314
  msgid "seconds."
2315
  msgstr "sekunder."
2316
 
2317
- #: dashboard/publisher/adrotate-groups-edit.php:161
2318
  msgid "Dynamic Mode"
2319
  msgstr "Dynamiskt läge"
2320
 
2321
- #: dashboard/publisher/adrotate-groups-edit.php:161
2322
  msgid ""
2323
  "Load a new advert in this interval without reloading the page. Default: 6."
2324
  msgstr ""
2325
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
2326
 
2327
- #: dashboard/publisher/adrotate-groups-edit.php:181
2328
- #: dashboard/publisher/adrotate-groups-edit.php:322
2329
- #: dashboard/publisher/adrotate-groups-edit.php:404
 
 
 
 
 
 
 
2330
  #, fuzzy
2331
  msgid "Save Group"
2332
  msgstr "Spara"
2333
 
2334
- #: dashboard/publisher/adrotate-groups-edit.php:189
2335
  msgid "Advert Margin"
2336
  msgstr "Annons Marginal"
2337
 
2338
- #: dashboard/publisher/adrotate-groups-edit.php:191
2339
  msgid "pixel(s)"
2340
  msgstr "bildpunkt (er)"
2341
 
2342
- #: dashboard/publisher/adrotate-groups-edit.php:194
2343
  #, fuzzy
2344
  msgid "A transparent area outside the advert in pixels. Default: 0."
2345
  msgstr "En transparant border utanför annonsen i pixlar. Standard: 1."
2346
 
2347
- #: dashboard/publisher/adrotate-groups-edit.php:194
2348
  #, fuzzy
2349
  msgid "Set to 0 to disable."
2350
  msgstr "Standard: 10. Sätt till 0 för att inaktivera denna timer."
2351
 
2352
- #: dashboard/publisher/adrotate-groups-edit.php:198
 
 
 
 
2353
  #, fuzzy
2354
  msgid "Align the group"
2355
  msgstr "Annonser i grupp"
2356
 
2357
- #: dashboard/publisher/adrotate-groups-edit.php:201
2358
  #, fuzzy
2359
  msgid "None (Default)"
2360
  msgstr "Default"
2361
 
2362
- #: dashboard/publisher/adrotate-groups-edit.php:202
2363
  msgid "Left"
2364
  msgstr ""
2365
 
2366
- #: dashboard/publisher/adrotate-groups-edit.php:203
2367
  #, fuzzy
2368
  msgid "Right"
2369
  msgstr "Vikt"
2370
 
2371
- #: dashboard/publisher/adrotate-groups-edit.php:204
2372
  msgid "Center"
2373
  msgstr ""
2374
 
2375
- #: dashboard/publisher/adrotate-groups-edit.php:208
2376
  msgid ""
2377
  "Align the group in your post or page. Using 'center' may affect your margin "
2378
  "setting. Not every theme supports this feature."
2379
  msgstr ""
2380
 
2381
- #: dashboard/publisher/adrotate-groups-edit.php:214
2382
  msgid "Leave empty or 0 to skip this. Will default to group id."
2383
  msgstr ""
2384
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
2385
 
2386
- #: dashboard/publisher/adrotate-groups-edit.php:218
2387
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2388
  msgstr ""
2389
 
2390
- #: dashboard/publisher/adrotate-groups-edit.php:221
2391
- msgid "Insert ads to the begin or end of a post/page."
2392
- msgstr ""
2393
-
2394
- #: dashboard/publisher/adrotate-groups-edit.php:224
2395
  msgid "Include ads in categories?"
2396
  msgstr "Inkludera annonser i kategorierna?"
2397
 
2398
- #: dashboard/publisher/adrotate-groups-edit.php:228
2399
- #: dashboard/publisher/adrotate-groups-edit.php:269
2400
  #, fuzzy
2401
  msgid "Disabled"
2402
  msgstr "Inaktivera annonser"
2403
 
2404
- #: dashboard/publisher/adrotate-groups-edit.php:229
2405
- #: dashboard/publisher/adrotate-groups-edit.php:270
2406
  #, fuzzy
2407
  msgid "Before content"
2408
  msgstr "Innan publicerat innehåll"
2409
 
2410
- #: dashboard/publisher/adrotate-groups-edit.php:230
2411
- #: dashboard/publisher/adrotate-groups-edit.php:271
2412
  #, fuzzy
2413
  msgid "After content"
2414
  msgstr "Före och efter innehållet"
2415
 
2416
- #: dashboard/publisher/adrotate-groups-edit.php:231
2417
- #: dashboard/publisher/adrotate-groups-edit.php:272
2418
  #, fuzzy
2419
  msgid "Before and after content"
2420
  msgstr "Före och efter innehållet"
2421
 
2422
- #: dashboard/publisher/adrotate-groups-edit.php:232
2423
- #: dashboard/publisher/adrotate-groups-edit.php:273
2424
  #, fuzzy
2425
  msgid "After..."
2426
  msgstr "Efter annons"
2427
 
2428
- #: dashboard/publisher/adrotate-groups-edit.php:238
2429
- #: dashboard/publisher/adrotate-groups-edit.php:279
2430
  msgid "the first paragraph"
2431
  msgstr ""
2432
 
2433
- #: dashboard/publisher/adrotate-groups-edit.php:239
2434
- #: dashboard/publisher/adrotate-groups-edit.php:280
2435
  msgid "the 2nd paragraph"
2436
  msgstr ""
2437
 
2438
- #: dashboard/publisher/adrotate-groups-edit.php:240
2439
- #: dashboard/publisher/adrotate-groups-edit.php:281
2440
  msgid "the 3rd paragraph"
2441
  msgstr ""
2442
 
2443
- #: dashboard/publisher/adrotate-groups-edit.php:241
2444
- #: dashboard/publisher/adrotate-groups-edit.php:282
2445
  msgid "the 4th paragraph"
2446
  msgstr ""
2447
 
2448
- #: dashboard/publisher/adrotate-groups-edit.php:243
2449
- #: dashboard/publisher/adrotate-groups-edit.php:284
2450
  msgid "every 2nd paragraph"
2451
  msgstr ""
2452
 
2453
- #: dashboard/publisher/adrotate-groups-edit.php:244
2454
- #: dashboard/publisher/adrotate-groups-edit.php:285
2455
  msgid "every 3rd paragraph"
2456
  msgstr ""
2457
 
2458
- #: dashboard/publisher/adrotate-groups-edit.php:245
2459
- #: dashboard/publisher/adrotate-groups-edit.php:286
2460
  msgid "every 4th paragraph"
2461
  msgstr ""
2462
 
2463
- #: dashboard/publisher/adrotate-groups-edit.php:246
2464
- #: dashboard/publisher/adrotate-groups-edit.php:287
2465
  msgid "every 5th paragraph"
2466
  msgstr ""
2467
 
2468
- #: dashboard/publisher/adrotate-groups-edit.php:247
2469
- #: dashboard/publisher/adrotate-groups-edit.php:288
2470
  msgid "every 6th paragraph"
2471
  msgstr ""
2472
 
2473
- #: dashboard/publisher/adrotate-groups-edit.php:248
2474
- #: dashboard/publisher/adrotate-groups-edit.php:289
2475
  msgid "every 7th paragraph"
2476
  msgstr ""
2477
 
2478
- #: dashboard/publisher/adrotate-groups-edit.php:249
2479
- #: dashboard/publisher/adrotate-groups-edit.php:290
2480
  msgid "every 8th paragraph"
2481
  msgstr ""
2482
 
2483
- #: dashboard/publisher/adrotate-groups-edit.php:255
2484
  msgid "Which categories?"
2485
  msgstr "Vilka kategorier?"
2486
 
2487
- #: dashboard/publisher/adrotate-groups-edit.php:260
2488
  msgid "Click the categories posts you want the adverts to show in."
2489
  msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
2490
 
2491
- #: dashboard/publisher/adrotate-groups-edit.php:265
2492
  msgid "Include ads in pages?"
2493
  msgstr "Inkludera annonser på sidor?"
2494
 
2495
- #: dashboard/publisher/adrotate-groups-edit.php:296
2496
  msgid "Which pages?"
2497
  msgstr "Vilka sidor?"
2498
 
2499
- #: dashboard/publisher/adrotate-groups-edit.php:301
2500
  msgid "Click the pages you want the adverts to show in."
2501
  msgstr "Klicka på de sidor du vill annonserna att visa i."
2502
 
2503
- #: dashboard/publisher/adrotate-groups-edit.php:326
2504
  msgid "Wrapper code"
2505
  msgstr "Wrapper kod"
2506
 
2507
- #: dashboard/publisher/adrotate-groups-edit.php:327
2508
- msgid "Wraps around each ad."
2509
- msgstr "Sveper runt varje annons."
2510
 
2511
- #: dashboard/publisher/adrotate-groups-edit.php:331
2512
  msgid "Before ad"
2513
  msgstr "Innan annons"
2514
 
2515
- #: dashboard/publisher/adrotate-groups-edit.php:336
2516
- msgid "HTML/JavaScript allowed, use with care!"
2517
- msgstr "HTML / JavaScript tillåtet, använd med omsorg!"
2518
 
2519
- #: dashboard/publisher/adrotate-groups-edit.php:340
2520
  msgid "After ad"
2521
  msgstr "Efter annons"
2522
 
2523
- #: dashboard/publisher/adrotate-groups-edit.php:349
2524
  msgid "Select Ads"
2525
  msgstr "Välj Annonser"
2526
 
2527
- #: dashboard/publisher/adrotate-groups-edit.php:358
2528
  msgid "Visible until"
2529
  msgstr "Synlig tills"
2530
 
2531
- #: dashboard/publisher/adrotate-groups-edit.php:391
2532
  msgid "No ads created!"
2533
  msgstr "Inga annonser skapat!"
2534
 
@@ -2560,6 +2505,110 @@ msgstr "Inga grupper skapas!"
2560
  msgid "Statistics for group"
2561
  msgstr "Statistik för grupp"
2562
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2563
  #, fuzzy
2564
  #~ msgid "AdRotate Website."
2565
  #~ msgstr "AdRotate butik"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-19 05:09+0100\n"
6
+ "PO-Revision-Date: 2015-04-19 05:09+0100\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"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:809
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:812
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-output.php:745
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
+ #: adrotate-output.php:746
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
38
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
39
  "via webbläsaren."
40
 
41
+ #: adrotate-output.php:747
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr ""
46
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
47
 
48
+ #: adrotate-output.php:748
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
+ #: adrotate-output.php:766
53
  msgid ""
54
  "Error, Ad is not available at this time due to schedule/geolocation "
55
  "restrictions or does not exist!"
57
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
58
  "geolokalisering restriktioner eller finns inte!"
59
 
60
+ #: adrotate-output.php:768
61
  msgid ""
62
  "Error, Ad is not available at this time due to schedule/geolocation "
63
  "restrictions!"
65
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
66
  "geolokalisering begränsningar!"
67
 
68
+ #: adrotate-output.php:775 adrotate-output.php:777
69
  msgid ""
70
  "Either there are no banners, they are disabled or none qualified for this "
71
  "location!"
73
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
74
  "kvalificerade för den här platsen!"
75
 
76
+ #: adrotate-output.php:783
77
  msgid "Error, no Ad ID set! Check your syntax!"
78
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
79
 
80
+ #: adrotate-output.php:789
81
  msgid "Error, no group ID set! Check your syntax!"
82
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
83
 
84
+ #: adrotate-output.php:794
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
+ #: adrotate-output.php:800
89
  msgid ""
90
  "There was an error locating the database tables for AdRotate. Please "
91
  "deactivate and re-activate AdRotate from the plugin page!!"
93
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
94
  "avaktivera och återaktivera AdRotate från plugin sidan!"
95
 
96
+ #: adrotate-output.php:800
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
99
 
100
+ #: adrotate-output.php:806
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
+ #: adrotate-output.php:831
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
+ #: adrotate-output.php:831
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
+ #: adrotate-output.php:833
113
  msgid "active ad(s) are about to expire."
114
  msgstr "aktiv annons(er) är på väg att löpa ut."
115
 
116
+ #: adrotate-output.php:833
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
+ #: adrotate-output.php:835
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
+ #: adrotate-output.php:835
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
+ #: adrotate-output.php:837
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
+ #: adrotate-output.php:837
133
  msgid "ad(s) are about to expire."
134
  msgstr "annons(er) är på väg att löpa ut."
135
 
136
+ #: adrotate-output.php:837
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
+ #: adrotate-output.php:837
141
  msgid "Fix this as soon as possible"
142
  msgstr "Lös det här så fort som möjligt"
143
 
144
+ #: adrotate-output.php:849
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
+ #: adrotate-output.php:850
150
  msgid ""
151
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
152
  "to the <strong>PRO</strong> version"
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:850
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:850
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
+ #: adrotate-output.php:894
165
  msgid ""
166
+ "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
167
+ "this menu. Check out the"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:894
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
+ #: adrotate-output.php:894 adrotate-output.php:971
175
+ #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:894
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:930
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
+ #: adrotate-output.php:931
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:933
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:934
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
+ #: adrotate-output.php:935
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
+ #: adrotate-output.php:936
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
+ #: adrotate-output.php:937
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:963
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Fastnat med AdRotate? Jag hjälper!"
220
 
221
+ #: adrotate-output.php:964
222
  msgid "Brought to you by"
223
  msgstr "Presenteras av"
224
 
225
+ #: adrotate-output.php:971
226
  msgid ""
227
  "A lot of users only think to review AdRotate when something goes wrong while "
228
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:971
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:971
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:971
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Betygsätt och omdöme"
243
 
244
+ #: adrotate-output.php:971
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:974
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
253
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
254
  "mer om vad jag kan göra för dig!"
255
 
256
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Besök"
259
 
260
+ #: adrotate-output.php:974 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "hemsida"
263
 
264
+ #: adrotate-output.php:1004
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Tillgänglig i AdRotate Pro"
267
 
268
+ #: adrotate-output.php:1004
269
  #, fuzzy
270
  msgid "More information..."
271
  msgstr "Mer info"
272
 
273
+ #: adrotate-output.php:1005
274
  msgid "This feature is available in AdRotate Pro"
275
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
276
 
277
+ #: adrotate-output.php:1005
278
  #, fuzzy
279
  msgid "Learn more"
280
  msgstr "Läs mer om"
281
 
282
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:224
283
+ #: dashboard/publisher/adrotate-ads-edit.php:245
284
  msgid "January"
285
  msgstr "Januari"
286
 
287
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:225
288
+ #: dashboard/publisher/adrotate-ads-edit.php:246
289
  msgid "February"
290
  msgstr "Februari"
291
 
292
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:226
293
+ #: dashboard/publisher/adrotate-ads-edit.php:247
294
  msgid "March"
295
  msgstr "Mars"
296
 
297
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:227
298
+ #: dashboard/publisher/adrotate-ads-edit.php:248
299
  msgid "April"
300
  msgstr "April"
301
 
302
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:228
303
+ #: dashboard/publisher/adrotate-ads-edit.php:249
304
  msgid "May"
305
  msgstr "Maj"
306
 
307
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:229
308
+ #: dashboard/publisher/adrotate-ads-edit.php:250
309
  msgid "June"
310
  msgstr "Juni"
311
 
312
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:230
313
+ #: dashboard/publisher/adrotate-ads-edit.php:251
314
  msgid "July"
315
  msgstr "Juli"
316
 
317
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:231
318
+ #: dashboard/publisher/adrotate-ads-edit.php:252
319
  msgid "August"
320
  msgstr "Augusti"
321
 
322
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:232
323
+ #: dashboard/publisher/adrotate-ads-edit.php:253
324
  msgid "September"
325
  msgstr "September"
326
 
327
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:233
328
+ #: dashboard/publisher/adrotate-ads-edit.php:254
329
  msgid "October"
330
  msgstr "Oktober"
331
 
332
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:234
333
+ #: dashboard/publisher/adrotate-ads-edit.php:255
334
  msgid "November"
335
  msgstr "November"
336
 
337
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:235
338
+ #: dashboard/publisher/adrotate-ads-edit.php:256
339
  msgid "December"
340
  msgstr "December"
341
 
388
  msgid "Choose what you want to use this widget for"
389
  msgstr "Välj vad du vill använda denna widget för"
390
 
391
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:51
392
  msgid "ID:"
393
  msgstr "ID:"
394
 
396
  msgid "Fill in the ID of the type you want to display!"
397
  msgstr "Fyll i ID för den typ som du vill visa!"
398
 
399
+ #: adrotate.php:107
400
  msgid "General Info"
401
  msgstr "Allmän info"
402
 
403
+ #: adrotate.php:108
404
  msgid "AdRotate Pro"
405
  msgstr "AdRotate Pro"
406
 
407
+ #: adrotate.php:109
408
  msgid "Manage Ads"
409
  msgstr "Hantera Annonser"
410
 
411
+ #: adrotate.php:110 dashboard/publisher/adrotate-groups-main.php:12
412
  msgid "Manage Groups"
413
  msgstr "Hantera Grupper"
414
 
415
+ #: adrotate.php:111 adrotate.php:440
 
416
  #, fuzzy
417
  msgid "Manage Schedules"
418
  msgstr "Hantera"
419
 
420
+ #: adrotate.php:112
421
  #, fuzzy
422
  msgid "Manage Media"
423
  msgstr "Media:"
424
 
425
+ #: adrotate.php:113
426
  msgid "Settings"
427
  msgstr "Inställningar"
428
 
429
+ #: adrotate.php:136
430
  msgid "AdRotate Info"
431
  msgstr "AdRotate Information"
432
 
433
+ #: adrotate.php:157
434
  #, fuzzy
435
  msgid "AdRotate Professional"
436
  msgstr "AdRotate"
437
 
438
+ #: adrotate.php:200
439
  msgid "Ad Management"
440
  msgstr "Annonshantering"
441
 
442
+ #: adrotate.php:203
443
  msgid "Ad created"
444
  msgstr "Annons skapad"
445
 
446
+ #: adrotate.php:205
447
  msgid "Ad updated"
448
  msgstr "Annons uppdaterad"
449
 
450
+ #: adrotate.php:207
451
  msgid "Ad(s) deleted"
452
  msgstr "Annons(er) raderas"
453
 
454
+ #: adrotate.php:209
455
  msgid "Ad(s) statistics reset"
456
  msgstr "Annons(er) statistik återställning"
457
 
458
+ #: adrotate.php:211
459
  msgid "Ad(s) renewed"
460
  msgstr "Annons(er) förnyas"
461
 
462
+ #: adrotate.php:213
463
  msgid "Ad(s) deactivated"
464
  msgstr "Annons(er) avaktiveras"
465
 
466
+ #: adrotate.php:215
467
  msgid "Ad(s) activated"
468
  msgstr "Annons(er) aktiveras"
469
 
470
+ #: adrotate.php:217
471
  msgid ""
472
  "The ad was saved but has an issue which might prevent it from working "
473
  "properly. Review the yellow marked ad."
475
  "Annonsen har sparats, men har en fråga som skulle kunna hindra den från att "
476
  "fungera korrekt. Granska den gula markerade annons."
477
 
478
+ #: adrotate.php:219
479
  #, fuzzy
480
  msgid "Export created"
481
  msgstr "export skapad"
482
 
483
+ #: adrotate.php:223
484
  msgid "Action prohibited"
485
  msgstr "Åtgärden förbjuden"
486
 
487
+ #: adrotate.php:225 adrotate.php:373
488
  msgid "No data found in selected time period"
489
  msgstr "Inga data finns i vald tidsperiod"
490
 
491
+ #: adrotate.php:283 adrotate.php:379 adrotate.php:435
492
  msgid "Manage"
493
  msgstr "Hantera"
494
 
495
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
496
  msgid "Add New"
497
  msgstr "Lägg till ny"
498
 
499
+ #: adrotate.php:362
500
  msgid "Group Management"
501
  msgstr "Grupp Hantering"
502
 
503
+ #: adrotate.php:365
504
  msgid "Group created"
505
  msgstr "Grupp skapad"
506
 
507
+ #: adrotate.php:367
508
  msgid "Group updated"
509
  msgstr "Grupp uppdaterad"
510
 
511
+ #: adrotate.php:369
512
  msgid "Group deleted"
513
  msgstr "Grupp raderad"
514
 
515
+ #: adrotate.php:371
516
  msgid "Group including it's Ads deleted"
517
  msgstr "Grupp inklusive dess annonser raderade"
518
 
519
+ #: adrotate.php:431
520
  #, fuzzy
521
  msgid "Schedule Management available in AdRotate Pro"
522
  msgstr "Tillgänglig i AdRotate Pro"
523
 
524
+ #: adrotate.php:441
525
  #, fuzzy
526
  msgid ""
527
  "Schedule management and multiple schedules per advert is available in "
528
  "AdRotate Pro."
529
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
530
 
531
+ #: adrotate.php:441 adrotate.php:528
532
+ #: dashboard/publisher/adrotate-ads-edit.php:177
533
  #: dashboard/publisher/adrotate-ads-main.php:108
534
+ #: dashboard/publisher/adrotate-groups-edit.php:75
535
  #: dashboard/publisher/adrotate-groups-main.php:87
536
  #, fuzzy
537
  msgid "More information"
538
  msgstr "Mer info"
539
 
540
+ #: adrotate.php:448 dashboard/publisher/adrotate-ads-main-disabled.php:20
541
  #: dashboard/publisher/adrotate-ads-main-error.php:19
542
  #: dashboard/publisher/adrotate-ads-main.php:20
543
  #: dashboard/publisher/adrotate-groups-main.php:20
544
  msgid "Bulk Actions"
545
  msgstr "Massåtgärder"
546
 
547
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:25
548
  #: dashboard/publisher/adrotate-ads-main-error.php:29
549
  #: dashboard/publisher/adrotate-ads-main.php:30
550
  #: dashboard/publisher/adrotate-groups-main.php:24
551
  msgid "Go"
552
  msgstr "Gå"
553
 
554
+ #: adrotate.php:458 dashboard/publisher/adrotate-ads-main-disabled.php:35
 
555
  #: dashboard/publisher/adrotate-ads-main-error.php:39
556
  #: dashboard/publisher/adrotate-ads-main.php:39
557
  #: dashboard/publisher/adrotate-groups-main.php:32
558
  msgid "ID"
559
  msgstr "ID"
560
 
561
+ #: adrotate.php:459
562
  #, fuzzy
563
  msgid "Start"
564
  msgstr "Starttid (hh: mm):"
565
 
566
+ #: adrotate.php:459
567
  #, fuzzy
568
  msgid "End"
569
  msgstr "Avsluta tid (hh: mm):"
570
 
571
+ #: adrotate.php:460 dashboard/publisher/adrotate-ads-edit.php:426
572
  #: dashboard/publisher/adrotate-groups-main.php:34
573
  msgid "Ads"
574
  msgstr "Annonser"
575
 
576
+ #: adrotate.php:462
577
  msgid "Max Clicks"
578
  msgstr "Max Klick"
579
 
580
+ #: adrotate.php:463
581
  msgid "Max Impressions"
582
  msgstr "Max Intryck"
583
 
584
+ #: adrotate.php:493
585
  #, fuzzy
586
  msgid "No schedules created yet!"
587
  msgstr "Inga block har skapats än!"
588
 
589
+ #: adrotate.php:498
590
  #, fuzzy
591
  msgid "Easily manage your schedules from here with AdRotate Pro."
592
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
593
 
594
+ #: adrotate.php:498 adrotate.php:561
595
  #, fuzzy
596
  msgid "Upgrade today!"
597
  msgstr "i dag"
598
 
599
+ #: adrotate.php:501 dashboard/publisher/adrotate-ads-main-error.php:74
600
+ #: dashboard/publisher/adrotate-groups-edit.php:372
 
601
  msgid "Expires soon."
602
  msgstr "Utgår inom kort."
603
 
604
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:75
605
+ #: dashboard/publisher/adrotate-groups-edit.php:373
606
  msgid "Has expired."
607
  msgstr "Har gått ut."
608
 
609
+ #: adrotate.php:526
610
  #, fuzzy
611
  msgid "Media Management available in AdRotate Pro"
612
  msgstr "Tillgänglig i AdRotate Pro"
613
 
614
+ #: adrotate.php:528
615
  msgid ""
616
  "Upload images to the AdRotate Pro banners folder from here. This is "
617
  "especially useful if you use responsive adverts with multiple images."
618
  msgstr ""
619
 
620
+ #: adrotate.php:528
621
  #, fuzzy
622
  msgid "Media uploading and management is available in AdRotate Pro."
623
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
624
 
625
+ #: adrotate.php:530
626
  #, fuzzy
627
  msgid "Upload new banner image"
628
  msgstr "Banner image:"
629
 
630
+ #: adrotate.php:531
631
  #, fuzzy
632
  msgid "Accepted files are:"
633
  msgstr "Godkända filer är:"
634
 
635
+ #: adrotate.php:531
636
  #, fuzzy
637
  msgid "Maximum size is 512Kb."
638
  msgstr "Maximal storlek är 512Kb."
639
 
640
+ #: adrotate.php:531
641
  msgid "Important:"
642
  msgstr ""
643
 
644
+ #: adrotate.php:531
645
  msgid ""
646
  "Make sure your file has no spaces or special characters in the name. Replace "
647
  "spaces with a - or _."
648
  msgstr ""
649
 
650
+ #: adrotate.php:533
651
  msgid ""
652
  "For responsive adverts make sure the filename is in the following format; "
653
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
654
  msgstr ""
655
 
656
+ #: adrotate.php:534 dashboard/publisher/adrotate-ads-edit.php:308
657
  msgid ""
658
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
659
  "filename instead of \".full\" for the various viewports."
660
  msgstr ""
661
 
662
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
663
+ #: dashboard/publisher/adrotate-groups-edit.php:308
664
+ #: dashboard/publisher/adrotate-groups-edit.php:316
665
  msgid "Example:"
666
  msgstr "Exempel:"
667
 
668
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:309
669
  msgid ""
670
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
671
  "for different viewports."
672
  msgstr ""
673
 
674
+ #: adrotate.php:539
675
  #, fuzzy
676
  msgid "Upload image"
677
  msgstr "Överföring ofullständig."
678
 
679
+ #: adrotate.php:542
680
  msgid "Available banner images in"
681
  msgstr ""
682
 
683
+ #: adrotate.php:547 dashboard/publisher/adrotate-groups-main.php:33
684
  msgid "Name"
685
  msgstr "Namn"
686
 
687
+ #: adrotate.php:548
688
  #, fuzzy
689
  msgid "Actions"
690
  msgstr "Massåtgärder"
691
 
692
+ #: adrotate.php:553 adrotate.php:554 adrotate.php:555 adrotate.php:556
693
+ #: adrotate.php:557 dashboard/publisher/adrotate-ads-main-disabled.php:22
694
  #: dashboard/publisher/adrotate-ads-main-error.php:21
695
  #: dashboard/publisher/adrotate-ads-main.php:22
696
  msgid "Delete"
697
  msgstr "Radera"
698
 
699
+ #: adrotate.php:561
700
  msgid ""
701
  "Make sure the banner images are not in use by adverts when you delete them!"
702
  msgstr ""
703
 
704
+ #: adrotate.php:561
705
  #, fuzzy
706
  msgid "Manage your banner folder from here with AdRotate Pro."
707
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
708
 
709
+ #: adrotate.php:605
710
  msgid "AdRotate Settings"
711
  msgstr "AdRotate Inställningar"
712
 
713
+ #: adrotate.php:608
714
  msgid "Settings saved"
715
  msgstr "Inställningar sparas"
716
 
717
+ #: adrotate.php:610
718
  msgid "Database optimized"
719
  msgstr "Databas optimerad"
720
 
721
+ #: adrotate.php:612
722
  msgid "Database repaired"
723
  msgstr "Databas reparation"
724
 
725
+ #: adrotate.php:614
726
  msgid "Ads evaluated and statuses have been corrected where required"
727
  msgstr "annonser utvärderas och status har rättats till vid behov"
728
 
729
+ #: adrotate.php:616
730
  msgid "Empty database records removed"
731
  msgstr "Tomma databasposter tas bort"
732
 
733
+ #: adrotate.php:618
734
  msgid "Database can only be optimized or cleaned once every hour"
735
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
736
 
737
+ #: adrotate.php:626
738
  msgid "Access Rights"
739
  msgstr "Tillträde"
740
 
741
+ #: adrotate.php:627
742
  msgid "Who has access to what?"
743
  msgstr ""
744
 
745
+ #: adrotate.php:630
746
  msgid "Manage/Add/Edit adverts"
747
  msgstr "Hantera / Lägg till / redigera annonser"
748
 
749
+ #: adrotate.php:634
750
  msgid "Role to see and add/edit ads."
751
  msgstr "Role för att se och lägga till / redigera annonser."
752
 
753
+ #: adrotate.php:638
754
  msgid "Delete/Reset adverts"
755
  msgstr "Radera / Reset annonser"
756
 
757
+ #: adrotate.php:642
758
  msgid "Role to delete ads and reset stats."
759
  msgstr "Role att ta bort annonser och återställ statistik."
760
 
761
+ #: adrotate.php:646
762
  msgid "Manage/Add/Edit groups"
763
  msgstr "Hantera / Lägg till / Redigera grupper"
764
 
765
+ #: adrotate.php:650
766
  msgid "Role to see and add/edit groups."
767
  msgstr "Role för att se och lägga till / redigera grupp."
768
 
769
+ #: adrotate.php:654
770
  msgid "Delete groups"
771
  msgstr "Ta bort grupper"
772
 
773
+ #: adrotate.php:658
774
  msgid "Role to delete groups."
775
  msgstr "Role att ta bort grupper."
776
 
777
+ #: adrotate.php:679 adrotate.php:729 adrotate.php:784 adrotate.php:831
778
+ #: adrotate.php:875
779
  msgid "Update Options"
780
  msgstr "Update Options"
781
 
782
+ #: adrotate.php:690
783
  msgid "Statistics"
784
  msgstr "Statistik"
785
 
786
+ #: adrotate.php:693
787
  #, fuzzy
788
  msgid "Enable stats"
789
  msgstr "Statistik"
790
 
791
+ #: adrotate.php:695
792
  msgid "Track clicks and impressions."
793
  msgstr "Spåra klick och visningar."
794
 
795
+ #: adrotate.php:695
796
  #, fuzzy
797
  msgid "Disabling this also disables click and impression limits on schedules."
798
  msgstr ""
799
  "Inaktivera detta också inaktiverar klick och visningar gränser för scheman "
800
  "och inaktiverar tidsramar."
801
 
802
+ #: adrotate.php:699
803
  msgid "Impressions timer"
804
  msgstr "Intryck timer"
805
 
806
+ #: adrotate.php:701 adrotate.php:708
807
  msgid "Seconds."
808
  msgstr "Sekunder."
809
 
810
+ #: adrotate.php:702
811
  #, fuzzy
812
  msgid "Default: 60."
813
  msgstr "Default"
814
 
815
+ #: adrotate.php:702
816
  #, fuzzy
817
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
818
  msgstr ""
819
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
820
 
821
+ #: adrotate.php:706
822
  #, fuzzy
823
  msgid "Clicks timer"
824
  msgstr "Intryck timer"
825
 
826
+ #: adrotate.php:709
827
  #, fuzzy
828
  msgid "Default: 86400."
829
  msgstr "Default"
830
 
831
+ #: adrotate.php:709
832
  #, fuzzy
833
  msgid ""
834
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
835
  msgstr ""
836
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
837
 
838
+ #: adrotate.php:714
839
  #, fuzzy
840
  msgid "Bot filter"
841
  msgstr "User-Agent Filter"
842
 
843
+ #: adrotate.php:717
844
  msgid "User-Agent Filter"
845
  msgstr "User-Agent Filter"
846
 
847
+ #: adrotate.php:720
848
  msgid ""
849
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
850
  "prevent impressions and clicks counted on them."
852
  "En kommaseparerad lista med sökord. Filtrera bort bots / sökrobotar / user-"
853
  "agents. För att förhindra att visningar och klick räknas på dem."
854
 
855
+ #: adrotate.php:721
856
  msgid ""
857
  "Keep in mind that this might give false positives. The word 'google' also "
858
  "matches 'googlebot', but not vice-versa. So be careful!"
860
  "Tänk på att detta kan ge falska positiva. Ordet \"google\" träffar "
861
  "\"googlebot\", men inte vice versa. Så var försiktig!"
862
 
863
+ #: adrotate.php:721
864
  msgid "Keep your list up-to-date"
865
  msgstr "Håll din lista up-to-date"
866
 
867
+ #: adrotate.php:722
868
  msgid ""
869
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
870
  "other characters are stripped out."
872
  "Använd endast ord med alfanumeriska tecken, [- _] tillåts också. Alla andra "
873
  "tecken avskalade ut."
874
 
875
+ #: adrotate.php:723
876
  msgid ""
877
  "Additionally to the list specified here, empty User-Agents are blocked as "
878
  "well."
879
  msgstr ""
880
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
881
 
882
+ #: adrotate.php:723
883
  msgid "Learn more about"
884
  msgstr "Läs mer om"
885
 
886
+ #: adrotate.php:723
887
  msgid "user-agents"
888
  msgstr "user-agents"
889
 
890
+ #: adrotate.php:732
891
  msgid "Miscellaneous"
892
  msgstr "Diverse"
893
 
894
+ #: adrotate.php:735
895
  msgid "Widget alignment"
896
  msgstr "widget inriktnings"
897
 
898
+ #: adrotate.php:736
899
  msgid ""
900
  "Check this box if your widgets do not align in your themes sidebar. (Does "
901
  "not always help!)"
903
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
904
  "alltid hjälper!)"
905
 
906
+ #: adrotate.php:739
907
  msgid "Widget padding"
908
  msgstr "widget padding"
909
 
910
+ #: adrotate.php:740
911
  msgid ""
912
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
913
  "not always work!)"
915
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
916
  "widgets. (Fungerar inte alltid!)"
917
 
918
+ #: adrotate.php:745 adrotate.php:756
919
  #, fuzzy
920
  msgid "NOTICE:"
921
  msgstr "Meddelande"
922
 
923
+ #: adrotate.php:746
924
  msgid ""
925
  "You have enabled W3 Total Caching support but not defined the security hash. "
926
  "You need to add the following line to your wp-config.php near the bottom or "
928
  "needs to be enabled in W3 Total Cache as well too."
929
  msgstr ""
930
 
931
+ #: adrotate.php:750
932
  msgid "W3 Total Caching"
933
  msgstr "W3 Total Caching"
934
 
935
+ #: adrotate.php:751
936
  msgid "Check this box if you use W3 Total Caching on your site."
937
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
938
 
939
+ #: adrotate.php:757
940
  msgid ""
941
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
942
  "this function will not work. WP Super Cache has discontinued support for "
943
  "dynamic content."
944
  msgstr ""
945
 
946
+ #: adrotate.php:761
947
  msgid "WP Super Cache"
948
  msgstr "WP Super Cache"
949
 
950
+ #: adrotate.php:762
951
  msgid "Check this box if you use WP Super Cache on your site."
952
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
953
 
954
+ #: adrotate.php:767
955
  msgid ""
956
  "It may take a while for the ad to start rotating. The caching plugin needs "
957
  "to refresh the cache. This can take up to a week if not done manually."
960
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
961
  "manuellt."
962
 
963
+ #: adrotate.php:767
964
  msgid ""
965
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
966
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
968
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
969
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
970
 
971
+ #: adrotate.php:771
972
  msgid "Javascript"
973
  msgstr ""
974
 
975
+ #: adrotate.php:774
976
  #, fuzzy
977
  msgid "Load jQuery"
978
  msgstr ""
979
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
980
  "om andra plugins eller teman redan läsa här."
981
 
982
+ #: adrotate.php:775
983
  #, fuzzy
984
  msgid ""
985
  "jQuery is required for all Javascript features below. Enable this if your "
988
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
989
  "om andra plugins eller teman redan läsa här."
990
 
991
+ #: adrotate.php:778
992
  #, fuzzy
993
  msgid "Load in footer?"
994
  msgstr ""
995
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
996
 
997
+ #: adrotate.php:779
998
  #, fuzzy
999
  msgid ""
1000
  "Enable if you want to load the above libraries in the footer. Your theme "
1001
  "needs to call wp_footer() for this to work."
1002
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
1003
 
1004
+ #: adrotate.php:787
1005
  msgid "Maintenance"
1006
  msgstr "Underhåll"
1007
 
1008
+ #: adrotate.php:788
1009
  #, fuzzy
1010
  msgid ""
1011
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1020
  "Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
1021
  "eller märker din databas är långsam, inte svarar och trög."
1022
 
1023
+ #: adrotate.php:803 adrotate.php:805
1024
  msgid "Optimize Database"
1025
  msgstr "Optimera Databas"
1026
 
1027
+ #: adrotate.php:805
1028
  msgid "You are about to optimize the AdRotate database."
1029
  msgstr "Du håller på att optimera AdRotate databasen."
1030
 
1031
+ #: adrotate.php:805
1032
  msgid "Did you make a backup of your database?"
1033
  msgstr "Har du gjort en säkerhetskopia av din databas?"
1034
 
1035
+ #: adrotate.php:805
1036
  msgid ""
1037
  "This may take a moment and may cause your website to respond slow "
1038
  "temporarily!"
1040
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1041
  "tillfälligt!"
1042
 
1043
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1044
  #: dashboard/publisher/adrotate-groups-main.php:24
1045
  msgid "OK to continue, CANCEL to stop."
1046
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1047
 
1048
+ #: adrotate.php:806
1049
  msgid "Cleans up overhead data in the AdRotate tables."
1050
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
1051
 
1052
+ #: adrotate.php:807
1053
  msgid ""
1054
  "Overhead data is accumulated garbage resulting from many changes you've "
1055
  "made. This can vary from nothing to hundreds of KiB of data."
1057
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
1058
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
1059
 
1060
+ #: adrotate.php:811 adrotate.php:813
1061
  msgid "Clean-up Database"
1062
  msgstr "Städa upp Databas"
1063
 
1064
+ #: adrotate.php:813
1065
  msgid ""
1066
  "You are about to clean up your database. This may delete expired schedules "
1067
  "and older statistics."
1069
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
1070
  "och äldre statistik."
1071
 
1072
+ #: adrotate.php:813
1073
  msgid "Are you sure you want to continue?"
1074
  msgstr "Är du säker på att du vill fortsätta?"
1075
 
1076
+ #: adrotate.php:813 adrotate.php:821
1077
  #, fuzzy
1078
  msgid "This might take a while and may slow down your site during this action!"
1079
  msgstr ""
1080
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1081
  "tillfälligt!"
1082
 
1083
+ #: adrotate.php:814
1084
  msgid "Delete stats older than 356 days (Optional)."
1085
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
1086
 
1087
+ #: adrotate.php:815
1088
  #, fuzzy
1089
  msgid ""
1090
  "AdRotate creates empty records when you start making ads or groups. In rare "
1093
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1094
  "den här knappen för att ta bort de tomma poster."
1095
 
1096
+ #: adrotate.php:815
1097
  msgid ""
1098
  "If you made an ad or group that does not save when you make it use this "
1099
  "button to delete those empty records."
1101
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1102
  "den här knappen för att ta bort de tomma poster."
1103
 
1104
+ #: adrotate.php:815
1105
  msgid ""
1106
  "Additionally you can clean up old statistics. This will improve the speed of "
1107
  "your site."
1109
  "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
1110
  "hastigheten på din webbplats."
1111
 
1112
+ #: adrotate.php:819
1113
  #, fuzzy
1114
  msgid "Re-evaluate Ads"
1115
  msgstr "Omvärdera annonser"
1116
 
1117
+ #: adrotate.php:821
1118
  #, fuzzy
1119
  msgid "Re-evaluate all ads"
1120
  msgstr "Omvärdera alla annonser"
1121
 
1122
+ #: adrotate.php:821
1123
  #, fuzzy
1124
  msgid "You are about to check all ads for errors."
1125
  msgstr "Du håller på att kolla alla annonser för fel."
1126
 
1127
+ #: adrotate.php:822
1128
  #, fuzzy
1129
  msgid ""
1130
  "This will apply all evaluation rules to all ads to see if any error slipped "
1133
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
1134
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
1135
 
1136
+ #: adrotate.php:826
1137
  msgid ""
1138
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1139
  "becomes unusable in any way or by any means in whichever way I will not take "
1150
  "det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
1151
  "alla fall."
1152
 
1153
+ #: adrotate.php:834
1154
  msgid "Troubleshooting"
1155
  msgstr "Felsökning"
1156
 
1157
+ #: adrotate.php:837
1158
  msgid "Current version:"
1159
  msgstr "Aktuell version:"
1160
 
1161
+ #: adrotate.php:838
1162
  msgid "Previous version:"
1163
  msgstr "Tidigare version:"
1164
 
1165
+ #: adrotate.php:841
1166
  msgid "Current database version:"
1167
  msgstr "Nuvarande databasversion:"
1168
 
1169
+ #: adrotate.php:842
1170
  msgid "Previous database version:"
1171
  msgstr "Tidigare databasversion:"
1172
 
1173
+ #: adrotate.php:845
1174
  #, fuzzy
1175
  msgid "Ad evaluation next run:"
1176
  msgstr "Annons Meddelanden nästa körning:"
1177
 
1178
+ #: adrotate.php:846 adrotate.php:850
1179
  msgid "Not scheduled!"
1180
  msgstr "Inte planerat!"
1181
 
1182
+ #: adrotate.php:849
1183
  msgid "Clean Trackerdata next run:"
1184
  msgstr "Rensa Trackerdata nästa körning:"
1185
 
1186
+ #: adrotate.php:853
1187
  msgid "Current status of adverts"
1188
  msgstr "Aktuell status för annonser"
1189
 
1190
+ #: adrotate.php:854
1191
  msgid "Normal"
1192
  msgstr "Normal"
1193
 
1194
+ #: adrotate.php:854
1195
  msgid "Error"
1196
  msgstr "Error"
1197
 
1198
+ #: adrotate.php:854
1199
  msgid "Expired"
1200
  msgstr "Utgånget"
1201
 
1202
+ #: adrotate.php:854
1203
  msgid "Expires Soon"
1204
  msgstr "Utgår snart"
1205
 
1206
+ #: adrotate.php:854
1207
  msgid "Unknown Status"
1208
  msgstr "Okänd status"
1209
 
1210
+ #: adrotate.php:857
1211
  msgid ""
1212
  "NOTE: The below options are not meant for normal use and are only there for "
1213
  "developers to review saved settings or how ads are selected. These can be "
1219
  "väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
1220
  "normal användning de bör lämnas därhän!"
1221
 
1222
+ #: adrotate.php:861
1223
  msgid "Developer Debug"
1224
  msgstr "Utvecklar Debug"
1225
 
1226
+ #: adrotate.php:863
1227
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1228
  msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
1229
 
1230
+ #: adrotate.php:864
1231
  msgid "Show all settings, dashboard routines and related values."
1232
  msgstr ""
1233
  "Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
1234
 
1235
+ #: adrotate.php:865
1236
  msgid "Show array of all userroles and capabilities."
1237
  msgstr "Visa samling av alla userroles och möjligheter."
1238
 
1239
+ #: adrotate.php:866
1240
  msgid "Review saved advertisers! Visible to advertisers."
1241
  msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
1242
 
1243
+ #: adrotate.php:867
1244
  #, fuzzy
1245
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1246
  msgstr ""
1247
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
1248
  "endast till förlag."
1249
 
1250
+ #: adrotate.php:868
1251
  #, fuzzy
1252
  msgid ""
1253
  "Disable timers for clicks and impressions and enable a alert window for "
1254
  "clicktracking."
1255
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
1256
 
1257
+ #: adrotate.php:869
1258
  msgid "Temporarily disable encryption on the redirect url."
1259
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
1260
 
1489
  msgstr "Den AdCode kan inte vara tomt!"
1490
 
1491
  #: dashboard/publisher/adrotate-ads-edit.php:49
1492
+ msgid "You did not use %image% in your AdCode but did select an image!"
1493
+ msgstr ""
1494
 
1495
  #: dashboard/publisher/adrotate-ads-edit.php:52
1496
  msgid "You did use %image% in your AdCode but did not select an image!"
1505
  "och åter spara annonsen!"
1506
 
1507
  #: dashboard/publisher/adrotate-ads-edit.php:58
1508
+ msgid ""
1509
+ " You did not use %image% in your AdCode. The responsive checkbox will be "
1510
+ "ineffective."
1511
+ msgstr ""
1512
+
1513
+ #: dashboard/publisher/adrotate-ads-edit.php:61
1514
+ msgid ""
1515
+ "Your chosen banner image does not have the right name. Check the responsive "
1516
+ "description and try again."
1517
+ msgstr ""
1518
+
1519
+ #: dashboard/publisher/adrotate-ads-edit.php:64
1520
  msgid "Clicktracking is enabled but no valid link was found in the adcode!"
1521
  msgstr ""
1522
 
1523
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1524
  msgid ""
1525
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1526
  "the ad!"
1528
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
1529
  "åter spara annonsen!"
1530
 
1531
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1532
  msgid "This ad is expired and currently not shown on your website!"
1533
  msgstr ""
1534
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
1535
 
1536
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1537
  msgid "The ad will expire in less than 2 days!"
1538
  msgstr "Annonsen går ut om mindre än 2 dagar!"
1539
 
1540
+ #: dashboard/publisher/adrotate-ads-edit.php:78
1541
  msgid "This ad will expire in less than 7 days!"
1542
  msgstr "Annonsen går ut om mindre än 7 dagar!"
1543
 
1544
+ #: dashboard/publisher/adrotate-ads-edit.php:81
1545
  msgid "This ad has been disabled and does not rotate on your site!"
1546
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
1547
 
1548
+ #: dashboard/publisher/adrotate-ads-edit.php:107
1549
  msgid "New Advert"
1550
  msgstr "Ny annons"
1551
 
1552
+ #: dashboard/publisher/adrotate-ads-edit.php:109
1553
  msgid "Edit Advert"
1554
  msgstr "Redigera annons"
1555
 
1556
+ #: dashboard/publisher/adrotate-ads-edit.php:115
 
 
 
 
 
1557
  msgid "Title:"
1558
  msgstr "Titel:"
1559
 
1560
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1561
  msgid "AdCode:"
1562
  msgstr "AdCode:"
1563
 
1564
+ #: dashboard/publisher/adrotate-ads-edit.php:126
1565
+ msgid "Basic Examples:"
1566
+ msgstr "Grundläggande Exempel:"
1567
+
1568
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1569
+ msgid "Useful tags:"
1570
+ msgstr ""
1571
+
1572
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1573
+ msgid "Insert the advert ID Number."
1574
+ msgstr ""
1575
+
1576
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1577
+ msgid "Insert the %image% tag. Required when selecting a image below."
1578
+ msgstr ""
1579
+
1580
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1581
+ msgid "Insert the advert name."
1582
+ msgstr ""
1583
+
1584
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1585
+ msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1586
+ msgstr ""
1587
+
1588
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1589
+ msgid "Add inside the <a> tag to open advert in a new window."
1590
+ msgstr ""
1591
+
1592
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1593
+ msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1594
+ msgstr ""
1595
+
1596
+ #: dashboard/publisher/adrotate-ads-edit.php:135
1597
  msgid ""
1598
+ "Place the cursor in your AdCode where you want to add any of these tags and "
1599
+ "click to add it."
1600
  msgstr ""
1601
 
1602
+ #: dashboard/publisher/adrotate-ads-edit.php:139
1603
+ msgid "Banner image:"
1604
+ msgstr "Banner image:"
1605
+
1606
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1607
+ msgid "WordPress media:"
1608
  msgstr ""
1609
 
1610
+ #: dashboard/publisher/adrotate-ads-edit.php:142
1611
+ msgid "Select Banner"
1612
+ msgstr "Välj Banner"
1613
 
1614
+ #: dashboard/publisher/adrotate-ads-edit.php:144
1615
+ msgid "- OR -"
1616
+ msgstr "- ELLER -"
1617
+
1618
+ #: dashboard/publisher/adrotate-ads-edit.php:146
1619
+ msgid "Banner folder:"
1620
+ msgstr "Banner folder:"
1621
+
1622
+ #: dashboard/publisher/adrotate-ads-edit.php:147
1623
+ msgid "No image selected"
1624
+ msgstr "Ingen bild vald"
1625
+
1626
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1627
+ msgid "Use %image% in the code. Accepted files are:"
1628
+ msgstr "Använd %image% i koden. Godkända filer är:"
1629
 
1630
+ #: dashboard/publisher/adrotate-ads-edit.php:151
1631
  msgid ""
1632
+ "Use either the text field or the dropdown. If the textfield has content that "
1633
+ "field has priority."
1634
  msgstr ""
1635
+ "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1636
+ "området har företräde."
1637
 
1638
+ #: dashboard/publisher/adrotate-ads-edit.php:156
1639
+ msgid "Clicktracking:"
1640
+ msgstr "Clicktracking:"
1641
+
1642
+ #: dashboard/publisher/adrotate-ads-edit.php:158
1643
+ msgid "Enable click tracking for this advert."
1644
+ msgstr "Aktivera klickspårning för denna annons."
1645
+
1646
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1647
+ msgid ""
1648
+ "Note: Clicktracking does not work for Javascript adverts such as those "
1649
+ "provided by Google AdSense/DFP/DoubleClick. Flash Adverts also are not "
1650
+ "supported."
1651
+ msgstr ""
1652
+
1653
+ #: dashboard/publisher/adrotate-ads-edit.php:165
1654
  msgid "Activate:"
1655
  msgstr "Aktivera:"
1656
 
1657
+ #: dashboard/publisher/adrotate-ads-edit.php:169
1658
  msgid "Yes, this ad will be used"
1659
  msgstr "Ja, kommer denna annons att användas"
1660
 
1661
+ #: dashboard/publisher/adrotate-ads-edit.php:170
1662
  msgid "No, do not show this ad anywhere"
1663
  msgstr "Nej, inte visa denna annons någonstans"
1664
 
1665
+ #: dashboard/publisher/adrotate-ads-edit.php:177
1666
  #: dashboard/publisher/adrotate-ads-main.php:108
1667
+ #: dashboard/publisher/adrotate-groups-edit.php:75
1668
  #: dashboard/publisher/adrotate-groups-main.php:87
1669
  #, fuzzy
1670
  msgid "Get more features with AdRotate Pro."
1671
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1672
 
1673
+ #: dashboard/publisher/adrotate-ads-edit.php:180
1674
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1675
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1676
+ #: dashboard/publisher/adrotate-ads-edit.php:436
 
1677
  msgid "Save Advert"
1678
  msgstr "Spara annons"
1679
 
1680
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1681
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1682
+ #: dashboard/publisher/adrotate-ads-edit.php:396
1683
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1684
+ #: dashboard/publisher/adrotate-groups-edit.php:154
1685
+ #: dashboard/publisher/adrotate-groups-edit.php:297
1686
+ #: dashboard/publisher/adrotate-groups-edit.php:378
 
1687
  msgid "Cancel"
1688
  msgstr "Avbryt"
1689
 
1690
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1691
  msgid "Preview"
1692
  msgstr "Förhandsgranska"
1693
 
1694
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1695
  msgid ""
1696
  "Note: While this preview is an accurate one, it might look different then it "
1697
  "does on the website."
1699
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1700
  "gör på webbplatsen."
1701
 
1702
+ #: dashboard/publisher/adrotate-ads-edit.php:192
1703
  msgid ""
1704
  "This is because of CSS differences. Your themes CSS file is not active here!"
1705
  msgstr ""
1706
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1707
 
1708
+ #: dashboard/publisher/adrotate-ads-edit.php:199
1709
+ #: dashboard/publisher/adrotate-ads-edit.php:378
1710
+ #: dashboard/publisher/adrotate-groups-edit.php:136
1711
+ #: dashboard/publisher/adrotate-groups-edit.php:279
1712
  msgid "Usage"
1713
  msgstr "Användning"
1714
 
1715
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1716
+ #: dashboard/publisher/adrotate-ads-edit.php:382
1717
+ #: dashboard/publisher/adrotate-groups-edit.php:140
1718
+ #: dashboard/publisher/adrotate-groups-edit.php:283
1719
+ msgid "Widget:"
1720
+ msgstr ""
1721
+
1722
+ #: dashboard/publisher/adrotate-ads-edit.php:204
1723
+ #: dashboard/publisher/adrotate-ads-edit.php:383
1724
  msgid ""
1725
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1726
+ "and enter ID"
1727
  msgstr ""
 
 
1728
 
1729
+ #: dashboard/publisher/adrotate-ads-edit.php:207
1730
+ #: dashboard/publisher/adrotate-ads-edit.php:386
1731
+ #: dashboard/publisher/adrotate-groups-edit.php:144
1732
+ #: dashboard/publisher/adrotate-groups-edit.php:287
1733
  msgid "In a post or page:"
1734
  msgstr "I ett inlägg eller sida:"
1735
 
1736
+ #: dashboard/publisher/adrotate-ads-edit.php:209
1737
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1738
+ #: dashboard/publisher/adrotate-groups-edit.php:146
1739
+ #: dashboard/publisher/adrotate-groups-edit.php:289
1740
  msgid "Directly in a theme:"
1741
  msgstr "Direkt i ett tema:"
1742
 
1743
+ #: dashboard/publisher/adrotate-ads-edit.php:215
1744
+ msgid "Schedule your advert"
1745
+ msgstr ""
 
1746
 
1747
+ #: dashboard/publisher/adrotate-ads-edit.php:219
1748
+ msgid "Start date (day/month/year):"
1749
+ msgstr "Startdatum (dag / månad / år):"
1750
 
1751
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1752
+ msgid "End date (day/month/year):"
1753
+ msgstr "Slutdatum (dag / månad / år):"
1754
 
1755
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1756
+ msgid "Start time (hh:mm):"
1757
+ msgstr "Starttid (hh: mm):"
1758
+
1759
+ #: dashboard/publisher/adrotate-ads-edit.php:270
1760
+ msgid "End time (hh:mm):"
1761
+ msgstr "Avsluta tid (hh: mm):"
1762
+
1763
+ #: dashboard/publisher/adrotate-ads-edit.php:280
1764
+ msgid "Maximum Clicks:"
1765
+ msgstr "Max Klick:"
1766
+
1767
+ #: dashboard/publisher/adrotate-ads-edit.php:281
1768
+ #: dashboard/publisher/adrotate-ads-edit.php:283
1769
+ msgid "Leave empty or 0 to skip this."
1770
+ msgstr "Lämna tomt eller 0 för att hoppa över detta."
1771
+
1772
+ #: dashboard/publisher/adrotate-ads-edit.php:282
1773
+ msgid "Maximum Impressions:"
1774
+ msgstr "Maximala Intryck:"
1775
+
1776
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1777
+ msgid ""
1778
+ "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1779
+ "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1780
+ "hours. 6AM is 6:00 hours."
1781
+ msgstr ""
1782
+ "Tiden använder en 24-timmarsklocka. När du är van vid AM / PM-systemet ha "
1783
+ "detta i åtanke: Om start-eller sluttiden är efter lunch, lägga till 12 "
1784
+ "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
1785
 
1786
+ #: dashboard/publisher/adrotate-ads-edit.php:288
1787
  msgid ""
1788
+ "The maximum clicks and impressions are measured over the set schedule only. "
1789
+ "Every schedule can have it's own limit!"
1790
  msgstr ""
1791
+ "De maximala klick och visningar mäts över den inställda schema. Varje schema "
1792
+ "kan få en egen gräns!"
1793
 
1794
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1795
+ msgid "Create multiple schedules for each advert with AdRotate Pro."
 
1796
  msgstr ""
 
 
1797
 
1798
+ #: dashboard/publisher/adrotate-ads-edit.php:292
1799
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1800
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1801
+ #: dashboard/publisher/adrotate-groups-edit.php:190
1802
  #, fuzzy
1803
+ msgid "Upgrade today"
1804
+ msgstr "i dag"
 
 
1805
 
1806
+ #: dashboard/publisher/adrotate-ads-edit.php:299
1807
+ #: dashboard/publisher/adrotate-groups-edit.php:157
1808
+ msgid "Advanced"
1809
+ msgstr "Utökad"
1810
+
1811
+ #: dashboard/publisher/adrotate-ads-edit.php:300
1812
+ msgid "Everything below is optional."
1813
+ msgstr "Allt nedan är frivillig."
1814
 
1815
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1816
  msgid "Responsive:"
1817
  msgstr ""
1818
 
1819
+ #: dashboard/publisher/adrotate-ads-edit.php:306
1820
  #, fuzzy
1821
  msgid "Enable responsive support for this advert."
1822
  msgstr "Aktivera klickspårning för denna annons."
1823
 
1824
+ #: dashboard/publisher/adrotate-ads-edit.php:307
1825
  msgid ""
1826
  "Upload your images to the banner folder and make sure the filename is in the "
1827
  "following format; \"imagename.full.ext\". A full set of sized images is "
1828
  "strongly recommended."
1829
  msgstr ""
1830
 
1831
+ #: dashboard/publisher/adrotate-ads-edit.php:313
1832
+ msgid "Weight:"
1833
+ msgstr "Vikt:"
 
 
1834
 
1835
+ #: dashboard/publisher/adrotate-ads-edit.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1836
  #, fuzzy
1837
  msgid "AdRotate Pro only"
1838
  msgstr "AdRotate Pro"
1839
 
1840
+ #: dashboard/publisher/adrotate-ads-edit.php:316
1841
  msgid "Barely visible"
1842
  msgstr "Knappt synlig"
1843
 
1844
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1845
  msgid "Less than average"
1846
  msgstr "Mindre än genomsnittet"
1847
 
1848
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1849
  msgid "Normal coverage"
1850
  msgstr "Normal täckning"
1851
 
1852
+ #: dashboard/publisher/adrotate-ads-edit.php:319
1853
  msgid "More than average"
1854
  msgstr "Mer än genomsnittet"
1855
 
1856
+ #: dashboard/publisher/adrotate-ads-edit.php:320
1857
  msgid "Best visibility"
1858
  msgstr "Bästa synlighet"
1859
 
1860
+ #: dashboard/publisher/adrotate-ads-edit.php:325
1861
+ #: dashboard/publisher/adrotate-groups-edit.php:184
1862
  msgid "Sortorder:"
1863
  msgstr "Sorteringsordning:"
1864
 
1865
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1866
+ #: dashboard/publisher/adrotate-groups-edit.php:186
1867
  msgid "For administrative purposes set a sortorder."
1868
  msgstr "För administrativa ändamål sätt en sortorder."
1869
 
1870
+ #: dashboard/publisher/adrotate-ads-edit.php:327
1871
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1872
  msgstr ""
1873
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1874
 
1875
+ #: dashboard/publisher/adrotate-ads-edit.php:332
1876
  msgid ""
1877
+ "With AdRotate Pro you can set the weight to give adverts more or less "
1878
+ "exposure."
1879
  msgstr ""
1880
 
1881
+ #: dashboard/publisher/adrotate-ads-edit.php:334
1882
+ msgid "Geo Targeting in AdRotate Pro"
1883
+ msgstr ""
 
 
 
 
 
 
 
 
 
1884
 
1885
+ #: dashboard/publisher/adrotate-ads-edit.php:335
1886
  msgid ""
1887
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1888
  msgstr ""
 
 
1889
 
1890
+ #: dashboard/publisher/adrotate-ads-edit.php:339
1891
  #, fuzzy
1892
  msgid "Cities/States:"
1893
  msgstr "Städer"
1894
 
1895
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1896
+ msgid ""
1897
+ "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1898
+ "states ISO codes are supported)"
1899
+ msgstr ""
 
 
 
 
 
1900
 
1901
+ #: dashboard/publisher/adrotate-ads-edit.php:342
1902
  #, fuzzy
1903
  msgid ""
1904
  "AdRotate does not check the validity of names so make sure you spell them "
1907
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1908
  "rätt!"
1909
 
1910
+ #: dashboard/publisher/adrotate-ads-edit.php:346
1911
  #, fuzzy
1912
  msgid "Countries:"
1913
  msgstr "Länder"
1914
 
1915
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1916
  #, fuzzy
1917
  msgid "Select the countries you want the adverts to show in."
1918
  msgstr "Välj de länder som du vill att annonser för att visa i."
1919
 
1920
+ #: dashboard/publisher/adrotate-ads-edit.php:371
1921
  #, fuzzy
1922
  msgid "Cities take priority and will be filtered first."
1923
  msgstr "Städer prioriteras och kommer att filtreras först."
1924
 
1925
+ #: dashboard/publisher/adrotate-ads-edit.php:376
1926
+ msgid "Target your audience with Geo Targeting in AdRotate Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1927
  msgstr ""
 
 
1928
 
1929
+ #: dashboard/publisher/adrotate-ads-edit.php:400
1930
  msgid "Select Groups"
1931
  msgstr "Välj Grupper"
1932
 
1933
+ #: dashboard/publisher/adrotate-ads-edit.php:405
 
 
 
 
1934
  msgid "ID - Name"
1935
  msgstr "ID - Namn"
1936
 
1937
+ #: dashboard/publisher/adrotate-ads-edit.php:406
1938
  msgid "Ads in group"
1939
  msgstr "Annonser i grupp"
1940
 
1941
+ #: dashboard/publisher/adrotate-ads-edit.php:415
1942
  #: dashboard/publisher/adrotate-groups-main.php:58
1943
  msgid "Default"
1944
  msgstr "Default"
1945
 
1946
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1947
  #: dashboard/publisher/adrotate-groups-main.php:59
1948
  msgid "Dynamic"
1949
  msgstr "Dynamic"
1950
 
1951
+ #: dashboard/publisher/adrotate-ads-edit.php:416
1952
  #: dashboard/publisher/adrotate-groups-main.php:59
1953
  #, fuzzy
1954
  msgid "second rotation"
1955
  msgstr "Geo Location"
1956
 
1957
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1958
  #: dashboard/publisher/adrotate-groups-main.php:60
1959
  msgid "Block"
1960
  msgstr "Block"
1961
 
1962
+ #: dashboard/publisher/adrotate-ads-edit.php:417
1963
  #: dashboard/publisher/adrotate-groups-main.php:60
1964
  #, fuzzy
1965
  msgid "grid"
1967
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1968
  "(Standard: 2/2)"
1969
 
1970
+ #: dashboard/publisher/adrotate-ads-edit.php:418
1971
+ #: dashboard/publisher/adrotate-groups-edit.php:192
1972
  #: dashboard/publisher/adrotate-groups-main.php:61
1973
  msgid "Post Injection"
1974
  msgstr "Post injektion"
1975
 
1976
+ #: dashboard/publisher/adrotate-ads-edit.php:419
1977
  #: dashboard/publisher/adrotate-groups-main.php:62
1978
  msgid "Geolocation"
1979
  msgstr "Geolocation"
1980
 
1981
+ #: dashboard/publisher/adrotate-ads-edit.php:425
1982
+ #: dashboard/publisher/adrotate-groups-edit.php:61
1983
  #: dashboard/publisher/adrotate-groups-main.php:69
1984
  msgid "Mode"
1985
  msgstr "läge"
2014
  msgid "Title"
2015
  msgstr "Titel"
2016
 
2017
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2018
+ #: dashboard/publisher/adrotate-ads-report.php:34
2019
+ #: dashboard/publisher/adrotate-groups-edit.php:328
2020
+ #: dashboard/publisher/adrotate-groups-main.php:35
2021
+ #: dashboard/publisher/adrotate-groups-report.php:40
2022
+ msgid "Impressions"
2023
+ msgstr "Intryck"
2024
+
2025
+ #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2026
+ #: dashboard/publisher/adrotate-ads-main.php:45
2027
+ #: dashboard/publisher/adrotate-ads-report.php:35
2028
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2029
+ #: dashboard/publisher/adrotate-groups-main.php:37
2030
+ #: dashboard/publisher/adrotate-groups-report.php:41
2031
+ msgid "Clicks"
2032
+ msgstr "Klick"
2033
+
2034
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2035
  #: dashboard/publisher/adrotate-ads-main.php:47
2036
  #: dashboard/publisher/adrotate-ads-report.php:38
2092
  msgstr "För 7 dagar"
2093
 
2094
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2095
+ #: dashboard/publisher/adrotate-groups-edit.php:371
2096
  msgid "Configuration errors."
2097
  msgstr "Konfigurations fel."
2098
 
2106
  msgstr "Exportera"
2107
 
2108
  #: dashboard/publisher/adrotate-ads-main.php:42
2109
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2110
  msgid "Weight"
2111
  msgstr "Vikt"
2112
 
2171
  msgid "Edit Group"
2172
  msgstr "Redigera grupp"
2173
 
2174
+ #: dashboard/publisher/adrotate-groups-edit.php:55
2175
  msgid "Name:"
2176
  msgstr "Namn:"
2177
 
2178
+ #: dashboard/publisher/adrotate-groups-edit.php:64
2179
  msgid "Default - Show one ad at a time"
2180
  msgstr "Standard - Visa en annons i taget"
2181
 
2182
+ #: dashboard/publisher/adrotate-groups-edit.php:65
2183
  msgid "Dynamic Mode - Show a different ad every few seconds"
2184
  msgstr "Dynamiskt läge - Visa en annan annons med några sekunders"
2185
 
2186
+ #: dashboard/publisher/adrotate-groups-edit.php:66
2187
  msgid "Block Mode - Show a block of ads"
2188
  msgstr "Blockläge - Visa ett block av annonser"
2189
 
2190
+ #: dashboard/publisher/adrotate-groups-edit.php:70
2191
  #, fuzzy
2192
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
2193
  msgstr ""
2194
  "'Dynamic' och 'block' läge kräver 'jQuery' och 'jQuery Showoff' att laddas. "
2195
  "Du kan aktivera detta i AdRotate inställningar."
2196
 
2197
+ #: dashboard/publisher/adrotate-groups-edit.php:77
2198
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2199
  msgid "Dynamic and Block Mode"
2200
  msgstr "Dynamisk och Blockläge"
2201
 
2202
+ #: dashboard/publisher/adrotate-groups-edit.php:78
2203
  msgid "Only required if your group is in Dynamic or Block mode."
2204
  msgstr "Krävs endast om din grupp är i dynamisk eller Blockera läget."
2205
 
2206
+ #: dashboard/publisher/adrotate-groups-edit.php:82
2207
+ msgid "Block size"
2208
+ msgstr ""
2209
 
2210
+ #: dashboard/publisher/adrotate-groups-edit.php:88
2211
  msgid "rows"
2212
  msgstr "rader"
2213
 
2214
+ #: dashboard/publisher/adrotate-groups-edit.php:92
2215
  msgid "columns"
2216
  msgstr "kolumner"
2217
 
2218
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2219
  msgid "Block Mode"
2220
  msgstr "Blockläge"
2221
 
2222
+ #: dashboard/publisher/adrotate-groups-edit.php:95
2223
+ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
 
 
 
2224
  msgstr ""
 
 
2225
 
2226
+ #: dashboard/publisher/adrotate-groups-edit.php:99
2227
+ msgid "Advert size"
2228
+ msgstr ""
2229
 
2230
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2231
  msgid "pixel(s) wide"
2232
  msgstr "bildpunkt (er) bredd"
2233
 
2234
+ #: dashboard/publisher/adrotate-groups-edit.php:101
2235
  msgid "pixel(s) high."
2236
  msgstr "bildpunkter (er) hög."
2237
 
2238
+ #: dashboard/publisher/adrotate-groups-edit.php:104
2239
  #, fuzzy
2240
  msgid ""
2241
  "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2244
  "Ange den maximala storleken på annonserna i pixlar minus marginal. Storlek "
2245
  "kan vara 'auto' (Rekommenderas ej). Standard: 125/125."
2246
 
2247
+ #: dashboard/publisher/adrotate-groups-edit.php:108
2248
  msgid "Automated refresh"
2249
  msgstr "Automatisk uppdatering"
2250
 
2251
+ #: dashboard/publisher/adrotate-groups-edit.php:127
2252
  msgid "seconds."
2253
  msgstr "sekunder."
2254
 
2255
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2256
  msgid "Dynamic Mode"
2257
  msgstr "Dynamiskt läge"
2258
 
2259
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2260
  msgid ""
2261
  "Load a new advert in this interval without reloading the page. Default: 6."
2262
  msgstr ""
2263
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
2264
 
2265
+ #: dashboard/publisher/adrotate-groups-edit.php:141
2266
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2267
+ msgid ""
2268
+ "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Ads"
2269
+ "\" and enter ID"
2270
+ msgstr ""
2271
+
2272
+ #: dashboard/publisher/adrotate-groups-edit.php:153
2273
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2274
+ #: dashboard/publisher/adrotate-groups-edit.php:377
2275
  #, fuzzy
2276
  msgid "Save Group"
2277
  msgstr "Spara"
2278
 
2279
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2280
  msgid "Advert Margin"
2281
  msgstr "Annons Marginal"
2282
 
2283
+ #: dashboard/publisher/adrotate-groups-edit.php:163
2284
  msgid "pixel(s)"
2285
  msgstr "bildpunkt (er)"
2286
 
2287
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2288
  #, fuzzy
2289
  msgid "A transparent area outside the advert in pixels. Default: 0."
2290
  msgstr "En transparant border utanför annonsen i pixlar. Standard: 1."
2291
 
2292
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2293
  #, fuzzy
2294
  msgid "Set to 0 to disable."
2295
  msgstr "Standard: 10. Sätt till 0 för att inaktivera denna timer."
2296
 
2297
+ #: dashboard/publisher/adrotate-groups-edit.php:166
2298
+ msgid "Margins are automatically disabled for blocks where required."
2299
+ msgstr ""
2300
+
2301
+ #: dashboard/publisher/adrotate-groups-edit.php:170
2302
  #, fuzzy
2303
  msgid "Align the group"
2304
  msgstr "Annonser i grupp"
2305
 
2306
+ #: dashboard/publisher/adrotate-groups-edit.php:173
2307
  #, fuzzy
2308
  msgid "None (Default)"
2309
  msgstr "Default"
2310
 
2311
+ #: dashboard/publisher/adrotate-groups-edit.php:174
2312
  msgid "Left"
2313
  msgstr ""
2314
 
2315
+ #: dashboard/publisher/adrotate-groups-edit.php:175
2316
  #, fuzzy
2317
  msgid "Right"
2318
  msgstr "Vikt"
2319
 
2320
+ #: dashboard/publisher/adrotate-groups-edit.php:176
2321
  msgid "Center"
2322
  msgstr ""
2323
 
2324
+ #: dashboard/publisher/adrotate-groups-edit.php:180
2325
  msgid ""
2326
  "Align the group in your post or page. Using 'center' may affect your margin "
2327
  "setting. Not every theme supports this feature."
2328
  msgstr ""
2329
 
2330
+ #: dashboard/publisher/adrotate-groups-edit.php:186
2331
  msgid "Leave empty or 0 to skip this. Will default to group id."
2332
  msgstr ""
2333
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
2334
 
2335
+ #: dashboard/publisher/adrotate-groups-edit.php:190
2336
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2337
  msgstr ""
2338
 
2339
+ #: dashboard/publisher/adrotate-groups-edit.php:195
 
 
 
 
2340
  msgid "Include ads in categories?"
2341
  msgstr "Inkludera annonser i kategorierna?"
2342
 
2343
+ #: dashboard/publisher/adrotate-groups-edit.php:199
2344
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2345
  #, fuzzy
2346
  msgid "Disabled"
2347
  msgstr "Inaktivera annonser"
2348
 
2349
+ #: dashboard/publisher/adrotate-groups-edit.php:200
2350
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2351
  #, fuzzy
2352
  msgid "Before content"
2353
  msgstr "Innan publicerat innehåll"
2354
 
2355
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2356
+ #: dashboard/publisher/adrotate-groups-edit.php:242
2357
  #, fuzzy
2358
  msgid "After content"
2359
  msgstr "Före och efter innehållet"
2360
 
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2362
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2363
  #, fuzzy
2364
  msgid "Before and after content"
2365
  msgstr "Före och efter innehållet"
2366
 
2367
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2368
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2369
  #, fuzzy
2370
  msgid "After..."
2371
  msgstr "Efter annons"
2372
 
2373
+ #: dashboard/publisher/adrotate-groups-edit.php:209
2374
+ #: dashboard/publisher/adrotate-groups-edit.php:250
2375
  msgid "the first paragraph"
2376
  msgstr ""
2377
 
2378
+ #: dashboard/publisher/adrotate-groups-edit.php:210
2379
+ #: dashboard/publisher/adrotate-groups-edit.php:251
2380
  msgid "the 2nd paragraph"
2381
  msgstr ""
2382
 
2383
+ #: dashboard/publisher/adrotate-groups-edit.php:211
2384
+ #: dashboard/publisher/adrotate-groups-edit.php:252
2385
  msgid "the 3rd paragraph"
2386
  msgstr ""
2387
 
2388
+ #: dashboard/publisher/adrotate-groups-edit.php:212
2389
+ #: dashboard/publisher/adrotate-groups-edit.php:253
2390
  msgid "the 4th paragraph"
2391
  msgstr ""
2392
 
2393
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2394
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2395
  msgid "every 2nd paragraph"
2396
  msgstr ""
2397
 
2398
+ #: dashboard/publisher/adrotate-groups-edit.php:215
2399
+ #: dashboard/publisher/adrotate-groups-edit.php:256
2400
  msgid "every 3rd paragraph"
2401
  msgstr ""
2402
 
2403
+ #: dashboard/publisher/adrotate-groups-edit.php:216
2404
+ #: dashboard/publisher/adrotate-groups-edit.php:257
2405
  msgid "every 4th paragraph"
2406
  msgstr ""
2407
 
2408
+ #: dashboard/publisher/adrotate-groups-edit.php:217
2409
+ #: dashboard/publisher/adrotate-groups-edit.php:258
2410
  msgid "every 5th paragraph"
2411
  msgstr ""
2412
 
2413
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2414
+ #: dashboard/publisher/adrotate-groups-edit.php:259
2415
  msgid "every 6th paragraph"
2416
  msgstr ""
2417
 
2418
+ #: dashboard/publisher/adrotate-groups-edit.php:219
2419
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2420
  msgid "every 7th paragraph"
2421
  msgstr ""
2422
 
2423
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2424
+ #: dashboard/publisher/adrotate-groups-edit.php:261
2425
  msgid "every 8th paragraph"
2426
  msgstr ""
2427
 
2428
+ #: dashboard/publisher/adrotate-groups-edit.php:226
2429
  msgid "Which categories?"
2430
  msgstr "Vilka kategorier?"
2431
 
2432
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2433
  msgid "Click the categories posts you want the adverts to show in."
2434
  msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
2435
 
2436
+ #: dashboard/publisher/adrotate-groups-edit.php:236
2437
  msgid "Include ads in pages?"
2438
  msgstr "Inkludera annonser på sidor?"
2439
 
2440
+ #: dashboard/publisher/adrotate-groups-edit.php:267
2441
  msgid "Which pages?"
2442
  msgstr "Vilka sidor?"
2443
 
2444
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2445
  msgid "Click the pages you want the adverts to show in."
2446
  msgstr "Klicka på de sidor du vill annonserna att visa i."
2447
 
2448
+ #: dashboard/publisher/adrotate-groups-edit.php:300
2449
  msgid "Wrapper code"
2450
  msgstr "Wrapper kod"
2451
 
2452
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2453
+ msgid "Wraps around each ad. HTML/JavaScript allowed, use with care!"
2454
+ msgstr ""
2455
 
2456
+ #: dashboard/publisher/adrotate-groups-edit.php:305
2457
  msgid "Before ad"
2458
  msgstr "Innan annons"
2459
 
2460
+ #: dashboard/publisher/adrotate-groups-edit.php:309
2461
+ msgid "Options:"
2462
+ msgstr "Options:"
2463
 
2464
+ #: dashboard/publisher/adrotate-groups-edit.php:313
2465
  msgid "After ad"
2466
  msgstr "Efter annons"
2467
 
2468
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2469
  msgid "Select Ads"
2470
  msgstr "Välj Annonser"
2471
 
2472
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2473
  msgid "Visible until"
2474
  msgstr "Synlig tills"
2475
 
2476
+ #: dashboard/publisher/adrotate-groups-edit.php:364
2477
  msgid "No ads created!"
2478
  msgstr "Inga annonser skapat!"
2479
 
2505
  msgid "Statistics for group"
2506
  msgstr "Statistik för grupp"
2507
 
2508
+ #, fuzzy
2509
+ #~ msgid "Usage:"
2510
+ #~ msgstr "Användning:"
2511
+
2512
+ #, fuzzy
2513
+ #~ msgid "A comma separated list of cities and/or states"
2514
+ #~ msgstr "En kommaseparerad lista över städer"
2515
+
2516
+ #~ msgid "You didn't use %image% in your AdCode but did select an image!"
2517
+ #~ msgstr "Du använde inte %image% i AdCode men valde en bild!"
2518
+
2519
+ #~ msgid "These are required."
2520
+ #~ msgstr "Dessa krävs."
2521
+
2522
+ #~ msgid ""
2523
+ #~ "Place the cursor where you want to add a tag and click to add it to your "
2524
+ #~ "AdCode."
2525
+ #~ msgstr ""
2526
+ #~ "Placera markören där du vill lägga till en tagg och klicka för att lägga "
2527
+ #~ "till den i din AdCode."
2528
+
2529
+ #~ msgid ""
2530
+ #~ "Copy the shortcode in a post or page. The PHP code goes in a theme file "
2531
+ #~ "where you want the advert to show up."
2532
+ #~ msgstr ""
2533
+ #~ "Kopiera kortkod i ett inlägg eller sida. PHP-koden går i ett tema-fil där "
2534
+ #~ "du vill att annonsen ska visas."
2535
+
2536
+ #, fuzzy
2537
+ #~ msgid "Place the target URL in your adcode - Similar to code example 1."
2538
+ #~ msgstr ""
2539
+ #~ "URL-fältet inte längre behövs. Placering webbadressen i ditt adcode och "
2540
+ #~ "möjliggöra klickspårning är tillräcklig."
2541
+
2542
+ #, fuzzy
2543
+ #~ msgid "Target URL:"
2544
+ #~ msgstr ""
2545
+ #~ "Ange mål-URL här om du avsikt att använda den här annonsen i utskick "
2546
+ #~ "eller på avlägsna sidor."
2547
+
2548
+ #~ msgid "Media:"
2549
+ #~ msgstr "Media:"
2550
+
2551
+ #, fuzzy
2552
+ #~ msgid "Geo Location in AdRotate Pro"
2553
+ #~ msgstr "Geo Location"
2554
+
2555
+ #~ msgid ""
2556
+ #~ "This works if you assign the advert to a group and enable that group to "
2557
+ #~ "use Geo Targeting."
2558
+ #~ msgstr ""
2559
+ #~ "Detta fungerar om du tilldelar annonsen till en grupp och göra det "
2560
+ #~ "möjligt för denna grupp att använda Geo inriktning."
2561
+
2562
+ #, fuzzy
2563
+ #~ msgid "Target your audience with Geo Location in AdRotate Pro"
2564
+ #~ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
2565
+
2566
+ #~ msgid "Schedule"
2567
+ #~ msgstr "Schema"
2568
+
2569
+ #~ msgid "From when to when is the advert visible?"
2570
+ #~ msgstr "Från när till när är annonsen syns?"
2571
+
2572
+ #, fuzzy
2573
+ #~ msgid "Choose Multiple Schedules in AdRotate Pro"
2574
+ #~ msgstr "Tillgänglig i AdRotate Pro"
2575
+
2576
+ #~ msgid "From / Until"
2577
+ #~ msgstr "Från / Till"
2578
+
2579
+ #, fuzzy
2580
+ #~ msgid "impressions per day"
2581
+ #~ msgstr "Intryck"
2582
+
2583
+ #, fuzzy
2584
+ #~ msgid "In use by this advert."
2585
+ #~ msgstr ""
2586
+ #~ "Ange mål-URL här om du avsikt att använda den här annonsen i utskick "
2587
+ #~ "eller på avlägsna sidor."
2588
+
2589
+ #~ msgid "Optionally select the group(s) this ad belongs to."
2590
+ #~ msgstr "Eventuellt välja grupp (er) här annons tillhör."
2591
+
2592
+ #~ msgid "Block shape and border"
2593
+ #~ msgstr "Block form och border"
2594
+
2595
+ #, fuzzy
2596
+ #~ msgid ""
2597
+ #~ "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2598
+ #~ "showing a maximum of 6 ads. Default: 2x2."
2599
+ #~ msgstr ""
2600
+ #~ "Gör ett rutnät för dina annonser. Fylla i 3 och 2 gör ett rutnät med 2 "
2601
+ #~ "kolumner som visar maximalt 6 annonser. Standard: 2x2."
2602
+
2603
+ #~ msgid "Advert Width and Height"
2604
+ #~ msgstr "Annons Bredd och höjd"
2605
+
2606
+ #~ msgid "Wraps around each ad."
2607
+ #~ msgstr "Sveper runt varje annons."
2608
+
2609
+ #~ msgid "HTML/JavaScript allowed, use with care!"
2610
+ #~ msgstr "HTML / JavaScript tillåtet, använd med omsorg!"
2611
+
2612
  #, fuzzy
2613
  #~ msgid "AdRotate Website."
2614
  #~ msgstr "AdRotate butik"
readme.txt CHANGED
@@ -3,21 +3,20 @@ Contributors: adegans
3
  Donate link: http://meandmymac.net/donate/
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, 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, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
5
  Requires at least: 3.8, PHP5.3
6
- Tested up to: 4.1.1
7
- Stable tag: 3.11.2
8
 
9
- 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. Make money with advertising while you do other things. Make making money easy!
10
 
11
  == Description ==
12
 
13
- Thinking of making some money with your website? Try AdRotate. Using AdRotate you can easy place advertising banners pretty much anywhere on your site while managing almost everything from your dashboard. No fussing with your themes code if you don't want to.
14
  Create your own adverts with basic HTML/Javascript code or use adverts from your favorite Ad Server such as DFP, AdSense, Chitika or other similar services.
15
  Manage your advertising campaigns with ease, right from your dashboard. Check up on performance and make use of the myriad of features AdRotate has to offer.
16
- You can host your banners locally, in your CDN or on a remote server.
17
- AdRotate supports unlimited groups for banners allowing you to tie certain banners to different areas of the website.
18
 
19
  AdRotate looks and feels similar to the dashboard you already know, so you're already familiar with AdRotate before you've even started.
20
- The well thought out menu structures and features make advert management very easy and straightforward.
21
 
22
  AdRotate is also available as a premium plugin for a very low price. Offering extra and more extensive features and faster support!
23
  Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=details)!
@@ -90,38 +89,34 @@ If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?
90
 
91
  == Changelog ==
92
 
93
- = 3.11.2 FREE =
94
- * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
95
- * [fix] Query error when cleaning database manually
96
- * [fix] Self-repairing database function now actually works
97
- * [tweak] Load max. 20 ads for a dynamic group
98
- * [tweak] Impression counting excluded from popular caching plugins
99
- * [tweak] Click counting excluded from popular caching plugins
100
- * [change] Upgrade script cleaned up
101
- * [change] Removed unnecessary indexes from database
102
- * [change] Removed obsolete 'block' columns from database
103
- * [change] Improved INT() unsigned datatypes in MySQL
104
 
105
  NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to [AdRotate PRO](https://ajdg.solutions/products/adrotate-for-wordpress/features/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=features).
106
 
107
- = 3.12.4 PRO =
108
- * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
109
- * [fix] Query error when cleaning database manually
110
- * [fix] Stats exports not working on certain versions of PHP
111
- * [fix] Adblock nag countdown not saving
112
- * [fix] 'Strict standards' error when uploading a file on some systems
113
- * [fix] Geo Targeting better filtering for locations with capitals
114
- * [fix] Self-repairing database function now actually works
115
- * [tweak] Geo Lookups no longer leading in Geo Service availability
116
- * [tweak] Geo Targeting warning emails removed
117
- * [tweak] Load max. 20 ads for a dynamic group
118
- * [tweak] Impression counting excluded from popular caching plugins
119
- * [tweak] Click counting excluded from popular caching plugins
120
- * [change] GeoBytes no longer supported for Geo Targeting
121
- * [change] Upgrade script cleaned up
122
- * [change] Removed unnecessary indexes from database
123
- * [change] Removed obsolete 'block' columns from database
124
- * [change] Improved INT() unsigned datatypes in MySQL
125
 
126
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
127
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
@@ -130,17 +125,17 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
130
 
131
  == Upgrade Notice ==
132
 
133
- = 3.11.2 FREE =
134
- * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
135
- * [fix] Query error when cleaning database manually
136
- * [fix] Self-repairing database function now actually works
137
- * [tweak] Load max. 20 ads for a dynamic group
138
- * [tweak] Impression counting excluded from popular caching plugins
139
- * [tweak] Click counting excluded from popular caching plugins
140
- * [change] Upgrade script cleaned up
141
- * [change] Removed unnecessary indexes from database
142
- * [change] Removed obsolete 'block' columns from database
143
- * [change] Improved INT() unsigned datatypes in MySQL
144
 
145
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
146
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
@@ -149,4 +144,5 @@ NOTE: Certain features are exclusive to AdRotate PRO. If you need these features
149
 
150
  == Screenshots ==
151
 
152
- Visit [the site](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=screenshots) for screenshots.
 
3
  Donate link: http://meandmymac.net/donate/
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, 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, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
5
  Requires at least: 3.8, PHP5.3
6
+ Tested up to: 4.1.2
7
+ Stable tag: 3.11.3
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
 
11
  == Description ==
12
 
13
+ Thinking of making some money with your website? Try AdRotate. Using AdRotate you can easily place advertising banners pretty much anywhere on your site while managing almost everything from your dashboard. No fussing with your themes code if you don't want to.
14
  Create your own adverts with basic HTML/Javascript code or use adverts from your favorite Ad Server such as DFP, AdSense, Chitika or other similar services.
15
  Manage your advertising campaigns with ease, right from your dashboard. Check up on performance and make use of the myriad of features AdRotate has to offer.
16
+ AdRotate supports unlimited groups for banners allowing you to tie banners to different areas of the website.
 
17
 
18
  AdRotate looks and feels similar to the dashboard you already know, so you're already familiar with AdRotate before you've even started.
19
+ The thought out menu structure and features make advert management very easy and straightforward.
20
 
21
  AdRotate is also available as a premium plugin for a very low price. Offering extra and more extensive features and faster support!
22
  Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=details)!
89
 
90
  == Changelog ==
91
 
92
+ = 3.11.3 FREE =
93
+ * [fix] Undefined notice for some setups when using Page Injection
94
+ * [fix] Incorrect path for images on some setups
95
+ * [fix] Max ads wrongly applied to Groups in block mode
96
+ * [fix] Cleaned up irrelevant user roles
97
+ * [change] No longer use 'ORDER BY RAND()' for groups
98
+ * [change] Blocks can now have up to 32 rows
99
+ * [new] More error notices for wrongly configured adverts
100
+ * [new] Revised upgrade routine with manual trigger
101
+ * [new] Revised installer routine better self-healing function
102
+ * [i18n] Updated group settings descriptions and labels
103
 
104
  NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to [AdRotate PRO](https://ajdg.solutions/products/adrotate-for-wordpress/features/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=features).
105
 
106
+ = 3.12.5 PRO =
107
+ * [fix] Undefined notice for some setups when using Page Injection
108
+ * [fix] Incorrect path for images on some setups
109
+ * [fix] Max ads wrongly applied to Groups in block mode
110
+ * [fix] Access to schedule dashboard properly applied on activation
111
+ * [change] Most dashboards updated, revised and labels updated
112
+ * [change] Merged advert budgets to be in line with market
113
+ * [change] No longer use 'ORDER BY RAND()' for groups
114
+ * [change] Blocks can now have up to 32 rows
115
+ * [new] Advertisers can select groups when creating or editing adverts
116
+ * [new] More error notices for wrongly configured adverts
117
+ * [new] Revised upgrade routine with manual trigger
118
+ * [new] Revised installer routine better self-healing function
119
+ * [i18n] Updated group settings descriptions and labels
 
 
 
 
120
 
121
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
122
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
125
 
126
  == Upgrade Notice ==
127
 
128
+ = 3.11.3 FREE =
129
+ * [fix] Undefined notice for some setups when using Page Injection
130
+ * [fix] Incorrect path for images on some setups
131
+ * [fix] Max ads wrongly applied to Groups in block mode
132
+ * [fix] Cleaned up irrelevant user roles
133
+ * [change] No longer use 'ORDER BY RAND()' for groups
134
+ * [change] Blocks can now have up to 32 rows
135
+ * [new] More error notices for wrongly configured adverts
136
+ * [new] Revised upgrade routine with manual trigger
137
+ * [new] Revised installer routine better self-healing function
138
+ * [i18n] Updated group settings descriptions and labels
139
 
140
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
141
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
144
 
145
  == Screenshots ==
146
 
147
+ * Visit [the site](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=screenshots) for screenshots.
148
+ * [Manuals & Support](https://https://ajdg.solutions/forums/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=manuals)