AdRotate Banner Manager - Version 3.11.4

Version Description

FREE = * [fix] New adverts validating properly * [fix] Much more accurate post injection filter * [fix] Much more accurate page injection filter * [fix] Welcome popup 'dismiss' not always working * [tweak] Clicktracking counting jQuery on() * [tweak] Changed "upgrade" button to "update now" * [tweak] Clearer error status for responsive adverts

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.4
Comparing to
See all releases

Code changes from version 3.11.3 to 3.11.4

adrotate-functions.php CHANGED
@@ -244,27 +244,22 @@ function adrotate_filter_schedule($selected, $banner) {
244
 
245
  // Get schedules for advert
246
  $schedules = $wpdb->get_results("SELECT `".$wpdb->prefix."adrotate_schedule`.`id`, `starttime`, `stoptime`, `maxclicks`, `maximpressions` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` AND `ad` = '".$banner->id."' ORDER BY `starttime` ASC LIMIT 1;");
247
-
248
  $schedule = $schedules[0];
249
 
250
- $current = array();
251
- if($schedule->starttime > $now OR $schedule->stoptime < $now) {
252
- $current[] = 0;
 
 
 
 
 
 
253
  } else {
254
- $current[] = 1;
255
- if($adrotate_config['enable_stats'] == 'Y') {
256
  $stat = adrotate_stats($banner->id, $schedule->starttime, $schedule->stoptime);
257
 
258
- if($adrotate_debug['general'] == true) {
259
- echo "<p><strong>[DEBUG][adrotate_filter_schedule] Ad ".$banner->id." - Has schedule (id: ".$schedule->id.")</strong><pre>";
260
- echo "<br />Start: ".$schedule->starttime." (".date("F j, Y, g:i a", $schedule->starttime).")";
261
- echo "<br />End: ".$schedule->stoptime." (".date("F j, Y, g:i a", $schedule->stoptime).")";
262
- echo "<br />Clicks this period: ".$stat['clicks'];
263
- echo "<br />Impressions this period: ".$stat['impressions'];
264
- echo "</pre></p>";
265
- }
266
-
267
- if($stat['clicks'] >= $schedule->maxclicks AND $schedule->maxclicks > 0 AND $banner->tracker == "Y") {
268
  unset($selected[$banner->id]);
269
  }
270
 
@@ -274,12 +269,6 @@ function adrotate_filter_schedule($selected, $banner) {
274
  }
275
  }
276
 
277
- // Remove advert from array if all schedules are false (0)
278
- if(!in_array(1, $current)) {
279
- unset($selected[$banner->id]);
280
- }
281
- unset($current, $schedules);
282
-
283
  return $selected;
284
  }
285
 
@@ -449,15 +438,22 @@ function adrotate_select_pages($savedpages, $count = 2, $child_of = 0, $parent =
449
  Name: adrotate_prepare_evaluate_ads
450
 
451
  Purpose: Initiate evaluations for errors and determine the ad status
452
- Receive: -None-
453
- Return: -None-
454
  Since: 3.6.5
455
  -------------------------------------------------------------*/
456
- function adrotate_prepare_evaluate_ads($return = true) {
457
  global $wpdb;
458
 
 
 
 
 
 
 
 
459
  // Fetch ads
460
- $ads = $wpdb->get_results("SELECT `id`, `type` FROM `".$wpdb->prefix."adrotate` WHERE `type` != 'disabled' AND `type` != 'empty' ORDER BY `id` ASC;");
461
 
462
  // Determine error states
463
  $error = $expired = $expiressoon = $normal = $unknown = 0;
@@ -743,15 +739,10 @@ function adrotate_dashboard_scripts() {
743
 
744
  // WP Pointers
745
  $seen_it = explode(',', get_user_meta(get_current_user_id(), 'dismissed_wp_pointers', true));
746
- $do_add_script = false;
747
- if(!in_array('adrotate_free_'.ADROTATE_VERSION.ADROTATE_DB_VERSION, $seen_it)) {
748
- $do_add_script = true;
749
- add_action('admin_print_footer_scripts', 'adrotate_welcome_pointer');
750
- }
751
-
752
- if($do_add_script) {
753
  wp_enqueue_script('wp-pointer');
754
  wp_enqueue_style('wp-pointer');
 
755
  }
756
  }
757
 
244
 
245
  // Get schedules for advert
246
  $schedules = $wpdb->get_results("SELECT `".$wpdb->prefix."adrotate_schedule`.`id`, `starttime`, `stoptime`, `maxclicks`, `maximpressions` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` AND `ad` = '".$banner->id."' ORDER BY `starttime` ASC LIMIT 1;");
 
247
  $schedule = $schedules[0];
248
 
249
+ if($adrotate_debug['general'] == true) {
250
+ echo "<p><strong>[DEBUG][adrotate_filter_schedule] Ad ".$banner->id." - Has schedule (id: ".$schedule->id.")</strong><pre>";
251
+ echo "<br />Start: ".$schedule->starttime." (".date("F j, Y, g:i a", $schedule->starttime).")";
252
+ echo "<br />End: ".$schedule->stoptime." (".date("F j, Y, g:i a", $schedule->stoptime).")";
253
+ echo "</pre></p>";
254
+ }
255
+
256
+ if($now < $schedule->starttime OR $now > $schedule->stoptime) {
257
+ unset($selected[$banner->id]);
258
  } else {
259
+ if($adrotate_config['stats'] == 1 AND $banner->tracker == "Y") {
 
260
  $stat = adrotate_stats($banner->id, $schedule->starttime, $schedule->stoptime);
261
 
262
+ if($stat['clicks'] >= $schedule->maxclicks AND $schedule->maxclicks > 0) {
 
 
 
 
 
 
 
 
 
263
  unset($selected[$banner->id]);
264
  }
265
 
269
  }
270
  }
271
 
 
 
 
 
 
 
272
  return $selected;
273
  }
274
 
438
  Name: adrotate_prepare_evaluate_ads
439
 
440
  Purpose: Initiate evaluations for errors and determine the ad status
441
+ Receive: $return, $id
442
+ Return:
443
  Since: 3.6.5
444
  -------------------------------------------------------------*/
445
+ function adrotate_prepare_evaluate_ads($return = true, $id = 0) {
446
  global $wpdb;
447
 
448
+ $getid = '';
449
+ if($id > 0) {
450
+ $getid = " AND `id` = {$id}";
451
+ } else {
452
+ $getid = " AND `type` != 'empty'";
453
+ }
454
+
455
  // Fetch ads
456
+ $ads = $wpdb->get_results("SELECT `id` FROM `".$wpdb->prefix."adrotate` WHERE `type` != 'disabled'{$getid} ORDER BY `id` ASC;");
457
 
458
  // Determine error states
459
  $error = $expired = $expiressoon = $normal = $unknown = 0;
739
 
740
  // WP Pointers
741
  $seen_it = explode(',', get_user_meta(get_current_user_id(), 'dismissed_wp_pointers', true));
742
+ if(!in_array('adrotatefree_'.ADROTATE_VERSION.ADROTATE_DB_VERSION, $seen_it)) {
 
 
 
 
 
 
743
  wp_enqueue_script('wp-pointer');
744
  wp_enqueue_style('wp-pointer');
745
+ add_action('admin_print_footer_scripts', 'adrotate_welcome_pointer');
746
  }
747
  }
748
 
adrotate-manage-publisher.php CHANGED
@@ -146,7 +146,7 @@ function adrotate_insert_input() {
146
  $wpdb->update($wpdb->prefix.'adrotate_schedule', array('starttime' => $startdate, 'stoptime' => $enddate, 'maxclicks' => $maxclicks, 'maximpressions' => $maxshown), array('id' => $schedule_id));
147
 
148
  // Save the ad to the DB
149
- $wpdb->update($wpdb->prefix.'adrotate', array('title' => $title, 'bannercode' => $bannercode, 'updated' => $thetime, 'author' => $author, 'imagetype' => $imagetype, 'image' => $image, 'link' => $link, 'tracker' => $tracker, 'responsive' => $responsive, 'sortorder' => $sortorder), array('id' => $id));
150
 
151
  // Determine Responsive requirement
152
  $responsive_count = $wpdb->get_var("SELECT COUNT(*) as `total` FROM `".$wpdb->prefix."adrotate` WHERE `responsive` = 'Y';");
@@ -183,14 +183,8 @@ function adrotate_insert_input() {
183
  }
184
 
185
  if($active == "active") {
186
- // Determine status of ad
187
- $adstate = adrotate_evaluate_ad($id);
188
- if($adstate == 'error' OR $adstate == 'expired' OR $adstate == 'expiring') {
189
- $action = 'field_error';
190
- }
191
- $active = $adstate;
192
  }
193
- $wpdb->update($wpdb->prefix."adrotate", array('type' => $active), array('id' => $id));
194
 
195
  adrotate_return($action, array($id));
196
  exit;
@@ -594,9 +588,13 @@ function adrotate_options_submit() {
594
  $config['group_manage'] = $_POST['adrotate_group_manage'];
595
  $config['group_delete'] = $_POST['adrotate_group_delete'];
596
 
597
- //Advertisers
598
- if(isset($_POST['adrotate_enable_stats'])) $config['enable_stats'] = 'Y';
599
- else $config['enable_stats'] = 'N';
 
 
 
 
600
 
601
  // Set the banner folder, reset if empty
602
  $config['banner_folder'] = "wp-content/banners/";
146
  $wpdb->update($wpdb->prefix.'adrotate_schedule', array('starttime' => $startdate, 'stoptime' => $enddate, 'maxclicks' => $maxclicks, 'maximpressions' => $maxshown), array('id' => $schedule_id));
147
 
148
  // Save the ad to the DB
149
+ $wpdb->update($wpdb->prefix.'adrotate', array('title' => $title, 'bannercode' => $bannercode, 'updated' => $thetime, 'author' => $author, 'imagetype' => $imagetype, 'image' => $image, 'link' => $link, 'tracker' => $tracker, 'responsive' => $responsive, 'type' => $active, 'sortorder' => $sortorder), array('id' => $id));
150
 
151
  // Determine Responsive requirement
152
  $responsive_count = $wpdb->get_var("SELECT COUNT(*) as `total` FROM `".$wpdb->prefix."adrotate` WHERE `responsive` = 'Y';");
183
  }
184
 
185
  if($active == "active") {
186
+ adrotate_prepare_evaluate_ads(false, $id);
 
 
 
 
 
187
  }
 
188
 
189
  adrotate_return($action, array($id));
190
  exit;
588
  $config['group_manage'] = $_POST['adrotate_group_manage'];
589
  $config['group_delete'] = $_POST['adrotate_group_delete'];
590
 
591
+ // Enable stats
592
+ $stats = trim($_POST['adrotate_stats']);
593
+ if(is_numeric($stats) AND $stats >= 0 AND $stats <= 2) {
594
+ $config['stats'] = $stats;
595
+ } else {
596
+ $config['stats'] = 1;
597
+ }
598
 
599
  // Set the banner folder, reset if empty
600
  $config['banner_folder'] = "wp-content/banners/";
adrotate-output.php CHANGED
@@ -55,7 +55,7 @@ function adrotate_ad($banner_id, $individual = true, $group = 0, $block = 0, $si
55
  $output .= adrotate_ad_output($banner->id, 0, $banner->bannercode, $banner->tracker, $banner->link, $image, $banner->responsive);
56
  if($individual == true) $output .= '</div>';
57
 
58
- if($adrotate_config['enable_stats'] == 'Y'){
59
  adrotate_count_impression($banner->id, 0, 0);
60
  }
61
  } else {
@@ -193,7 +193,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
193
  $columns++;
194
  }
195
 
196
- if($adrotate_config['enable_stats'] == 'Y'){
197
  adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
198
  }
199
 
@@ -208,7 +208,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
208
  $output .= $before.adrotate_ad_output($selected[$banner_id]->id, $group->id, $selected[$banner_id]->bannercode, $selected[$banner_id]->tracker, $selected[$banner_id]->link, $image, $selected[$banner_id]->responsive).$after;
209
  $output .= '</div>';
210
 
211
- if($adrotate_config['enable_stats'] == 'Y'){
212
  adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
213
  }
214
  }
@@ -252,7 +252,7 @@ function adrotate_inject_pages($post_content) {
252
  $pages = explode(",", $id->page);
253
  // Build array of groups for pages
254
  if(in_array($post->ID, $pages)) {
255
- $group_array[] = array('group' => $id->id, 'location' => $id->page_loc, 'paragraph' => $id->page_par, 'pages' => $pages);
256
  }
257
  }
258
 
@@ -276,7 +276,8 @@ function adrotate_inject_pages($post_content) {
276
 
277
  shuffle($group_choice);
278
  } else {
279
- $group_choice = array(0,0);
 
280
  }
281
 
282
  if($adrotate_debug['general'] == true) {
@@ -291,13 +292,13 @@ function adrotate_inject_pages($post_content) {
291
  if(is_page($group_array[$group_id]['pages'])) {
292
  // Advert in front of content
293
  if(($group_array[$group_id]['location'] == 1 OR $group_array[$group_id]['location'] == 3) AND $before == 0) {
294
- $post_content = adrotate_group($group_array[$group_id]['group']).$post_content;
295
  $before = 1;
296
  }
297
 
298
  // Advert behind the content
299
  if(($group_array[$group_id]['location'] == 2 OR $group_array[$group_id]['location'] == 3) AND $after == 0) {
300
- $post_content = $post_content.adrotate_group($group_array[$group_id]['group']);
301
  $after = 1;
302
  }
303
 
@@ -311,7 +312,7 @@ function adrotate_inject_pages($post_content) {
311
  OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
312
  OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
313
  OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
314
- $paragraph = $paragraph.adrotate_group($group_array[$group_id]['group']);
315
 
316
  if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
317
  $par = 1;
@@ -341,81 +342,82 @@ function adrotate_inject_pages($post_content) {
341
  Added: 3.7
342
  -------------------------------------------------------------*/
343
  function adrotate_inject_posts($post_content) {
344
- global $wpdb, $post, $adrotate_debug;
345
 
346
  if(is_single()) {
347
  // Inject ads into posts in specified category
348
  $ids = $wpdb->get_results("SELECT `id`, `cat`, `cat_loc`, `cat_par` FROM `".$wpdb->prefix."adrotate_groups` WHERE `cat_loc` > 0;");
349
- $categories = get_terms('category', array('fields' => 'ids'));
350
 
351
- $category_array = array();
352
  foreach($ids as $id) {
353
- $cats = explode(",", $id->cat);
354
  // Build array of groups for categories
355
- foreach($categories as $category) {
356
- if(in_array($category, $cats)) {
357
- $category_array[] = array('group' => $id->id, 'location' => $id->cat_loc, 'paragraph' => $id->cat_par, 'categories' => $cats);
358
  }
359
  }
360
  }
361
 
362
  if($adrotate_debug['general'] == true) {
363
- echo "<p><strong>[DEBUG][adrotate_inject_posts()] category_array</strong><pre>";
364
- print_r($category_array);
365
  echo "</pre></p>";
366
  }
367
- unset($ids, $cats);
368
 
369
- $category_count = count($category_array);
370
- if($category_count > 0) {
371
- if($category_count > 1) {
372
  // Try to prevent the same ad from showing when there are multiple ads to show
373
  $paragraph_count = substr_count($post_content, '<p>');
374
- if($paragraph_count == 0 OR $category_count < $paragraph_count) {
375
- $paragraph_count = $category_count;
376
  }
377
- $category_choice = array_rand($category_array, $paragraph_count);
378
- if(!is_array($category_choice)) $category_choice = array($category_choice);
379
 
380
- shuffle($category_choice);
381
  } else {
382
- $category_choice = array(0,0);
 
383
  }
384
 
385
  if($adrotate_debug['general'] == true) {
386
- echo "<p><strong>[DEBUG][adrotate_inject_posts()] category_choice</strong><pre>";
387
- print_r($category_choice);
388
  echo "</pre></p>";
389
  }
390
 
391
  $before = $after = 0;
392
- foreach($category_choice as $key => $group_id) {
393
- if(in_category($category_array[$group_id]['categories'])) {
394
  // Advert in front of content
395
- if(($category_array[$group_id]['location'] == 1 OR $category_array[$group_id]['location'] == 3) AND $before == 0) {
396
- $post_content = adrotate_group($category_array[$group_id]['group']).$post_content;
397
  $before = 1;
398
  }
399
 
400
  // Advert behind content
401
- if(($category_array[$group_id]['location'] == 2 OR $category_array[$group_id]['location'] == 3) AND $after == 0) {
402
- $post_content = $post_content.adrotate_group($category_array[$group_id]['group']);
403
  $after = 1;
404
  }
405
 
406
  // Adverts inside the content
407
- if($category_array[$group_id]['location'] == 4) {
408
  $paragraphs = explode("</p>", $post_content);
409
  $par = 1;
410
  $post_content = '';
411
  foreach($paragraphs as $paragraph) {
412
- if(($par == $category_array[$group_id]['paragraph']
413
- OR ($par == 2 AND $category_array[$group_id]['paragraph'] == 20)
414
- OR ($par == 3 AND $category_array[$group_id]['paragraph'] == 30)
415
- OR ($par == 4 AND $category_array[$group_id]['paragraph'] == 40))) {
416
- $paragraph = $paragraph.adrotate_group($category_array[$group_id]['group']);
417
 
418
- if($category_array[$group_id]['paragraph'] > 1 AND $category_array[$group_id]['paragraph'] < 10) {
419
  $par = 1;
420
  } else {
421
  $par++;
@@ -429,7 +431,7 @@ function adrotate_inject_posts($post_content) {
429
  }
430
  }
431
  }
432
- unset($category_choice, $category_count, $category_array, $paragraph, $paragraph_count, $before, $after);
433
  }
434
 
435
  return $post_content;
@@ -497,25 +499,23 @@ function adrotate_ad_output($id, $group = 0, $bannercode, $tracker, $link, $imag
497
  $banner_output = stripslashes(htmlspecialchars_decode($banner_output, ENT_QUOTES));
498
  $banner_output = str_replace('%link%', $link, $banner_output);
499
 
500
- if($adrotate_config['enable_stats'] == 'Y') {
501
  if(empty($blog_id) or $blog_id == '') {
502
  $blog_id = 0;
503
  }
504
 
505
- $banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
506
-
507
- if($tracker == "Y") {
508
  preg_match_all('/<a[^>](.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
509
- if(count($matches) > 0) {
510
- foreach($matches as &$value) {
511
- if(preg_match('/<a[^>]+class=\"(.+?)\"[^>]*>/i', $value[0], $regs)) {
512
  $result = $regs[1]." gofollow";
513
- $str = str_replace('class="'.$regs[1].'"', 'class="'.$result.'"', $value[0]);
514
  } else {
515
- $str = str_replace('<a ', '<a class="gofollow" ', $value[0]);
516
  }
517
- $banner_output = str_replace($value[0], $str, $banner_output);
518
- unset($value, $regs, $result, $str);
519
  }
520
  }
521
  if($adrotate_debug['timers'] == true) {
@@ -527,25 +527,22 @@ function adrotate_ad_output($id, $group = 0, $bannercode, $tracker, $link, $imag
527
 
528
  // Add Responsive classes
529
  preg_match_all('/<img[^>](.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
530
- if(count($matches) > 0) {
531
- foreach($matches as &$value) {
532
- if(preg_match('/<img[^>]+class=\"(.+?)\"[^>]*>/i', $value[0], $regs)) {
533
  $result = $regs[1];
534
  if($responsive == 'Y') $result .= " responsive";
535
  $result = trim($result);
536
- $str = str_replace('class="'.$regs[1].'"', 'class="'.$result.'"', $value[0]);
537
  } else {
538
  $result = '';
539
  if($responsive == 'Y') $result .= " responsive";
540
  $result = trim($result);
541
  if(strlen($result) > 0) {
542
- $str = str_replace('<img ', '<img class="'.$result.'" ', $value[0]);
543
- } else {
544
- $str = $value[0];
545
  }
546
  }
547
- $banner_output = str_replace($value[0], $str, $banner_output);
548
- unset($value, $regs, $result, $str);
549
  }
550
  }
551
  unset($matches);
@@ -580,7 +577,7 @@ function adrotate_custom_scripts() {
580
  if(get_option('adrotate_responsive_required') > 0) wp_enqueue_script('responsive-adrotate', plugins_url('/library/jquery.adrotate.responsive.js', __FILE__), false, '0.4', $in_footer);
581
 
582
  // Make clicktracking and impression tracking a possibility
583
- if($adrotate_config['enable_stats'] == 'Y'){
584
  wp_enqueue_script('clicktrack-adrotate', plugins_url('/library/jquery.adrotate.clicktracker.js', __FILE__), false, '0.7', $in_footer);
585
  wp_localize_script('jshowoff-adrotate', 'impression_object', array('ajax_url' => admin_url( 'admin-ajax.php')));
586
  wp_localize_script('clicktrack-adrotate', 'click_object', array('ajax_url' => admin_url('admin-ajax.php')));
@@ -745,7 +742,7 @@ function adrotate_nonce_error() {
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
  /*-------------------------------------------------------------
@@ -797,7 +794,7 @@ function adrotate_error($action, $arg = null) {
797
 
798
  // Database
799
  case "db_error" :
800
- $result = '<span style="font-weight: bold; color: #f00;">'.__('There was an error locating the database tables for AdRotate. Please deactivate and re-activate AdRotate from the plugin page!!', 'adrotate').'<br />'.__('If this does not solve the issue please seek support at', 'adrotate').' <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/">ajdg.solutions/forums/forum/adrotate-for-wordpress/</a></span>';
801
  return $result;
802
  break;
803
 
@@ -846,7 +843,7 @@ function adrotate_notifications_dashboard() {
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>';
@@ -859,7 +856,7 @@ function adrotate_notifications_dashboard() {
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>';
@@ -873,7 +870,7 @@ function adrotate_notifications_dashboard() {
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>';
@@ -904,7 +901,7 @@ function adrotate_welcome_pointer() {
904
  },
905
  close: function() {
906
  $.post(ajaxurl, {
907
- pointer:'adrotate_free_'+<?php echo ADROTATE_VERSION.ADROTATE_DB_VERSION; ?>,
908
  action:'dismiss-wp-pointer'
909
  });
910
  }
@@ -930,11 +927,10 @@ function adrotate_help_info() {
930
  'title' => __('Useful Links'),
931
  'content' => '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>'.
932
  '<ul>'.
933
- '<li><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_help_tab&utm_campaign=adrotate_link" target="_blank">'.__('AdRotate Page', 'adrotate').'</a>.</li>'.
934
- '<li><a href="https://ajdg.solutions/manuals/adrotate/getting-started-with-adrotate/?utm_source=adrotate_free&utm_medium=adrotate_help_tab&utm_campaign=manuals" target="_blank">'.__('Getting Started With AdRotate', 'adrotate').'</a>.</li>'.
935
- '<li><a href="https://ajdg.solutions/manuals/adrotate/?utm_source=adrotate_free&utm_medium=adrotate_help_tab&utm_campaign=manuals" target="_blank">'.__('AdRotate manuals', 'adrotate').'</a>.</li>'.
936
- '<li><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_help_tab&utm_campaign=support" target="_blank">'.__('AdRotate Support Forum', 'adrotate').'</a>.</li>'.
937
- '<li><a href="http://wordpress.org/support/plugin/adrotate" target="_blank">'.__('WordPress.org Forum', 'adrotate').'</a>.</li>'.
938
  '</ul>'
939
  )
940
  );
@@ -942,7 +938,7 @@ function adrotate_help_info() {
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
  }
@@ -967,11 +963,11 @@ function adrotate_credits() {
967
 
968
  echo '<tbody>';
969
  echo '<tr>';
970
- echo '<td><center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_credits&utm_campaign=adrotatefree" title="AdRotate plugin for WordPress"><img src="'.plugins_url('/images/adrotate-logo-60x60.png', __FILE__).'" alt="adrotate-logo-60x60" width="60" height="60" /></a></center></td>';
971
  echo '<td>'.__("A lot of users only think to review AdRotate when something goes wrong while thousands of people use AdRotate satisfactory. Don't let this go unnoticed.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your honest", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('and','adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate" target="_blank">'.__('review','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
972
 
973
- echo '<td><center><a href="https://ajdg.solutions/?utm_source=adrotate_free&utm_medium=adrotate_credits&utm_campaign=ajdg_link" title="AJdG Solutions"><img src="'.plugins_url('/images/ajdg-logo-100x60.png', __FILE__).'" alt="ajdg-logo-100x60" width="100" height="60" /></a></center></td>';
974
- echo '<td><a href="https://ajdg.solutions/?utm_source=adrotate_free&utm_medium=adrotate_credits&utm_campaign=ajdg_link" title="AJdG Solutions">AJdG Solutions</a> - '.__('Your one stop for Webdevelopment, consultancy and anything WordPress! Find out more about what I can do for you!', 'adrotate').' '.__('Visit the', 'adrotate').' <a href="https://ajdg.solutions/?utm_source=adrotate_free&utm_medium=adrotate_credits&utm_campaign=ajdg_link" target="_blank">AJdG Solutions</a> '.__('website', 'adrotate').'</td>';
975
  echo '</tr>';
976
  echo '</tbody>';
977
 
55
  $output .= adrotate_ad_output($banner->id, 0, $banner->bannercode, $banner->tracker, $banner->link, $image, $banner->responsive);
56
  if($individual == true) $output .= '</div>';
57
 
58
+ if($adrotate_config['stats'] == 1 AND $banner->tracker == "Y") {
59
  adrotate_count_impression($banner->id, 0, 0);
60
  }
61
  } else {
193
  $columns++;
194
  }
195
 
196
+ if($adrotate_config['stats'] == 1){
197
  adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
198
  }
199
 
208
  $output .= $before.adrotate_ad_output($selected[$banner_id]->id, $group->id, $selected[$banner_id]->bannercode, $selected[$banner_id]->tracker, $selected[$banner_id]->link, $image, $selected[$banner_id]->responsive).$after;
209
  $output .= '</div>';
210
 
211
+ if($adrotate_config['stats'] == 1){
212
  adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
213
  }
214
  }
252
  $pages = explode(",", $id->page);
253
  // Build array of groups for pages
254
  if(in_array($post->ID, $pages)) {
255
+ $group_array[$id->id] = array('location' => $id->page_loc, 'paragraph' => $id->page_par, 'pages' => $pages);
256
  }
257
  }
258
 
276
 
277
  shuffle($group_choice);
278
  } else {
279
+ $group_choice = array_rand($group_array, 1);
280
+ $group_choice = array($group_choice,$group_choice);
281
  }
282
 
283
  if($adrotate_debug['general'] == true) {
292
  if(is_page($group_array[$group_id]['pages'])) {
293
  // Advert in front of content
294
  if(($group_array[$group_id]['location'] == 1 OR $group_array[$group_id]['location'] == 3) AND $before == 0) {
295
+ $post_content = adrotate_group($group_id).$post_content;
296
  $before = 1;
297
  }
298
 
299
  // Advert behind the content
300
  if(($group_array[$group_id]['location'] == 2 OR $group_array[$group_id]['location'] == 3) AND $after == 0) {
301
+ $post_content = $post_content.adrotate_group($group_id);
302
  $after = 1;
303
  }
304
 
312
  OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
313
  OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
314
  OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
315
+ $paragraph = $paragraph.adrotate_group($group_id);
316
 
317
  if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
318
  $par = 1;
342
  Added: 3.7
343
  -------------------------------------------------------------*/
344
  function adrotate_inject_posts($post_content) {
345
+ global $wpdb, $adrotate_debug;
346
 
347
  if(is_single()) {
348
  // Inject ads into posts in specified category
349
  $ids = $wpdb->get_results("SELECT `id`, `cat`, `cat_loc`, `cat_par` FROM `".$wpdb->prefix."adrotate_groups` WHERE `cat_loc` > 0;");
350
+ $wp_categories = get_terms('category', array('fields' => 'ids'));
351
 
352
+ $group_array = array();
353
  foreach($ids as $id) {
354
+ $categories = explode(",", $id->cat);
355
  // Build array of groups for categories
356
+ foreach($wp_categories as $key => $value) {
357
+ if(!in_array($value, $categories)) {
358
+ $group_array[$id->id] = array('location' => $id->cat_loc, 'paragraph' => $id->cat_par, 'categories' => $categories);
359
  }
360
  }
361
  }
362
 
363
  if($adrotate_debug['general'] == true) {
364
+ echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_array</strong><pre>";
365
+ print_r($group_array);
366
  echo "</pre></p>";
367
  }
368
+ unset($ids, $wp_categories, $categories);
369
 
370
+ $group_count = count($group_array);
371
+ if($group_count > 0) {
372
+ if($group_count > 1) {
373
  // Try to prevent the same ad from showing when there are multiple ads to show
374
  $paragraph_count = substr_count($post_content, '<p>');
375
+ if($paragraph_count == 0 OR $group_count < $paragraph_count) {
376
+ $paragraph_count = $group_count;
377
  }
378
+ $group_choice = array_rand($group_array, $paragraph_count);
379
+ if(!is_array($group_choice)) $group_choice = array($group_choice);
380
 
381
+ shuffle($group_choice);
382
  } else {
383
+ $group_choice = array_rand($group_array, 1);
384
+ $group_choice = array($group_choice,$group_choice);
385
  }
386
 
387
  if($adrotate_debug['general'] == true) {
388
+ echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_choice</strong><pre>";
389
+ print_r($group_choice);
390
  echo "</pre></p>";
391
  }
392
 
393
  $before = $after = 0;
394
+ foreach($group_choice as $key => $group_id) {
395
+ if(in_category($group_array[$group_id]['categories'])) {
396
  // Advert in front of content
397
+ if(($group_array[$group_id]['location'] == 1 OR $group_array[$group_id]['location'] == 3) AND $before == 0) {
398
+ $post_content = adrotate_group($group_id).$post_content;
399
  $before = 1;
400
  }
401
 
402
  // Advert behind content
403
+ if(($group_array[$group_id]['location'] == 2 OR $group_array[$group_id]['location'] == 3) AND $after == 0) {
404
+ $post_content = $post_content.adrotate_group($group_id);
405
  $after = 1;
406
  }
407
 
408
  // Adverts inside the content
409
+ if($group_array[$group_id]['location'] == 4) {
410
  $paragraphs = explode("</p>", $post_content);
411
  $par = 1;
412
  $post_content = '';
413
  foreach($paragraphs as $paragraph) {
414
+ if($par == $group_array[$group_id]['paragraph']
415
+ OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
416
+ OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
417
+ OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
418
+ $paragraph = $paragraph.adrotate_group($group_id);
419
 
420
+ if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
421
  $par = 1;
422
  } else {
423
  $par++;
431
  }
432
  }
433
  }
434
+ unset($group_choice, $group_count, $group_array, $paragraph, $paragraph_count, $before, $after);
435
  }
436
 
437
  return $post_content;
499
  $banner_output = stripslashes(htmlspecialchars_decode($banner_output, ENT_QUOTES));
500
  $banner_output = str_replace('%link%', $link, $banner_output);
501
 
502
+ if($adrotate_config['stats'] > 0) {
503
  if(empty($blog_id) or $blog_id == '') {
504
  $blog_id = 0;
505
  }
506
 
507
+ if($adrotate_config['stats'] == 1 AND $tracker == "Y") { // Internal tracker
508
+ $banner_output = str_replace('<a ', '<a data-track="'.adrotate_hash($id, $group, $blog_id).'" ', $banner_output);
 
509
  preg_match_all('/<a[^>](.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
510
+ if(isset($matches[0])) {
511
+ foreach($matches[0] as $value) {
512
+ if(preg_match('/<a[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
513
  $result = $regs[1]." gofollow";
514
+ $banner_output = str_replace('class="'.$regs[1].'"', 'class="'.$result.'"', $banner_output);
515
  } else {
516
+ $banner_output = str_replace('<a ', '<a class="gofollow" ', $banner_output);
517
  }
518
+ unset($value, $regs, $result);
 
519
  }
520
  }
521
  if($adrotate_debug['timers'] == true) {
527
 
528
  // Add Responsive classes
529
  preg_match_all('/<img[^>](.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
530
+ if(isset($matches[0])) {
531
+ foreach($matches[0] as $value) {
532
+ if(preg_match('/<img[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
533
  $result = $regs[1];
534
  if($responsive == 'Y') $result .= " responsive";
535
  $result = trim($result);
536
+ $banner_output = str_replace('class="'.$regs[1].'"', 'class="'.$result.'"', $banner_output);
537
  } else {
538
  $result = '';
539
  if($responsive == 'Y') $result .= " responsive";
540
  $result = trim($result);
541
  if(strlen($result) > 0) {
542
+ $banner_output = str_replace('<img ', '<img class="'.$result.'" ', $banner_output);
 
 
543
  }
544
  }
545
+ unset($value, $regs, $result);
 
546
  }
547
  }
548
  unset($matches);
577
  if(get_option('adrotate_responsive_required') > 0) wp_enqueue_script('responsive-adrotate', plugins_url('/library/jquery.adrotate.responsive.js', __FILE__), false, '0.4', $in_footer);
578
 
579
  // Make clicktracking and impression tracking a possibility
580
+ if($adrotate_config['stats'] == 1){
581
  wp_enqueue_script('clicktrack-adrotate', plugins_url('/library/jquery.adrotate.clicktracker.js', __FILE__), false, '0.7', $in_footer);
582
  wp_localize_script('jshowoff-adrotate', 'impression_object', array('ajax_url' => admin_url( 'admin-ajax.php')));
583
  wp_localize_script('clicktrack-adrotate', 'click_object', array('ajax_url' => admin_url('admin-ajax.php')));
742
  echo ' <h2 style="text-align: center;">'.__('Oh no! Something went wrong!', 'adrotate').'</h2>';
743
  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>';
744
  echo ' <p style="text-align: center;">'.__('If you have received the url you want to visit via email, you are being tricked!', 'adrotate').'</p>';
745
+ echo ' <p style="text-align: center;">'.__('Contact support if the issue persists:', 'adrotate').' <a href="https://ajdg.solutions/forums/pk_campaign=adrotatefree-nonceerror&pk_kwd=forum" title="AdRotate Support" target="_blank">AJdG Solutions Support</a>.</p>';
746
  }
747
 
748
  /*-------------------------------------------------------------
794
 
795
  // Database
796
  case "db_error" :
797
+ $result = '<span style="font-weight: bold; color: #f00;">'.__('There was an error locating the database tables for AdRotate. Please deactivate and re-activate AdRotate from the plugin page!!', 'adrotate').'<br />'.__('If this does not solve the issue please seek support at', 'adrotate').' <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-databaseerror&pk_kwd=forum">ajdg.solutions/forums/forum/adrotate-for-wordpress/</a></span>';
798
  return $result;
799
  break;
800
 
843
  if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
844
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
845
  echo ' <div class="adrotate_banner">';
846
+ echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-upgradebanner&pk_kwd=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a></div>';
847
  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>';
848
  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>';
849
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
856
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
857
  echo ' <div class="adrotate_banner">';
858
  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>';
859
+ echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner&pk_kwd=get_help" target="_blank">get in touch</a>!</span></div>';
860
  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>';
861
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
862
  echo ' </div>';
870
  if($adrotate_db_version['current'] < ADROTATE_DB_VERSION OR $adrotate_version['current'] < ADROTATE_VERSION) {
871
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
872
  echo ' <div class="adrotate_banner">';
873
+ echo ' <div class="button_div"><a class="button" href="admin.php?page=adrotate&upgrade=1">Update Now</a></div>';
874
  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>';
875
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
876
  echo ' </div>';
901
  },
902
  close: function() {
903
  $.post(ajaxurl, {
904
+ pointer:'adrotatefree_'+<?php echo ADROTATE_VERSION.ADROTATE_DB_VERSION; ?>,
905
  action:'dismiss-wp-pointer'
906
  });
907
  }
927
  'title' => __('Useful Links'),
928
  'content' => '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>'.
929
  '<ul>'.
930
+ '<li><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-helptab&pk_kwd=adrotate_page" target="_blank">'.__('AdRotate Page', 'adrotate').'</a>.</li>'.
931
+ '<li><a href="https://ajdg.solutions/manuals/adrotate/getting-started-with-adrotate/?pk_campaign=adrotatefree-helptab&pk_kwd=gettingstarted" target="_blank">'.__('Getting Started With AdRotate', 'adrotate').'</a>.</li>'.
932
+ '<li><a href="https://ajdg.solutions/manuals/adrotate/?pk_campaign=adrotatefree-helptab&pk_kwd=manuals" target="_blank">'.__('AdRotate manuals', 'adrotate').'</a>.</li>'.
933
+ '<li><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-helptab&pk_kwd=forum" target="_blank">'.__('AdRotate Support Forum', 'adrotate').'</a>.</li>'.
 
934
  '</ul>'
935
  )
936
  );
938
  'id' => 'adrotate_thanks',
939
  'title' => 'Thank You',
940
  '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>'.
941
+ '<p><strong>Add me:</strong> <a href="http://twitter.com/ajdgsolutions/" target="_blank">Twitter</a>, <a href="https://www.facebook.com/AJdgSolutions" target="_blank">Facebook</a>. <strong>Business:</strong> <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-helptab&pk_kwd=ajdgsolutions" target="_blank">ajdg.solutions</a> <strong>Blog:</strong> <a href="http://meandmymac.net/?pk_campaign=adrotatefree-helptab&pk_kwd=meandmymac" target="_blank">meandmymac.net</a> and <strong>adventure:</strong> <a href="http://www.floatingcoconut.net/?pk_campaign=adrotatefree-helptab&pk_kwd=floatingcoconut" target="_blank">floatingcoconut.net</a>.</p>'
942
  )
943
  );
944
  }
963
 
964
  echo '<tbody>';
965
  echo '<tr>';
966
+ echo '<td><center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-credits&pk_kwd=adrotate_logo" title="AdRotate plugin for WordPress"><img src="'.plugins_url('/images/adrotate-logo-60x60.png', __FILE__).'" alt="adrotate-logo-60x60" width="60" height="60" /></a></center></td>';
967
  echo '<td>'.__("A lot of users only think to review AdRotate when something goes wrong while thousands of people use AdRotate satisfactory. Don't let this go unnoticed.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your honest", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('and','adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate" target="_blank">'.__('review','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
968
 
969
+ echo '<td><center><a href="https://ajdg.solutions/?pk_campaign=adrotatefree-credits&pk_kwd=ajdg_logo" title="AJdG Solutions"><img src="'.plugins_url('/images/ajdg-logo-100x60.png', __FILE__).'" alt="ajdg-logo-100x60" width="100" height="60" /></a></center></td>';
970
+ echo '<td><a href="https://ajdg.solutions/?pk_campaign=adrotatefree-credits&pk_kwd=ajdg_link" title="AJdG Solutions">AJdG Solutions</a> - '.__('Your one stop for Webdevelopment, consultancy and anything WordPress! Find out more about what I can do for you!', 'adrotate').' '.__('Visit the', 'adrotate').' <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-credits&pk_kwd=ajdg_link" target="_blank">AJdG Solutions</a> '.__('website', 'adrotate').'</td>';
971
  echo '</tr>';
972
  echo '</tbody>';
973
 
adrotate-setup.php CHANGED
@@ -267,7 +267,7 @@ function adrotate_check_config() {
267
  if(!isset($config['moderate_approve'])) $config['moderate_approve'] = 'administrator';
268
  if(!isset($config['enable_advertisers']) OR ($config['enable_advertisers'] != 'Y' AND $config['enable_advertisers'] != 'N')) $config['enable_advertisers'] = 'N';
269
  if(!isset($config['enable_editing']) OR ($config['enable_editing'] != 'Y' AND $config['enable_editing'] != 'N')) $config['enable_editing'] = 'N';
270
- if(!isset($config['enable_stats']) OR ($config['enable_stats'] != 'Y' AND $config['enable_stats'] != 'N')) $config['enable_stats'] = 'Y';
271
  if(!isset($config['enable_loggedin_impressions']) OR ($config['enable_loggedin_impressions'] != 'Y' AND $config['enable_loggedin_impressions'] != 'N')) $config['enable_loggedin_impressions'] = 'Y';
272
  if(!isset($config['enable_loggedin_clicks']) OR ($config['enable_loggedin_clicks'] != 'Y' AND $config['enable_loggedin_clicks'] != 'N')) $config['enable_loggedin_clicks'] = 'Y';
273
  if(!isset($config['enable_geo'])) $config['enable_geo'] = 0;
@@ -387,7 +387,7 @@ function adrotate_database_install() {
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` (
@@ -883,6 +883,18 @@ function adrotate_core_upgrade() {
883
  if(!wp_next_scheduled('adrotate_evaluate_ads')) wp_schedule_event($firstrun + 3600, 'twicedaily', 'adrotate_evaluate_ads');
884
  }
885
 
 
 
 
 
 
 
 
 
 
 
 
 
886
  update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
887
  }
888
 
267
  if(!isset($config['moderate_approve'])) $config['moderate_approve'] = 'administrator';
268
  if(!isset($config['enable_advertisers']) OR ($config['enable_advertisers'] != 'Y' AND $config['enable_advertisers'] != 'N')) $config['enable_advertisers'] = 'N';
269
  if(!isset($config['enable_editing']) OR ($config['enable_editing'] != 'Y' AND $config['enable_editing'] != 'N')) $config['enable_editing'] = 'N';
270
+ if(!isset($config['stats']) OR ($config['stats'] < 0 AND $config['stats'] > 2)) $config['stats'] = 1;
271
  if(!isset($config['enable_loggedin_impressions']) OR ($config['enable_loggedin_impressions'] != 'Y' AND $config['enable_loggedin_impressions'] != 'N')) $config['enable_loggedin_impressions'] = 'Y';
272
  if(!isset($config['enable_loggedin_clicks']) OR ($config['enable_loggedin_clicks'] != 'Y' AND $config['enable_loggedin_clicks'] != 'N')) $config['enable_loggedin_clicks'] = 'Y';
273
  if(!isset($config['enable_geo'])) $config['enable_geo'] = 0;
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` (
883
  if(!wp_next_scheduled('adrotate_evaluate_ads')) wp_schedule_event($firstrun + 3600, 'twicedaily', 'adrotate_evaluate_ads');
884
  }
885
 
886
+ // 3.11.4
887
+ if($adrotate_version['current'] < 379) {
888
+ $config379 = get_option('adrotate_config');
889
+ if($config379['enable_stats'] == 'Y') {
890
+ $config379['stats'] = 1;
891
+ } else {
892
+ $config379['stats'] = 0;
893
+ }
894
+ unset($config379['enable_stats']);
895
+ update_option('adrotate_config', $config379);
896
+ }
897
+
898
  update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
899
  }
900
 
adrotate.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /*
3
  Plugin Name: AdRotate
4
- 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.3
9
  License: GPLv3
10
  */
11
 
@@ -20,8 +20,8 @@ License: GPLv3
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
  /*-----------------------------------------------------------*/
@@ -57,7 +57,7 @@ add_action('widgets_init', create_function('', 'return register_widget("adrotate
57
  /*-----------------------------------------------------------*/
58
 
59
  /*--- Front end ---------------------------------------------*/
60
- if($adrotate_config['enable_stats'] == 'Y'){
61
  add_action('wp_ajax_adrotate_impression', 'adrotate_impression_callback');
62
  add_action('wp_ajax_nopriv_adrotate_impression', 'adrotate_impression_callback');
63
  add_action('wp_ajax_adrotate_click', 'adrotate_click_callback');
@@ -217,8 +217,6 @@ function adrotate_manage() {
217
  <div id="message" class="updated"><p><?php _e('The ad was saved but has an issue which might prevent it from working properly. Review the yellow marked ad.', 'adrotate'); ?></p></div>
218
  <?php } else if ($message == 'exported') { ?>
219
  <div id="message" class="updated"><p><?php _e('Export created', 'adrotate'); ?> <a href="<?php echo WP_CONTENT_URL; ?>/reports/<?php echo $file; ?>">Download</a>.</p></div>
220
-
221
-
222
  <?php } else if ($message == 'no_access') { ?>
223
  <div id="message" class="updated"><p><?php _e('Action prohibited', 'adrotate'); ?></p></div>
224
  <?php } else if ($message == 'nodata') { ?>
@@ -335,7 +333,7 @@ function adrotate_manage() {
335
  Return: -none-
336
  -------------------------------------------------------------*/
337
  function adrotate_manage_group() {
338
- global $wpdb, $adrotate_debug;
339
 
340
  $message = $view = $group_edit_id = '';
341
  if(isset($_GET['message'])) $message = esc_attr($_GET['message']);
@@ -378,6 +376,9 @@ function adrotate_manage_group() {
378
  <div class="alignleft actions">
379
  <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=manage');?>"><?php _e('Manage', 'adrotate'); ?></a> |
380
  <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=addnew');?>"><?php _e('Add New', 'adrotate'); ?></a>
 
 
 
381
  </div>
382
  </div>
383
 
@@ -690,9 +691,23 @@ function adrotate_options() {
690
  <h3><?php _e('Statistics', 'adrotate'); ?></h3></td>
691
  <table class="form-table">
692
  <tr>
693
- <th valign="top"><?php _e('Enable stats', 'adrotate'); ?></th>
694
  <td>
695
- <input type="checkbox" name="adrotate_enable_stats" <?php if($adrotate_config['enable_stats'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Track clicks and impressions.', 'adrotate'); ?><br /><span class="description"><?php _e('Disabling this also disables click and impression limits on schedules.', 'adrotate'); ?></span><br />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  </td>
697
  </tr>
698
  <tr>
1
  <?php
2
  /*
3
  Plugin Name: AdRotate
4
+ Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-pluginpage&pk_kwd=pluginurl
5
  Author: Arnan de Gans of AJdG Solutions
6
+ Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage&pk_kwd=authorurl
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.4
9
  License: GPLv3
10
  */
11
 
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
+ define("ADROTATE_DISPLAY", '3.11.4');
24
+ define("ADROTATE_VERSION", 379);
25
  define("ADROTATE_DB_VERSION", 50);
26
  define("ADROTATE_FOLDER", 'adrotate');
27
  /*-----------------------------------------------------------*/
57
  /*-----------------------------------------------------------*/
58
 
59
  /*--- Front end ---------------------------------------------*/
60
+ if($adrotate_config['stats'] == 1){
61
  add_action('wp_ajax_adrotate_impression', 'adrotate_impression_callback');
62
  add_action('wp_ajax_nopriv_adrotate_impression', 'adrotate_impression_callback');
63
  add_action('wp_ajax_adrotate_click', 'adrotate_click_callback');
217
  <div id="message" class="updated"><p><?php _e('The ad was saved but has an issue which might prevent it from working properly. Review the yellow marked ad.', 'adrotate'); ?></p></div>
218
  <?php } else if ($message == 'exported') { ?>
219
  <div id="message" class="updated"><p><?php _e('Export created', 'adrotate'); ?> <a href="<?php echo WP_CONTENT_URL; ?>/reports/<?php echo $file; ?>">Download</a>.</p></div>
 
 
220
  <?php } else if ($message == 'no_access') { ?>
221
  <div id="message" class="updated"><p><?php _e('Action prohibited', 'adrotate'); ?></p></div>
222
  <?php } else if ($message == 'nodata') { ?>
333
  Return: -none-
334
  -------------------------------------------------------------*/
335
  function adrotate_manage_group() {
336
+ global $wpdb, $adrotate_config, $adrotate_debug;
337
 
338
  $message = $view = $group_edit_id = '';
339
  if(isset($_GET['message'])) $message = esc_attr($_GET['message']);
376
  <div class="alignleft actions">
377
  <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=manage');?>"><?php _e('Manage', 'adrotate'); ?></a> |
378
  <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=addnew');?>"><?php _e('Add New', 'adrotate'); ?></a>
379
+ <?php if($group_edit_id AND $adrotate_config['stats'] == 1) { ?>
380
+ | <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=report&group='.$group_edit_id);?>"><?php _e('Report', 'adrotate'); ?></a>
381
+ <?php } ?>
382
  </div>
383
  </div>
384
 
691
  <h3><?php _e('Statistics', 'adrotate'); ?></h3></td>
692
  <table class="form-table">
693
  <tr>
694
+ <th valign="top"><?php _e('How to track stats', 'adrotate'); ?></th>
695
  <td>
696
+ <select name="adrotate_stats">
697
+ <option value="0" <?php if($adrotate_config['stats'] == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
698
+ <option value="1" <?php if($adrotate_config['stats'] == 1) { echo 'selected'; } ?>>AdRotate (Default)</option>
699
+ <option value="0" disabled>Piwik Analytics (Advanced, Faster)</option>
700
+ <option value="0" disabled>Google Analytics (Advanced)</option>
701
+ </select><br />
702
+ <span class="description">
703
+ <strong>Disabled</strong> - <?php _e('No impressions and clicks are recorded for any of your adverts.', 'adrotate'); ?><br /><br />
704
+ <strong>AdRotate</strong> - <?php _e('Tracks impressions and clicks internally.', 'adrotate'); ?><br />
705
+ <strong>Supports:</strong> <em><?php _e('Click and Impression recording, Click and impression limits, impression spread for schedules, local stats display.', 'adrotate'); ?></em><br /><br />
706
+ <strong>Piwik Analytics</strong> - <?php _e('Requires Piwik Analytics tracker installed in your sites footer! Uses data attributes.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?><br />
707
+ <strong>Supports:</strong> <em><?php _e('Click and Impression recording via Cookie, stats are displayed in Actions > Contents.', 'adrotate'); ?></em><br /><br />
708
+ <strong>Google Analytics</strong> - <?php _e('Requires Google Analytics tracker installed in your sites footer! uses onClick() in adverts.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?><br />
709
+ <strong>Supports:</strong> <em><?php _e('Click and Impression recording via Cookie, stats are displayed in Events.', 'adrotate'); ?></em>
710
+ </span>
711
  </td>
712
  </tr>
713
  <tr>
dashboard/adrotate-info.php CHANGED
@@ -136,8 +136,8 @@ $data = get_option("adrotate_advert_status");
136
  <tbody>
137
  <tr class="first">
138
  <td colspan="2">
139
- <p><center><?php _e('Your gift helps ensure the continued development of AdRotate!', 'adrotate'); ?><br /><?php _e("Can't donate funds? Consider writing a review instead. Thank you!", 'adrotate'); ?></center></p>
140
- <p><center><a class="button-primary" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40ajdg%2enet&item_name=AdRotate%20One-time%20Donation&item_number=000&no_shipping=0&no_note=0&tax=0&currency_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">Donate via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Write review on WordPress.org</a></center></p>
141
  </td>
142
  </tr>
143
  </tbody>
@@ -149,7 +149,7 @@ $data = get_option("adrotate_advert_status");
149
  <div class="postbox-adrotate">
150
  <div class="inside">
151
  <?php wp_widget_rss_output(array(
152
- 'url' => array('http://feeds.feedburner.com/meandmymacnet', 'http://ajdg.solutions/feed/'),
153
  'title' => 'AdRotate Development News',
154
  'items' => 4,
155
  'show_summary' => 1,
@@ -168,28 +168,28 @@ $data = get_option("adrotate_advert_status");
168
  <h3><?php _e('Get more features with AdRotate Pro', 'adrotate'); ?></h3>
169
  <div class="postbox-adrotate">
170
  <div class="inside">
171
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=upgrade_adrotatefree" title="AdRotate plugin for WordPress"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-logo-60x60.png" alt="adrotate-logo-60x60" width="60" height="60" align="left" style="padding: 0 10px 10px 0;" /></a><?php _e('Benefit from extra features to reinforce your income with advertising campaigns. Make the most of your website with the powerful tools AdRotate Pro offers on top of the trusted features included in the free version.', 'adrotate'); ?> <?php _e('Want to know more about', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro">AdRotate Pro</a>? <?php _e('Visit the', 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=upgrade_adrotatefree" target="_blank">AdRotate <?php _e('website', 'adrotate'); ?></a>.</p>
172
  </div>
173
  </div>
174
 
175
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
176
  <div class="postbox-adrotate">
177
  <div class="inside">
178
- <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
179
- <p><h4><?php _e('Singe License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
180
- <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
181
- <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
182
- <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
183
- <p><h4><?php _e('Network License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Set up your own advertising network on a WordPress Multisite.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1132&utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=buy_network" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
184
- <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_info_page&utm_campaign=compare_license" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
185
  </div>
186
  </div>
187
 
188
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
189
  <div class="postbox-adrotate">
190
  <div class="inside">
191
- <p><a href="https://ajdg.solutions/" title="AJdG Solutions"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/ajdg-logo-100x60.png" alt="ajdg-logo-100x60" width="100" height="60" align="left" style="padding: 0 10px 10px 0;" /></a>
192
- <a href="https://ajdg.solutions/" title="AJdG Solutions">AJdG Solutions</a> - <?php _e('Your one stop for Webdevelopment, consultancy and anything WordPress! If you need a custom plugin. Theme customizations or have your site moved/migrated entirely. Visit my website for details!', 'adrotate'); ?> <a href="https://ajdg.solutions/" title="AJdG Solutions"><?php _e('Find out more', 'adrotate'); ?></a>!</p>
193
 
194
  <p><center><a href="https://twitter.com/AJdGSolutions" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true"><?php _e('Follow', 'adrotate'); ?> @AJdGSolutions</a>
195
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
136
  <tbody>
137
  <tr class="first">
138
  <td colspan="2">
139
+ <p><center><?php _e('Your gift helps ensure the continued development of AdRotate!', 'adrotate'); ?><br /><?php _e("Can't donate money? Consider writing a review instead. Thank you!", 'adrotate'); ?></center></p>
140
+ <p><center><a class="button-primary" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40ajdg%2enet&item_name=AdRotate%20Donation&item_number=000&no_shipping=0&no_note=0&tax=0&currency_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8&amount=5" target="_blank">Donate &euro; 5 via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Write review on WordPress.org</a></center></p>
141
  </td>
142
  </tr>
143
  </tbody>
149
  <div class="postbox-adrotate">
150
  <div class="inside">
151
  <?php wp_widget_rss_output(array(
152
+ 'url' => array('http://meandmymac.net/feed/', 'http://ajdg.solutions/feed/'),
153
  'title' => 'AdRotate Development News',
154
  'items' => 4,
155
  'show_summary' => 1,
168
  <h3><?php _e('Get more features with AdRotate Pro', 'adrotate'); ?></h3>
169
  <div class="postbox-adrotate">
170
  <div class="inside">
171
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-infopage&pk_kwd=adrotate_logo" title="AdRotate plugin for WordPress"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-logo-60x60.png" alt="adrotate-logo-60x60" width="60" height="60" align="left" style="padding: 0 10px 10px 0;" /></a><?php _e('Benefit from extra features to reinforce your income with advertising campaigns. Make the most of your website with the powerful tools AdRotate Pro offers on top of the trusted features included in the free version.', 'adrotate'); ?> <?php _e('Want to know more about', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro">AdRotate Pro</a>? <?php _e('Visit the', 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-infopage&pk_kwd=adrotate_link" target="_blank">AdRotate <?php _e('website', 'adrotate'); ?></a>.</p>
172
  </div>
173
  </div>
174
 
175
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
176
  <div class="postbox-adrotate">
177
  <div class="inside">
178
+ <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-infopage&pk_kwd=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
179
+ <p><h4><?php _e('Singe License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree-infopage&pk_kwd=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
180
+ <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotatefree-infopage&pk_kwd=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
181
+ <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotatefree-infopage&pk_kwd=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
182
+ <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotatefree-infopage&pk_kwd=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
183
+ <p><h4><?php _e('Network License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Set up your own advertising network on a WordPress Multisite.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1132&pk_campaign=adrotatefree-infopage&pk_kwd=buy_network" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
184
+ <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-infopage&pk_kwd=compare_license" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
185
  </div>
186
  </div>
187
 
188
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
189
  <div class="postbox-adrotate">
190
  <div class="inside">
191
+ <p><a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage&pk_kwd=ajdg_logo" title="AJdG Solutions"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/ajdg-logo-100x60.png" alt="ajdg-logo-100x60" width="100" height="60" align="left" style="padding: 0 10px 10px 0;" /></a>
192
+ <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage&pk_kwd=ajdg_link" title="AJdG Solutions">AJdG Solutions</a> - <?php _e('Your one stop for Webdevelopment, consultancy and anything WordPress! If you need a custom plugin. Theme customizations or have your site moved/migrated entirely. Visit my website for details!', 'adrotate'); ?> <a href="https://ajdg.solutions/?pk_campaign=adrotatefree-infopage&pk_kwd=ajdg_link" title="AJdG Solutions"><?php _e('Find out more', 'adrotate'); ?></a>!</p>
193
 
194
  <p><center><a href="https://twitter.com/AJdGSolutions" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true"><?php _e('Follow', 'adrotate'); ?> @AJdGSolutions</a>
195
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></center></p>
dashboard/adrotate-pro.php CHANGED
@@ -10,7 +10,7 @@
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <div id="dashboard-widgets-wrap">
13
- <p><center>Take a peek into professional advertising for WordPress websites and discover how you can benefit from the powerful features <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=upgrade_adrotatefree" target="_blank">AdRotate Professional</a> has to offer.</center></p>
14
 
15
  <div id="dashboard-widgets" class="metabox-holder">
16
 
@@ -21,7 +21,7 @@
21
  <div class="postbox-adrotate">
22
  <div class="inside">
23
  <p><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
24
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-advertisers.jpg" /></a></center>
25
  </div>
26
  </div>
27
 
@@ -29,7 +29,7 @@
29
  <div class="postbox-adrotate">
30
  <div class="inside">
31
  <p><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services.', 'adrotate'); ?></p>
32
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-geotargetting.jpg" /></a></center>
33
  </div>
34
  </div>
35
 
@@ -61,7 +61,7 @@
61
  <div class="postbox-adrotate">
62
  <div class="inside">
63
  <p><?php _e('Schedule your adverts and set up advertising campaigns based on date without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it.', 'adrotate'); ?></p>
64
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-schedules.jpg" /></a></center>
65
  </div>
66
  </div>
67
 
@@ -69,20 +69,20 @@
69
  <div class="postbox-adrotate">
70
  <div class="inside">
71
  <p><?php _e('Stay in touch with Email and/or push notifications. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
72
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-notifications.jpg" /></a></center>
73
  </div>
74
  </div>
75
 
76
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
77
  <div class="postbox-adrotate">
78
  <div class="inside">
79
- <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
80
- <p><h4><?php _e('Singe License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
81
- <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
82
- <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
83
- <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Activate AdRotate on unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
84
- <p><h4><?php _e('Network License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Set up your own advertising network on a WordPress Multisite.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1132&utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=buy_network" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
85
- <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=compare_license" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
86
  </div>
87
  </div>
88
 
@@ -93,6 +93,6 @@
93
 
94
  <div class="clear"></div>
95
 
96
- <p><center>A grasp of the features AdRotate Pro has to offer over the free version. Check out the <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_pro_page&utm_campaign=upgrade_adrotatefree" target="_blank">AdRotate website</a> for more information.<br />All prices are in Euros and inclusive of tax/VAT in the European Union. The amount will be converted to Euros automagically.</center></p>
97
  <p><?php echo adrotate_trademark(); ?></p>
98
  </div>
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <div id="dashboard-widgets-wrap">
13
+ <p><center>Take a peek into professional advertising for WordPress websites and discover how you can benefit from the powerful features <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank">AdRotate Professional</a> has to offer.</center></p>
14
 
15
  <div id="dashboard-widgets" class="metabox-holder">
16
 
21
  <div class="postbox-adrotate">
22
  <div class="inside">
23
  <p><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
24
+ <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-advertisers.jpg" /></a></center>
25
  </div>
26
  </div>
27
 
29
  <div class="postbox-adrotate">
30
  <div class="inside">
31
  <p><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services.', 'adrotate'); ?></p>
32
+ <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-geotargetting.jpg" /></a></center>
33
  </div>
34
  </div>
35
 
61
  <div class="postbox-adrotate">
62
  <div class="inside">
63
  <p><?php _e('Schedule your adverts and set up advertising campaigns based on date without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it.', 'adrotate'); ?></p>
64
+ <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-schedules.jpg" /></a></center>
65
  </div>
66
  </div>
67
 
69
  <div class="postbox-adrotate">
70
  <div class="inside">
71
  <p><?php _e('Stay in touch with Email and/or push notifications. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
72
+ <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-notifications.jpg" /></a></center>
73
  </div>
74
  </div>
75
 
76
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
77
  <div class="postbox-adrotate">
78
  <div class="inside">
79
+ <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
80
+ <p><h4><?php _e('Singe License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree-propage&pk_kwd=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
81
+ <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotatefree-propage&pk_kwd=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
82
+ <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotatefree-propage&pk_kwd=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
83
+ <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotatefree-propage&pk_kwd=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
84
+ <p><h4><?php _e('Network License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Set up your own advertising network on a WordPress Multisite.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1132&pk_campaign=adrotatefree-propage&pk_kwd=buy_network" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
85
+ <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=compare_license" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
86
  </div>
87
  </div>
88
 
93
 
94
  <div class="clear"></div>
95
 
96
+ <p><center>A grasp of the features AdRotate Pro has to offer over the free version. Check out the <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank">AdRotate website</a> for more information.<br />All prices are in Euros and inclusive of tax/VAT in the European Union. The amount will be converted to Euros automagically.</center></p>
97
  <p><?php echo adrotate_trademark(); ?></p>
98
  </div>
dashboard/publisher/adrotate-ads-edit.php CHANGED
@@ -52,13 +52,13 @@ if($ad_edit_id) {
52
  echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select an image!', 'adrotate').'</p></div>';
53
 
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>';
@@ -151,12 +151,12 @@ if($edit_banner->imagetype == "field") {
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>
@@ -275,7 +275,7 @@ if($edit_banner->imagetype == "field") {
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>
52
  echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select an image!', 'adrotate').'</p></div>';
53
 
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. 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>'. __('Responsive is enabled but your banner image has the wrong name.', 'adrotate').'</p></div>';
62
 
63
  if(!preg_match_all('/<a[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
64
  echo '<div class="error"><p>'. __("Clicktracking is enabled but no valid link was found in the adcode!", 'adrotate').'</p></div>';
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['stats'] > 0) { ?>
155
  <tr>
156
+ <th width="15%" valign="top"><?php _e('Statistics:', 'adrotate'); ?></th>
157
  <td colspan="2">
158
+ <label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click and impression tracking for this advert.', 'adrotate'); ?> <br />
159
+ <em><?php _e('Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always supported.', 'adrotate'); ?></em>
160
  </label>
161
  </td>
162
  </tr>
275
  </label>
276
  </td>
277
  </tr>
278
+ <?php if($adrotate_config['stats'] == 1) { ?>
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>
dashboard/publisher/adrotate-ads-main.php CHANGED
@@ -40,11 +40,13 @@
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
42
  <th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
43
- <th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
44
- <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
45
- <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
46
- <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
47
- <th width="7%"><center><?php _e('CTR', 'adrotate'); ?></center></th>
 
 
48
  </tr>
49
  </thead>
50
  <tbody>
@@ -82,25 +84,29 @@
82
  <th class="check-column"><input type="checkbox" name="bannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
83
  <td><center><?php echo $banner['id'];?></center></td>
84
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
85
- <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> - <a href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=report&ad='.$banner['id']);?>" title="<?php _e('Report', 'adrotate'); ?>"><?php _e('Report', 'adrotate'); ?></a><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
86
  <td><center><?php echo $banner['weight']; ?></center></td>
87
- <td><center><?php echo $stats['impressions']; ?></center></td>
88
- <td><center><?php echo $stats_today['impressions']; ?></center></td>
89
- <?php if($banner['tracker'] == "Y") { ?>
90
- <td><center><?php echo $stats['clicks']; ?></center></td>
91
- <td><center><?php echo $stats_today['clicks']; ?></center></td>
92
- <td><center><?php echo $ctr; ?> %</center></td>
93
- <?php } else { ?>
94
- <td><center>--</center></td>
95
- <td><center>--</center></td>
96
- <td><center>--</center></td>
 
 
 
 
97
  <?php } ?>
98
  </tr>
99
  <?php } ?>
100
  <?php } else { ?>
101
  <tr id='no-groups'>
102
  <th class="check-column">&nbsp;</th>
103
- <td colspan="10"><em><?php _e('No ads created yet!', 'adrotate'); ?></em></td>
104
  </tr>
105
  <?php } ?>
106
  </tbody>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
42
  <th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
43
+ <?php if($adrotate_config['stats'] == 1) { ?>
44
+ <th width="5%"><center><?php _e('Shown', 'adrotate'); ?></center></th>
45
+ <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
46
+ <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
47
+ <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
48
+ <th width="7%"><center><?php _e('CTR', 'adrotate'); ?></center></th>
49
+ <?php } ?>
50
  </tr>
51
  </thead>
52
  <tbody>
84
  <th class="check-column"><input type="checkbox" name="bannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
85
  <td><center><?php echo $banner['id'];?></center></td>
86
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
87
+ <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1) { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=report&ad='.$banner['id']);?>" title="<?php _e('Report', 'adrotate'); ?>"><?php _e('Report', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
88
  <td><center><?php echo $banner['weight']; ?></center></td>
89
+ <?php if($adrotate_config['stats'] == 1) { ?>
90
+ <?php if($banner['tracker'] == "Y") { ?>
91
+ <td><center><?php echo $stats['impressions']; ?></center></td>
92
+ <td><center><?php echo $stats_today['impressions']; ?></center></td>
93
+ <td><center><?php echo $stats['clicks']; ?></center></td>
94
+ <td><center><?php echo $stats_today['clicks']; ?></center></td>
95
+ <td><center><?php echo $ctr; ?> %</center></td>
96
+ <?php } else { ?>
97
+ <td><center>--</center></td>
98
+ <td><center>--</center></td>
99
+ <td><center>--</center></td>
100
+ <td><center>--</center></td>
101
+ <td><center>--</center></td>
102
+ <?php } ?>
103
  <?php } ?>
104
  </tr>
105
  <?php } ?>
106
  <?php } else { ?>
107
  <tr id='no-groups'>
108
  <th class="check-column">&nbsp;</th>
109
+ <td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '10' : '5'; ?>"><em><?php _e('No ads created yet!', 'adrotate'); ?></em></td>
110
  </tr>
111
  <?php } ?>
112
  </tbody>
dashboard/publisher/adrotate-groups-edit.php CHANGED
@@ -207,9 +207,9 @@ if(!is_array($meta_array)) $meta_array = array();
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>
211
- <option value="30" <?php if($edit_group->cat_par == 30) { echo 'selected'; } ?>><?php _e('the 3rd paragraph', 'adrotate'); ?></option>
212
- <option value="40" <?php if($edit_group->cat_par == 40) { echo 'selected'; } ?>><?php _e('the 4th paragraph', 'adrotate'); ?></option>
213
  <option value="0" disabled>---</option>
214
  <option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('every 2nd paragraph', 'adrotate'); ?></option>
215
  <option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('every 3rd paragraph', 'adrotate'); ?></option>
@@ -248,9 +248,9 @@ if(!is_array($meta_array)) $meta_array = array();
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>
252
- <option value="30" <?php if($edit_group->page_par == 30) { echo 'selected'; } ?>><?php _e('the 3rd paragraph', 'adrotate'); ?></option>
253
- <option value="40" <?php if($edit_group->page_par == 40) { echo 'selected'; } ?>><?php _e('the 4th paragraph', 'adrotate'); ?></option>
254
  <option value="0" disabled>---</option>
255
  <option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('every 2nd paragraph', 'adrotate'); ?></option>
256
  <option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('every 3rd paragraph', 'adrotate'); ?></option>
@@ -325,8 +325,10 @@ if(!is_array($meta_array)) $meta_array = array();
325
  <tr>
326
  <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></th>
327
  <th>&nbsp;</th>
328
- <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
329
- <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
 
 
330
  <th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
331
  <th width="15%"><?php _e('Visible until', 'adrotate'); ?></th>
332
  </tr>
@@ -338,7 +340,9 @@ if(!is_array($meta_array)) $meta_array = array();
338
  foreach($ads as $ad) {
339
  $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;");
340
 
341
- $stats = adrotate_stats($ad->id);
 
 
342
 
343
  $errorclass = '';
344
  if($ad->type == 'error') $errorclass = ' row_error';
@@ -351,8 +355,15 @@ if(!is_array($meta_array)) $meta_array = array();
351
  <tr class='<?php echo $class; ?>'>
352
  <th class="check-column" width="2%"><input type="checkbox" name="adselect[]" value="<?php echo $ad->id; ?>" <?php if(in_array($ad->id, $meta_array)) echo "checked"; ?> /></th>
353
  <td><?php echo $ad->id; ?> - <strong><?php echo stripslashes(html_entity_decode($ad->title)); ?></strong></td>
354
- <td><center><?php echo $stats['impressions']; ?></center></td>
355
- <td><center><?php if($ad->tracker == 'Y') { echo $stats['clicks']; } else { ?>--<?php } ?></center></td>
 
 
 
 
 
 
 
356
  <td><center><?php echo $ad->weight; ?></center></td>
357
  <td><span style="color: <?php echo adrotate_prepare_color($stoptime);?>;"><?php echo date_i18n("F d, Y", $stoptime); ?></span></td>
358
  </tr>
@@ -361,7 +372,7 @@ if(!is_array($meta_array)) $meta_array = array();
361
  <?php } else { ?>
362
  <tr>
363
  <th class="check-column">&nbsp;</th>
364
- <td colspan="5"><em><?php _e('No ads created!', 'adrotate'); ?></em></td>
365
  </tr>
366
  <?php } ?>
367
  </tbody>
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 second paragraph', 'adrotate'); ?></option>
211
+ <option value="30" <?php if($edit_group->cat_par == 30) { echo 'selected'; } ?>><?php _e('the third paragraph', 'adrotate'); ?></option>
212
+ <option value="40" <?php if($edit_group->cat_par == 40) { echo 'selected'; } ?>><?php _e('the fourth paragraph', 'adrotate'); ?></option>
213
  <option value="0" disabled>---</option>
214
  <option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('every 2nd paragraph', 'adrotate'); ?></option>
215
  <option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('every 3rd paragraph', 'adrotate'); ?></option>
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 second paragraph', 'adrotate'); ?></option>
252
+ <option value="30" <?php if($edit_group->page_par == 30) { echo 'selected'; } ?>><?php _e('the third paragraph', 'adrotate'); ?></option>
253
+ <option value="40" <?php if($edit_group->page_par == 40) { echo 'selected'; } ?>><?php _e('the fourth paragraph', 'adrotate'); ?></option>
254
  <option value="0" disabled>---</option>
255
  <option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('every 2nd paragraph', 'adrotate'); ?></option>
256
  <option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('every 3rd paragraph', 'adrotate'); ?></option>
325
  <tr>
326
  <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></th>
327
  <th>&nbsp;</th>
328
+ <?php if($adrotate_config['stats'] == 1) { ?>
329
+ <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
330
+ <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
331
+ <?php } ?>
332
  <th width="5%"><center><?php _e('Weight', 'adrotate'); ?></center></th>
333
  <th width="15%"><?php _e('Visible until', 'adrotate'); ?></th>
334
  </tr>
340
  foreach($ads as $ad) {
341
  $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;");
342
 
343
+ if($adrotate_config['stats'] == 1) {
344
+ $stats = adrotate_stats($ad->id);
345
+ }
346
 
347
  $errorclass = '';
348
  if($ad->type == 'error') $errorclass = ' row_error';
355
  <tr class='<?php echo $class; ?>'>
356
  <th class="check-column" width="2%"><input type="checkbox" name="adselect[]" value="<?php echo $ad->id; ?>" <?php if(in_array($ad->id, $meta_array)) echo "checked"; ?> /></th>
357
  <td><?php echo $ad->id; ?> - <strong><?php echo stripslashes(html_entity_decode($ad->title)); ?></strong></td>
358
+ <?php if($adrotate_config['stats'] == 1) {
359
+ if($ad->tracker == 'Y') { ?>
360
+ <td><center><?php echo $stats['impressions']; ?></center></td>
361
+ <td><center><?php echo $stats['clicks']; ?></center></td>
362
+ <?php } else { ?>
363
+ <td><center>--</center></td>
364
+ <td><center>--</center></td>
365
+ <?php } ?>
366
+ <?php } ?>
367
  <td><center><?php echo $ad->weight; ?></center></td>
368
  <td><span style="color: <?php echo adrotate_prepare_color($stoptime);?>;"><?php echo date_i18n("F d, Y", $stoptime); ?></span></td>
369
  </tr>
372
  <?php } else { ?>
373
  <tr>
374
  <th class="check-column">&nbsp;</th>
375
+ <td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '6' : '4'; ?>"><em><?php _e('No ads created!', 'adrotate'); ?></em></td>
376
  </tr>
377
  <?php } ?>
378
  </tbody>
dashboard/publisher/adrotate-groups-main.php CHANGED
@@ -32,10 +32,12 @@
32
  <th width="5%"><center><?php _e('ID', 'adrotate'); ?></center></th>
33
  <th><?php _e('Name', 'adrotate'); ?></th>
34
  <th width="5%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
35
- <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
36
- <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
37
- <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
38
- <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
 
 
39
  <th width="15%"><center><?php _e('Code', 'adrotate'); ?></center></th>
40
  </tr>
41
  </thead>
@@ -46,14 +48,15 @@
46
  $class = '';
47
  $modus = array();
48
  foreach($groups as $group) {
49
- $stats = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group->id';", ARRAY_A);
50
- $stats_today = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group->id' AND `thetime` = '$today';", ARRAY_A);
 
 
 
 
 
 
51
 
52
- // Prevent gaps in display
53
- if(empty($stats['impressions'])) $stats['impressions'] = 0;
54
- if(empty($stats['clicks'])) $stats['clicks'] = 0;
55
- if(empty($stats_today['impressions'])) $stats_today['impressions'] = 0;
56
- if(empty($stats_today['clicks'])) $stats_today['clicks'] = 0;
57
  if($group->adspeed > 0) $adspeed = $group->adspeed / 1000;
58
  if($group->modus == 0) $modus[] = __('Default', 'adrotate');
59
  if($group->modus == 1) $modus[] = __('Dynamic', 'adrotate').' ('.$adspeed.' '. __('second rotation', 'adrotate').')';
@@ -66,12 +69,14 @@
66
  <tr class='<?php echo $class; ?>'>
67
  <th class="check-column"><input type="checkbox" name="groupcheck[]" value="<?php echo $group->id; ?>" /></th>
68
  <td><center><?php echo $group->id;?></center></td>
69
- <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=edit&group='.$group->id);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo $group->name;?></a></strong> - <a href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=report&group='.$group->id);?>" title="<?php _e('Report', 'adrotate'); ?>"><?php _e('Report', 'adrotate'); ?></a><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
70
  <td><center><?php echo $ads_in_group; ?></center></td>
71
- <td><center><?php echo $stats['impressions']; ?></center></td>
72
- <td><center><?php echo $stats_today['impressions']; ?></center></td>
73
- <td><center><?php echo $stats['clicks']; ?></center></td>
74
- <td><center><?php echo $stats_today['clicks']; ?></center></td>
 
 
75
  <td><center>[adrotate group="<?php echo $group->id; ?>"]</center></td>
76
  </tr>
77
  <?php unset($stats, $stats_today, $adspeed, $modus);?>
@@ -79,7 +84,7 @@
79
  <?php } else { ?>
80
  <tr>
81
  <th class="check-column">&nbsp;</th>
82
- <td colspan="9"><em><?php _e('No groups created!', 'adrotate'); ?></em></td>
83
  </tr>
84
  <?php } ?>
85
  </tbody>
32
  <th width="5%"><center><?php _e('ID', 'adrotate'); ?></center></th>
33
  <th><?php _e('Name', 'adrotate'); ?></th>
34
  <th width="5%"><center><?php _e('Ads', 'adrotate'); ?></center></th>
35
+ <?php if($adrotate_config['stats'] == 1) { ?>
36
+ <th width="5%"><center><?php _e('Impressions', 'adrotate'); ?></center></th>
37
+ <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
38
+ <th width="5%"><center><?php _e('Clicks', 'adrotate'); ?></center></th>
39
+ <th width="5%"><center><?php _e('Today', 'adrotate'); ?></center></th>
40
+ <?php } ?>
41
  <th width="15%"><center><?php _e('Code', 'adrotate'); ?></center></th>
42
  </tr>
43
  </thead>
48
  $class = '';
49
  $modus = array();
50
  foreach($groups as $group) {
51
+ if($adrotate_config['stats'] == 1) {
52
+ $stats = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group->id';", ARRAY_A);
53
+ $stats_today = $wpdb->get_row("SELECT SUM(`clicks`) as `clicks`, SUM(`impressions`) as `impressions` FROM `".$wpdb->prefix."adrotate_stats` WHERE `group` = '$group->id' AND `thetime` = '$today';", ARRAY_A);
54
+ if(empty($stats['impressions'])) $stats['impressions'] = 0;
55
+ if(empty($stats['clicks'])) $stats['clicks'] = 0;
56
+ if(empty($stats_today['impressions'])) $stats_today['impressions'] = 0;
57
+ if(empty($stats_today['clicks'])) $stats_today['clicks'] = 0;
58
+ }
59
 
 
 
 
 
 
60
  if($group->adspeed > 0) $adspeed = $group->adspeed / 1000;
61
  if($group->modus == 0) $modus[] = __('Default', 'adrotate');
62
  if($group->modus == 1) $modus[] = __('Dynamic', 'adrotate').' ('.$adspeed.' '. __('second rotation', 'adrotate').')';
69
  <tr class='<?php echo $class; ?>'>
70
  <th class="check-column"><input type="checkbox" name="groupcheck[]" value="<?php echo $group->id; ?>" /></th>
71
  <td><center><?php echo $group->id;?></center></td>
72
+ <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=edit&group='.$group->id);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo $group->name;?></a></strong> <?php if($adrotate_config['stats'] == 1) { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=report&group='.$group->id);?>" title="<?php _e('Report', 'adrotate'); ?>"><?php _e('Report', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
73
  <td><center><?php echo $ads_in_group; ?></center></td>
74
+ <?php if($adrotate_config['stats'] == 1) { ?>
75
+ <td><center><?php echo $stats['impressions']; ?></center></td>
76
+ <td><center><?php echo $stats_today['impressions']; ?></center></td>
77
+ <td><center><?php echo $stats['clicks']; ?></center></td>
78
+ <td><center><?php echo $stats_today['clicks']; ?></center></td>
79
+ <?php } ?>
80
  <td><center>[adrotate group="<?php echo $group->id; ?>"]</center></td>
81
  </tr>
82
  <?php unset($stats, $stats_today, $adspeed, $modus);?>
84
  <?php } else { ?>
85
  <tr>
86
  <th class="check-column">&nbsp;</th>
87
+ <td colspan="<?php echo ($adrotate_config['stats'] == 1) ? '9' : '5'; ?>"><em><?php _e('No groups created!', 'adrotate'); ?></em></td>
88
  </tr>
89
  <?php } ?>
90
  </tbody>
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-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,19 +17,19 @@ msgstr ""
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,17 +38,17 @@ msgstr ""
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,33 +56,33 @@ msgstr ""
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,59 +90,59 @@ msgstr ""
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,71 +150,67 @@ msgstr ""
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,23 +219,23 @@ msgstr ""
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,27 +243,27 @@ msgstr ""
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
 
@@ -403,7 +399,7 @@ msgstr "Управление на реклами"
403
  msgid "Manage Groups"
404
  msgstr "Управление на групи"
405
 
406
- #: adrotate.php:111 adrotate.php:440
407
  msgid "Manage Schedules"
408
  msgstr "Управление на графици"
409
 
@@ -467,47 +463,52 @@ msgstr ""
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,83 +516,83 @@ msgstr ""
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,27 +600,27 @@ msgstr ""
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,7 +628,7 @@ msgstr ""
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,7 +637,7 @@ msgstr ""
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,13 +646,13 @@ msgstr ""
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,171 +660,207 @@ msgstr ""
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,7 +868,7 @@ msgstr ""
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,11 +876,11 @@ msgstr ""
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,29 +888,29 @@ msgstr ""
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,11 +918,11 @@ msgstr ""
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,11 +930,11 @@ msgstr ""
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,15 +946,15 @@ msgstr ""
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,15 +964,15 @@ msgstr ""
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,7 +981,7 @@ msgstr ""
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,15 +990,15 @@ msgstr ""
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,11 +1006,11 @@ msgstr ""
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,11 +1018,11 @@ msgstr ""
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,19 +1036,19 @@ msgstr ""
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,16 +1056,16 @@ msgstr ""
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,11 +1073,11 @@ msgstr ""
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,21 +1085,21 @@ msgstr ""
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,7 +1107,7 @@ msgstr ""
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,7 +1115,7 @@ msgstr ""
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,19 +1123,19 @@ msgstr ""
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,7 +1143,7 @@ msgstr ""
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,65 +1160,65 @@ msgstr ""
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,35 +1231,35 @@ msgstr ""
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,7 +1267,7 @@ msgstr ""
1230
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1231
  "за проследяване на кликове."
1232
 
1233
- #: adrotate.php:869
1234
  msgid "Temporarily disable encryption on the redirect url."
1235
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1236
 
@@ -1279,7 +1316,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1279
  msgstr ""
1280
 
1281
  #: dashboard/adrotate-info.php:139
1282
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1283
  msgstr ""
1284
 
1285
  #: dashboard/adrotate-info.php:148
@@ -1344,7 +1381,7 @@ msgstr " За до 5 Wordpress инсталации."
1344
  msgid "Developer License"
1345
  msgstr "Developer лиценз"
1346
 
1347
- #: dashboard/adrotate-info.php:182
1348
  msgid "Unlimited WordPress installations and/or networks."
1349
  msgstr ""
1350
 
@@ -1465,11 +1502,6 @@ msgstr ""
1465
  "Ще разберете кога изтичат обявите, какви грешки са възникнали и кога "
1466
  "рекламодателите добавят нови реклами."
1467
 
1468
- #: dashboard/adrotate-pro.php:83
1469
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1470
- msgstr ""
1471
- "Актвирайте AdRotate на неограничен брой Wordpress инсталации и/или мрежи."
1472
-
1473
  #: dashboard/publisher/adrotate-ads-edit.php:46
1474
  msgid "The AdCode cannot be empty!"
1475
  msgstr "AdCode не може да бъде празен!"
@@ -1484,11 +1516,9 @@ msgstr "Използвали сте %image% в своя AdCode, но не сте
1484
 
1485
  #: dashboard/publisher/adrotate-ads-edit.php:55
1486
  msgid ""
1487
- "There is a problem saving the image specification. Please reset your image "
1488
- "and re-save the ad!"
1489
  msgstr ""
1490
- "Възникна проблем при записването на характеристиките на снимката. Моля, "
1491
- "нулирайте снимката и запишете рекламата наново!"
1492
 
1493
  #: dashboard/publisher/adrotate-ads-edit.php:58
1494
  msgid ""
@@ -1497,9 +1527,7 @@ msgid ""
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
@@ -1623,17 +1651,17 @@ msgstr ""
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
 
@@ -1650,9 +1678,9 @@ 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
 
@@ -1669,7 +1697,7 @@ msgstr "Запиши рекламата"
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
 
@@ -1921,44 +1949,44 @@ 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 "Режим"
1964
 
@@ -1990,23 +2018,23 @@ 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
2011
  #: dashboard/publisher/adrotate-groups-report.php:44
2012
  msgid "CTR"
@@ -2014,8 +2042,8 @@ msgstr "CTR"
2014
 
2015
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2016
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2017
- #: dashboard/publisher/adrotate-ads-main.php:85
2018
- #: dashboard/publisher/adrotate-groups-main.php:69
2019
  msgid "Edit"
2020
  msgstr "Редакция"
2021
 
@@ -2026,7 +2054,7 @@ msgstr "Статистики"
2026
 
2027
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2028
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2029
- #: dashboard/publisher/adrotate-ads-main.php:85
2030
  msgid "Groups:"
2031
  msgstr "Групи:"
2032
 
@@ -2065,7 +2093,7 @@ msgid "For 7 days"
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,27 +2106,22 @@ msgid "Export to XML"
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
 
2085
- #: dashboard/publisher/adrotate-ads-main.php:43
2086
  msgid "Shown"
2087
  msgstr "Показана"
2088
 
2089
- #: dashboard/publisher/adrotate-ads-main.php:44
2090
- #: dashboard/publisher/adrotate-ads-main.php:46
2091
- #: dashboard/publisher/adrotate-groups-main.php:36
2092
- #: dashboard/publisher/adrotate-groups-main.php:38
2093
  msgid "Today"
2094
  msgstr "Днес"
2095
 
2096
- #: dashboard/publisher/adrotate-ads-main.php:85
2097
- #: dashboard/publisher/adrotate-groups-main.php:69
2098
- msgid "Report"
2099
- msgstr "Доклад"
2100
-
2101
- #: dashboard/publisher/adrotate-ads-main.php:103
2102
  msgid "No ads created yet!"
2103
  msgstr "Все още няма създадени реклами!"
2104
 
@@ -2243,7 +2266,7 @@ 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
 
@@ -2308,11 +2331,6 @@ msgstr ""
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"
@@ -2340,18 +2358,18 @@ 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
@@ -2432,11 +2450,11 @@ msgstr "След реклама"
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
 
@@ -2456,11 +2474,11 @@ msgstr "На път сте да изтриете група"
2456
  msgid "This action can not be undone!"
2457
  msgstr "Това действие е необратимо!"
2458
 
2459
- #: dashboard/publisher/adrotate-groups-main.php:39
2460
  msgid "Code"
2461
  msgstr "Код"
2462
 
2463
- #: dashboard/publisher/adrotate-groups-main.php:82
2464
  msgid "No groups created!"
2465
  msgstr "Няма създадени групи!"
2466
 
@@ -2468,6 +2486,48 @@ msgstr "Няма създадени групи!"
2468
  msgid "Statistics for group"
2469
  msgstr "Статистика за групи"
2470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2471
  #~ msgid "Usage:"
2472
  #~ msgstr "Употреба:"
2473
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:803
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-output.php:742
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
+ #: adrotate-output.php:743
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:744
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:745
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
+ #: adrotate-output.php:786
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
+ #: adrotate-output.php:791
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
+ #: adrotate-output.php:797
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:797
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
+ #: adrotate-output.php:803
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
+ #: adrotate-output.php:828
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
+ #: adrotate-output.php:828
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
+ #: adrotate-output.php:830
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
+ #: adrotate-output.php:830
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
+ #: adrotate-output.php:832
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
+ #: adrotate-output.php:832
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
+ #: adrotate-output.php:834
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
+ #: adrotate-output.php:834
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
+ #: adrotate-output.php:834
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
+ #: adrotate-output.php:834
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
+ #: adrotate-output.php:846
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
+ #: adrotate-output.php:847
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:847
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
+ #: adrotate-output.php:847
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
+ #: adrotate-output.php:891
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:891
169
  msgid "manuals"
170
  msgstr "ръководства"
171
 
172
+ #: adrotate-output.php:891 adrotate-output.php:967
173
  #: dashboard/publisher/adrotate-ads-edit.php:151
174
  msgid "and"
175
  msgstr "и"
176
 
177
+ #: adrotate-output.php:891
178
  msgid "forums"
179
  msgstr ""
180
 
181
+ #: adrotate-output.php:927
182
  msgid "Useful Links"
183
  msgstr "Полезни връзки"
184
 
185
+ #: adrotate-output.php:928
186
  msgid "Useful links to learn more about AdRotate"
187
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
188
 
189
+ #: adrotate-output.php:930
190
  msgid "AdRotate Page"
191
  msgstr ""
192
 
193
+ #: adrotate-output.php:931
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Започнете от нулата с AdRotate Pro"
196
 
197
+ #: adrotate-output.php:932
198
  msgid "AdRotate manuals"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:933
202
  msgid "AdRotate Support Forum"
203
  msgstr "Форум за поддръжка на AdRotate"
204
 
205
+ #: adrotate-output.php:959
 
 
 
 
206
  msgid "Help AdRotate Grow"
207
  msgstr "Помогнете за развитието на AdRotate"
208
 
209
+ #: adrotate-output.php:960
210
  msgid "Brought to you by"
211
  msgstr "Достига до Вас благодарение на"
212
 
213
+ #: adrotate-output.php:967
214
  msgid ""
215
  "A lot of users only think to review AdRotate when something goes wrong while "
216
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
219
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
220
  "това да остане незабелязано."
221
 
222
+ #: adrotate-output.php:967
223
  msgid "If you find AdRotate useful please leave your honest"
224
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
225
 
226
+ #: adrotate-output.php:967
227
  msgid "rating"
228
  msgstr "оценка"
229
 
230
+ #: adrotate-output.php:967
231
  msgid "review"
232
  msgstr "мнение"
233
 
234
+ #: adrotate-output.php:967
235
  msgid "on WordPress.org to help AdRotate grow in a positive way"
236
  msgstr "на WordPress.org, за да се развива AdRotate"
237
 
238
+ #: adrotate-output.php:970
239
  msgid ""
240
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
241
  "out more about what I can do for you!"
243
  "Мястото, където да се консултирате и/или да поръчате разработка за "
244
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
245
 
246
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
247
  msgid "Visit the"
248
  msgstr "Посетете"
249
 
250
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
251
  msgid "website"
252
  msgstr "уебсайт"
253
 
254
+ #: adrotate-output.php:1000
255
  msgid "Available in AdRotate Pro"
256
  msgstr "Налично в AdRotate Pro"
257
 
258
+ #: adrotate-output.php:1000
259
  msgid "More information..."
260
  msgstr "Повече информация..."
261
 
262
+ #: adrotate-output.php:1001
263
  msgid "This feature is available in AdRotate Pro"
264
  msgstr "Тази функционалност е налична в AdRotate Pro"
265
 
266
+ #: adrotate-output.php:1001
267
  msgid "Learn more"
268
  msgstr "Повече информация"
269
 
399
  msgid "Manage Groups"
400
  msgstr "Управление на групи"
401
 
402
+ #: adrotate.php:111 adrotate.php:441
403
  msgid "Manage Schedules"
404
  msgstr "Управление на графици"
405
 
463
  msgid "Export created"
464
  msgstr "Експорта е завършен"
465
 
466
+ #: adrotate.php:221
467
  msgid "Action prohibited"
468
  msgstr "Забранено действие"
469
 
470
+ #: adrotate.php:223 adrotate.php:371
471
  msgid "No data found in selected time period"
472
  msgstr "Не е намерена информация за избрания период"
473
 
474
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
475
  msgid "Manage"
476
  msgstr "Управление"
477
 
478
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
479
  msgid "Add New"
480
  msgstr "Добавяне"
481
 
482
+ #: adrotate.php:360
483
  msgid "Group Management"
484
  msgstr "Управление на групи"
485
 
486
+ #: adrotate.php:363
487
  msgid "Group created"
488
  msgstr "Групата е създадена"
489
 
490
+ #: adrotate.php:365
491
  msgid "Group updated"
492
  msgstr "Групата е обновена"
493
 
494
+ #: adrotate.php:367
495
  msgid "Group deleted"
496
  msgstr "Групата е изтрита"
497
 
498
+ #: adrotate.php:369
499
  msgid "Group including it's Ads deleted"
500
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
501
 
502
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
503
+ #: dashboard/publisher/adrotate-groups-main.php:72
504
+ msgid "Report"
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
  "Управлението на графици и множество графици за една реклама са налични в "
517
  "AdRotate Pro."
518
 
519
+ #: adrotate.php:442 adrotate.php:529
520
  #: dashboard/publisher/adrotate-ads-edit.php:177
521
+ #: dashboard/publisher/adrotate-ads-main.php:114
522
  #: dashboard/publisher/adrotate-groups-edit.php:75
523
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-main-disabled.php:35
542
  #: dashboard/publisher/adrotate-ads-main-error.php:39
543
  #: dashboard/publisher/adrotate-ads-main.php:39
544
  #: dashboard/publisher/adrotate-groups-main.php:32
545
  msgid "ID"
546
  msgstr "ID"
547
 
548
+ #: adrotate.php:460
549
  msgid "Start"
550
  msgstr "Начало"
551
 
552
+ #: adrotate.php:460
553
  msgid "End"
554
  msgstr "Край"
555
 
556
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
557
  #: dashboard/publisher/adrotate-groups-main.php:34
558
  msgid "Ads"
559
  msgstr "Реклами"
560
 
561
+ #: adrotate.php:463
562
  msgid "Max Clicks"
563
  msgstr "Максимум кликове"
564
 
565
+ #: adrotate.php:464
566
  msgid "Max Impressions"
567
  msgstr "Максимум импресии"
568
 
569
+ #: adrotate.php:494
570
  msgid "No schedules created yet!"
571
  msgstr "Все още няма създадени графици!"
572
 
573
+ #: adrotate.php:499
574
  msgid "Easily manage your schedules from here with AdRotate Pro."
575
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
576
 
577
+ #: adrotate.php:499 adrotate.php:562
578
  msgid "Upgrade today!"
579
  msgstr "Надградете днес!"
580
 
581
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
582
+ #: dashboard/publisher/adrotate-groups-edit.php:383
583
  msgid "Expires soon."
584
  msgstr "Изтича скоро."
585
 
586
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
587
+ #: dashboard/publisher/adrotate-groups-edit.php:384
588
  msgid "Has expired."
589
  msgstr "Изтекла."
590
 
591
+ #: adrotate.php:527
592
  msgid "Media Management available in AdRotate Pro"
593
  msgstr "Управление на медия е налично в AdRotate Pro"
594
 
595
+ #: adrotate.php:529
596
  msgid ""
597
  "Upload images to the AdRotate Pro banners folder from here. This is "
598
  "especially useful if you use responsive adverts with multiple images."
600
  "Качете картинки в папката за банери на AdRotate Pro от тук. Това е особено "
601
  "полезно, ако използвате responsive реклами с няколко картинки."
602
 
603
+ #: adrotate.php:529
604
  msgid "Media uploading and management is available in AdRotate Pro."
605
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
606
 
607
+ #: adrotate.php:531
608
  msgid "Upload new banner image"
609
  msgstr "Качване на нова картинка на банера"
610
 
611
+ #: adrotate.php:532
612
  msgid "Accepted files are:"
613
  msgstr "Приемат се следните файлове:"
614
 
615
+ #: adrotate.php:532
616
  msgid "Maximum size is 512Kb."
617
  msgstr "Максималния размер е 512Kb."
618
 
619
+ #: adrotate.php:532
620
  msgid "Important:"
621
  msgstr "Важно:"
622
 
623
+ #: adrotate.php:532
624
  msgid ""
625
  "Make sure your file has no spaces or special characters in the name. Replace "
626
  "spaces with a - or _."
628
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
629
  "интервалите с - или _."
630
 
631
+ #: adrotate.php:534
632
  msgid ""
633
  "For responsive adverts make sure the filename is in the following format; "
634
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
637
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
638
  "е строго препоръчителен."
639
 
640
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
641
  msgid ""
642
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
643
  "filename instead of \".full\" for the various viewports."
646
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
647
  "файловете, вместо \".full\"."
648
 
649
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
650
  #: dashboard/publisher/adrotate-groups-edit.php:308
651
  #: dashboard/publisher/adrotate-groups-edit.php:316
652
  msgid "Example:"
653
  msgstr "Пример:"
654
 
655
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
656
  msgid ""
657
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
658
  "for different viewports."
660
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
661
  "реклама в различни резолюции на екрана."
662
 
663
+ #: adrotate.php:540
664
  msgid "Upload image"
665
  msgstr "Качването на картинка"
666
 
667
+ #: adrotate.php:543
668
  msgid "Available banner images in"
669
  msgstr "Налични картинки за банери в"
670
 
671
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
672
  msgid "Name"
673
  msgstr "Име"
674
 
675
+ #: adrotate.php:549
676
  msgid "Actions"
677
  msgstr "Действия"
678
 
679
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
680
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
681
  #: dashboard/publisher/adrotate-ads-main-error.php:21
682
  #: dashboard/publisher/adrotate-ads-main.php:22
683
  msgid "Delete"
684
  msgstr "Изтриване"
685
 
686
+ #: adrotate.php:562
687
  msgid ""
688
  "Make sure the banner images are not in use by adverts when you delete them!"
689
  msgstr ""
690
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
691
  "изтриете!"
692
 
693
+ #: adrotate.php:562
694
  msgid "Manage your banner folder from here with AdRotate Pro."
695
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
696
 
697
+ #: adrotate.php:606
698
  msgid "AdRotate Settings"
699
  msgstr "AdRotate Настройки"
700
 
701
+ #: adrotate.php:609
702
  msgid "Settings saved"
703
  msgstr "Настройките са запазени"
704
 
705
+ #: adrotate.php:611
706
  msgid "Database optimized"
707
  msgstr "Базата данни е оптимизирана"
708
 
709
+ #: adrotate.php:613
710
  msgid "Database repaired"
711
  msgstr "Базата данни е поправена"
712
 
713
+ #: adrotate.php:615
714
  msgid "Ads evaluated and statuses have been corrected where required"
715
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
716
 
717
+ #: adrotate.php:617
718
  msgid "Empty database records removed"
719
  msgstr "Празните записи в базата данни са премахнати"
720
 
721
+ #: adrotate.php:619
722
  msgid "Database can only be optimized or cleaned once every hour"
723
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
724
 
725
+ #: adrotate.php:627
726
  msgid "Access Rights"
727
  msgstr "Права на достъп"
728
 
729
+ #: adrotate.php:628
730
  msgid "Who has access to what?"
731
  msgstr "Кой до какво има достъп?"
732
 
733
+ #: adrotate.php:631
734
  msgid "Manage/Add/Edit adverts"
735
  msgstr "Управление/Добавяне/Редакция на обяви"
736
 
737
+ #: adrotate.php:635
738
  msgid "Role to see and add/edit ads."
739
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
740
 
741
+ #: adrotate.php:639
742
  msgid "Delete/Reset adverts"
743
  msgstr "Изтриване/Нулиране на реклами"
744
 
745
+ #: adrotate.php:643
746
  msgid "Role to delete ads and reset stats."
747
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
748
 
749
+ #: adrotate.php:647
750
  msgid "Manage/Add/Edit groups"
751
  msgstr "Управление/Добавяне/Редакция на групи"
752
 
753
+ #: adrotate.php:651
754
  msgid "Role to see and add/edit groups."
755
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
756
 
757
+ #: adrotate.php:655
758
  msgid "Delete groups"
759
  msgstr "Изтриване на групи"
760
 
761
+ #: adrotate.php:659
762
  msgid "Role to delete groups."
763
  msgstr "Роля за изтриване на групи."
764
 
765
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
766
+ #: adrotate.php:890
767
  msgid "Update Options"
768
  msgstr "Опции за обновяване"
769
 
770
+ #: adrotate.php:691
771
  msgid "Statistics"
772
  msgstr "Статистики"
773
 
774
+ #: adrotate.php:694
775
+ msgid "How to track stats"
776
+ msgstr ""
777
+
778
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
779
+ #: dashboard/publisher/adrotate-groups-edit.php:240
780
+ msgid "Disabled"
781
+ msgstr "Изключено"
782
+
783
+ #: adrotate.php:703
784
+ msgid "No impressions and clicks are recorded for any of your adverts."
785
+ msgstr ""
786
+
787
+ #: adrotate.php:704
788
+ msgid "Tracks impressions and clicks internally."
789
+ msgstr ""
790
+
791
+ #: adrotate.php:705
792
+ msgid ""
793
+ "Click and Impression recording, Click and impression limits, impression "
794
+ "spread for schedules, local stats display."
795
+ msgstr ""
796
+
797
+ #: adrotate.php:706
798
+ msgid ""
799
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
800
+ "attributes."
801
+ msgstr ""
802
 
803
+ #: adrotate.php:706 adrotate.php:708
804
+ msgid "Available in AdRotate Pro!"
805
+ msgstr ""
806
 
807
+ #: adrotate.php:707
808
+ msgid ""
809
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
810
+ "Contents."
811
  msgstr ""
 
 
812
 
813
+ #: adrotate.php:708
814
+ msgid ""
815
+ "Requires Google Analytics tracker installed in your sites footer! uses "
816
+ "onClick() in adverts."
817
+ msgstr ""
818
+
819
+ #: adrotate.php:709
820
+ msgid ""
821
+ "Click and Impression recording via Cookie, stats are displayed in Events."
822
+ msgstr ""
823
+
824
+ #: adrotate.php:714
825
  msgid "Impressions timer"
826
  msgstr "Таймер за импресии"
827
 
828
+ #: adrotate.php:716 adrotate.php:723
829
  msgid "Seconds."
830
  msgstr "Секудни."
831
 
832
+ #: adrotate.php:717
833
  msgid "Default: 60."
834
  msgstr "По подразбиране: 60."
835
 
836
+ #: adrotate.php:717
837
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
838
  msgstr ""
839
 
840
+ #: adrotate.php:721
841
  msgid "Clicks timer"
842
  msgstr "Таймер за кликове"
843
 
844
+ #: adrotate.php:724
845
  msgid "Default: 86400."
846
  msgstr "По подразбиране: 86400."
847
 
848
+ #: adrotate.php:724
849
  msgid ""
850
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
851
  msgstr ""
852
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
853
  "(24 часа)."
854
 
855
+ #: adrotate.php:729
856
  msgid "Bot filter"
857
  msgstr "Филтър на ботове"
858
 
859
+ #: adrotate.php:732
860
  msgid "User-Agent Filter"
861
  msgstr "Филтър за агенти"
862
 
863
+ #: adrotate.php:735
864
  msgid ""
865
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
866
  "prevent impressions and clicks counted on them."
868
  "Списък с ключови думи, за разделител използвайте запетая. Филтриране на "
869
  "импресиите и кликовете от ботове/роботи/агенти."
870
 
871
+ #: adrotate.php:736
872
  msgid ""
873
  "Keep in mind that this might give false positives. The word 'google' also "
874
  "matches 'googlebot', but not vice-versa. So be careful!"
876
  "Имайте в предвид, че това може да даде фалшиви резултати. Думата 'google' ще "
877
  "включи и 'googlebot', но не и обратното. Бъдете внимателни!"
878
 
879
+ #: adrotate.php:736
880
  msgid "Keep your list up-to-date"
881
  msgstr "Поддържайте списъка актуален"
882
 
883
+ #: adrotate.php:737
884
  msgid ""
885
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
886
  "other characters are stripped out."
888
  "Използвайте само думи с букви и цифри, тире и долно тире. Всички останали "
889
  "знаци са забранени."
890
 
891
+ #: adrotate.php:738
892
  msgid ""
893
  "Additionally to the list specified here, empty User-Agents are blocked as "
894
  "well."
895
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
896
 
897
+ #: adrotate.php:738
898
  msgid "Learn more about"
899
  msgstr "Научете повече за"
900
 
901
+ #: adrotate.php:738
902
  msgid "user-agents"
903
  msgstr "агенти"
904
 
905
+ #: adrotate.php:747
906
  msgid "Miscellaneous"
907
  msgstr "Разни"
908
 
909
+ #: adrotate.php:750
910
  msgid "Widget alignment"
911
  msgstr "Подравняване на джаджата"
912
 
913
+ #: adrotate.php:751
914
  msgid ""
915
  "Check this box if your widgets do not align in your themes sidebar. (Does "
916
  "not always help!)"
918
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
919
  "темата Ви. (Не винаги помага)"
920
 
921
+ #: adrotate.php:754
922
  msgid "Widget padding"
923
  msgstr "Padding за джаджата"
924
 
925
+ #: adrotate.php:755
926
  msgid ""
927
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
928
  "not always work!)"
930
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
931
  "джаджата. (Не винаги работи!)"
932
 
933
+ #: adrotate.php:760 adrotate.php:771
934
  msgid "NOTICE:"
935
  msgstr "ЗАБЕЛЕЖКА:"
936
 
937
+ #: adrotate.php:761
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 "
946
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
947
  "включена в W3 Total Cache."
948
 
949
+ #: adrotate.php:765
950
  msgid "W3 Total Caching"
951
  msgstr "W3 Total Caching"
952
 
953
+ #: adrotate.php:766
954
  msgid "Check this box if you use W3 Total Caching on your site."
955
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
956
 
957
+ #: adrotate.php:772
958
  msgid ""
959
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
960
  "this function will not work. WP Super Cache has discontinued support for "
964
  "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
965
  "динамично съдържание."
966
 
967
+ #: adrotate.php:776
968
  msgid "WP Super Cache"
969
  msgstr "WP Super Cache"
970
 
971
+ #: adrotate.php:777
972
  msgid "Check this box if you use WP Super Cache on your site."
973
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
974
 
975
+ #: adrotate.php:782
976
  msgid ""
977
  "It may take a while for the ad to start rotating. The caching plugin needs "
978
  "to refresh the cache. This can take up to a week if not done manually."
981
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
982
  "седмица, ако не го направите ръчно."
983
 
984
+ #: adrotate.php:782
985
  msgid ""
986
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
987
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
990
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
991
  "сами."
992
 
993
+ #: adrotate.php:786
994
  msgid "Javascript"
995
  msgstr ""
996
 
997
+ #: adrotate.php:789
998
  msgid "Load jQuery"
999
  msgstr "Зареди jQuery"
1000
 
1001
+ #: adrotate.php:790
1002
  msgid ""
1003
  "jQuery is required for all Javascript features below. Enable this if your "
1004
  "theme does not load jQuery already."
1006
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
1007
  "темата ви вече не го е заредила."
1008
 
1009
+ #: adrotate.php:793
1010
  msgid "Load in footer?"
1011
  msgstr "Зареди във футера?"
1012
 
1013
+ #: adrotate.php:794
1014
  msgid ""
1015
  "Enable if you want to load the above libraries in the footer. Your theme "
1016
  "needs to call wp_footer() for this to work."
1018
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
1019
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
1020
 
1021
+ #: adrotate.php:802
1022
  msgid "Maintenance"
1023
  msgstr "Поддръжка"
1024
 
1025
+ #: adrotate.php:803
1026
  msgid ""
1027
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1028
  "They only apply to your ads/groups and stats. Not to other settings or other "
1036
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1037
  "отговаря."
1038
 
1039
+ #: adrotate.php:818 adrotate.php:820
1040
  msgid "Optimize Database"
1041
  msgstr "Оптимизиране на базата данни"
1042
 
1043
+ #: adrotate.php:820
1044
  msgid "You are about to optimize the AdRotate database."
1045
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1046
 
1047
+ #: adrotate.php:820
1048
  msgid "Did you make a backup of your database?"
1049
  msgstr "Направихте ли резервно копие на своята база данни?"
1050
 
1051
+ #: adrotate.php:820
1052
  msgid ""
1053
  "This may take a moment and may cause your website to respond slow "
1054
  "temporarily!"
1056
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1057
  "момент!"
1058
 
1059
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1060
  #: dashboard/publisher/adrotate-groups-main.php:24
1061
  msgid "OK to continue, CANCEL to stop."
1062
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1063
 
1064
+ #: adrotate.php:821
1065
  msgid "Cleans up overhead data in the AdRotate tables."
1066
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1067
 
1068
+ #: adrotate.php:822
1069
  msgid ""
1070
  "Overhead data is accumulated garbage resulting from many changes you've "
1071
  "made. This can vary from nothing to hundreds of KiB of data."
1073
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1074
  "които правите. Те могар да варират от 0 до хиляди KB."
1075
 
1076
+ #: adrotate.php:826 adrotate.php:828
1077
  msgid "Clean-up Database"
1078
  msgstr "Почистване на базата данни"
1079
 
1080
+ #: adrotate.php:828
1081
  msgid ""
1082
  "You are about to clean up your database. This may delete expired schedules "
1083
  "and older statistics."
1085
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1086
  "и стари статистики."
1087
 
1088
+ #: adrotate.php:828
1089
  msgid "Are you sure you want to continue?"
1090
  msgstr "Сигурни ли сте, че искате да продължите?"
1091
 
1092
+ #: adrotate.php:828 adrotate.php:836
1093
  msgid "This might take a while and may slow down your site during this action!"
1094
  msgstr ""
1095
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1096
  "изпълнението му!"
1097
 
1098
+ #: adrotate.php:829
1099
  msgid "Delete stats older than 356 days (Optional)."
1100
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1101
 
1102
+ #: adrotate.php:830
1103
  msgid ""
1104
  "AdRotate creates empty records when you start making ads or groups. In rare "
1105
  "occasions these records are faulty."
1107
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1108
  "група. В редки случай тези записи са дефектни."
1109
 
1110
+ #: adrotate.php:830
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
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1116
  "този бутон, за да изтриете празните полета."
1117
 
1118
+ #: adrotate.php:830
1119
  msgid ""
1120
  "Additionally you can clean up old statistics. This will improve the speed of "
1121
  "your site."
1123
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1124
  "скоростта на сайта Ви."
1125
 
1126
+ #: adrotate.php:834
1127
  msgid "Re-evaluate Ads"
1128
  msgstr "Преоценка на реклами"
1129
 
1130
+ #: adrotate.php:836
1131
  msgid "Re-evaluate all ads"
1132
  msgstr "Преоценка на всички реклами"
1133
 
1134
+ #: adrotate.php:836
1135
  msgid "You are about to check all ads for errors."
1136
  msgstr "На път сте да проверите всички реклами за грешки."
1137
 
1138
+ #: adrotate.php:837
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
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1144
  "нужда от тази функция."
1145
 
1146
+ #: adrotate.php:841
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
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1161
  "тези бутони е безсмислено."
1162
 
1163
+ #: adrotate.php:849
1164
  msgid "Troubleshooting"
1165
  msgstr "Отстраняване на проблеми"
1166
 
1167
+ #: adrotate.php:852
1168
  msgid "Current version:"
1169
  msgstr "Текуща версия:"
1170
 
1171
+ #: adrotate.php:853
1172
  msgid "Previous version:"
1173
  msgstr "Предишна версия:"
1174
 
1175
+ #: adrotate.php:856
1176
  msgid "Current database version:"
1177
  msgstr "Текуща верския на базата данни:"
1178
 
1179
+ #: adrotate.php:857
1180
  msgid "Previous database version:"
1181
  msgstr "Предишна версия на базата данни:"
1182
 
1183
+ #: adrotate.php:860
1184
  #, fuzzy
1185
  msgid "Ad evaluation next run:"
1186
  msgstr "Оценка на рекламата:"
1187
 
1188
+ #: adrotate.php:861 adrotate.php:865
1189
  msgid "Not scheduled!"
1190
  msgstr "Не е планирано!"
1191
 
1192
+ #: adrotate.php:864
1193
  #, fuzzy
1194
  msgid "Clean Trackerdata next run:"
1195
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
1196
 
1197
+ #: adrotate.php:868
1198
  msgid "Current status of adverts"
1199
  msgstr "Настоящ статус на рекламите"
1200
 
1201
+ #: adrotate.php:869
1202
  msgid "Normal"
1203
  msgstr "Нормално"
1204
 
1205
+ #: adrotate.php:869
1206
  msgid "Error"
1207
  msgstr "Грешка"
1208
 
1209
+ #: adrotate.php:869
1210
  msgid "Expired"
1211
  msgstr "Изтекло"
1212
 
1213
+ #: adrotate.php:869
1214
  msgid "Expires Soon"
1215
  msgstr "Изтича скоро"
1216
 
1217
+ #: adrotate.php:869
1218
  msgid "Unknown Status"
1219
  msgstr "Неизвестен статус"
1220
 
1221
+ #: adrotate.php:872
1222
  msgid ""
1223
  "NOTE: The below options are not meant for normal use and are only there for "
1224
  "developers to review saved settings or how ads are selected. These can be "
1231
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1232
  "ИЗКЛЮЧЕНИ!!"
1233
 
1234
+ #: adrotate.php:876
1235
  msgid "Developer Debug"
1236
  msgstr "Developer Debug"
1237
 
1238
+ #: adrotate.php:878
1239
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1240
  msgstr ""
1241
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1242
  "изглед."
1243
 
1244
+ #: adrotate.php:879
1245
  msgid "Show all settings, dashboard routines and related values."
1246
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1247
 
1248
+ #: adrotate.php:880
1249
  msgid "Show array of all userroles and capabilities."
1250
  msgstr "Покажи масив с всички потребителски роли и възможности."
1251
 
1252
+ #: adrotate.php:881
1253
  msgid "Review saved advertisers! Visible to advertisers."
1254
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1255
 
1256
+ #: adrotate.php:882
1257
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1258
  msgstr ""
1259
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1260
  "автори."
1261
 
1262
+ #: adrotate.php:883
1263
  msgid ""
1264
  "Disable timers for clicks and impressions and enable a alert window for "
1265
  "clicktracking."
1267
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1268
  "за проследяване на кликове."
1269
 
1270
+ #: adrotate.php:884
1271
  msgid "Temporarily disable encryption on the redirect url."
1272
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1273
 
1316
  msgstr ""
1317
 
1318
  #: dashboard/adrotate-info.php:139
1319
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1320
  msgstr ""
1321
 
1322
  #: dashboard/adrotate-info.php:148
1381
  msgid "Developer License"
1382
  msgstr "Developer лиценз"
1383
 
1384
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1385
  msgid "Unlimited WordPress installations and/or networks."
1386
  msgstr ""
1387
 
1502
  "Ще разберете кога изтичат обявите, какви грешки са възникнали и кога "
1503
  "рекламодателите добавят нови реклами."
1504
 
 
 
 
 
 
1505
  #: dashboard/publisher/adrotate-ads-edit.php:46
1506
  msgid "The AdCode cannot be empty!"
1507
  msgstr "AdCode не може да бъде празен!"
1516
 
1517
  #: dashboard/publisher/adrotate-ads-edit.php:55
1518
  msgid ""
1519
+ "There is a problem saving the image. Please reset your image and re-save the "
1520
+ "ad!"
1521
  msgstr ""
 
 
1522
 
1523
  #: dashboard/publisher/adrotate-ads-edit.php:58
1524
  msgid ""
1527
  msgstr ""
1528
 
1529
  #: dashboard/publisher/adrotate-ads-edit.php:61
1530
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1531
  msgstr ""
1532
 
1533
  #: dashboard/publisher/adrotate-ads-edit.php:64
1651
  "попълнено, то ще бъде с преоритет."
1652
 
1653
  #: dashboard/publisher/adrotate-ads-edit.php:156
1654
+ msgid "Statistics:"
1655
+ msgstr ""
1656
 
1657
  #: dashboard/publisher/adrotate-ads-edit.php:158
1658
+ msgid "Enable click and impression tracking for this advert."
1659
+ msgstr ""
1660
 
1661
  #: dashboard/publisher/adrotate-ads-edit.php:159
1662
  msgid ""
1663
  "Note: Clicktracking does not work for Javascript adverts such as those "
1664
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1665
  "supported."
1666
  msgstr ""
1667
 
1678
  msgstr "Не, не показвай тази реклама никъде"
1679
 
1680
  #: dashboard/publisher/adrotate-ads-edit.php:177
1681
+ #: dashboard/publisher/adrotate-ads-main.php:114
1682
  #: dashboard/publisher/adrotate-groups-edit.php:75
1683
+ #: dashboard/publisher/adrotate-groups-main.php:92
1684
  msgid "Get more features with AdRotate Pro."
1685
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1686
 
1697
  #: dashboard/publisher/adrotate-ads-edit.php:437
1698
  #: dashboard/publisher/adrotate-groups-edit.php:154
1699
  #: dashboard/publisher/adrotate-groups-edit.php:297
1700
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1701
  msgid "Cancel"
1702
  msgstr "Отказ"
1703
 
1949
  msgstr "Реклами в група"
1950
 
1951
  #: dashboard/publisher/adrotate-ads-edit.php:415
1952
+ #: dashboard/publisher/adrotate-groups-main.php:61
1953
  msgid "Default"
1954
  msgstr "По подразбиране"
1955
 
1956
  #: dashboard/publisher/adrotate-ads-edit.php:416
1957
+ #: dashboard/publisher/adrotate-groups-main.php:62
1958
  msgid "Dynamic"
1959
  msgstr "Динамично"
1960
 
1961
  #: dashboard/publisher/adrotate-ads-edit.php:416
1962
+ #: dashboard/publisher/adrotate-groups-main.php:62
1963
  msgid "second rotation"
1964
  msgstr "второ завъртане"
1965
 
1966
  #: dashboard/publisher/adrotate-ads-edit.php:417
1967
+ #: dashboard/publisher/adrotate-groups-main.php:63
1968
  msgid "Block"
1969
  msgstr "Блок"
1970
 
1971
  #: dashboard/publisher/adrotate-ads-edit.php:417
1972
+ #: dashboard/publisher/adrotate-groups-main.php:63
1973
  msgid "grid"
1974
  msgstr "решетка"
1975
 
1976
  #: dashboard/publisher/adrotate-ads-edit.php:418
1977
  #: dashboard/publisher/adrotate-groups-edit.php:192
1978
+ #: dashboard/publisher/adrotate-groups-main.php:64
1979
  msgid "Post Injection"
1980
  msgstr "Вмъкване в публикации"
1981
 
1982
  #: dashboard/publisher/adrotate-ads-edit.php:419
1983
+ #: dashboard/publisher/adrotate-groups-main.php:65
1984
  msgid "Geolocation"
1985
  msgstr "Геолокация"
1986
 
1987
  #: dashboard/publisher/adrotate-ads-edit.php:425
1988
  #: dashboard/publisher/adrotate-groups-edit.php:61
1989
+ #: dashboard/publisher/adrotate-groups-main.php:72
1990
  msgid "Mode"
1991
  msgstr "Режим"
1992
 
2018
 
2019
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2020
  #: dashboard/publisher/adrotate-ads-report.php:34
2021
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2022
+ #: dashboard/publisher/adrotate-groups-main.php:36
2023
  #: dashboard/publisher/adrotate-groups-report.php:40
2024
  msgid "Impressions"
2025
  msgstr "Импресии"
2026
 
2027
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2028
+ #: dashboard/publisher/adrotate-ads-main.php:46
2029
  #: dashboard/publisher/adrotate-ads-report.php:35
2030
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2031
+ #: dashboard/publisher/adrotate-groups-main.php:38
2032
  #: dashboard/publisher/adrotate-groups-report.php:41
2033
  msgid "Clicks"
2034
  msgstr "Кликове"
2035
 
2036
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2037
+ #: dashboard/publisher/adrotate-ads-main.php:48
2038
  #: dashboard/publisher/adrotate-ads-report.php:38
2039
  #: dashboard/publisher/adrotate-groups-report.php:44
2040
  msgid "CTR"
2042
 
2043
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2044
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2045
+ #: dashboard/publisher/adrotate-ads-main.php:87
2046
+ #: dashboard/publisher/adrotate-groups-main.php:72
2047
  msgid "Edit"
2048
  msgstr "Редакция"
2049
 
2054
 
2055
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2056
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2057
+ #: dashboard/publisher/adrotate-ads-main.php:87
2058
  msgid "Groups:"
2059
  msgstr "Групи:"
2060
 
2093
  msgstr "За 7 дни"
2094
 
2095
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2096
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2097
  msgid "Configuration errors."
2098
  msgstr "Грешки при конфигурирането."
2099
 
2106
  msgstr "Експорт в XML"
2107
 
2108
  #: dashboard/publisher/adrotate-ads-main.php:42
2109
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2110
  msgid "Weight"
2111
  msgstr "Тежест"
2112
 
2113
+ #: dashboard/publisher/adrotate-ads-main.php:44
2114
  msgid "Shown"
2115
  msgstr "Показана"
2116
 
2117
+ #: dashboard/publisher/adrotate-ads-main.php:45
2118
+ #: dashboard/publisher/adrotate-ads-main.php:47
2119
+ #: dashboard/publisher/adrotate-groups-main.php:37
2120
+ #: dashboard/publisher/adrotate-groups-main.php:39
2121
  msgid "Today"
2122
  msgstr "Днес"
2123
 
2124
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2125
  msgid "No ads created yet!"
2126
  msgstr "Все още няма създадени реклами!"
2127
 
2266
 
2267
  #: dashboard/publisher/adrotate-groups-edit.php:153
2268
  #: dashboard/publisher/adrotate-groups-edit.php:296
2269
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2270
  msgid "Save Group"
2271
  msgstr "Запис на групата"
2272
 
2331
  msgid "Include ads in categories?"
2332
  msgstr "Включване на реклами в категориите?"
2333
 
 
 
 
 
 
2334
  #: dashboard/publisher/adrotate-groups-edit.php:200
2335
  #: dashboard/publisher/adrotate-groups-edit.php:241
2336
  msgid "Before content"
2358
 
2359
  #: dashboard/publisher/adrotate-groups-edit.php:210
2360
  #: dashboard/publisher/adrotate-groups-edit.php:251
2361
+ msgid "the second paragraph"
2362
+ msgstr ""
2363
 
2364
  #: dashboard/publisher/adrotate-groups-edit.php:211
2365
  #: dashboard/publisher/adrotate-groups-edit.php:252
2366
+ msgid "the third paragraph"
2367
+ msgstr ""
2368
 
2369
  #: dashboard/publisher/adrotate-groups-edit.php:212
2370
  #: dashboard/publisher/adrotate-groups-edit.php:253
2371
+ msgid "the fourth paragraph"
2372
+ msgstr ""
2373
 
2374
  #: dashboard/publisher/adrotate-groups-edit.php:214
2375
  #: dashboard/publisher/adrotate-groups-edit.php:255
2450
  msgid "Select Ads"
2451
  msgstr "Избор на реклами"
2452
 
2453
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2454
  msgid "Visible until"
2455
  msgstr "Да се вижда до"
2456
 
2457
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2458
  msgid "No ads created!"
2459
  msgstr "Няма създадени реклами!"
2460
 
2474
  msgid "This action can not be undone!"
2475
  msgstr "Това действие е необратимо!"
2476
 
2477
+ #: dashboard/publisher/adrotate-groups-main.php:41
2478
  msgid "Code"
2479
  msgstr "Код"
2480
 
2481
+ #: dashboard/publisher/adrotate-groups-main.php:87
2482
  msgid "No groups created!"
2483
  msgstr "Няма създадени групи!"
2484
 
2486
  msgid "Statistics for group"
2487
  msgstr "Статистика за групи"
2488
 
2489
+ #~ msgid "WordPress.org Forum"
2490
+ #~ msgstr "WordPress.org форум"
2491
+
2492
+ #~ msgid "Enable stats"
2493
+ #~ msgstr "Включване на статистиката"
2494
+
2495
+ #~ msgid "Track clicks and impressions."
2496
+ #~ msgstr "Проследяване на кликове и импресии."
2497
+
2498
+ #~ msgid ""
2499
+ #~ "Disabling this also disables click and impression limits on schedules."
2500
+ #~ msgstr ""
2501
+ #~ "Ако деактивирате тази опция, ще бъдат деактивирани и лимитите за кликове "
2502
+ #~ "и импресии на графици."
2503
+
2504
+ #~ msgid ""
2505
+ #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
2506
+ #~ msgstr ""
2507
+ #~ "Актвирайте AdRotate на неограничен брой Wordpress инсталации и/или мрежи."
2508
+
2509
+ #~ msgid ""
2510
+ #~ "There is a problem saving the image specification. Please reset your "
2511
+ #~ "image and re-save the ad!"
2512
+ #~ msgstr ""
2513
+ #~ "Възникна проблем при записването на характеристиките на снимката. Моля, "
2514
+ #~ "нулирайте снимката и запишете рекламата наново!"
2515
+
2516
+ #~ msgid "Clicktracking:"
2517
+ #~ msgstr "Проследяване на кликовете:"
2518
+
2519
+ #~ msgid "Enable click tracking for this advert."
2520
+ #~ msgstr "Активиране на проследяването на кликове за тази реклама."
2521
+
2522
+ #~ msgid "the 2nd paragraph"
2523
+ #~ msgstr "2-рия параграф"
2524
+
2525
+ #~ msgid "the 3rd paragraph"
2526
+ #~ msgstr "3-тия параграф"
2527
+
2528
+ #~ msgid "the 4th paragraph"
2529
+ #~ msgstr "4-тия параграф"
2530
+
2531
  #~ msgid "Usage:"
2532
  #~ msgstr "Употреба:"
2533
 
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-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,19 +18,19 @@ msgstr ""
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,7 +39,7 @@ msgstr ""
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,11 +47,11 @@ msgstr ""
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,7 +59,7 @@ msgstr ""
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,7 +67,7 @@ msgstr ""
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,20 +75,20 @@ msgstr ""
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,159 +97,155 @@ msgstr ""
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,28 +253,28 @@ msgstr ""
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 "Μάθετε περισσότερα σχετικά"
@@ -417,7 +413,7 @@ msgstr "Διαχείριση Διαφημίσεων"
417
  msgid "Manage Groups"
418
  msgstr "Διαχείριση Ομάδων"
419
 
420
- #: adrotate.php:111 adrotate.php:440
421
  #, fuzzy
422
  msgid "Manage Schedules"
423
  msgstr "Διαχείριση"
@@ -485,359 +481,399 @@ msgstr ""
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,16 +881,16 @@ msgstr ""
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,7 +899,7 @@ msgstr ""
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,11 +907,11 @@ msgstr ""
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,7 +919,7 @@ msgstr ""
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,23 +927,23 @@ msgstr ""
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,11 +951,11 @@ msgstr ""
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,11 +963,11 @@ msgstr ""
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,34 +975,34 @@ msgid ""
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,7 +1011,7 @@ msgstr ""
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,16 +1020,16 @@ msgstr ""
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,21 +1038,21 @@ msgstr ""
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,19 +1068,19 @@ msgstr ""
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,16 +1088,16 @@ msgstr ""
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,11 +1106,11 @@ msgstr ""
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,19 +1118,19 @@ msgstr ""
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,7 +1140,7 @@ msgstr ""
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,7 +1148,7 @@ msgstr ""
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,27 +1156,27 @@ msgstr ""
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,64 +1193,64 @@ msgstr ""
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,46 +1264,46 @@ msgstr ""
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
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
@@ -1317,7 +1353,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1317
  msgstr ""
1318
 
1319
  #: dashboard/adrotate-info.php:139
1320
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1321
  msgstr ""
1322
 
1323
  #: dashboard/adrotate-info.php:148
@@ -1383,7 +1419,7 @@ msgstr ""
1383
  msgid "Developer License"
1384
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1385
 
1386
- #: dashboard/adrotate-info.php:182
1387
  msgid "Unlimited WordPress installations and/or networks."
1388
  msgstr ""
1389
 
@@ -1487,10 +1523,6 @@ msgid ""
1487
  "miss an expiration date again."
1488
  msgstr ""
1489
 
1490
- #: dashboard/adrotate-pro.php:83
1491
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1492
- msgstr ""
1493
-
1494
  #: dashboard/publisher/adrotate-ads-edit.php:46
1495
  msgid "The AdCode cannot be empty!"
1496
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
@@ -1505,11 +1537,9 @@ msgstr "Χρησιμοποιήσατε το %image% στον AdCode, αλλά δ
1505
 
1506
  #: dashboard/publisher/adrotate-ads-edit.php:55
1507
  msgid ""
1508
- "There is a problem saving the image specification. Please reset your image "
1509
- "and re-save the ad!"
1510
  msgstr ""
1511
- "Υπάρχει ένα πρόβλημα στην αποθήκευση των πληροφοριών εικόνας. Παρακαλώ "
1512
- "επαναφέρετε την εικόνα και σώστε πάλι τη διαφήμιση!"
1513
 
1514
  #: dashboard/publisher/adrotate-ads-edit.php:58
1515
  msgid ""
@@ -1518,9 +1548,7 @@ msgid ""
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
@@ -1645,17 +1673,17 @@ msgstr ""
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
 
@@ -1672,9 +1700,9 @@ 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."
@@ -1692,7 +1720,7 @@ msgstr "Αποθήκευση Διαφήμισης"
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
 
@@ -1948,28 +1976,28 @@ 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"
1975
  msgstr ""
@@ -1978,18 +2006,18 @@ msgstr ""
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 "Λειτουργία"
1995
 
@@ -2026,23 +2054,23 @@ 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
2047
  #: dashboard/publisher/adrotate-groups-report.php:44
2048
  msgid "CTR"
@@ -2050,8 +2078,8 @@ msgstr "CTR"
2050
 
2051
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2052
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2053
- #: dashboard/publisher/adrotate-ads-main.php:85
2054
- #: dashboard/publisher/adrotate-groups-main.php:69
2055
  msgid "Edit"
2056
  msgstr "Επεξεργασία"
2057
 
@@ -2062,7 +2090,7 @@ msgstr "Στατιστικά"
2062
 
2063
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2064
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2065
- #: dashboard/publisher/adrotate-ads-main.php:85
2066
  #, fuzzy
2067
  msgid "Groups:"
2068
  msgstr "Ομάδες"
@@ -2102,7 +2130,7 @@ msgid "For 7 days"
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,27 +2144,22 @@ msgid "Export to XML"
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
 
2123
- #: dashboard/publisher/adrotate-ads-main.php:43
2124
  msgid "Shown"
2125
  msgstr "Εμφανίζονται"
2126
 
2127
- #: dashboard/publisher/adrotate-ads-main.php:44
2128
- #: dashboard/publisher/adrotate-ads-main.php:46
2129
- #: dashboard/publisher/adrotate-groups-main.php:36
2130
- #: dashboard/publisher/adrotate-groups-main.php:38
2131
  msgid "Today"
2132
  msgstr "Σήμερα"
2133
 
2134
- #: dashboard/publisher/adrotate-ads-main.php:85
2135
- #: dashboard/publisher/adrotate-groups-main.php:69
2136
- msgid "Report"
2137
- msgstr "Αναφορά"
2138
-
2139
- #: dashboard/publisher/adrotate-ads-main.php:103
2140
  msgid "No ads created yet!"
2141
  msgstr "Δεν έχουν δημιουργηθεί διαφημίσεις ακόμα!"
2142
 
@@ -2284,7 +2307,7 @@ 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 "Αποθήκευση"
@@ -2356,12 +2379,6 @@ msgstr ""
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
@@ -2393,17 +2410,17 @@ 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
@@ -2487,11 +2504,11 @@ msgstr "Μετά τη διαφήμιση"
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
 
@@ -2511,11 +2528,11 @@ msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2511
  msgid "This action can not be undone!"
2512
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
2513
 
2514
- #: dashboard/publisher/adrotate-groups-main.php:39
2515
  msgid "Code"
2516
  msgstr "Κώδικας"
2517
 
2518
- #: dashboard/publisher/adrotate-groups-main.php:82
2519
  msgid "No groups created!"
2520
  msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2521
 
@@ -2523,6 +2540,33 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2523
  msgid "Statistics for group"
2524
  msgstr "Στατιστικά για την ομάδα"
2525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2526
  #, fuzzy
2527
  #~ msgid "Usage:"
2528
  #~ msgstr "Χρήση"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:803
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-output.php:742
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
+ #: adrotate-output.php:743
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:744
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:745
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
+ #: adrotate-output.php:763
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:765
63
  msgid ""
64
  "Error, Ad is not available at this time due to schedule/geolocation "
65
  "restrictions!"
67
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
68
  "χρονικών περιορισμών."
69
 
70
+ #: adrotate-output.php:772 adrotate-output.php:774
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:780
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
+ #: adrotate-output.php:786
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
+ #: adrotate-output.php:791
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
+ #: adrotate-output.php:797
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:797
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
+ #: adrotate-output.php:803
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
+ #: adrotate-output.php:828
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
+ #: adrotate-output.php:828
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
+ #: adrotate-output.php:830
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
+ #: adrotate-output.php:830
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
+ #: adrotate-output.php:832
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
+ #: adrotate-output.php:832
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
+ #: adrotate-output.php:834
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
+ #: adrotate-output.php:834
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
+ #: adrotate-output.php:834
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
+ #: adrotate-output.php:834
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
+ #: adrotate-output.php:846
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
+ #: adrotate-output.php:847
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:847
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:847
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
+ #: adrotate-output.php:891
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:891
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
+ #: adrotate-output.php:891 adrotate-output.php:967
179
  #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:891
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:927
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
+ #: adrotate-output.php:928
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:930
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:931
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
+ #: adrotate-output.php:932
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
+ #: adrotate-output.php:933
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
+ #: adrotate-output.php:959
 
 
 
 
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
220
 
221
+ #: adrotate-output.php:960
222
  msgid "Brought to you by"
223
  msgstr "Σας προσφέρεται από"
224
 
225
+ #: adrotate-output.php:967
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:967
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:967
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:967
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Αξιολογήστε και σχολιάστε"
243
 
244
+ #: adrotate-output.php:967
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:970
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
253
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
254
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
255
 
256
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Επισκεφθείτε το"
259
 
260
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "ιστοσελίδα"
263
 
264
+ #: adrotate-output.php:1000
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Διαθέσιμο στο AdRotate Pro"
267
 
268
+ #: adrotate-output.php:1000
269
  #, fuzzy
270
  msgid "More information..."
271
  msgstr "Περισσότερες πληροφορίες"
272
 
273
+ #: adrotate-output.php:1001
274
  msgid "This feature is available in AdRotate Pro"
275
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
276
 
277
+ #: adrotate-output.php:1001
278
  #, fuzzy
279
  msgid "Learn more"
280
  msgstr "Μάθετε περισσότερα σχετικά"
413
  msgid "Manage Groups"
414
  msgstr "Διαχείριση Ομάδων"
415
 
416
+ #: adrotate.php:111 adrotate.php:441
417
  #, fuzzy
418
  msgid "Manage Schedules"
419
  msgstr "Διαχείριση"
481
  msgid "Export created"
482
  msgstr "Επιλογές εξαγωγής"
483
 
484
+ #: adrotate.php:221
485
  msgid "Action prohibited"
486
  msgstr "Η ενέργεια απαγορεύεται"
487
 
488
+ #: adrotate.php:223 adrotate.php:371
489
  msgid "No data found in selected time period"
490
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
491
 
492
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
493
  msgid "Manage"
494
  msgstr "Διαχείριση"
495
 
496
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
497
  msgid "Add New"
498
  msgstr "Προσθήκη Νέας"
499
 
500
+ #: adrotate.php:360
501
  msgid "Group Management"
502
  msgstr "Διαχείριση Ομάδας"
503
 
504
+ #: adrotate.php:363
505
  msgid "Group created"
506
  msgstr "Η Ομάδα δημιουργήθηκε"
507
 
508
+ #: adrotate.php:365
509
  msgid "Group updated"
510
  msgstr "Η Ομάδα ανανεώθηκε"
511
 
512
+ #: adrotate.php:367
513
  msgid "Group deleted"
514
  msgstr "Η Ομάδα διαγράφηκε"
515
 
516
+ #: adrotate.php:369
517
  msgid "Group including it's Ads deleted"
518
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
519
 
520
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
521
+ #: dashboard/publisher/adrotate-groups-main.php:72
522
+ msgid "Report"
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:177
539
+ #: dashboard/publisher/adrotate-ads-main.php:114
540
  #: dashboard/publisher/adrotate-groups-edit.php:75
541
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-main-disabled.php:35
561
  #: dashboard/publisher/adrotate-ads-main-error.php:39
562
  #: dashboard/publisher/adrotate-ads-main.php:39
563
  #: dashboard/publisher/adrotate-groups-main.php:32
564
  msgid "ID"
565
  msgstr "Κωδ."
566
 
567
+ #: adrotate.php:460
568
  #, fuzzy
569
  msgid "Start"
570
  msgstr "Ώρα έναρξης (ωω: λλ):"
571
 
572
+ #: adrotate.php:460
573
  #, fuzzy
574
  msgid "End"
575
  msgstr "Ώρα λήξης (ωω: λλ):"
576
 
577
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
578
  #: dashboard/publisher/adrotate-groups-main.php:34
579
  msgid "Ads"
580
  msgstr "Διαφημίσεις"
581
 
582
+ #: adrotate.php:463
583
  msgid "Max Clicks"
584
  msgstr "Max Clicks"
585
 
586
+ #: adrotate.php:464
587
  msgid "Max Impressions"
588
  msgstr "Max Impressions"
589
 
590
+ #: adrotate.php:494
591
  #, fuzzy
592
  msgid "No schedules created yet!"
593
  msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
594
 
595
+ #: adrotate.php:499
596
  #, fuzzy
597
  msgid "Easily manage your schedules from here with AdRotate Pro."
598
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
599
 
600
+ #: adrotate.php:499 adrotate.php:562
601
  #, fuzzy
602
  msgid "Upgrade today!"
603
  msgstr "Σήμερα"
604
 
605
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
606
+ #: dashboard/publisher/adrotate-groups-edit.php:383
607
  msgid "Expires soon."
608
  msgstr "Λήγει σύντομα."
609
 
610
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
611
+ #: dashboard/publisher/adrotate-groups-edit.php:384
612
  msgid "Has expired."
613
  msgstr "Έχει λήξει."
614
 
615
+ #: adrotate.php:527
616
  #, fuzzy
617
  msgid "Media Management available in AdRotate Pro"
618
  msgstr "Διαθέσιμο στο AdRotate Pro"
619
 
620
+ #: adrotate.php:529
621
  msgid ""
622
  "Upload images to the AdRotate Pro banners folder from here. This is "
623
  "especially useful if you use responsive adverts with multiple images."
624
  msgstr ""
625
 
626
+ #: adrotate.php:529
627
  #, fuzzy
628
  msgid "Media uploading and management is available in AdRotate Pro."
629
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
630
 
631
+ #: adrotate.php:531
632
  #, fuzzy
633
  msgid "Upload new banner image"
634
  msgstr "Εικόνα Banner:"
635
 
636
+ #: adrotate.php:532
637
  #, fuzzy
638
  msgid "Accepted files are:"
639
  msgstr "Χρησιμοποιήστε %image% στον κώδικα. Αποδεκτά αρχεία είναι:"
640
 
641
+ #: adrotate.php:532
642
  msgid "Maximum size is 512Kb."
643
  msgstr ""
644
 
645
+ #: adrotate.php:532
646
  msgid "Important:"
647
  msgstr ""
648
 
649
+ #: adrotate.php:532
650
  msgid ""
651
  "Make sure your file has no spaces or special characters in the name. Replace "
652
  "spaces with a - or _."
653
  msgstr ""
654
 
655
+ #: adrotate.php:534
656
  msgid ""
657
  "For responsive adverts make sure the filename is in the following format; "
658
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
659
  msgstr ""
660
 
661
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
662
  msgid ""
663
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
664
  "filename instead of \".full\" for the various viewports."
665
  msgstr ""
666
 
667
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
668
  #: dashboard/publisher/adrotate-groups-edit.php:308
669
  #: dashboard/publisher/adrotate-groups-edit.php:316
670
  msgid "Example:"
671
  msgstr "Παράδειγμα:"
672
 
673
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
674
  msgid ""
675
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
676
  "for different viewports."
677
  msgstr ""
678
 
679
+ #: adrotate.php:540
680
  #, fuzzy
681
  msgid "Upload image"
682
  msgstr "Εικόνα Banner:"
683
 
684
+ #: adrotate.php:543
685
  msgid "Available banner images in"
686
  msgstr ""
687
 
688
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
689
  msgid "Name"
690
  msgstr "Όνομα"
691
 
692
+ #: adrotate.php:549
693
  #, fuzzy
694
  msgid "Actions"
695
  msgstr "Μαζικές Ενέργειες"
696
 
697
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
698
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
699
  #: dashboard/publisher/adrotate-ads-main-error.php:21
700
  #: dashboard/publisher/adrotate-ads-main.php:22
701
  msgid "Delete"
702
  msgstr "Διαγραφή"
703
 
704
+ #: adrotate.php:562
705
  msgid ""
706
  "Make sure the banner images are not in use by adverts when you delete them!"
707
  msgstr ""
708
 
709
+ #: adrotate.php:562
710
  #, fuzzy
711
  msgid "Manage your banner folder from here with AdRotate Pro."
712
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
713
 
714
+ #: adrotate.php:606
715
  msgid "AdRotate Settings"
716
  msgstr "Ρυθμίσεις AdRotate"
717
 
718
+ #: adrotate.php:609
719
  msgid "Settings saved"
720
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
721
 
722
+ #: adrotate.php:611
723
  msgid "Database optimized"
724
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
725
 
726
+ #: adrotate.php:613
727
  msgid "Database repaired"
728
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
729
 
730
+ #: adrotate.php:615
731
  msgid "Ads evaluated and statuses have been corrected where required"
732
  msgstr ""
733
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
734
  "χρειάστηκε"
735
 
736
+ #: adrotate.php:617
737
  msgid "Empty database records removed"
738
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
739
 
740
+ #: adrotate.php:619
741
  msgid "Database can only be optimized or cleaned once every hour"
742
  msgstr ""
743
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
744
  "ώρα"
745
 
746
+ #: adrotate.php:627
747
  msgid "Access Rights"
748
  msgstr "Δικαιώματα Πρόσβασης"
749
 
750
+ #: adrotate.php:628
751
  msgid "Who has access to what?"
752
  msgstr ""
753
 
754
+ #: adrotate.php:631
755
  msgid "Manage/Add/Edit adverts"
756
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
757
 
758
+ #: adrotate.php:635
759
  msgid "Role to see and add/edit ads."
760
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
761
 
762
+ #: adrotate.php:639
763
  msgid "Delete/Reset adverts"
764
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
765
 
766
+ #: adrotate.php:643
767
  msgid "Role to delete ads and reset stats."
768
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
769
 
770
+ #: adrotate.php:647
771
  msgid "Manage/Add/Edit groups"
772
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
773
 
774
+ #: adrotate.php:651
775
  msgid "Role to see and add/edit groups."
776
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
777
 
778
+ #: adrotate.php:655
779
  msgid "Delete groups"
780
  msgstr "Διαγραφή ομάδων"
781
 
782
+ #: adrotate.php:659
783
  msgid "Role to delete groups."
784
  msgstr "Ρόλος για τη διαγραφή ομάδων."
785
 
786
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
787
+ #: adrotate.php:890
788
  msgid "Update Options"
789
  msgstr "Επιλογές Ανανέωσης"
790
 
791
+ #: adrotate.php:691
792
  msgid "Statistics"
793
  msgstr "Στατιστικά"
794
 
795
+ #: adrotate.php:694
796
+ msgid "How to track stats"
797
+ msgstr ""
798
+
799
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
800
+ #: dashboard/publisher/adrotate-groups-edit.php:240
801
  #, fuzzy
802
+ msgid "Disabled"
803
+ msgstr "Απενεργοποιημένες διαφημίσεις"
804
+
805
+ #: adrotate.php:703
806
+ msgid "No impressions and clicks are recorded for any of your adverts."
807
+ msgstr ""
808
 
809
+ #: adrotate.php:704
810
+ msgid "Tracks impressions and clicks internally."
811
+ msgstr ""
812
 
813
+ #: adrotate.php:705
814
+ msgid ""
815
+ "Click and Impression recording, Click and impression limits, impression "
816
+ "spread for schedules, local stats display."
817
+ msgstr ""
818
+
819
+ #: adrotate.php:706
820
+ msgid ""
821
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
822
+ "attributes."
823
+ msgstr ""
824
+
825
+ #: adrotate.php:706 adrotate.php:708
826
+ msgid "Available in AdRotate Pro!"
827
+ msgstr ""
828
+
829
+ #: adrotate.php:707
830
+ msgid ""
831
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
832
+ "Contents."
833
+ msgstr ""
834
+
835
+ #: adrotate.php:708
836
+ msgid ""
837
+ "Requires Google Analytics tracker installed in your sites footer! uses "
838
+ "onClick() in adverts."
839
  msgstr ""
 
 
840
 
841
+ #: adrotate.php:709
842
+ msgid ""
843
+ "Click and Impression recording via Cookie, stats are displayed in Events."
844
+ msgstr ""
845
+
846
+ #: adrotate.php:714
847
  msgid "Impressions timer"
848
  msgstr "Χρονομετρητής εμφανίσεων"
849
 
850
+ #: adrotate.php:716 adrotate.php:723
851
  msgid "Seconds."
852
  msgstr "Δευτερόλεπτα."
853
 
854
+ #: adrotate.php:717
855
  #, fuzzy
856
  msgid "Default: 60."
857
  msgstr "Προεπιλογή"
858
 
859
+ #: adrotate.php:717
860
  #, fuzzy
861
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
862
  msgstr ""
863
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
864
  "ώρα)."
865
 
866
+ #: adrotate.php:721
867
  #, fuzzy
868
  msgid "Clicks timer"
869
  msgstr "Χρονομετρητής εμφανίσεων"
870
 
871
+ #: adrotate.php:724
872
  #, fuzzy
873
  msgid "Default: 86400."
874
  msgstr "Προεπιλογή"
875
 
876
+ #: adrotate.php:724
877
  #, fuzzy
878
  msgid ""
879
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
881
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
882
  "ώρα)."
883
 
884
+ #: adrotate.php:729
885
  #, fuzzy
886
  msgid "Bot filter"
887
  msgstr "Φίλτρο προγράμματος περιήγησης"
888
 
889
+ #: adrotate.php:732
890
  msgid "User-Agent Filter"
891
  msgstr "Φίλτρο προγράμματος περιήγησης"
892
 
893
+ #: adrotate.php:735
894
  msgid ""
895
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
896
  "prevent impressions and clicks counted on them."
899
  "μηχανές περιήγησης για να αποτρέπει την καταγραφή εμφανίσεων και κλικ από "
900
  "αυτές."
901
 
902
+ #: adrotate.php:736
903
  msgid ""
904
  "Keep in mind that this might give false positives. The word 'google' also "
905
  "matches 'googlebot', but not vice-versa. So be careful!"
907
  "Να θυμάστε ότι αυτό μπορεί να δώσει λανθασμένα αποτελέσματα. Η λέξη 'google' "
908
  "περιέχεται στην λέξη 'googlebot', αλλά όχι το αντίθετο. Προσοχή!"
909
 
910
+ #: adrotate.php:736
911
  msgid "Keep your list up-to-date"
912
  msgstr "Διατηρήστε τον κατάλογο ενημερωμένο"
913
 
914
+ #: adrotate.php:737
915
  msgid ""
916
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
917
  "other characters are stripped out."
919
  "Χρησιμοποιήστε λέξεις μόνο με αλφαριθμητικούς χαρακτήρες. Τα [ - _ ] είναι "
920
  "επίσης επιτρεπτά. Όλοι οι άλλοι χαρακτήρες αφαιρούνται."
921
 
922
+ #: adrotate.php:738
923
  msgid ""
924
  "Additionally to the list specified here, empty User-Agents are blocked as "
925
  "well."
927
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
928
  "απορίπτονται επίσης."
929
 
930
+ #: adrotate.php:738
931
  msgid "Learn more about"
932
  msgstr "Μάθετε περισσότερα σχετικά"
933
 
934
+ #: adrotate.php:738
935
  msgid "user-agents"
936
  msgstr "πρόγραμμα περιήγησης"
937
 
938
+ #: adrotate.php:747
939
  msgid "Miscellaneous"
940
  msgstr "Διάφορα"
941
 
942
+ #: adrotate.php:750
943
  msgid "Widget alignment"
944
  msgstr "Ευθυγράμμιση μονάδας"
945
 
946
+ #: adrotate.php:751
947
  msgid ""
948
  "Check this box if your widgets do not align in your themes sidebar. (Does "
949
  "not always help!)"
951
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
952
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
953
 
954
+ #: adrotate.php:754
955
  msgid "Widget padding"
956
  msgstr "Κενά περιθώρια μονάδων"
957
 
958
+ #: adrotate.php:755
959
  msgid ""
960
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
961
  "not always work!)"
963
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
964
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
965
 
966
+ #: adrotate.php:760 adrotate.php:771
967
  msgid "NOTICE:"
968
  msgstr ""
969
 
970
+ #: adrotate.php:761
971
  msgid ""
972
  "You have enabled W3 Total Caching support but not defined the security hash. "
973
  "You need to add the following line to your wp-config.php near the bottom or "
975
  "needs to be enabled in W3 Total Cache as well too."
976
  msgstr ""
977
 
978
+ #: adrotate.php:765
979
  msgid "W3 Total Caching"
980
  msgstr "W3 Total Caching"
981
 
982
+ #: adrotate.php:766
983
  msgid "Check this box if you use W3 Total Caching on your site."
984
  msgstr ""
985
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
986
  "σας."
987
 
988
+ #: adrotate.php:772
989
  msgid ""
990
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
991
  "this function will not work. WP Super Cache has discontinued support for "
992
  "dynamic content."
993
  msgstr ""
994
 
995
+ #: adrotate.php:776
996
  msgid "WP Super Cache"
997
  msgstr "WP Super Cache"
998
 
999
+ #: adrotate.php:777
1000
  msgid "Check this box if you use WP Super Cache on your site."
1001
  msgstr ""
1002
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην ιστοσελίδα "
1003
  "σας."
1004
 
1005
+ #: adrotate.php:782
1006
  msgid ""
1007
  "It may take a while for the ad to start rotating. The caching plugin needs "
1008
  "to refresh the cache. This can take up to a week if not done manually."
1011
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
1012
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
1013
 
1014
+ #: adrotate.php:782
1015
  msgid ""
1016
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1017
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1020
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
1021
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
1022
 
1023
+ #: adrotate.php:786
1024
  msgid "Javascript"
1025
  msgstr ""
1026
 
1027
+ #: adrotate.php:789
1028
  #, fuzzy
1029
  msgid "Load jQuery"
1030
  msgstr "Να περιληφθεί η jQuery"
1031
 
1032
+ #: adrotate.php:790
1033
  #, fuzzy
1034
  msgid ""
1035
  "jQuery is required for all Javascript features below. Enable this if your "
1038
  "Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
1039
  "επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
1040
 
1041
+ #: adrotate.php:793
1042
  msgid "Load in footer?"
1043
  msgstr ""
1044
 
1045
+ #: adrotate.php:794
1046
  msgid ""
1047
  "Enable if you want to load the above libraries in the footer. Your theme "
1048
  "needs to call wp_footer() for this to work."
1049
  msgstr ""
1050
 
1051
+ #: adrotate.php:802
1052
  msgid "Maintenance"
1053
  msgstr "Συντήρηση"
1054
 
1055
+ #: adrotate.php:803
1056
  #, fuzzy
1057
  msgid ""
1058
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1068
  "χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
1069
  "ανταποκρίνεται καλά."
1070
 
1071
+ #: adrotate.php:818 adrotate.php:820
1072
  msgid "Optimize Database"
1073
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
1074
 
1075
+ #: adrotate.php:820
1076
  msgid "You are about to optimize the AdRotate database."
1077
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
1078
 
1079
+ #: adrotate.php:820
1080
  msgid "Did you make a backup of your database?"
1081
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
1082
 
1083
+ #: adrotate.php:820
1084
  msgid ""
1085
  "This may take a moment and may cause your website to respond slow "
1086
  "temporarily!"
1088
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
1089
  "σας να είναι προσωρινά αργή!"
1090
 
1091
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1092
  #: dashboard/publisher/adrotate-groups-main.php:24
1093
  msgid "OK to continue, CANCEL to stop."
1094
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1095
 
1096
+ #: adrotate.php:821
1097
  msgid "Cleans up overhead data in the AdRotate tables."
1098
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
1099
 
1100
+ #: adrotate.php:822
1101
  msgid ""
1102
  "Overhead data is accumulated garbage resulting from many changes you've "
1103
  "made. This can vary from nothing to hundreds of KiB of data."
1106
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
1107
  "μέχρι εκατοντάδες kilobytes δεδομένων."
1108
 
1109
+ #: adrotate.php:826 adrotate.php:828
1110
  msgid "Clean-up Database"
1111
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
1112
 
1113
+ #: adrotate.php:828
1114
  msgid ""
1115
  "You are about to clean up your database. This may delete expired schedules "
1116
  "and older statistics."
1118
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
1119
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
1120
 
1121
+ #: adrotate.php:828
1122
  msgid "Are you sure you want to continue?"
1123
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
1124
 
1125
+ #: adrotate.php:828 adrotate.php:836
1126
  msgid "This might take a while and may slow down your site during this action!"
1127
  msgstr ""
1128
 
1129
+ #: adrotate.php:829
1130
  msgid "Delete stats older than 356 days (Optional)."
1131
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
1132
 
1133
+ #: adrotate.php:830
1134
  #, fuzzy
1135
  msgid ""
1136
  "AdRotate creates empty records when you start making ads or groups. In rare "
1140
  "διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
1141
  "λανθασμένες."
1142
 
1143
+ #: adrotate.php:830
1144
  msgid ""
1145
  "If you made an ad or group that does not save when you make it use this "
1146
  "button to delete those empty records."
1148
  "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
1149
  "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
1150
 
1151
+ #: adrotate.php:830
1152
  msgid ""
1153
  "Additionally you can clean up old statistics. This will improve the speed of "
1154
  "your site."
1156
  "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
1157
  "ταχύτητα της ιστοσελίδας σας."
1158
 
1159
+ #: adrotate.php:834
1160
  #, fuzzy
1161
  msgid "Re-evaluate Ads"
1162
  msgstr "Διαφημίσεις"
1163
 
1164
+ #: adrotate.php:836
1165
  msgid "Re-evaluate all ads"
1166
  msgstr ""
1167
 
1168
+ #: adrotate.php:836
1169
  #, fuzzy
1170
  msgid "You are about to check all ads for errors."
1171
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1172
 
1173
+ #: adrotate.php:837
1174
  msgid ""
1175
  "This will apply all evaluation rules to all ads to see if any error slipped "
1176
  "in. Normally you should not need this feature."
1177
  msgstr ""
1178
 
1179
+ #: adrotate.php:841
1180
  msgid ""
1181
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1182
  "becomes unusable in any way or by any means in whichever way I will not take "
1193
  "ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
1194
  "καμμία περίπτωση. "
1195
 
1196
+ #: adrotate.php:849
1197
  msgid "Troubleshooting"
1198
  msgstr "Αντιμετώπιση προβλημάτων"
1199
 
1200
+ #: adrotate.php:852
1201
  msgid "Current version:"
1202
  msgstr "Τρέχουσα έκδοση:"
1203
 
1204
+ #: adrotate.php:853
1205
  msgid "Previous version:"
1206
  msgstr "Προηγούμενη έκδοση:"
1207
 
1208
+ #: adrotate.php:856
1209
  msgid "Current database version:"
1210
  msgstr "Τρέχουσα έκδοση βάσης:"
1211
 
1212
+ #: adrotate.php:857
1213
  msgid "Previous database version:"
1214
  msgstr "Προηγούμενη έκδοση βάσης:"
1215
 
1216
+ #: adrotate.php:860
1217
  #, fuzzy
1218
  msgid "Ad evaluation next run:"
1219
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1220
 
1221
+ #: adrotate.php:861 adrotate.php:865
1222
  msgid "Not scheduled!"
1223
  msgstr "Δεν έχει προγραμματιστεί!"
1224
 
1225
+ #: adrotate.php:864
1226
  msgid "Clean Trackerdata next run:"
1227
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1228
 
1229
+ #: adrotate.php:868
1230
  msgid "Current status of adverts"
1231
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
1232
 
1233
+ #: adrotate.php:869
1234
  msgid "Normal"
1235
  msgstr "Φυσιολογική"
1236
 
1237
+ #: adrotate.php:869
1238
  msgid "Error"
1239
  msgstr "Σφάλμα"
1240
 
1241
+ #: adrotate.php:869
1242
  msgid "Expired"
1243
  msgstr "Έληξε"
1244
 
1245
+ #: adrotate.php:869
1246
  msgid "Expires Soon"
1247
  msgstr "Λήγει Σύντομα"
1248
 
1249
+ #: adrotate.php:869
1250
  msgid "Unknown Status"
1251
  msgstr "Άγνωστη Κατάσταση"
1252
 
1253
+ #: adrotate.php:872
1254
  msgid ""
1255
  "NOTE: The below options are not meant for normal use and are only there for "
1256
  "developers to review saved settings or how ads are selected. These can be "
1264
  "σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
1265
  "ΕΠΙΛΕΓΜΕΝΕΣ!! "
1266
 
1267
+ #: adrotate.php:876
1268
  msgid "Developer Debug"
1269
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1270
 
1271
+ #: adrotate.php:878
1272
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1273
  msgstr ""
1274
  "Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
1275
  "έξοδο στην ιστοσελίδα δίνουν."
1276
 
1277
+ #: adrotate.php:879
1278
  msgid "Show all settings, dashboard routines and related values."
1279
  msgstr ""
1280
  "Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
1281
  "τιμών."
1282
 
1283
+ #: adrotate.php:880
1284
  msgid "Show array of all userroles and capabilities."
1285
  msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
1286
 
1287
+ #: adrotate.php:881
1288
  msgid "Review saved advertisers! Visible to advertisers."
1289
  msgstr ""
1290
  "Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
1291
 
1292
+ #: adrotate.php:882
1293
  #, fuzzy
1294
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1295
  msgstr ""
1296
  "Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
1297
  "Ορατό μόνο σε εκδότες."
1298
 
1299
+ #: adrotate.php:883
1300
  #, fuzzy
1301
  msgid ""
1302
  "Disable timers for clicks and impressions and enable a alert window for "
1303
  "clicktracking."
1304
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
1305
 
1306
+ #: adrotate.php:884
1307
  msgid "Temporarily disable encryption on the redirect url."
1308
  msgstr ""
1309
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
1353
  msgstr ""
1354
 
1355
  #: dashboard/adrotate-info.php:139
1356
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1357
  msgstr ""
1358
 
1359
  #: dashboard/adrotate-info.php:148
1419
  msgid "Developer License"
1420
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1421
 
1422
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1423
  msgid "Unlimited WordPress installations and/or networks."
1424
  msgstr ""
1425
 
1523
  "miss an expiration date again."
1524
  msgstr ""
1525
 
 
 
 
 
1526
  #: dashboard/publisher/adrotate-ads-edit.php:46
1527
  msgid "The AdCode cannot be empty!"
1528
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
1537
 
1538
  #: dashboard/publisher/adrotate-ads-edit.php:55
1539
  msgid ""
1540
+ "There is a problem saving the image. Please reset your image and re-save the "
1541
+ "ad!"
1542
  msgstr ""
 
 
1543
 
1544
  #: dashboard/publisher/adrotate-ads-edit.php:58
1545
  msgid ""
1548
  msgstr ""
1549
 
1550
  #: dashboard/publisher/adrotate-ads-edit.php:61
1551
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1552
  msgstr ""
1553
 
1554
  #: dashboard/publisher/adrotate-ads-edit.php:64
1673
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1674
 
1675
  #: dashboard/publisher/adrotate-ads-edit.php:156
1676
+ msgid "Statistics:"
1677
+ msgstr ""
1678
 
1679
  #: dashboard/publisher/adrotate-ads-edit.php:158
1680
+ msgid "Enable click and impression tracking for this advert."
1681
+ msgstr ""
1682
 
1683
  #: dashboard/publisher/adrotate-ads-edit.php:159
1684
  msgid ""
1685
  "Note: Clicktracking does not work for Javascript adverts such as those "
1686
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1687
  "supported."
1688
  msgstr ""
1689
 
1700
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1701
 
1702
  #: dashboard/publisher/adrotate-ads-edit.php:177
1703
+ #: dashboard/publisher/adrotate-ads-main.php:114
1704
  #: dashboard/publisher/adrotate-groups-edit.php:75
1705
+ #: dashboard/publisher/adrotate-groups-main.php:92
1706
  #, fuzzy
1707
  msgid "Get more features with AdRotate Pro."
1708
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1720
  #: dashboard/publisher/adrotate-ads-edit.php:437
1721
  #: dashboard/publisher/adrotate-groups-edit.php:154
1722
  #: dashboard/publisher/adrotate-groups-edit.php:297
1723
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1724
  msgid "Cancel"
1725
  msgstr "Ακύρωση"
1726
 
1976
  msgstr "Διαφημίσεις στην ομάδα"
1977
 
1978
  #: dashboard/publisher/adrotate-ads-edit.php:415
1979
+ #: dashboard/publisher/adrotate-groups-main.php:61
1980
  msgid "Default"
1981
  msgstr "Προεπιλογή"
1982
 
1983
  #: dashboard/publisher/adrotate-ads-edit.php:416
1984
+ #: dashboard/publisher/adrotate-groups-main.php:62
1985
  msgid "Dynamic"
1986
  msgstr "Δυναμική"
1987
 
1988
  #: dashboard/publisher/adrotate-ads-edit.php:416
1989
+ #: dashboard/publisher/adrotate-groups-main.php:62
1990
  #, fuzzy
1991
  msgid "second rotation"
1992
  msgstr "Γεωγραφική Τοποθεσία"
1993
 
1994
  #: dashboard/publisher/adrotate-ads-edit.php:417
1995
+ #: dashboard/publisher/adrotate-groups-main.php:63
1996
  msgid "Block"
1997
  msgstr "Απαγόρευση"
1998
 
1999
  #: dashboard/publisher/adrotate-ads-edit.php:417
2000
+ #: dashboard/publisher/adrotate-groups-main.php:63
2001
  #, fuzzy
2002
  msgid "grid"
2003
  msgstr ""
2006
 
2007
  #: dashboard/publisher/adrotate-ads-edit.php:418
2008
  #: dashboard/publisher/adrotate-groups-edit.php:192
2009
+ #: dashboard/publisher/adrotate-groups-main.php:64
2010
  msgid "Post Injection"
2011
  msgstr "Εμβολιασμός Δημοσίευσης"
2012
 
2013
  #: dashboard/publisher/adrotate-ads-edit.php:419
2014
+ #: dashboard/publisher/adrotate-groups-main.php:65
2015
  msgid "Geolocation"
2016
  msgstr "Γεωγραφική τοποθεσία"
2017
 
2018
  #: dashboard/publisher/adrotate-ads-edit.php:425
2019
  #: dashboard/publisher/adrotate-groups-edit.php:61
2020
+ #: dashboard/publisher/adrotate-groups-main.php:72
2021
  msgid "Mode"
2022
  msgstr "Λειτουργία"
2023
 
2054
 
2055
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2056
  #: dashboard/publisher/adrotate-ads-report.php:34
2057
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2058
+ #: dashboard/publisher/adrotate-groups-main.php:36
2059
  #: dashboard/publisher/adrotate-groups-report.php:40
2060
  msgid "Impressions"
2061
  msgstr "Εμφανίσεις"
2062
 
2063
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2064
+ #: dashboard/publisher/adrotate-ads-main.php:46
2065
  #: dashboard/publisher/adrotate-ads-report.php:35
2066
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2067
+ #: dashboard/publisher/adrotate-groups-main.php:38
2068
  #: dashboard/publisher/adrotate-groups-report.php:41
2069
  msgid "Clicks"
2070
  msgstr "Clicks"
2071
 
2072
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2073
+ #: dashboard/publisher/adrotate-ads-main.php:48
2074
  #: dashboard/publisher/adrotate-ads-report.php:38
2075
  #: dashboard/publisher/adrotate-groups-report.php:44
2076
  msgid "CTR"
2078
 
2079
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2080
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2081
+ #: dashboard/publisher/adrotate-ads-main.php:87
2082
+ #: dashboard/publisher/adrotate-groups-main.php:72
2083
  msgid "Edit"
2084
  msgstr "Επεξεργασία"
2085
 
2090
 
2091
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2092
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2093
+ #: dashboard/publisher/adrotate-ads-main.php:87
2094
  #, fuzzy
2095
  msgid "Groups:"
2096
  msgstr "Ομάδες"
2130
  msgstr "Για 7 ημέρες"
2131
 
2132
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2133
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2134
  msgid "Configuration errors."
2135
  msgstr "Σφάλματα Διαμόρφωσης."
2136
 
2144
  msgstr "Επιλογές εξαγωγής"
2145
 
2146
  #: dashboard/publisher/adrotate-ads-main.php:42
2147
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2148
  msgid "Weight"
2149
  msgstr "Βαρύτητα"
2150
 
2151
+ #: dashboard/publisher/adrotate-ads-main.php:44
2152
  msgid "Shown"
2153
  msgstr "Εμφανίζονται"
2154
 
2155
+ #: dashboard/publisher/adrotate-ads-main.php:45
2156
+ #: dashboard/publisher/adrotate-ads-main.php:47
2157
+ #: dashboard/publisher/adrotate-groups-main.php:37
2158
+ #: dashboard/publisher/adrotate-groups-main.php:39
2159
  msgid "Today"
2160
  msgstr "Σήμερα"
2161
 
2162
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2163
  msgid "No ads created yet!"
2164
  msgstr "Δεν έχουν δημιουργηθεί διαφημίσεις ακόμα!"
2165
 
2307
 
2308
  #: dashboard/publisher/adrotate-groups-edit.php:153
2309
  #: dashboard/publisher/adrotate-groups-edit.php:296
2310
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2311
  #, fuzzy
2312
  msgid "Save Group"
2313
  msgstr "Αποθήκευση"
2379
  msgid "Include ads in categories?"
2380
  msgstr "Να συμπεριληφθούν οι διαφημίσεις σε κατηγορίες;"
2381
 
 
 
 
 
 
 
2382
  #: dashboard/publisher/adrotate-groups-edit.php:200
2383
  #: dashboard/publisher/adrotate-groups-edit.php:241
2384
  #, fuzzy
2410
 
2411
  #: dashboard/publisher/adrotate-groups-edit.php:210
2412
  #: dashboard/publisher/adrotate-groups-edit.php:251
2413
+ msgid "the second paragraph"
2414
  msgstr ""
2415
 
2416
  #: dashboard/publisher/adrotate-groups-edit.php:211
2417
  #: dashboard/publisher/adrotate-groups-edit.php:252
2418
+ msgid "the third paragraph"
2419
  msgstr ""
2420
 
2421
  #: dashboard/publisher/adrotate-groups-edit.php:212
2422
  #: dashboard/publisher/adrotate-groups-edit.php:253
2423
+ msgid "the fourth paragraph"
2424
  msgstr ""
2425
 
2426
  #: dashboard/publisher/adrotate-groups-edit.php:214
2504
  msgid "Select Ads"
2505
  msgstr "Επιλέξτε Διαφημίσεις"
2506
 
2507
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2508
  msgid "Visible until"
2509
  msgstr "Ορατό μέχρι"
2510
 
2511
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2512
  msgid "No ads created!"
2513
  msgstr "Δεν δημιουργήθηκαν διαφημίσεις!"
2514
 
2528
  msgid "This action can not be undone!"
2529
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
2530
 
2531
+ #: dashboard/publisher/adrotate-groups-main.php:41
2532
  msgid "Code"
2533
  msgstr "Κώδικας"
2534
 
2535
+ #: dashboard/publisher/adrotate-groups-main.php:87
2536
  msgid "No groups created!"
2537
  msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2538
 
2540
  msgid "Statistics for group"
2541
  msgstr "Στατιστικά για την ομάδα"
2542
 
2543
+ #, fuzzy
2544
+ #~ msgid "Enable stats"
2545
+ #~ msgstr "Στατιστικά"
2546
+
2547
+ #~ msgid "Track clicks and impressions."
2548
+ #~ msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
2549
+
2550
+ #, fuzzy
2551
+ #~ msgid ""
2552
+ #~ "Disabling this also disables click and impression limits on schedules."
2553
+ #~ msgstr ""
2554
+ #~ "Η απενεργοποίηση του χαρακτηριστικού απενεργοποιεί επίσης τα όρια των "
2555
+ #~ "κλικ και εμφανίσεων στα προγράμματα και απενεργοποιεί τα χρονοδιαγράμματα."
2556
+
2557
+ #~ msgid ""
2558
+ #~ "There is a problem saving the image specification. Please reset your "
2559
+ #~ "image and re-save the ad!"
2560
+ #~ msgstr ""
2561
+ #~ "Υπάρχει ένα πρόβλημα στην αποθήκευση των πληροφοριών εικόνας. Παρακαλώ "
2562
+ #~ "επαναφέρετε την εικόνα και σώστε πάλι τη διαφήμιση!"
2563
+
2564
+ #~ msgid "Clicktracking:"
2565
+ #~ msgstr "κλικ στην επιλογή Παρακολούθηση:"
2566
+
2567
+ #~ msgid "Enable click tracking for this advert."
2568
+ #~ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
2569
+
2570
  #, fuzzy
2571
  #~ msgid "Usage:"
2572
  #~ msgstr "Χρήση"
language/adrotate-en_US.mo CHANGED
Binary file
language/adrotate-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-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,22 +16,22 @@ msgstr ""
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,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: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,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:768
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:775 adrotate-output.php:777
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: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,173 +105,169 @@ msgstr ""
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,32 +276,32 @@ 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: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"
@@ -474,7 +470,7 @@ msgstr "Gérer les pubs"
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"
@@ -553,72 +549,78 @@ msgstr ""
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,7 +628,7 @@ msgstr "Plus d'informations..."
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,7 +636,7 @@ msgstr "Actions en vrac"
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,104 +644,104 @@ msgstr "Aller"
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,14 +751,14 @@ msgstr ""
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,202 +767,239 @@ msgstr ""
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,7 +1008,7 @@ msgstr ""
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,12 +1017,12 @@ msgstr ""
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,7 +1031,7 @@ msgstr ""
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,27 +1040,27 @@ msgstr ""
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,12 +1069,12 @@ msgstr ""
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,7 +1083,7 @@ msgstr ""
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,7 +1093,7 @@ 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,17 +1106,17 @@ msgstr ""
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,17 +1127,17 @@ msgstr ""
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,7 +1148,7 @@ msgstr ""
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,16 +1158,16 @@ msgstr ""
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,12 +1176,12 @@ msgstr ""
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,12 +1190,12 @@ msgstr ""
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,22 +1210,22 @@ msgstr ""
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,18 +1234,18 @@ msgstr ""
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,12 +1255,12 @@ msgstr ""
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,24 +1269,24 @@ msgstr ""
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,7 +1295,7 @@ msgstr ""
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,7 +1305,7 @@ msgstr ""
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,22 +1314,22 @@ msgstr ""
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,7 +1339,7 @@ msgstr ""
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,75 +1357,75 @@ msgstr ""
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,43 +1439,43 @@ msgstr ""
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,7 +1484,7 @@ msgstr ""
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."
@@ -1505,7 +1544,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1505
  msgstr ""
1506
 
1507
  #: dashboard/adrotate-info.php:139
1508
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1509
  msgstr ""
1510
 
1511
  #: dashboard/adrotate-info.php:148
@@ -1583,7 +1622,7 @@ msgstr "Pour un max de cinq installation Wordpress."
1583
  msgid "Developer License"
1584
  msgstr "Licence de Developpeur"
1585
 
1586
- #: dashboard/adrotate-info.php:182
1587
  msgid "Unlimited WordPress installations and/or networks."
1588
  msgstr ""
1589
 
@@ -1722,13 +1761,6 @@ msgstr ""
1722
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1723
  "d'expiration."
1724
 
1725
- #: dashboard/adrotate-pro.php:83
1726
- #, fuzzy
1727
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1728
- msgstr ""
1729
- "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
1730
- "réseaux."
1731
-
1732
  #: dashboard/publisher/adrotate-ads-edit.php:46
1733
  #, fuzzy
1734
  msgid "The AdCode cannot be empty!"
@@ -1746,14 +1778,10 @@ msgstr ""
1746
  "image!"
1747
 
1748
  #: dashboard/publisher/adrotate-ads-edit.php:55
1749
- #, fuzzy
1750
  msgid ""
1751
- "There is a problem saving the image specification. Please reset your image "
1752
- "and re-save the ad!"
1753
  msgstr ""
1754
- "Il y a un problème au niveau de la sauvergarde des spécifications de "
1755
- "l'image. Merci de bien vouloir réinitialiser votre image et réenregistrer la "
1756
- "publicité!"
1757
 
1758
  #: dashboard/publisher/adrotate-ads-edit.php:58
1759
  msgid ""
@@ -1762,9 +1790,7 @@ msgid ""
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
@@ -1906,19 +1932,17 @@ msgstr ""
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
 
@@ -1938,9 +1962,9 @@ 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"
@@ -1959,7 +1983,7 @@ msgstr "Sauvegarder la pub"
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"
@@ -2250,51 +2274,51 @@ 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"
2300
  msgstr "Mode"
@@ -2332,25 +2356,25 @@ 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
2355
  #: dashboard/publisher/adrotate-groups-report.php:44
2356
  #, fuzzy
@@ -2359,8 +2383,8 @@ msgstr "CTR"
2359
 
2360
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2361
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2362
- #: dashboard/publisher/adrotate-ads-main.php:85
2363
- #: dashboard/publisher/adrotate-groups-main.php:69
2364
  #, fuzzy
2365
  msgid "Edit"
2366
  msgstr "Modifier"
@@ -2373,7 +2397,7 @@ msgstr "Statistiques"
2373
 
2374
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2375
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2376
- #: dashboard/publisher/adrotate-ads-main.php:85
2377
  #, fuzzy
2378
  msgid "Groups:"
2379
  msgstr "Groupes"
@@ -2420,7 +2444,7 @@ msgid "For 7 days"
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,31 +2459,25 @@ msgid "Export to XML"
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"
2442
 
2443
- #: dashboard/publisher/adrotate-ads-main.php:43
2444
  #, fuzzy
2445
  msgid "Shown"
2446
  msgstr "Montré"
2447
 
2448
- #: dashboard/publisher/adrotate-ads-main.php:44
2449
- #: dashboard/publisher/adrotate-ads-main.php:46
2450
- #: dashboard/publisher/adrotate-groups-main.php:36
2451
- #: dashboard/publisher/adrotate-groups-main.php:38
2452
  #, fuzzy
2453
  msgid "Today"
2454
  msgstr "Aujourd'hui"
2455
 
2456
- #: dashboard/publisher/adrotate-ads-main.php:85
2457
- #: dashboard/publisher/adrotate-groups-main.php:69
2458
- #, fuzzy
2459
- msgid "Report"
2460
- msgstr "Rapport"
2461
-
2462
- #: dashboard/publisher/adrotate-ads-main.php:103
2463
  #, fuzzy
2464
  msgid "No ads created yet!"
2465
  msgstr "Aucune pub n'a encore été créé!"
@@ -2627,7 +2645,7 @@ 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"
@@ -2706,12 +2724,6 @@ msgstr ""
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
@@ -2744,21 +2756,18 @@ 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
@@ -2858,12 +2867,12 @@ msgstr "Après la pub"
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!"
@@ -2888,12 +2897,12 @@ msgstr "Vous allez supprimer un groupe"
2888
  msgid "This action can not be undone!"
2889
  msgstr "Ceci ne peux pas être défait!"
2890
 
2891
- #: dashboard/publisher/adrotate-groups-main.php:39
2892
  #, fuzzy
2893
  msgid "Code"
2894
  msgstr "Code"
2895
 
2896
- #: dashboard/publisher/adrotate-groups-main.php:82
2897
  #, fuzzy
2898
  msgid "No groups created!"
2899
  msgstr "Aucun groupe n'a été créé!"
@@ -2903,6 +2912,50 @@ msgstr "Aucun groupe n'a été créé!"
2903
  msgid "Statistics for group"
2904
  msgstr "Statistiques pour le groupe"
2905
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2906
  #, fuzzy
2907
  #~ msgid "Usage:"
2908
  #~ msgstr "Usage"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:803
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:742
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
+ #: adrotate-output.php:743
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:744
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:745
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
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:786
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:791
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:797
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:797
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:803
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
+ #: adrotate-output.php:828
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
+ #: adrotate-output.php:828
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
+ #: adrotate-output.php:830
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:830
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
+ #: adrotate-output.php:832
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:832
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
+ #: adrotate-output.php:834
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
+ #: adrotate-output.php:834
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:834
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
+ #: adrotate-output.php:834
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:846
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
+ #: adrotate-output.php:847
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:847
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
+ #: adrotate-output.php:847
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:891
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:891
197
  msgid "manuals"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:891 adrotate-output.php:967
201
  #: dashboard/publisher/adrotate-ads-edit.php:151
202
  msgid "and"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:891
206
  msgid "forums"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:927
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:928
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:930
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
+ #: adrotate-output.php:931
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
+ #: adrotate-output.php:932
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
+ #: adrotate-output.php:933
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
+ #: adrotate-output.php:959
 
 
 
 
238
  #, fuzzy
239
  msgid "Help AdRotate Grow"
240
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
241
 
242
+ #: adrotate-output.php:960
243
  #, fuzzy
244
  msgid "Brought to you by"
245
  msgstr "Présenté par"
246
 
247
+ #: adrotate-output.php:967
248
  msgid ""
249
  "A lot of users only think to review AdRotate when something goes wrong while "
250
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:967
254
  msgid "If you find AdRotate useful please leave your honest"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:967
258
  msgid "rating"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:967
262
  #, fuzzy
263
  msgid "review"
264
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
265
 
266
+ #: adrotate-output.php:967
267
  msgid "on WordPress.org to help AdRotate grow in a positive way"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:970
271
  #, fuzzy
272
  msgid ""
273
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
276
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
277
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
278
 
279
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
280
  #, fuzzy
281
  msgid "Visit the"
282
  msgstr "Visitez le"
283
 
284
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
285
  #, fuzzy
286
  msgid "website"
287
  msgstr "site"
288
 
289
+ #: adrotate-output.php:1000
290
  #, fuzzy
291
  msgid "Available in AdRotate Pro"
292
  msgstr "Disponible dans Adrotate Pro"
293
 
294
+ #: adrotate-output.php:1000
295
  #, fuzzy
296
  msgid "More information..."
297
  msgstr "Plus d'informations..."
298
 
299
+ #: adrotate-output.php:1001
300
  #, fuzzy
301
  msgid "This feature is available in AdRotate Pro"
302
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
303
 
304
+ #: adrotate-output.php:1001
305
  #, fuzzy
306
  msgid "Learn more"
307
  msgstr "En savoir plus"
470
  msgid "Manage Groups"
471
  msgstr "Gérer les groupes"
472
 
473
+ #: adrotate.php:111 adrotate.php:441
474
  #, fuzzy
475
  msgid "Manage Schedules"
476
  msgstr "Gérer"
549
  msgid "Export created"
550
  msgstr "Publicité créée"
551
 
552
+ #: adrotate.php:221
553
  #, fuzzy
554
  msgid "Action prohibited"
555
  msgstr "Action interdite"
556
 
557
+ #: adrotate.php:223 adrotate.php:371
558
  #, fuzzy
559
  msgid "No data found in selected time period"
560
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
561
 
562
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
563
  #, fuzzy
564
  msgid "Manage"
565
  msgstr "Gérer"
566
 
567
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
568
  #, fuzzy
569
  msgid "Add New"
570
  msgstr "Ajouter"
571
 
572
+ #: adrotate.php:360
573
  #, fuzzy
574
  msgid "Group Management"
575
  msgstr "Gérer les groupes"
576
 
577
+ #: adrotate.php:363
578
  #, fuzzy
579
  msgid "Group created"
580
  msgstr "Groupe créé"
581
 
582
+ #: adrotate.php:365
583
  #, fuzzy
584
  msgid "Group updated"
585
  msgstr "Groupe mis à jour"
586
 
587
+ #: adrotate.php:367
588
  #, fuzzy
589
  msgid "Group deleted"
590
  msgstr "Groupe supprimé"
591
 
592
+ #: adrotate.php:369
593
  #, fuzzy
594
  msgid "Group including it's Ads deleted"
595
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
596
 
597
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
598
+ #: dashboard/publisher/adrotate-groups-main.php:72
599
+ #, fuzzy
600
+ msgid "Report"
601
+ msgstr "Rapport"
602
+
603
+ #: adrotate.php:432
604
  #, fuzzy
605
  msgid "Schedule Management available in AdRotate Pro"
606
  msgstr "Disponible dans Adrotate Pro"
607
 
608
+ #: adrotate.php:442
609
  msgid ""
610
  "Schedule management and multiple schedules per advert is available in "
611
  "AdRotate Pro."
612
  msgstr ""
613
 
614
+ #: adrotate.php:442 adrotate.php:529
615
  #: dashboard/publisher/adrotate-ads-edit.php:177
616
+ #: dashboard/publisher/adrotate-ads-main.php:114
617
  #: dashboard/publisher/adrotate-groups-edit.php:75
618
+ #: dashboard/publisher/adrotate-groups-main.php:92
619
  #, fuzzy
620
  msgid "More information"
621
  msgstr "Plus d'informations..."
622
 
623
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
624
  #: dashboard/publisher/adrotate-ads-main-error.php:19
625
  #: dashboard/publisher/adrotate-ads-main.php:20
626
  #: dashboard/publisher/adrotate-groups-main.php:20
628
  msgid "Bulk Actions"
629
  msgstr "Actions en vrac"
630
 
631
+ #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
632
  #: dashboard/publisher/adrotate-ads-main-error.php:29
633
  #: dashboard/publisher/adrotate-ads-main.php:30
634
  #: dashboard/publisher/adrotate-groups-main.php:24
636
  msgid "Go"
637
  msgstr "Aller"
638
 
639
+ #: adrotate.php:459 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
  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:426
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-main-error.php:74
688
+ #: dashboard/publisher/adrotate-groups-edit.php:383
689
  #, fuzzy
690
  msgid "Expires soon."
691
  msgstr "Expire bientôt."
692
 
693
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
694
+ #: dashboard/publisher/adrotate-groups-edit.php:384
695
  #, fuzzy
696
  msgid "Has expired."
697
  msgstr "A expiré."
698
 
699
+ #: adrotate.php:527
700
  #, fuzzy
701
  msgid "Media Management available in AdRotate Pro"
702
  msgstr "Disponible dans Adrotate Pro"
703
 
704
+ #: adrotate.php:529
705
  msgid ""
706
  "Upload images to the AdRotate Pro banners folder from here. This is "
707
  "especially useful if you use responsive adverts with multiple images."
708
  msgstr ""
709
 
710
+ #: adrotate.php:529
711
  msgid "Media uploading and management is available in AdRotate Pro."
712
  msgstr ""
713
 
714
+ #: adrotate.php:531
715
  #, fuzzy
716
  msgid "Upload new banner image"
717
  msgstr "Image :"
718
 
719
+ #: adrotate.php:532
720
  #, fuzzy
721
  msgid "Accepted files are:"
722
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
723
 
724
+ #: adrotate.php:532
725
  msgid "Maximum size is 512Kb."
726
  msgstr ""
727
 
728
+ #: adrotate.php:532
729
  msgid "Important:"
730
  msgstr ""
731
 
732
+ #: adrotate.php:532
733
  msgid ""
734
  "Make sure your file has no spaces or special characters in the name. Replace "
735
  "spaces with a - or _."
736
  msgstr ""
737
 
738
+ #: adrotate.php:534
739
  msgid ""
740
  "For responsive adverts make sure the filename is in the following format; "
741
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
742
  msgstr ""
743
 
744
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
745
  #, fuzzy
746
  msgid ""
747
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
751
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
752
  "tailles d'écran."
753
 
754
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
755
  #: dashboard/publisher/adrotate-groups-edit.php:308
756
  #: dashboard/publisher/adrotate-groups-edit.php:316
757
  #, fuzzy
758
  msgid "Example:"
759
  msgstr "Exemple :"
760
 
761
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
762
  #, fuzzy
763
  msgid ""
764
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
767
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
768
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
769
 
770
+ #: adrotate.php:540
771
  #, fuzzy
772
  msgid "Upload image"
773
  msgstr "Image :"
774
 
775
+ #: adrotate.php:543
776
  msgid "Available banner images in"
777
  msgstr ""
778
 
779
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
780
  #, fuzzy
781
  msgid "Name"
782
  msgstr "Nom"
783
 
784
+ #: adrotate.php:549
785
  #, fuzzy
786
  msgid "Actions"
787
  msgstr "Actions en vrac"
788
 
789
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
790
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
791
  #: dashboard/publisher/adrotate-ads-main-error.php:21
792
  #: dashboard/publisher/adrotate-ads-main.php:22
793
  #, fuzzy
794
  msgid "Delete"
795
  msgstr "Effacer"
796
 
797
+ #: adrotate.php:562
798
  msgid ""
799
  "Make sure the banner images are not in use by adverts when you delete them!"
800
  msgstr ""
801
 
802
+ #: adrotate.php:562
803
  msgid "Manage your banner folder from here with AdRotate Pro."
804
  msgstr ""
805
 
806
+ #: adrotate.php:606
807
  #, fuzzy
808
  msgid "AdRotate Settings"
809
  msgstr "Paramètres de AdRotate"
810
 
811
+ #: adrotate.php:609
812
  #, fuzzy
813
  msgid "Settings saved"
814
  msgstr "Paramètres sauvegardés"
815
 
816
+ #: adrotate.php:611
817
  #, fuzzy
818
  msgid "Database optimized"
819
  msgstr "Base de données optimisée"
820
 
821
+ #: adrotate.php:613
822
  #, fuzzy
823
  msgid "Database repaired"
824
  msgstr "Base de données réparée"
825
 
826
+ #: adrotate.php:615
827
  #, fuzzy
828
  msgid "Ads evaluated and statuses have been corrected where required"
829
  msgstr ""
830
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
831
 
832
+ #: adrotate.php:617
833
  #, fuzzy
834
  msgid "Empty database records removed"
835
  msgstr "Les registres vides de la base de données ont été supprimés"
836
 
837
+ #: adrotate.php:619
838
  #, fuzzy
839
  msgid "Database can only be optimized or cleaned once every hour"
840
  msgstr ""
841
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
842
 
843
+ #: adrotate.php:627
844
  #, fuzzy
845
  msgid "Access Rights"
846
  msgstr "Droits d'Accès"
847
 
848
+ #: adrotate.php:628
849
  #, fuzzy
850
  msgid "Who has access to what?"
851
  msgstr "Qui a accès à quoi?"
852
 
853
+ #: adrotate.php:631
854
  #, fuzzy
855
  msgid "Manage/Add/Edit adverts"
856
  msgstr "Gérer/Ajouter/Modifier les publicités"
857
 
858
+ #: adrotate.php:635
859
  #, fuzzy
860
  msgid "Role to see and add/edit ads."
861
  msgstr "Rôle pour voir et gérer/modifier les publicités."
862
 
863
+ #: adrotate.php:639
864
  #, fuzzy
865
  msgid "Delete/Reset adverts"
866
  msgstr "Supprimer/Mettre à zéro les publicités"
867
 
868
+ #: adrotate.php:643
869
  #, fuzzy
870
  msgid "Role to delete ads and reset stats."
871
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
872
 
873
+ #: adrotate.php:647
874
  #, fuzzy
875
  msgid "Manage/Add/Edit groups"
876
  msgstr "Gérer/Ajouter/Modifier les groupes"
877
 
878
+ #: adrotate.php:651
879
  #, fuzzy
880
  msgid "Role to see and add/edit groups."
881
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
882
 
883
+ #: adrotate.php:655
884
  #, fuzzy
885
  msgid "Delete groups"
886
  msgstr "Effacer les groups"
887
 
888
+ #: adrotate.php:659
889
  #, fuzzy
890
  msgid "Role to delete groups."
891
  msgstr "Rôle pour supprimer les groupes."
892
 
893
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
894
+ #: adrotate.php:890
895
  #, fuzzy
896
  msgid "Update Options"
897
  msgstr "Mettre à jour les options"
898
 
899
+ #: adrotate.php:691
900
  #, fuzzy
901
  msgid "Statistics"
902
  msgstr "Statistiques"
903
 
904
+ #: adrotate.php:694
905
+ msgid "How to track stats"
906
+ msgstr ""
 
907
 
908
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
909
+ #: dashboard/publisher/adrotate-groups-edit.php:240
910
  #, fuzzy
911
+ msgid "Disabled"
912
+ msgstr "Désactivé"
913
+
914
+ #: adrotate.php:703
915
+ msgid "No impressions and clicks are recorded for any of your adverts."
916
+ msgstr ""
917
+
918
+ #: adrotate.php:704
919
+ msgid "Tracks impressions and clicks internally."
920
+ msgstr ""
921
+
922
+ #: adrotate.php:705
923
+ msgid ""
924
+ "Click and Impression recording, Click and impression limits, impression "
925
+ "spread for schedules, local stats display."
926
+ msgstr ""
927
+
928
+ #: adrotate.php:706
929
+ msgid ""
930
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
931
+ "attributes."
932
+ msgstr ""
933
 
934
+ #: adrotate.php:706 adrotate.php:708
935
+ msgid "Available in AdRotate Pro!"
936
  msgstr ""
937
 
938
+ #: adrotate.php:707
939
+ msgid ""
940
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
941
+ "Contents."
942
+ msgstr ""
943
+
944
+ #: adrotate.php:708
945
+ msgid ""
946
+ "Requires Google Analytics tracker installed in your sites footer! uses "
947
+ "onClick() in adverts."
948
+ msgstr ""
949
+
950
+ #: adrotate.php:709
951
+ msgid ""
952
+ "Click and Impression recording via Cookie, stats are displayed in Events."
953
+ msgstr ""
954
+
955
+ #: adrotate.php:714
956
  #, fuzzy
957
  msgid "Impressions timer"
958
  msgstr "Minuterie de impressions"
959
 
960
+ #: adrotate.php:716 adrotate.php:723
961
  #, fuzzy
962
  msgid "Seconds."
963
  msgstr "Secondes."
964
 
965
+ #: adrotate.php:717
966
  #, fuzzy
967
  msgid "Default: 60."
968
  msgstr "Par défaut"
969
 
970
+ #: adrotate.php:717
971
  #, fuzzy
972
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
973
  msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
974
 
975
+ #: adrotate.php:721
976
  #, fuzzy
977
  msgid "Clicks timer"
978
  msgstr "Interval de clicks"
979
 
980
+ #: adrotate.php:724
981
  #, fuzzy
982
  msgid "Default: 86400."
983
  msgstr "Par défaut"
984
 
985
+ #: adrotate.php:724
986
  #, fuzzy
987
  msgid ""
988
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
989
  msgstr ""
990
  "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
991
 
992
+ #: adrotate.php:729
993
  #, fuzzy
994
  msgid "Bot filter"
995
  msgstr "Filtre de robots"
996
 
997
+ #: adrotate.php:732
998
  #, fuzzy
999
  msgid "User-Agent Filter"
1000
  msgstr "Filtrage par User-Agent"
1001
 
1002
+ #: adrotate.php:735
1003
  #, fuzzy
1004
  msgid ""
1005
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
1008
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
1009
  "impressions et le clics fait par les robots/crawlers/user-agents."
1010
 
1011
+ #: adrotate.php:736
1012
  #, fuzzy
1013
  msgid ""
1014
  "Keep in mind that this might give false positives. The word 'google' also "
1017
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
1018
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
1019
 
1020
+ #: adrotate.php:736
1021
  #, fuzzy
1022
  msgid "Keep your list up-to-date"
1023
  msgstr "Gardez votre liste à jour"
1024
 
1025
+ #: adrotate.php:737
1026
  #, fuzzy
1027
  msgid ""
1028
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
1031
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
1032
  "sont aussi permis. Tous les autres caractères seront supprimés. "
1033
 
1034
+ #: adrotate.php:738
1035
  #, fuzzy
1036
  msgid ""
1037
  "Additionally to the list specified here, empty User-Agents are blocked as "
1040
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
1041
  "bloqués."
1042
 
1043
+ #: adrotate.php:738
1044
  #, fuzzy
1045
  msgid "Learn more about"
1046
  msgstr "En savoir plus sur"
1047
 
1048
+ #: adrotate.php:738
1049
  #, fuzzy
1050
  msgid "user-agents"
1051
  msgstr "user-agents"
1052
 
1053
+ #: adrotate.php:747
1054
  #, fuzzy
1055
  msgid "Miscellaneous"
1056
  msgstr "Divers"
1057
 
1058
+ #: adrotate.php:750
1059
  #, fuzzy
1060
  msgid "Widget alignment"
1061
  msgstr "Alignement du Widget"
1062
 
1063
+ #: adrotate.php:751
1064
  #, fuzzy
1065
  msgid ""
1066
  "Check this box if your widgets do not align in your themes sidebar. (Does "
1069
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
1070
  "votre thème. Cette fonction peux ne pas régler le soucis!"
1071
 
1072
+ #: adrotate.php:754
1073
  #, fuzzy
1074
  msgid "Widget padding"
1075
  msgstr "Marge interne du Widget"
1076
 
1077
+ #: adrotate.php:755
1078
  #, fuzzy
1079
  msgid ""
1080
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
1083
  "Activez cette option pour supprimer la marge (espace vide) autour des "
1084
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
1085
 
1086
+ #: adrotate.php:760 adrotate.php:771
1087
  #, fuzzy
1088
  msgid "NOTICE:"
1089
  msgstr ""
1093
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1094
  "de données est lente ou ne réponds pas."
1095
 
1096
+ #: adrotate.php:761
1097
  #, fuzzy
1098
  msgid ""
1099
  "You have enabled W3 Total Caching support but not defined the security hash. "
1106
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
1107
  "fonction \"late init\" doit être activée dans W3 Total Cache."
1108
 
1109
+ #: adrotate.php:765
1110
  #, fuzzy
1111
  msgid "W3 Total Caching"
1112
  msgstr "W3 Total Caching"
1113
 
1114
+ #: adrotate.php:766
1115
  #, fuzzy
1116
  msgid "Check this box if you use W3 Total Caching on your site."
1117
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
1118
 
1119
+ #: adrotate.php:772
1120
  #, fuzzy
1121
  msgid ""
1122
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
1127
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
1128
  "support pour le contenu dynamique."
1129
 
1130
+ #: adrotate.php:776
1131
  #, fuzzy
1132
  msgid "WP Super Cache"
1133
  msgstr "WP Super Cache"
1134
 
1135
+ #: adrotate.php:777
1136
  #, fuzzy
1137
  msgid "Check this box if you use WP Super Cache on your site."
1138
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
1139
 
1140
+ #: adrotate.php:782
1141
  #, fuzzy
1142
  msgid ""
1143
  "It may take a while for the ad to start rotating. The caching plugin needs "
1148
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1149
  "pas fait manuellement."
1150
 
1151
+ #: adrotate.php:782
1152
  #, fuzzy
1153
  msgid ""
1154
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1158
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1159
  "PHP dans le code d'exclusion vous-même."
1160
 
1161
+ #: adrotate.php:786
1162
  msgid "Javascript"
1163
  msgstr ""
1164
 
1165
+ #: adrotate.php:789
1166
  #, fuzzy
1167
  msgid "Load jQuery"
1168
  msgstr "Utilisez jQuery"
1169
 
1170
+ #: adrotate.php:790
1171
  #, fuzzy
1172
  msgid ""
1173
  "jQuery is required for all Javascript features below. Enable this if your "
1176
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1177
  "le si votre thème ne charge pas jQuery directement."
1178
 
1179
+ #: adrotate.php:793
1180
  #, fuzzy
1181
  msgid "Load in footer?"
1182
  msgstr "Chargement dans le pied de page?"
1183
 
1184
+ #: adrotate.php:794
1185
  #, fuzzy
1186
  msgid ""
1187
  "Enable if you want to load the above libraries in the footer. Your theme "
1190
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1191
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1192
 
1193
+ #: adrotate.php:802
1194
  #, fuzzy
1195
  msgid "Maintenance"
1196
  msgstr "Maintenance"
1197
 
1198
+ #: adrotate.php:803
1199
  #, fuzzy
1200
  msgid ""
1201
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1210
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1211
  "de données est lente ou ne réponds pas."
1212
 
1213
+ #: adrotate.php:818 adrotate.php:820
1214
  #, fuzzy
1215
  msgid "Optimize Database"
1216
  msgstr "Optimiser la base de données"
1217
 
1218
+ #: adrotate.php:820
1219
  #, fuzzy
1220
  msgid "You are about to optimize the AdRotate database."
1221
  msgstr "Vous allez optimiser la base de données de Adrotate."
1222
 
1223
+ #: adrotate.php:820
1224
  #, fuzzy
1225
  msgid "Did you make a backup of your database?"
1226
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1227
 
1228
+ #: adrotate.php:820
1229
  #, fuzzy
1230
  msgid ""
1231
  "This may take a moment and may cause your website to respond slow "
1234
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1235
  "temporaire!"
1236
 
1237
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1238
  #: dashboard/publisher/adrotate-groups-main.php:24
1239
  #, fuzzy
1240
  msgid "OK to continue, CANCEL to stop."
1241
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1242
 
1243
+ #: adrotate.php:821
1244
  #, fuzzy
1245
  msgid "Cleans up overhead data in the AdRotate tables."
1246
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1247
 
1248
+ #: adrotate.php:822
1249
  #, fuzzy
1250
  msgid ""
1251
  "Overhead data is accumulated garbage resulting from many changes you've "
1255
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1256
  "KB de données."
1257
 
1258
+ #: adrotate.php:826 adrotate.php:828
1259
  #, fuzzy
1260
  msgid "Clean-up Database"
1261
  msgstr "Nettoyer la base de données"
1262
 
1263
+ #: adrotate.php:828
1264
  #, fuzzy
1265
  msgid ""
1266
  "You are about to clean up your database. This may delete expired schedules "
1269
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1270
  "supprimer des calendriers périmés et des vieilles statistiques.."
1271
 
1272
+ #: adrotate.php:828
1273
  #, fuzzy
1274
  msgid "Are you sure you want to continue?"
1275
  msgstr "Etes-vous certains de vouloir continuer?"
1276
 
1277
+ #: adrotate.php:828 adrotate.php:836
1278
  #, fuzzy
1279
  msgid "This might take a while and may slow down your site during this action!"
1280
  msgstr ""
1281
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1282
  "interval!"
1283
 
1284
+ #: adrotate.php:829
1285
  #, fuzzy
1286
  msgid "Delete stats older than 356 days (Optional)."
1287
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1288
 
1289
+ #: adrotate.php:830
1290
  #, fuzzy
1291
  msgid ""
1292
  "AdRotate creates empty records when you start making ads or groups. In rare "
1295
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1296
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1297
 
1298
+ #: adrotate.php:830
1299
  #, fuzzy
1300
  msgid ""
1301
  "If you made an ad or group that does not save when you make it use this "
1305
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1306
  "registres vides."
1307
 
1308
+ #: adrotate.php:830
1309
  #, fuzzy
1310
  msgid ""
1311
  "Additionally you can clean up old statistics. This will improve the speed of "
1314
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1315
  "d'améliorer la vitesse de votre site."
1316
 
1317
+ #: adrotate.php:834
1318
  #, fuzzy
1319
  msgid "Re-evaluate Ads"
1320
  msgstr "Re-évaluer les publicités"
1321
 
1322
+ #: adrotate.php:836
1323
  #, fuzzy
1324
  msgid "Re-evaluate all ads"
1325
  msgstr "Re-évaluer toutes les publicités"
1326
 
1327
+ #: adrotate.php:836
1328
  #, fuzzy
1329
  msgid "You are about to check all ads for errors."
1330
  msgstr "Vous allez véifier l'état de toutes les publicités."
1331
 
1332
+ #: adrotate.php:837
1333
  #, fuzzy
1334
  msgid ""
1335
  "This will apply all evaluation rules to all ads to see if any error slipped "
1339
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1340
  "fonctionalité."
1341
 
1342
+ #: adrotate.php:841
1343
  #, fuzzy
1344
  msgid ""
1345
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1357
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1358
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1359
 
1360
+ #: adrotate.php:849
1361
  #, fuzzy
1362
  msgid "Troubleshooting"
1363
  msgstr "Diagnostic de dépannage"
1364
 
1365
+ #: adrotate.php:852
1366
  #, fuzzy
1367
  msgid "Current version:"
1368
  msgstr "Version actuelle :"
1369
 
1370
+ #: adrotate.php:853
1371
  #, fuzzy
1372
  msgid "Previous version:"
1373
  msgstr "Version antérieure :"
1374
 
1375
+ #: adrotate.php:856
1376
  #, fuzzy
1377
  msgid "Current database version:"
1378
  msgstr "Version actuelle de la base de données :"
1379
 
1380
+ #: adrotate.php:857
1381
  #, fuzzy
1382
  msgid "Previous database version:"
1383
  msgstr "Version antérieure de la base de données :"
1384
 
1385
+ #: adrotate.php:860
1386
  msgid "Ad evaluation next run:"
1387
  msgstr ""
1388
 
1389
+ #: adrotate.php:861 adrotate.php:865
1390
  #, fuzzy
1391
  msgid "Not scheduled!"
1392
  msgstr "Pas planifié!"
1393
 
1394
+ #: adrotate.php:864
1395
  msgid "Clean Trackerdata next run:"
1396
  msgstr ""
1397
 
1398
+ #: adrotate.php:868
1399
  #, fuzzy
1400
  msgid "Current status of adverts"
1401
  msgstr "Etat actuel des publicités"
1402
 
1403
+ #: adrotate.php:869
1404
  #, fuzzy
1405
  msgid "Normal"
1406
  msgstr "Normal"
1407
 
1408
+ #: adrotate.php:869
1409
  #, fuzzy
1410
  msgid "Error"
1411
  msgstr "Erreur"
1412
 
1413
+ #: adrotate.php:869
1414
  #, fuzzy
1415
  msgid "Expired"
1416
  msgstr "Expiré"
1417
 
1418
+ #: adrotate.php:869
1419
  #, fuzzy
1420
  msgid "Expires Soon"
1421
  msgstr "Expire bientôt."
1422
 
1423
+ #: adrotate.php:869
1424
  #, fuzzy
1425
  msgid "Unknown Status"
1426
  msgstr "Statut Inconnu"
1427
 
1428
+ #: adrotate.php:872
1429
  #, fuzzy
1430
  msgid ""
1431
  "NOTE: The below options are not meant for normal use and are only there for "
1439
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1440
  "une utilisation normale, ils ne doivent pas être activés!"
1441
 
1442
+ #: adrotate.php:876
1443
  #, fuzzy
1444
  msgid "Developer Debug"
1445
  msgstr "Debuggage de développeur"
1446
 
1447
+ #: adrotate.php:878
1448
  #, fuzzy
1449
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1450
  msgstr ""
1451
  "Dépannage des publicités. Si cette option est activée, les données seront "
1452
  "placées sur le site."
1453
 
1454
+ #: adrotate.php:879
1455
  #, fuzzy
1456
  msgid "Show all settings, dashboard routines and related values."
1457
  msgstr ""
1458
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1459
  "connexes."
1460
 
1461
+ #: adrotate.php:880
1462
  #, fuzzy
1463
  msgid "Show array of all userroles and capabilities."
1464
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1465
 
1466
+ #: adrotate.php:881
1467
  #, fuzzy
1468
  msgid "Review saved advertisers! Visible to advertisers."
1469
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1470
 
1471
+ #: adrotate.php:882
1472
  #, fuzzy
1473
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1474
  msgstr ""
1475
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1476
  "Visible uniquement aux annonceurs."
1477
 
1478
+ #: adrotate.php:883
1479
  #, fuzzy
1480
  msgid ""
1481
  "Disable timers for clicks and impressions and enable a alert window for "
1484
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1485
  "fenêtre d'alerte pour le suivi des clicks."
1486
 
1487
+ #: adrotate.php:884
1488
  #, fuzzy
1489
  msgid "Temporarily disable encryption on the redirect url."
1490
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1544
  msgstr ""
1545
 
1546
  #: dashboard/adrotate-info.php:139
1547
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1548
  msgstr ""
1549
 
1550
  #: dashboard/adrotate-info.php:148
1622
  msgid "Developer License"
1623
  msgstr "Licence de Developpeur"
1624
 
1625
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1626
  msgid "Unlimited WordPress installations and/or networks."
1627
  msgstr ""
1628
 
1761
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1762
  "d'expiration."
1763
 
 
 
 
 
 
 
 
1764
  #: dashboard/publisher/adrotate-ads-edit.php:46
1765
  #, fuzzy
1766
  msgid "The AdCode cannot be empty!"
1778
  "image!"
1779
 
1780
  #: dashboard/publisher/adrotate-ads-edit.php:55
 
1781
  msgid ""
1782
+ "There is a problem saving the image. Please reset your image and re-save the "
1783
+ "ad!"
1784
  msgstr ""
 
 
 
1785
 
1786
  #: dashboard/publisher/adrotate-ads-edit.php:58
1787
  msgid ""
1790
  msgstr ""
1791
 
1792
  #: dashboard/publisher/adrotate-ads-edit.php:61
1793
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1794
  msgstr ""
1795
 
1796
  #: dashboard/publisher/adrotate-ads-edit.php:64
1932
  "valeur, ce champ a la priorité."
1933
 
1934
  #: dashboard/publisher/adrotate-ads-edit.php:156
1935
+ msgid "Statistics:"
1936
+ msgstr ""
 
1937
 
1938
  #: dashboard/publisher/adrotate-ads-edit.php:158
1939
+ msgid "Enable click and impression tracking for this advert."
1940
+ msgstr ""
 
1941
 
1942
  #: dashboard/publisher/adrotate-ads-edit.php:159
1943
  msgid ""
1944
  "Note: Clicktracking does not work for Javascript adverts such as those "
1945
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1946
  "supported."
1947
  msgstr ""
1948
 
1962
  msgstr "Non, cette publicité ne sera pas utilisée"
1963
 
1964
  #: dashboard/publisher/adrotate-ads-edit.php:177
1965
+ #: dashboard/publisher/adrotate-ads-main.php:114
1966
  #: dashboard/publisher/adrotate-groups-edit.php:75
1967
+ #: dashboard/publisher/adrotate-groups-main.php:92
1968
  #, fuzzy
1969
  msgid "Get more features with AdRotate Pro."
1970
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1983
  #: dashboard/publisher/adrotate-ads-edit.php:437
1984
  #: dashboard/publisher/adrotate-groups-edit.php:154
1985
  #: dashboard/publisher/adrotate-groups-edit.php:297
1986
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1987
  #, fuzzy
1988
  msgid "Cancel"
1989
  msgstr "Annuller"
2274
  msgstr "Pubs dans le groupe"
2275
 
2276
  #: dashboard/publisher/adrotate-ads-edit.php:415
2277
+ #: dashboard/publisher/adrotate-groups-main.php:61
2278
  #, fuzzy
2279
  msgid "Default"
2280
  msgstr "Par défaut"
2281
 
2282
  #: dashboard/publisher/adrotate-ads-edit.php:416
2283
+ #: dashboard/publisher/adrotate-groups-main.php:62
2284
  #, fuzzy
2285
  msgid "Dynamic"
2286
  msgstr "Dynamique"
2287
 
2288
  #: dashboard/publisher/adrotate-ads-edit.php:416
2289
+ #: dashboard/publisher/adrotate-groups-main.php:62
2290
  #, fuzzy
2291
  msgid "second rotation"
2292
  msgstr "deuxième rotation"
2293
 
2294
  #: dashboard/publisher/adrotate-ads-edit.php:417
2295
+ #: dashboard/publisher/adrotate-groups-main.php:63
2296
  #, fuzzy
2297
  msgid "Block"
2298
  msgstr "Bloc"
2299
 
2300
  #: dashboard/publisher/adrotate-ads-edit.php:417
2301
+ #: dashboard/publisher/adrotate-groups-main.php:63
2302
  #, fuzzy
2303
  msgid "grid"
2304
  msgstr "grille"
2305
 
2306
  #: dashboard/publisher/adrotate-ads-edit.php:418
2307
  #: dashboard/publisher/adrotate-groups-edit.php:192
2308
+ #: dashboard/publisher/adrotate-groups-main.php:64
2309
  #, fuzzy
2310
  msgid "Post Injection"
2311
  msgstr "Injection dans l'article"
2312
 
2313
  #: dashboard/publisher/adrotate-ads-edit.php:419
2314
+ #: dashboard/publisher/adrotate-groups-main.php:65
2315
  #, fuzzy
2316
  msgid "Geolocation"
2317
  msgstr "Géolocalisation"
2318
 
2319
  #: dashboard/publisher/adrotate-ads-edit.php:425
2320
  #: dashboard/publisher/adrotate-groups-edit.php:61
2321
+ #: dashboard/publisher/adrotate-groups-main.php:72
2322
  #, fuzzy
2323
  msgid "Mode"
2324
  msgstr "Mode"
2356
 
2357
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2358
  #: dashboard/publisher/adrotate-ads-report.php:34
2359
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2360
+ #: dashboard/publisher/adrotate-groups-main.php:36
2361
  #: dashboard/publisher/adrotate-groups-report.php:40
2362
  #, fuzzy
2363
  msgid "Impressions"
2364
  msgstr "Vues"
2365
 
2366
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2367
+ #: dashboard/publisher/adrotate-ads-main.php:46
2368
  #: dashboard/publisher/adrotate-ads-report.php:35
2369
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2370
+ #: dashboard/publisher/adrotate-groups-main.php:38
2371
  #: dashboard/publisher/adrotate-groups-report.php:41
2372
  #, fuzzy
2373
  msgid "Clicks"
2374
  msgstr "Clicks"
2375
 
2376
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2377
+ #: dashboard/publisher/adrotate-ads-main.php:48
2378
  #: dashboard/publisher/adrotate-ads-report.php:38
2379
  #: dashboard/publisher/adrotate-groups-report.php:44
2380
  #, fuzzy
2383
 
2384
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2385
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2386
+ #: dashboard/publisher/adrotate-ads-main.php:87
2387
+ #: dashboard/publisher/adrotate-groups-main.php:72
2388
  #, fuzzy
2389
  msgid "Edit"
2390
  msgstr "Modifier"
2397
 
2398
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2399
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2400
+ #: dashboard/publisher/adrotate-ads-main.php:87
2401
  #, fuzzy
2402
  msgid "Groups:"
2403
  msgstr "Groupes"
2444
  msgstr "Pour 7 jours"
2445
 
2446
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2447
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2448
  #, fuzzy
2449
  msgid "Configuration errors."
2450
  msgstr "Erreurs de configuration."
2459
  msgstr ""
2460
 
2461
  #: dashboard/publisher/adrotate-ads-main.php:42
2462
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2463
  #, fuzzy
2464
  msgid "Weight"
2465
  msgstr "Importance"
2466
 
2467
+ #: dashboard/publisher/adrotate-ads-main.php:44
2468
  #, fuzzy
2469
  msgid "Shown"
2470
  msgstr "Montré"
2471
 
2472
+ #: dashboard/publisher/adrotate-ads-main.php:45
2473
+ #: dashboard/publisher/adrotate-ads-main.php:47
2474
+ #: dashboard/publisher/adrotate-groups-main.php:37
2475
+ #: dashboard/publisher/adrotate-groups-main.php:39
2476
  #, fuzzy
2477
  msgid "Today"
2478
  msgstr "Aujourd'hui"
2479
 
2480
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
 
2481
  #, fuzzy
2482
  msgid "No ads created yet!"
2483
  msgstr "Aucune pub n'a encore été créé!"
2645
 
2646
  #: dashboard/publisher/adrotate-groups-edit.php:153
2647
  #: dashboard/publisher/adrotate-groups-edit.php:296
2648
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2649
  #, fuzzy
2650
  msgid "Save Group"
2651
  msgstr "Sauvegarder groupe"
2724
  msgid "Include ads in categories?"
2725
  msgstr "Intégrer les publicités dans les catégories?"
2726
 
 
 
 
 
 
 
2727
  #: dashboard/publisher/adrotate-groups-edit.php:200
2728
  #: dashboard/publisher/adrotate-groups-edit.php:241
2729
  #, fuzzy
2756
 
2757
  #: dashboard/publisher/adrotate-groups-edit.php:210
2758
  #: dashboard/publisher/adrotate-groups-edit.php:251
2759
+ msgid "the second paragraph"
2760
+ msgstr ""
 
2761
 
2762
  #: dashboard/publisher/adrotate-groups-edit.php:211
2763
  #: dashboard/publisher/adrotate-groups-edit.php:252
2764
+ msgid "the third paragraph"
2765
+ msgstr ""
 
2766
 
2767
  #: dashboard/publisher/adrotate-groups-edit.php:212
2768
  #: dashboard/publisher/adrotate-groups-edit.php:253
2769
+ msgid "the fourth paragraph"
2770
+ msgstr ""
 
2771
 
2772
  #: dashboard/publisher/adrotate-groups-edit.php:214
2773
  #: dashboard/publisher/adrotate-groups-edit.php:255
2867
  msgid "Select Ads"
2868
  msgstr "Choisir les pubs"
2869
 
2870
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2871
  #, fuzzy
2872
  msgid "Visible until"
2873
  msgstr "Visible jusqu'à"
2874
 
2875
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2876
  #, fuzzy
2877
  msgid "No ads created!"
2878
  msgstr "Aucune pub créée!"
2897
  msgid "This action can not be undone!"
2898
  msgstr "Ceci ne peux pas être défait!"
2899
 
2900
+ #: dashboard/publisher/adrotate-groups-main.php:41
2901
  #, fuzzy
2902
  msgid "Code"
2903
  msgstr "Code"
2904
 
2905
+ #: dashboard/publisher/adrotate-groups-main.php:87
2906
  #, fuzzy
2907
  msgid "No groups created!"
2908
  msgstr "Aucun groupe n'a été créé!"
2912
  msgid "Statistics for group"
2913
  msgstr "Statistiques pour le groupe"
2914
 
2915
+ #, fuzzy
2916
+ #~ msgid "Enable stats"
2917
+ #~ msgstr "Statistiques activés"
2918
+
2919
+ #, fuzzy
2920
+ #~ msgid "Track clicks and impressions."
2921
+ #~ msgstr "Suivi des clicks et des impressions."
2922
+
2923
+ #, fuzzy
2924
+ #~ msgid ""
2925
+ #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
2926
+ #~ msgstr ""
2927
+ #~ "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
2928
+ #~ "réseaux."
2929
+
2930
+ #, fuzzy
2931
+ #~ msgid ""
2932
+ #~ "There is a problem saving the image specification. Please reset your "
2933
+ #~ "image and re-save the ad!"
2934
+ #~ msgstr ""
2935
+ #~ "Il y a un problème au niveau de la sauvergarde des spécifications de "
2936
+ #~ "l'image. Merci de bien vouloir réinitialiser votre image et réenregistrer "
2937
+ #~ "la publicité!"
2938
+
2939
+ #, fuzzy
2940
+ #~ msgid "Clicktracking:"
2941
+ #~ msgstr "Clicktracking :"
2942
+
2943
+ #, fuzzy
2944
+ #~ msgid "Enable click tracking for this advert."
2945
+ #~ msgstr "Activer le suivi des clicks pour cette publicité."
2946
+
2947
+ #, fuzzy
2948
+ #~ msgid "the 2nd paragraph"
2949
+ #~ msgstr "le second paragraphe"
2950
+
2951
+ #, fuzzy
2952
+ #~ msgid "the 3rd paragraph"
2953
+ #~ msgstr "le troisième paragraphe"
2954
+
2955
+ #, fuzzy
2956
+ #~ msgid "the 4th paragraph"
2957
+ #~ msgstr "le quatrième paragraphe"
2958
+
2959
  #, fuzzy
2960
  #~ msgid "Usage:"
2961
  #~ msgstr "Usage"
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-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,19 +17,19 @@ msgstr ""
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,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:747
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: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,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:768
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:775 adrotate-output.php:777
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: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,159 +93,155 @@ 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: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,27 +249,27 @@ 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: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
 
@@ -410,7 +406,7 @@ msgstr "Gestionar Anuncios"
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"
@@ -477,137 +473,142 @@ msgstr ""
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,32 +617,32 @@ msgstr ""
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,7 +651,7 @@ msgstr ""
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,7 +661,7 @@ msgstr ""
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,13 +670,13 @@ msgstr ""
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,33 +685,33 @@ msgstr ""
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,147 +719,182 @@ msgstr ""
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,7 +903,7 @@ msgstr ""
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,11 +911,11 @@ msgstr ""
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,7 +923,7 @@ msgstr ""
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,23 +931,23 @@ msgstr ""
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,11 +955,11 @@ msgstr ""
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,12 +967,12 @@ msgstr ""
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,15 +984,15 @@ msgstr ""
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,15 +1002,15 @@ msgstr ""
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,7 +1019,7 @@ msgstr ""
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,15 +1028,15 @@ msgstr ""
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,11 +1044,11 @@ msgstr ""
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,11 +1056,11 @@ msgstr ""
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,19 +1074,19 @@ msgstr ""
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,16 +1094,16 @@ msgstr ""
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,11 +1112,11 @@ msgstr ""
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,20 +1124,20 @@ msgstr ""
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,7 +1145,7 @@ msgstr ""
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,7 +1153,7 @@ msgstr ""
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,19 +1161,19 @@ msgstr ""
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,7 +1181,7 @@ msgstr ""
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,64 +1199,64 @@ msgstr ""
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,37 +1269,37 @@ msgstr ""
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,7 +1307,7 @@ msgstr ""
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
 
@@ -1320,7 +1356,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1320
  msgstr ""
1321
 
1322
  #: dashboard/adrotate-info.php:139
1323
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1324
  msgstr ""
1325
 
1326
  #: dashboard/adrotate-info.php:148
@@ -1387,7 +1423,7 @@ msgstr "Para un máximo de cinco instalaciones de WordPress."
1387
  msgid "Developer License"
1388
  msgstr "Developer Licencia"
1389
 
1390
- #: dashboard/adrotate-info.php:182
1391
  msgid "Unlimited WordPress installations and/or networks."
1392
  msgstr ""
1393
 
@@ -1510,10 +1546,6 @@ msgstr ""
1510
  "los anunciantes crean nuevos anuncios. Que no se te pase más ninguna fecha "
1511
  "de expiración de tus anuncios."
1512
 
1513
- #: dashboard/adrotate-pro.php:83
1514
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1515
- msgstr "Activar AdRotate en ilimitadas instalaciones de WordPress y/o redes."
1516
-
1517
  #: dashboard/publisher/adrotate-ads-edit.php:46
1518
  msgid "The AdCode cannot be empty!"
1519
  msgstr "El AdCode no puede estar vacío!"
@@ -1528,11 +1560,9 @@ msgstr "Ha utilizado %image% en su AdCode pero no ha seleccionado una imagen!"
1528
 
1529
  #: dashboard/publisher/adrotate-ads-edit.php:55
1530
  msgid ""
1531
- "There is a problem saving the image specification. Please reset your image "
1532
- "and re-save the ad!"
1533
  msgstr ""
1534
- "Existe un problema al guardar la especificación de la imagen. Por favor, "
1535
- "restablece tu imagen y vuelva a guardar el anuncio!"
1536
 
1537
  #: dashboard/publisher/adrotate-ads-edit.php:58
1538
  msgid ""
@@ -1541,9 +1571,7 @@ msgid ""
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
@@ -1669,17 +1697,17 @@ msgstr ""
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
 
@@ -1696,9 +1724,9 @@ 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"
@@ -1716,7 +1744,7 @@ msgstr "Guardar Anuncio"
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
 
@@ -1973,44 +2001,44 @@ 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"
2016
 
@@ -2042,23 +2070,23 @@ 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
2063
  #: dashboard/publisher/adrotate-groups-report.php:44
2064
  msgid "CTR"
@@ -2066,8 +2094,8 @@ msgstr "CTR"
2066
 
2067
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2068
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2069
- #: dashboard/publisher/adrotate-ads-main.php:85
2070
- #: dashboard/publisher/adrotate-groups-main.php:69
2071
  msgid "Edit"
2072
  msgstr "Editar"
2073
 
@@ -2078,7 +2106,7 @@ msgstr "Estadísticas"
2078
 
2079
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2080
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2081
- #: dashboard/publisher/adrotate-ads-main.php:85
2082
  #, fuzzy
2083
  msgid "Groups:"
2084
  msgstr "Grupos"
@@ -2118,7 +2146,7 @@ msgid "For 7 days"
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,27 +2160,22 @@ msgid "Export to XML"
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
 
2139
- #: dashboard/publisher/adrotate-ads-main.php:43
2140
  msgid "Shown"
2141
  msgstr "Mostrado"
2142
 
2143
- #: dashboard/publisher/adrotate-ads-main.php:44
2144
- #: dashboard/publisher/adrotate-ads-main.php:46
2145
- #: dashboard/publisher/adrotate-groups-main.php:36
2146
- #: dashboard/publisher/adrotate-groups-main.php:38
2147
  msgid "Today"
2148
  msgstr "Hoy"
2149
 
2150
- #: dashboard/publisher/adrotate-ads-main.php:85
2151
- #: dashboard/publisher/adrotate-groups-main.php:69
2152
- msgid "Report"
2153
- msgstr "Informe"
2154
-
2155
- #: dashboard/publisher/adrotate-ads-main.php:103
2156
  msgid "No ads created yet!"
2157
  msgstr "Todavia no se han creado anuncios!"
2158
 
@@ -2299,7 +2322,7 @@ 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
 
@@ -2366,11 +2389,6 @@ msgstr ""
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"
@@ -2398,18 +2416,18 @@ 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
@@ -2491,11 +2509,11 @@ msgstr "Después del anuncio"
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
 
@@ -2515,11 +2533,11 @@ msgstr "Está a punto de eliminar un grupo"
2515
  msgid "This action can not be undone!"
2516
  msgstr "Esta acción no se puede deshacerse!"
2517
 
2518
- #: dashboard/publisher/adrotate-groups-main.php:39
2519
  msgid "Code"
2520
  msgstr "Código"
2521
 
2522
- #: dashboard/publisher/adrotate-groups-main.php:82
2523
  msgid "No groups created!"
2524
  msgstr "No hay grupos creados!"
2525
 
@@ -2527,6 +2545,46 @@ msgstr "No hay grupos creados!"
2527
  msgid "Statistics for group"
2528
  msgstr "Estadisticas por Grupo"
2529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2530
  #~ msgid "Usage:"
2531
  #~ msgstr "Utilización:"
2532
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:803
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-output.php:742
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
+ #: adrotate-output.php:743
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:744
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:745
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
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:786
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:791
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:797
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:797
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:803
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
+ #: adrotate-output.php:828
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
+ #: adrotate-output.php:828
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
+ #: adrotate-output.php:830
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:830
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
+ #: adrotate-output.php:832
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
+ #: adrotate-output.php:832
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
+ #: adrotate-output.php:834
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
+ #: adrotate-output.php:834
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
+ #: adrotate-output.php:834
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
+ #: adrotate-output.php:834
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
+ #: adrotate-output.php:846
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
+ #: adrotate-output.php:847
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:847
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:847
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:891
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:891
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
+ #: adrotate-output.php:891 adrotate-output.php:967
175
  #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:891
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:927
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
+ #: adrotate-output.php:928
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:930
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:931
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
+ #: adrotate-output.php:932
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
+ #: adrotate-output.php:933
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
+ #: adrotate-output.php:959
 
 
 
 
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
216
 
217
+ #: adrotate-output.php:960
218
  msgid "Brought to you by"
219
  msgstr "Presentado por"
220
 
221
+ #: adrotate-output.php:967
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:967
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:967
232
  msgid "rating"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:967
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "Revise el anuncio aquí:"
239
 
240
+ #: adrotate-output.php:967
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:970
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
249
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
250
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
251
 
252
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Visite la"
255
 
256
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "página web"
259
 
260
+ #: adrotate-output.php:1000
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Disponible en AdRotate Pro"
263
 
264
+ #: adrotate-output.php:1000
265
  msgid "More information..."
266
  msgstr "Más información..."
267
 
268
+ #: adrotate-output.php:1001
269
  msgid "This feature is available in AdRotate Pro"
270
  msgstr "Esta función está disponible en AdRotate Pro"
271
 
272
+ #: adrotate-output.php:1001
273
  msgid "Learn more"
274
  msgstr "Aprender más"
275
 
406
  msgid "Manage Groups"
407
  msgstr "Gestionar Grupos"
408
 
409
+ #: adrotate.php:111 adrotate.php:441
410
  #, fuzzy
411
  msgid "Manage Schedules"
412
  msgstr "Gestionar Programas"
473
  msgid "Export created"
474
  msgstr "Exportación Creada"
475
 
476
+ #: adrotate.php:221
477
  msgid "Action prohibited"
478
  msgstr "Acción prohibida"
479
 
480
+ #: adrotate.php:223 adrotate.php:371
481
  msgid "No data found in selected time period"
482
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
483
 
484
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
485
  msgid "Manage"
486
  msgstr "Gestionar"
487
 
488
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
489
  msgid "Add New"
490
  msgstr "Añadir Nuevo"
491
 
492
+ #: adrotate.php:360
493
  msgid "Group Management"
494
  msgstr "Administración de Grupos"
495
 
496
+ #: adrotate.php:363
497
  msgid "Group created"
498
  msgstr "Grupo creado"
499
 
500
+ #: adrotate.php:365
501
  msgid "Group updated"
502
  msgstr "Grupo actualizado"
503
 
504
+ #: adrotate.php:367
505
  msgid "Group deleted"
506
  msgstr "Grupo borrado"
507
 
508
+ #: adrotate.php:369
509
  msgid "Group including it's Ads deleted"
510
  msgstr "Grupo incluyendo sus anuncios eliminados"
511
 
512
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
513
+ #: dashboard/publisher/adrotate-groups-main.php:72
514
+ msgid "Report"
515
+ msgstr "Informe"
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:177
530
+ #: dashboard/publisher/adrotate-ads-main.php:114
531
  #: dashboard/publisher/adrotate-groups-edit.php:75
532
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-main-disabled.php:35
552
  #: dashboard/publisher/adrotate-ads-main-error.php:39
553
  #: dashboard/publisher/adrotate-ads-main.php:39
554
  #: dashboard/publisher/adrotate-groups-main.php:32
555
  msgid "ID"
556
  msgstr "ID"
557
 
558
+ #: adrotate.php:460
559
  #, fuzzy
560
  msgid "Start"
561
  msgstr "Iniciar"
562
 
563
+ #: adrotate.php:460
564
  #, fuzzy
565
  msgid "End"
566
  msgstr "Finalizar"
567
 
568
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
569
  #: dashboard/publisher/adrotate-groups-main.php:34
570
  msgid "Ads"
571
  msgstr "Anuncios"
572
 
573
+ #: adrotate.php:463
574
  msgid "Max Clicks"
575
  msgstr "Número máximo de Clics"
576
 
577
+ #: adrotate.php:464
578
  msgid "Max Impressions"
579
  msgstr "Número máximo de Impresiones"
580
 
581
+ #: adrotate.php:494
582
  #, fuzzy
583
  msgid "No schedules created yet!"
584
  msgstr "Todavia no se han creado programas!"
585
 
586
+ #: adrotate.php:499
587
  #, fuzzy
588
  msgid "Easily manage your schedules from here with AdRotate Pro."
589
  msgstr "Obtenga más funciones con AdRotate Pro"
590
 
591
+ #: adrotate.php:499 adrotate.php:562
592
  #, fuzzy
593
  msgid "Upgrade today!"
594
  msgstr "Hoy"
595
 
596
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
597
+ #: dashboard/publisher/adrotate-groups-edit.php:383
598
  msgid "Expires soon."
599
  msgstr "Caduca pronto."
600
 
601
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
602
+ #: dashboard/publisher/adrotate-groups-edit.php:384
603
  msgid "Has expired."
604
  msgstr "Ha expirado."
605
 
606
+ #: adrotate.php:527
607
  #, fuzzy
608
  msgid "Media Management available in AdRotate Pro"
609
  msgstr "Esta función está disponible en AdRotate Pro"
610
 
611
+ #: adrotate.php:529
612
  #, fuzzy
613
  msgid ""
614
  "Upload images to the AdRotate Pro banners folder from here. This is "
617
  "Cargar las imágenes en la carpeta de banners de AdRotate Pro desde aquí. "
618
  "Esto es especialmente útil si utiliza publicidad con múltiples imágenes."
619
 
620
+ #: adrotate.php:529
621
  #, fuzzy
622
  msgid "Media uploading and management is available in AdRotate Pro."
623
  msgstr "Esta función está disponible en AdRotate Pro"
624
 
625
+ #: adrotate.php:531
626
  #, fuzzy
627
  msgid "Upload new banner image"
628
  msgstr "Cargar una nueva Imagen de Banner"
629
 
630
+ #: adrotate.php:532
631
  #, fuzzy
632
  msgid "Accepted files are:"
633
  msgstr "Los archivos aceptados son:"
634
 
635
+ #: adrotate.php:532
636
  #, fuzzy
637
  msgid "Maximum size is 512Kb."
638
  msgstr "El tamaño máximo es 512Kb."
639
 
640
+ #: adrotate.php:532
641
  #, fuzzy
642
  msgid "Important:"
643
  msgstr "Importante:"
644
 
645
+ #: adrotate.php:532
646
  #, fuzzy
647
  msgid ""
648
  "Make sure your file has no spaces or special characters in the name. Replace "
651
  "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
652
  "caracteres especiales. Reemplace los espacios con un - o _."
653
 
654
+ #: adrotate.php:534
655
  #, fuzzy
656
  msgid ""
657
  "For responsive adverts make sure the filename is in the following format; "
661
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
662
  "de imágenes del mismo tamaño."
663
 
664
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
665
  msgid ""
666
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
667
  "filename instead of \".full\" for the various viewports."
670
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
671
  "diferentes visores."
672
 
673
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
674
  #: dashboard/publisher/adrotate-groups-edit.php:308
675
  #: dashboard/publisher/adrotate-groups-edit.php:316
676
  msgid "Example:"
677
  msgstr "Ejemplo:"
678
 
679
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
680
  #, fuzzy
681
  msgid ""
682
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
685
  "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
686
  "distintas ventanas gráficas. Se necesita jQuery."
687
 
688
+ #: adrotate.php:540
689
  #, fuzzy
690
  msgid "Upload image"
691
  msgstr "Subir imagen"
692
 
693
+ #: adrotate.php:543
694
  #, fuzzy
695
  msgid "Available banner images in"
696
  msgstr "Los banners estan disponibles en"
697
 
698
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
699
  msgid "Name"
700
  msgstr "Nombre"
701
 
702
+ #: adrotate.php:549
703
  #, fuzzy
704
  msgid "Actions"
705
  msgstr "Acciones"
706
 
707
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
708
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
709
  #: dashboard/publisher/adrotate-ads-main-error.php:21
710
  #: dashboard/publisher/adrotate-ads-main.php:22
711
  msgid "Delete"
712
  msgstr "Borrar"
713
 
714
+ #: adrotate.php:562
715
  #, fuzzy
716
  msgid ""
717
  "Make sure the banner images are not in use by adverts when you delete them!"
719
  "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
720
  "anuncios cuando las elimine!"
721
 
722
+ #: adrotate.php:562
723
  #, fuzzy
724
  msgid "Manage your banner folder from here with AdRotate Pro."
725
  msgstr "Obtenga más funciones con AdRotate Pro"
726
 
727
+ #: adrotate.php:606
728
  msgid "AdRotate Settings"
729
  msgstr "Ajustes AdRotate"
730
 
731
+ #: adrotate.php:609
732
  msgid "Settings saved"
733
  msgstr "Ajustes guardados"
734
 
735
+ #: adrotate.php:611
736
  msgid "Database optimized"
737
  msgstr "Base de Datos optimizada"
738
 
739
+ #: adrotate.php:613
740
  msgid "Database repaired"
741
  msgstr "Base de Datos reparada"
742
 
743
+ #: adrotate.php:615
744
  msgid "Ads evaluated and statuses have been corrected where required"
745
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
746
 
747
+ #: adrotate.php:617
748
  msgid "Empty database records removed"
749
  msgstr "Se han eliminado los registros vacios de la base de datos"
750
 
751
+ #: adrotate.php:619
752
  msgid "Database can only be optimized or cleaned once every hour"
753
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
754
 
755
+ #: adrotate.php:627
756
  msgid "Access Rights"
757
  msgstr "Permisos de acceso"
758
 
759
+ #: adrotate.php:628
760
  msgid "Who has access to what?"
761
  msgstr "¿Quién tiene acceso a qué?"
762
 
763
+ #: adrotate.php:631
764
  msgid "Manage/Add/Edit adverts"
765
  msgstr "Gestionar/Añadir/Editar anuncios"
766
 
767
+ #: adrotate.php:635
768
  msgid "Role to see and add/edit ads."
769
  msgstr "Perfil para ver y añadir/editar los anuncios."
770
 
771
+ #: adrotate.php:639
772
  msgid "Delete/Reset adverts"
773
  msgstr "Borrar/Restablecer anuncios"
774
 
775
+ #: adrotate.php:643
776
  msgid "Role to delete ads and reset stats."
777
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
778
 
779
+ #: adrotate.php:647
780
  msgid "Manage/Add/Edit groups"
781
  msgstr "Gestionar/Añadir/Editar grupos"
782
 
783
+ #: adrotate.php:651
784
  msgid "Role to see and add/edit groups."
785
  msgstr "Perfil para ver y añadir/editar grupos."
786
 
787
+ #: adrotate.php:655
788
  msgid "Delete groups"
789
  msgstr "Eliminar grupos"
790
 
791
+ #: adrotate.php:659
792
  msgid "Role to delete groups."
793
  msgstr "Perfil para eliminar grupos"
794
 
795
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
796
+ #: adrotate.php:890
797
  msgid "Update Options"
798
  msgstr "Actualizar Opciones"
799
 
800
+ #: adrotate.php:691
801
  msgid "Statistics"
802
  msgstr "Estadísticas"
803
 
804
+ #: adrotate.php:694
805
+ msgid "How to track stats"
806
+ msgstr ""
807
 
808
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
809
+ #: dashboard/publisher/adrotate-groups-edit.php:240
810
+ msgid "Disabled"
811
+ msgstr "Desactivado"
812
 
813
+ #: adrotate.php:703
814
+ msgid "No impressions and clicks are recorded for any of your adverts."
815
+ msgstr ""
816
+
817
+ #: adrotate.php:704
818
+ msgid "Tracks impressions and clicks internally."
819
+ msgstr ""
820
+
821
+ #: adrotate.php:705
822
+ msgid ""
823
+ "Click and Impression recording, Click and impression limits, impression "
824
+ "spread for schedules, local stats display."
825
  msgstr ""
 
 
826
 
827
+ #: adrotate.php:706
828
+ msgid ""
829
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
830
+ "attributes."
831
+ msgstr ""
832
+
833
+ #: adrotate.php:706 adrotate.php:708
834
+ msgid "Available in AdRotate Pro!"
835
+ msgstr ""
836
+
837
+ #: adrotate.php:707
838
+ msgid ""
839
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
840
+ "Contents."
841
+ msgstr ""
842
+
843
+ #: adrotate.php:708
844
+ msgid ""
845
+ "Requires Google Analytics tracker installed in your sites footer! uses "
846
+ "onClick() in adverts."
847
+ msgstr ""
848
+
849
+ #: adrotate.php:709
850
+ msgid ""
851
+ "Click and Impression recording via Cookie, stats are displayed in Events."
852
+ msgstr ""
853
+
854
+ #: adrotate.php:714
855
  msgid "Impressions timer"
856
  msgstr "Temporizador de Impresiones"
857
 
858
+ #: adrotate.php:716 adrotate.php:723
859
  msgid "Seconds."
860
  msgstr "Segundos."
861
 
862
+ #: adrotate.php:717
863
  #, fuzzy
864
  msgid "Default: 60."
865
  msgstr "Predeterminado"
866
 
867
+ #: adrotate.php:717
868
  #, fuzzy
869
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
870
  msgstr ""
871
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
872
 
873
+ #: adrotate.php:721
874
  msgid "Clicks timer"
875
  msgstr "Temporizador de Clics"
876
 
877
+ #: adrotate.php:724
878
  #, fuzzy
879
  msgid "Default: 86400."
880
  msgstr "Predeterminado"
881
 
882
+ #: adrotate.php:724
883
  #, fuzzy
884
  msgid ""
885
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
886
  msgstr ""
887
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
888
 
889
+ #: adrotate.php:729
890
  msgid "Bot filter"
891
  msgstr "Filtro de Motor de búsqueda"
892
 
893
+ #: adrotate.php:732
894
  msgid "User-Agent Filter"
895
  msgstr "Filtro de User-Agent"
896
 
897
+ #: adrotate.php:735
898
  msgid ""
899
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
900
  "prevent impressions and clicks counted on them."
903
  "crawlers / user-agents. Para prevenir contabilizar impresiones y clics "
904
  "realizados por ellos."
905
 
906
+ #: adrotate.php:736
907
  msgid ""
908
  "Keep in mind that this might give false positives. The word 'google' also "
909
  "matches 'googlebot', but not vice-versa. So be careful!"
911
  "Tenga en cuenta que esto puede dar falsos positivos. La palabra 'google' "
912
  "también coincide con 'googlebot', pero no viceversa. Así que ten cuidado!"
913
 
914
+ #: adrotate.php:736
915
  msgid "Keep your list up-to-date"
916
  msgstr "Mantenga su lista al día"
917
 
918
+ #: adrotate.php:737
919
  msgid ""
920
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
921
  "other characters are stripped out."
923
  "Utilice solamente palabras con caracteres alfanuméricos, [- _] se permite "
924
  "también. Todos los demás caracteres se eliminaran."
925
 
926
+ #: adrotate.php:738
927
  msgid ""
928
  "Additionally to the list specified here, empty User-Agents are blocked as "
929
  "well."
931
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
932
  "bloqueados."
933
 
934
+ #: adrotate.php:738
935
  msgid "Learn more about"
936
  msgstr "Más información sobre"
937
 
938
+ #: adrotate.php:738
939
  msgid "user-agents"
940
  msgstr "user-agents"
941
 
942
+ #: adrotate.php:747
943
  msgid "Miscellaneous"
944
  msgstr "Varios"
945
 
946
+ #: adrotate.php:750
947
  msgid "Widget alignment"
948
  msgstr "Alineación de Widget"
949
 
950
+ #: adrotate.php:751
951
  msgid ""
952
  "Check this box if your widgets do not align in your themes sidebar. (Does "
953
  "not always help!)"
955
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
956
  "plantillas (theme). (No siempre ayuda!)"
957
 
958
+ #: adrotate.php:754
959
  msgid "Widget padding"
960
  msgstr "Relleno de Widget"
961
 
962
+ #: adrotate.php:755
963
  msgid ""
964
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
965
  "not always work!)"
967
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
968
  "de los anuncios en los widgets. (No siempre funciona!)"
969
 
970
+ #: adrotate.php:760 adrotate.php:771
971
  #, fuzzy
972
  msgid "NOTICE:"
973
  msgstr "Aviso"
974
 
975
+ #: adrotate.php:761
976
  msgid ""
977
  "You have enabled W3 Total Caching support but not defined the security hash. "
978
  "You need to add the following line to your wp-config.php near the bottom or "
984
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
985
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
986
 
987
+ #: adrotate.php:765
988
  msgid "W3 Total Caching"
989
  msgstr "W3 Total Cache"
990
 
991
+ #: adrotate.php:766
992
  msgid "Check this box if you use W3 Total Caching on your site."
993
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
994
 
995
+ #: adrotate.php:772
996
  msgid ""
997
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
998
  "this function will not work. WP Super Cache has discontinued support for "
1002
  "esta función no funcionará. WP Super Cache ha interrumpido el soporte para "
1003
  "el contenido dinámico."
1004
 
1005
+ #: adrotate.php:776
1006
  msgid "WP Super Cache"
1007
  msgstr "WP Super Cache"
1008
 
1009
+ #: adrotate.php:777
1010
  msgid "Check this box if you use WP Super Cache on your site."
1011
  msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
1012
 
1013
+ #: adrotate.php:782
1014
  msgid ""
1015
  "It may take a while for the ad to start rotating. The caching plugin needs "
1016
  "to refresh the cache. This can take up to a week if not done manually."
1019
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
1020
  "semana si no se realiza de forma manual."
1021
 
1022
+ #: adrotate.php:782
1023
  msgid ""
1024
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1025
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1028
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
1029
  "código PHP la exclusión a ti mismo."
1030
 
1031
+ #: adrotate.php:786
1032
  msgid "Javascript"
1033
  msgstr ""
1034
 
1035
+ #: adrotate.php:789
1036
  msgid "Load jQuery"
1037
  msgstr "Cargar jQuery"
1038
 
1039
+ #: adrotate.php:790
1040
  msgid ""
1041
  "jQuery is required for all Javascript features below. Enable this if your "
1042
  "theme does not load jQuery already."
1044
  "jQuery es necesaria para todas las características Javascript siguientes. "
1045
  "Habilite esta opción si su tema no carga jQuery por defecto."
1046
 
1047
+ #: adrotate.php:793
1048
  msgid "Load in footer?"
1049
  msgstr "¿Cargar en el pie de página?"
1050
 
1051
+ #: adrotate.php:794
1052
  msgid ""
1053
  "Enable if you want to load the above libraries in the footer. Your theme "
1054
  "needs to call wp_footer() for this to work."
1056
  "Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
1057
  "tema tiene que llamar a la función wp_footer() para que esto funcione."
1058
 
1059
+ #: adrotate.php:802
1060
  msgid "Maintenance"
1061
  msgstr "Mantenimiento"
1062
 
1063
+ #: adrotate.php:803
1064
  msgid ""
1065
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1066
  "They only apply to your ads/groups and stats. Not to other settings or other "
1074
  "Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
1075
  "cuando se siente o nota que su base de datos va lenta o no responde."
1076
 
1077
+ #: adrotate.php:818 adrotate.php:820
1078
  msgid "Optimize Database"
1079
  msgstr "Optimizar la Base de Datos"
1080
 
1081
+ #: adrotate.php:820
1082
  msgid "You are about to optimize the AdRotate database."
1083
  msgstr "Vas a optimizar la base de datos AdRotate."
1084
 
1085
+ #: adrotate.php:820
1086
  msgid "Did you make a backup of your database?"
1087
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
1088
 
1089
+ #: adrotate.php:820
1090
  msgid ""
1091
  "This may take a moment and may cause your website to respond slow "
1092
  "temporarily!"
1094
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
1095
  "lentamente temporalmente!"
1096
 
1097
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1098
  #: dashboard/publisher/adrotate-groups-main.php:24
1099
  msgid "OK to continue, CANCEL to stop."
1100
  msgstr "OK para continuar, CANCELAR para detenerlo."
1101
 
1102
+ #: adrotate.php:821
1103
  msgid "Cleans up overhead data in the AdRotate tables."
1104
  msgstr "Limpiar los datos generales de las tablas AdRotate."
1105
 
1106
+ #: adrotate.php:822
1107
  msgid ""
1108
  "Overhead data is accumulated garbage resulting from many changes you've "
1109
  "made. This can vary from nothing to hundreds of KiB of data."
1112
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
1113
  "datos."
1114
 
1115
+ #: adrotate.php:826 adrotate.php:828
1116
  msgid "Clean-up Database"
1117
  msgstr "Limpieza de la Base de Datos"
1118
 
1119
+ #: adrotate.php:828
1120
  msgid ""
1121
  "You are about to clean up your database. This may delete expired schedules "
1122
  "and older statistics."
1124
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
1125
  "estadísticas más antigüas."
1126
 
1127
+ #: adrotate.php:828
1128
  msgid "Are you sure you want to continue?"
1129
  msgstr "¿Está seguro que desea continuar?"
1130
 
1131
+ #: adrotate.php:828 adrotate.php:836
1132
  msgid "This might take a while and may slow down your site during this action!"
1133
  msgstr ""
1134
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
1135
 
1136
+ #: adrotate.php:829
1137
  msgid "Delete stats older than 356 days (Optional)."
1138
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
1139
 
1140
+ #: adrotate.php:830
1141
  msgid ""
1142
  "AdRotate creates empty records when you start making ads or groups. In rare "
1143
  "occasions these records are faulty."
1145
  "AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
1146
  "grupos. En raras ocasiones, estos registros son defectuosos."
1147
 
1148
+ #: adrotate.php:830
1149
  msgid ""
1150
  "If you made an ad or group that does not save when you make it use this "
1151
  "button to delete those empty records."
1153
  "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
1154
  "utilize este botón para borrar esos registros vacíos."
1155
 
1156
+ #: adrotate.php:830
1157
  msgid ""
1158
  "Additionally you can clean up old statistics. This will improve the speed of "
1159
  "your site."
1161
  "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
1162
  "velocidad de su sitio."
1163
 
1164
+ #: adrotate.php:834
1165
  msgid "Re-evaluate Ads"
1166
  msgstr "Reevaluar Anuncios"
1167
 
1168
+ #: adrotate.php:836
1169
  msgid "Re-evaluate all ads"
1170
  msgstr "Reevaluar todos los Anuncios"
1171
 
1172
+ #: adrotate.php:836
1173
  msgid "You are about to check all ads for errors."
1174
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
1175
 
1176
+ #: adrotate.php:837
1177
  msgid ""
1178
  "This will apply all evaluation rules to all ads to see if any error slipped "
1179
  "in. Normally you should not need this feature."
1181
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
1182
  "algún error. Normalmente no debería necesitar esta función."
1183
 
1184
+ #: adrotate.php:841
1185
  msgid ""
1186
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1187
  "becomes unusable in any way or by any means in whichever way I will not take "
1199
  "alegar que funcionaba antes de hacer clic en estos botones no es razón "
1200
  "suficiente."
1201
 
1202
+ #: adrotate.php:849
1203
  msgid "Troubleshooting"
1204
  msgstr "Solución de problemas"
1205
 
1206
+ #: adrotate.php:852
1207
  msgid "Current version:"
1208
  msgstr "Versión actual:"
1209
 
1210
+ #: adrotate.php:853
1211
  msgid "Previous version:"
1212
  msgstr "Versión anterior:"
1213
 
1214
+ #: adrotate.php:856
1215
  msgid "Current database version:"
1216
  msgstr "Versión actual de la base de datos:"
1217
 
1218
+ #: adrotate.php:857
1219
  msgid "Previous database version:"
1220
  msgstr "Versión anterior de la base de datos:"
1221
 
1222
+ #: adrotate.php:860
1223
  #, fuzzy
1224
  msgid "Ad evaluation next run:"
1225
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
1226
 
1227
+ #: adrotate.php:861 adrotate.php:865
1228
  msgid "Not scheduled!"
1229
  msgstr "No Programada!"
1230
 
1231
+ #: adrotate.php:864
1232
  msgid "Clean Trackerdata next run:"
1233
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
1234
 
1235
+ #: adrotate.php:868
1236
  msgid "Current status of adverts"
1237
  msgstr "Estado actual de los anuncios"
1238
 
1239
+ #: adrotate.php:869
1240
  msgid "Normal"
1241
  msgstr "Normal"
1242
 
1243
+ #: adrotate.php:869
1244
  msgid "Error"
1245
  msgstr "Error"
1246
 
1247
+ #: adrotate.php:869
1248
  msgid "Expired"
1249
  msgstr "Caducado"
1250
 
1251
+ #: adrotate.php:869
1252
  msgid "Expires Soon"
1253
  msgstr "Caduca Pronto"
1254
 
1255
+ #: adrotate.php:869
1256
  msgid "Unknown Status"
1257
  msgstr "Estado Desconocido"
1258
 
1259
+ #: adrotate.php:872
1260
  msgid ""
1261
  "NOTE: The below options are not meant for normal use and are only there for "
1262
  "developers to review saved settings or how ads are selected. These can be "
1269
  "para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
1270
  "USO CON NORMALIDAD!"
1271
 
1272
+ #: adrotate.php:876
1273
  msgid "Developer Debug"
1274
  msgstr "Depurar (Test) del Desarrollador"
1275
 
1276
+ #: adrotate.php:878
1277
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1278
  msgstr ""
1279
  "Solucionar problemas de los anuncios y de que forma se seleccionan si los "
1280
  "hay, tiene salida en las aplicaciones para usuario."
1281
 
1282
+ #: adrotate.php:879
1283
  msgid "Show all settings, dashboard routines and related values."
1284
  msgstr ""
1285
  "Mostrar todas las configuraciones, las rutinas del panel y los valores "
1286
  "relacionados."
1287
 
1288
+ #: adrotate.php:880
1289
  msgid "Show array of all userroles and capabilities."
1290
  msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
1291
 
1292
+ #: adrotate.php:881
1293
  msgid "Review saved advertisers! Visible to advertisers."
1294
  msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
1295
 
1296
+ #: adrotate.php:882
1297
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1298
  msgstr ""
1299
  "Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
1300
  "Visible sólo a los editores."
1301
 
1302
+ #: adrotate.php:883
1303
  msgid ""
1304
  "Disable timers for clicks and impressions and enable a alert window for "
1305
  "clicktracking."
1307
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
1308
  "ventana de alerta para el seguimiento de clics."
1309
 
1310
+ #: adrotate.php:884
1311
  msgid "Temporarily disable encryption on the redirect url."
1312
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
1313
 
1356
  msgstr ""
1357
 
1358
  #: dashboard/adrotate-info.php:139
1359
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1360
  msgstr ""
1361
 
1362
  #: dashboard/adrotate-info.php:148
1423
  msgid "Developer License"
1424
  msgstr "Developer Licencia"
1425
 
1426
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1427
  msgid "Unlimited WordPress installations and/or networks."
1428
  msgstr ""
1429
 
1546
  "los anunciantes crean nuevos anuncios. Que no se te pase más ninguna fecha "
1547
  "de expiración de tus anuncios."
1548
 
 
 
 
 
1549
  #: dashboard/publisher/adrotate-ads-edit.php:46
1550
  msgid "The AdCode cannot be empty!"
1551
  msgstr "El AdCode no puede estar vacío!"
1560
 
1561
  #: dashboard/publisher/adrotate-ads-edit.php:55
1562
  msgid ""
1563
+ "There is a problem saving the image. Please reset your image and re-save the "
1564
+ "ad!"
1565
  msgstr ""
 
 
1566
 
1567
  #: dashboard/publisher/adrotate-ads-edit.php:58
1568
  msgid ""
1571
  msgstr ""
1572
 
1573
  #: dashboard/publisher/adrotate-ads-edit.php:61
1574
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1575
  msgstr ""
1576
 
1577
  #: dashboard/publisher/adrotate-ads-edit.php:64
1697
  "un contenido, ese campo tiene prioridad."
1698
 
1699
  #: dashboard/publisher/adrotate-ads-edit.php:156
1700
+ msgid "Statistics:"
1701
+ msgstr ""
1702
 
1703
  #: dashboard/publisher/adrotate-ads-edit.php:158
1704
+ msgid "Enable click and impression tracking for this advert."
1705
+ msgstr ""
1706
 
1707
  #: dashboard/publisher/adrotate-ads-edit.php:159
1708
  msgid ""
1709
  "Note: Clicktracking does not work for Javascript adverts such as those "
1710
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1711
  "supported."
1712
  msgstr ""
1713
 
1724
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1725
 
1726
  #: dashboard/publisher/adrotate-ads-edit.php:177
1727
+ #: dashboard/publisher/adrotate-ads-main.php:114
1728
  #: dashboard/publisher/adrotate-groups-edit.php:75
1729
+ #: dashboard/publisher/adrotate-groups-main.php:92
1730
  #, fuzzy
1731
  msgid "Get more features with AdRotate Pro."
1732
  msgstr "Obtenga más funciones con AdRotate Pro"
1744
  #: dashboard/publisher/adrotate-ads-edit.php:437
1745
  #: dashboard/publisher/adrotate-groups-edit.php:154
1746
  #: dashboard/publisher/adrotate-groups-edit.php:297
1747
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1748
  msgid "Cancel"
1749
  msgstr "Cancelar"
1750
 
2001
  msgstr "Anuncios en grupo"
2002
 
2003
  #: dashboard/publisher/adrotate-ads-edit.php:415
2004
+ #: dashboard/publisher/adrotate-groups-main.php:61
2005
  msgid "Default"
2006
  msgstr "Predeterminado"
2007
 
2008
  #: dashboard/publisher/adrotate-ads-edit.php:416
2009
+ #: dashboard/publisher/adrotate-groups-main.php:62
2010
  msgid "Dynamic"
2011
  msgstr "Dinámico"
2012
 
2013
  #: dashboard/publisher/adrotate-ads-edit.php:416
2014
+ #: dashboard/publisher/adrotate-groups-main.php:62
2015
  msgid "second rotation"
2016
  msgstr "segundos rotación"
2017
 
2018
  #: dashboard/publisher/adrotate-ads-edit.php:417
2019
+ #: dashboard/publisher/adrotate-groups-main.php:63
2020
  msgid "Block"
2021
  msgstr "Block"
2022
 
2023
  #: dashboard/publisher/adrotate-ads-edit.php:417
2024
+ #: dashboard/publisher/adrotate-groups-main.php:63
2025
  msgid "grid"
2026
  msgstr "cuadrícula"
2027
 
2028
  #: dashboard/publisher/adrotate-ads-edit.php:418
2029
  #: dashboard/publisher/adrotate-groups-edit.php:192
2030
+ #: dashboard/publisher/adrotate-groups-main.php:64
2031
  msgid "Post Injection"
2032
  msgstr "Integrarlo después"
2033
 
2034
  #: dashboard/publisher/adrotate-ads-edit.php:419
2035
+ #: dashboard/publisher/adrotate-groups-main.php:65
2036
  msgid "Geolocation"
2037
  msgstr "Geolocalización"
2038
 
2039
  #: dashboard/publisher/adrotate-ads-edit.php:425
2040
  #: dashboard/publisher/adrotate-groups-edit.php:61
2041
+ #: dashboard/publisher/adrotate-groups-main.php:72
2042
  msgid "Mode"
2043
  msgstr "Modalidad"
2044
 
2070
 
2071
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2072
  #: dashboard/publisher/adrotate-ads-report.php:34
2073
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2074
+ #: dashboard/publisher/adrotate-groups-main.php:36
2075
  #: dashboard/publisher/adrotate-groups-report.php:40
2076
  msgid "Impressions"
2077
  msgstr "Impresiones"
2078
 
2079
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2080
+ #: dashboard/publisher/adrotate-ads-main.php:46
2081
  #: dashboard/publisher/adrotate-ads-report.php:35
2082
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2083
+ #: dashboard/publisher/adrotate-groups-main.php:38
2084
  #: dashboard/publisher/adrotate-groups-report.php:41
2085
  msgid "Clicks"
2086
  msgstr "Clics"
2087
 
2088
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2089
+ #: dashboard/publisher/adrotate-ads-main.php:48
2090
  #: dashboard/publisher/adrotate-ads-report.php:38
2091
  #: dashboard/publisher/adrotate-groups-report.php:44
2092
  msgid "CTR"
2094
 
2095
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2096
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2097
+ #: dashboard/publisher/adrotate-ads-main.php:87
2098
+ #: dashboard/publisher/adrotate-groups-main.php:72
2099
  msgid "Edit"
2100
  msgstr "Editar"
2101
 
2106
 
2107
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2108
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2109
+ #: dashboard/publisher/adrotate-ads-main.php:87
2110
  #, fuzzy
2111
  msgid "Groups:"
2112
  msgstr "Grupos"
2146
  msgstr "Por 7 días"
2147
 
2148
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2149
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2150
  msgid "Configuration errors."
2151
  msgstr "Errores de configuración."
2152
 
2160
  msgstr "Exportar"
2161
 
2162
  #: dashboard/publisher/adrotate-ads-main.php:42
2163
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2164
  msgid "Weight"
2165
  msgstr "Prioridad"
2166
 
2167
+ #: dashboard/publisher/adrotate-ads-main.php:44
2168
  msgid "Shown"
2169
  msgstr "Mostrado"
2170
 
2171
+ #: dashboard/publisher/adrotate-ads-main.php:45
2172
+ #: dashboard/publisher/adrotate-ads-main.php:47
2173
+ #: dashboard/publisher/adrotate-groups-main.php:37
2174
+ #: dashboard/publisher/adrotate-groups-main.php:39
2175
  msgid "Today"
2176
  msgstr "Hoy"
2177
 
2178
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2179
  msgid "No ads created yet!"
2180
  msgstr "Todavia no se han creado anuncios!"
2181
 
2322
 
2323
  #: dashboard/publisher/adrotate-groups-edit.php:153
2324
  #: dashboard/publisher/adrotate-groups-edit.php:296
2325
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2326
  msgid "Save Group"
2327
  msgstr "Guardar Grupo"
2328
 
2389
  msgid "Include ads in categories?"
2390
  msgstr "¿Incluir los anuncios en las categorías?"
2391
 
 
 
 
 
 
2392
  #: dashboard/publisher/adrotate-groups-edit.php:200
2393
  #: dashboard/publisher/adrotate-groups-edit.php:241
2394
  msgid "Before content"
2416
 
2417
  #: dashboard/publisher/adrotate-groups-edit.php:210
2418
  #: dashboard/publisher/adrotate-groups-edit.php:251
2419
+ msgid "the second paragraph"
2420
+ msgstr ""
2421
 
2422
  #: dashboard/publisher/adrotate-groups-edit.php:211
2423
  #: dashboard/publisher/adrotate-groups-edit.php:252
2424
+ msgid "the third paragraph"
2425
+ msgstr ""
2426
 
2427
  #: dashboard/publisher/adrotate-groups-edit.php:212
2428
  #: dashboard/publisher/adrotate-groups-edit.php:253
2429
+ msgid "the fourth paragraph"
2430
+ msgstr ""
2431
 
2432
  #: dashboard/publisher/adrotate-groups-edit.php:214
2433
  #: dashboard/publisher/adrotate-groups-edit.php:255
2509
  msgid "Select Ads"
2510
  msgstr "Seleccione Anuncios"
2511
 
2512
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2513
  msgid "Visible until"
2514
  msgstr "Visible hasta"
2515
 
2516
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2517
  msgid "No ads created!"
2518
  msgstr "No hay anuncios creados!"
2519
 
2533
  msgid "This action can not be undone!"
2534
  msgstr "Esta acción no se puede deshacerse!"
2535
 
2536
+ #: dashboard/publisher/adrotate-groups-main.php:41
2537
  msgid "Code"
2538
  msgstr "Código"
2539
 
2540
+ #: dashboard/publisher/adrotate-groups-main.php:87
2541
  msgid "No groups created!"
2542
  msgstr "No hay grupos creados!"
2543
 
2545
  msgid "Statistics for group"
2546
  msgstr "Estadisticas por Grupo"
2547
 
2548
+ #~ msgid "Enable stats"
2549
+ #~ msgstr "Habilitar las estadísticas"
2550
+
2551
+ #~ msgid "Track clicks and impressions."
2552
+ #~ msgstr "Seguimiento de clics e impresiones."
2553
+
2554
+ #, fuzzy
2555
+ #~ msgid ""
2556
+ #~ "Disabling this also disables click and impression limits on schedules."
2557
+ #~ msgstr ""
2558
+ #~ "Al desactivar esto, también se deshabilitan la limitación de clics e "
2559
+ #~ "impresiones en el calendario y desactiva los periodos de tiempo."
2560
+
2561
+ #~ msgid ""
2562
+ #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
2563
+ #~ msgstr ""
2564
+ #~ "Activar AdRotate en ilimitadas instalaciones de WordPress y/o redes."
2565
+
2566
+ #~ msgid ""
2567
+ #~ "There is a problem saving the image specification. Please reset your "
2568
+ #~ "image and re-save the ad!"
2569
+ #~ msgstr ""
2570
+ #~ "Existe un problema al guardar la especificación de la imagen. Por favor, "
2571
+ #~ "restablece tu imagen y vuelva a guardar el anuncio!"
2572
+
2573
+ #~ msgid "Clicktracking:"
2574
+ #~ msgstr "Seguimiento de Clics:"
2575
+
2576
+ #~ msgid "Enable click tracking for this advert."
2577
+ #~ msgstr "Activar el seguimiento de clics para este anuncio."
2578
+
2579
+ #~ msgid "the 2nd paragraph"
2580
+ #~ msgstr "el segundo párrafo"
2581
+
2582
+ #~ msgid "the 3rd paragraph"
2583
+ #~ msgstr "el tercer párrafo"
2584
+
2585
+ #~ msgid "the 4th paragraph"
2586
+ #~ msgstr "el cuarto párrafo"
2587
+
2588
  #~ msgid "Usage:"
2589
  #~ msgstr "Utilización:"
2590
 
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-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,19 +17,19 @@ msgstr ""
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,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: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,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:768
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:775 adrotate-output.php:777
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: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,155 +93,151 @@ msgstr ""
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,27 +245,27 @@ 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: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
 
@@ -407,7 +403,7 @@ msgstr "Gérer les pubs"
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"
@@ -474,173 +470,178 @@ msgstr ""
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,7 +652,7 @@ msgstr ""
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,13 +661,13 @@ msgstr ""
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,172 +676,207 @@ msgstr ""
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,7 +884,7 @@ msgstr ""
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,11 +892,11 @@ msgstr ""
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,7 +904,7 @@ msgstr ""
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,23 +912,23 @@ msgstr ""
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,11 +936,11 @@ msgstr ""
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,11 +948,11 @@ msgstr ""
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,15 +964,15 @@ msgstr ""
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,15 +982,15 @@ msgstr ""
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,7 +1000,7 @@ msgstr ""
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,15 +1009,15 @@ msgstr ""
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,11 +1025,11 @@ msgstr ""
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,11 +1037,11 @@ msgstr ""
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,19 +1055,19 @@ msgstr ""
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,16 +1075,16 @@ msgstr ""
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,11 +1093,11 @@ msgstr ""
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,21 +1105,21 @@ msgstr ""
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,7 +1127,7 @@ msgstr ""
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,7 +1136,7 @@ msgstr ""
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,19 +1144,19 @@ msgstr ""
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,7 +1165,7 @@ msgstr ""
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,63 +1182,63 @@ msgstr ""
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,37 +1251,37 @@ msgstr ""
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,7 +1289,7 @@ msgstr ""
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
 
@@ -1302,7 +1338,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1302
  msgstr ""
1303
 
1304
  #: dashboard/adrotate-info.php:139
1305
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1306
  msgstr ""
1307
 
1308
  #: dashboard/adrotate-info.php:148
@@ -1368,7 +1404,7 @@ msgstr "Pour un max de cinq installation Wordpress."
1368
  msgid "Developer License"
1369
  msgstr "Licence de Developpeur"
1370
 
1371
- #: dashboard/adrotate-info.php:182
1372
  msgid "Unlimited WordPress installations and/or networks."
1373
  msgstr ""
1374
 
@@ -1494,12 +1530,6 @@ msgstr ""
1494
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1495
  "d'expiration."
1496
 
1497
- #: dashboard/adrotate-pro.php:83
1498
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1499
- msgstr ""
1500
- "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
1501
- "réseaux."
1502
-
1503
  #: dashboard/publisher/adrotate-ads-edit.php:46
1504
  msgid "The AdCode cannot be empty!"
1505
  msgstr "Le code de la publicité ne peut être vide!"
@@ -1516,12 +1546,9 @@ msgstr ""
1516
 
1517
  #: dashboard/publisher/adrotate-ads-edit.php:55
1518
  msgid ""
1519
- "There is a problem saving the image specification. Please reset your image "
1520
- "and re-save the ad!"
1521
  msgstr ""
1522
- "Il y a un problème au niveau de la sauvergarde des spécifications de "
1523
- "l'image. Merci de bien vouloir réinitialiser votre image et réenregistrer la "
1524
- "publicité!"
1525
 
1526
  #: dashboard/publisher/adrotate-ads-edit.php:58
1527
  msgid ""
@@ -1530,9 +1557,7 @@ msgid ""
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
@@ -1655,17 +1680,17 @@ msgstr ""
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
 
@@ -1682,9 +1707,9 @@ 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
 
@@ -1701,7 +1726,7 @@ msgstr "Sauvegarder la pub"
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
 
@@ -1958,44 +1983,44 @@ 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"
2001
 
@@ -2027,23 +2052,23 @@ 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
2048
  #: dashboard/publisher/adrotate-groups-report.php:44
2049
  msgid "CTR"
@@ -2051,8 +2076,8 @@ msgstr "CTR"
2051
 
2052
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2053
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2054
- #: dashboard/publisher/adrotate-ads-main.php:85
2055
- #: dashboard/publisher/adrotate-groups-main.php:69
2056
  msgid "Edit"
2057
  msgstr "Modifier"
2058
 
@@ -2063,7 +2088,7 @@ msgstr "Statistiques"
2063
 
2064
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2065
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2066
- #: dashboard/publisher/adrotate-ads-main.php:85
2067
  #, fuzzy
2068
  msgid "Groups:"
2069
  msgstr "Groupes"
@@ -2103,7 +2128,7 @@ msgid "For 7 days"
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,27 +2141,22 @@ msgid "Export to XML"
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
 
2123
- #: dashboard/publisher/adrotate-ads-main.php:43
2124
  msgid "Shown"
2125
  msgstr "Montré"
2126
 
2127
- #: dashboard/publisher/adrotate-ads-main.php:44
2128
- #: dashboard/publisher/adrotate-ads-main.php:46
2129
- #: dashboard/publisher/adrotate-groups-main.php:36
2130
- #: dashboard/publisher/adrotate-groups-main.php:38
2131
  msgid "Today"
2132
  msgstr "Aujourd'hui"
2133
 
2134
- #: dashboard/publisher/adrotate-ads-main.php:85
2135
- #: dashboard/publisher/adrotate-groups-main.php:69
2136
- msgid "Report"
2137
- msgstr "Rapport"
2138
-
2139
- #: dashboard/publisher/adrotate-ads-main.php:103
2140
  msgid "No ads created yet!"
2141
  msgstr "Aucune pub n'a encore été créé!"
2142
 
@@ -2279,7 +2299,7 @@ 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
 
@@ -2347,11 +2367,6 @@ msgstr ""
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"
@@ -2379,18 +2394,18 @@ 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
@@ -2473,11 +2488,11 @@ msgstr "Après la pub"
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
 
@@ -2497,11 +2512,11 @@ msgstr "Vous allez supprimer un groupe"
2497
  msgid "This action can not be undone!"
2498
  msgstr "Ceci ne peux pas être défait!"
2499
 
2500
- #: dashboard/publisher/adrotate-groups-main.php:39
2501
  msgid "Code"
2502
  msgstr "Code"
2503
 
2504
- #: dashboard/publisher/adrotate-groups-main.php:82
2505
  msgid "No groups created!"
2506
  msgstr "Aucun groupe n'a été créé!"
2507
 
@@ -2509,6 +2524,48 @@ msgstr "Aucun groupe n'a été créé!"
2509
  msgid "Statistics for group"
2510
  msgstr "Statistiques pour le groupe"
2511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2512
  #, fuzzy
2513
  #~ msgid "Usage:"
2514
  #~ msgstr "Usage"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:803
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:742
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
+ #: adrotate-output.php:743
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:744
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:745
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
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:786
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:791
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:797
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:797
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:803
103
  msgid "An unknown error occured."
104
  msgstr "Une erreur inconnue s'est produite."
105
 
106
+ #: adrotate-output.php:828
107
  msgid "active ad(s) expired."
108
  msgstr "publicité(s) active(s) ont expirée(s)."
109
 
110
+ #: adrotate-output.php:828
111
  msgid "Take action now"
112
  msgstr "Agir maintenant"
113
 
114
+ #: adrotate-output.php:830
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:830
119
  msgid "Check it out"
120
  msgstr "Vérifier-le"
121
 
122
+ #: adrotate-output.php:832
123
  msgid "active ad(s) with configuration errors."
124
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
125
 
126
+ #: adrotate-output.php:832
127
  msgid "Solve this"
128
  msgstr "Résoudre"
129
 
130
+ #: adrotate-output.php:834
131
  msgid "ad(s) expired."
132
  msgstr "publicité(s) expirée(s)"
133
 
134
+ #: adrotate-output.php:834
135
  msgid "ad(s) are about to expire."
136
  msgstr "publicité(s) sont sur le point d'expirer"
137
 
138
+ #: adrotate-output.php:834
139
  msgid "ad(s) with configuration errors."
140
  msgstr "publicité(s) avec des erreurs de configuration."
141
 
142
+ #: adrotate-output.php:834
143
  msgid "Fix this as soon as possible"
144
  msgstr "Résoudre ce soucis dans les meilleurs délais"
145
 
146
+ #: adrotate-output.php:846
147
  #, fuzzy
148
  msgid "Learn More"
149
  msgstr "En savoir plus"
150
 
151
+ #: adrotate-output.php:847
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:847
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
+ #: adrotate-output.php:847
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:891
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:891
172
  msgid "manuals"
173
  msgstr "manuels"
174
 
175
+ #: adrotate-output.php:891 adrotate-output.php:967
176
  #: dashboard/publisher/adrotate-ads-edit.php:151
177
  msgid "and"
178
  msgstr ""
179
 
180
+ #: adrotate-output.php:891
181
  msgid "forums"
182
  msgstr ""
183
 
184
+ #: adrotate-output.php:927
185
  msgid "Useful Links"
186
  msgstr ""
187
 
188
+ #: adrotate-output.php:928
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:930
193
  msgid "AdRotate Page"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:931
197
  msgid "Getting Started With AdRotate"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:932
201
  msgid "AdRotate manuals"
202
  msgstr ""
203
 
204
+ #: adrotate-output.php:933
205
  msgid "AdRotate Support Forum"
206
  msgstr ""
207
 
208
+ #: adrotate-output.php:959
 
 
 
 
209
  #, fuzzy
210
  msgid "Help AdRotate Grow"
211
  msgstr "AdRotate Pro"
212
 
213
+ #: adrotate-output.php:960
214
  msgid "Brought to you by"
215
  msgstr "Présenté par"
216
 
217
+ #: adrotate-output.php:967
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."
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:967
224
  msgid "If you find AdRotate useful please leave your honest"
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:967
228
  msgid "rating"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:967
232
  #, fuzzy
233
  msgid "review"
234
  msgstr "En avant-première"
235
 
236
+ #: adrotate-output.php:967
237
  msgid "on WordPress.org to help AdRotate grow in a positive way"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:970
241
  msgid ""
242
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
243
  "out more about what I can do for you!"
245
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
246
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
247
 
248
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
249
  msgid "Visit the"
250
  msgstr "Visitez le"
251
 
252
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
253
  msgid "website"
254
  msgstr "site"
255
 
256
+ #: adrotate-output.php:1000
257
  msgid "Available in AdRotate Pro"
258
  msgstr "Disponible dans Adrotate Pro"
259
 
260
+ #: adrotate-output.php:1000
261
  msgid "More information..."
262
  msgstr "Plus d'informations..."
263
 
264
+ #: adrotate-output.php:1001
265
  msgid "This feature is available in AdRotate Pro"
266
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
267
 
268
+ #: adrotate-output.php:1001
269
  msgid "Learn more"
270
  msgstr "En savoir plus"
271
 
403
  msgid "Manage Groups"
404
  msgstr "Gérer les groupes"
405
 
406
+ #: adrotate.php:111 adrotate.php:441
407
  #, fuzzy
408
  msgid "Manage Schedules"
409
  msgstr "Gérer les pubs"
470
  msgid "Export created"
471
  msgstr "Publicité créée"
472
 
473
+ #: adrotate.php:221
474
  msgid "Action prohibited"
475
  msgstr "Action interdite"
476
 
477
+ #: adrotate.php:223 adrotate.php:371
478
  msgid "No data found in selected time period"
479
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
480
 
481
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
482
  msgid "Manage"
483
  msgstr "Gérer"
484
 
485
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
486
  msgid "Add New"
487
  msgstr "Ajouter"
488
 
489
+ #: adrotate.php:360
490
  msgid "Group Management"
491
  msgstr "Gérer les groupes"
492
 
493
+ #: adrotate.php:363
494
  msgid "Group created"
495
  msgstr "Groupe créé"
496
 
497
+ #: adrotate.php:365
498
  msgid "Group updated"
499
  msgstr "Groupe mis à jour"
500
 
501
+ #: adrotate.php:367
502
  msgid "Group deleted"
503
  msgstr "Groupe supprimé"
504
 
505
+ #: adrotate.php:369
506
  msgid "Group including it's Ads deleted"
507
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
508
 
509
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
510
+ #: dashboard/publisher/adrotate-groups-main.php:72
511
+ msgid "Report"
512
+ msgstr "Rapport"
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:177
528
+ #: dashboard/publisher/adrotate-ads-main.php:114
529
  #: dashboard/publisher/adrotate-groups-edit.php:75
530
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-main-disabled.php:35
549
  #: dashboard/publisher/adrotate-ads-main-error.php:39
550
  #: dashboard/publisher/adrotate-ads-main.php:39
551
  #: dashboard/publisher/adrotate-groups-main.php:32
552
  msgid "ID"
553
  msgstr "ID"
554
 
555
+ #: adrotate.php:460
556
  #, fuzzy
557
  msgid "Start"
558
  msgstr "Début / Fin"
559
 
560
+ #: adrotate.php:460
561
  msgid "End"
562
  msgstr ""
563
 
564
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
565
  #: dashboard/publisher/adrotate-groups-main.php:34
566
  msgid "Ads"
567
  msgstr "Pubs"
568
 
569
+ #: adrotate.php:463
570
  #, fuzzy
571
  msgid "Max Clicks"
572
  msgstr "Nombre de clicks max :"
573
 
574
+ #: adrotate.php:464
575
  #, fuzzy
576
  msgid "Max Impressions"
577
  msgstr "Nombre max de vues :"
578
 
579
+ #: adrotate.php:494
580
  #, fuzzy
581
  msgid "No schedules created yet!"
582
  msgstr "Aucune pub n'a encore été créé!"
583
 
584
+ #: adrotate.php:499
585
  #, fuzzy
586
  msgid "Easily manage your schedules from here with AdRotate Pro."
587
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
588
 
589
+ #: adrotate.php:499 adrotate.php:562
590
  #, fuzzy
591
  msgid "Upgrade today!"
592
  msgstr "Mettre à jour aujourd'hui"
593
 
594
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
595
+ #: dashboard/publisher/adrotate-groups-edit.php:383
596
  msgid "Expires soon."
597
  msgstr "Expire bientôt."
598
 
599
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
600
+ #: dashboard/publisher/adrotate-groups-edit.php:384
601
  msgid "Has expired."
602
  msgstr "A expiré."
603
 
604
+ #: adrotate.php:527
605
  #, fuzzy
606
  msgid "Media Management available in AdRotate Pro"
607
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
608
 
609
+ #: adrotate.php:529
610
  msgid ""
611
  "Upload images to the AdRotate Pro banners folder from here. This is "
612
  "especially useful if you use responsive adverts with multiple images."
613
  msgstr ""
614
 
615
+ #: adrotate.php:529
616
  #, fuzzy
617
  msgid "Media uploading and management is available in AdRotate Pro."
618
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
619
 
620
+ #: adrotate.php:531
621
  #, fuzzy
622
  msgid "Upload new banner image"
623
  msgstr "Image :"
624
 
625
+ #: adrotate.php:532
626
  #, fuzzy
627
  msgid "Accepted files are:"
628
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
629
 
630
+ #: adrotate.php:532
631
  msgid "Maximum size is 512Kb."
632
  msgstr ""
633
 
634
+ #: adrotate.php:532
635
  msgid "Important:"
636
  msgstr ""
637
 
638
+ #: adrotate.php:532
639
  msgid ""
640
  "Make sure your file has no spaces or special characters in the name. Replace "
641
  "spaces with a - or _."
642
  msgstr ""
643
 
644
+ #: adrotate.php:534
645
  #, fuzzy
646
  msgid ""
647
  "For responsive adverts make sure the filename is in the following format; "
652
  "complet d'images de tailles différentes est recommendé si vous avez un site "
653
  "fluide."
654
 
655
+ #: adrotate.php:535 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."
661
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
662
  "tailles d'écran."
663
 
664
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
665
  #: dashboard/publisher/adrotate-groups-edit.php:308
666
  #: dashboard/publisher/adrotate-groups-edit.php:316
667
  msgid "Example:"
668
  msgstr "Exemple :"
669
 
670
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
671
  #, fuzzy
672
  msgid ""
673
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
676
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
677
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
678
 
679
+ #: adrotate.php:540
680
  msgid "Upload image"
681
  msgstr ""
682
 
683
+ #: adrotate.php:543
684
  msgid "Available banner images in"
685
  msgstr ""
686
 
687
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
688
  msgid "Name"
689
  msgstr "Nom"
690
 
691
+ #: adrotate.php:549
692
  #, fuzzy
693
  msgid "Actions"
694
  msgstr "Actions en vrac"
695
 
696
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
697
+ #: adrotate.php:558 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 "Effacer"
702
 
703
+ #: adrotate.php:562
704
  msgid ""
705
  "Make sure the banner images are not in use by adverts when you delete them!"
706
  msgstr ""
707
 
708
+ #: adrotate.php:562
709
  #, fuzzy
710
  msgid "Manage your banner folder from here with AdRotate Pro."
711
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
712
 
713
+ #: adrotate.php:606
714
  msgid "AdRotate Settings"
715
  msgstr "Paramètres de AdRotate"
716
 
717
+ #: adrotate.php:609
718
  msgid "Settings saved"
719
  msgstr "Paramètres sauvegardés"
720
 
721
+ #: adrotate.php:611
722
  msgid "Database optimized"
723
  msgstr "Base de données optimisée"
724
 
725
+ #: adrotate.php:613
726
  msgid "Database repaired"
727
  msgstr "Base de données réparée"
728
 
729
+ #: adrotate.php:615
730
  msgid "Ads evaluated and statuses have been corrected where required"
731
  msgstr ""
732
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
733
 
734
+ #: adrotate.php:617
735
  msgid "Empty database records removed"
736
  msgstr "Les registres vides de la base de données ont été supprimés"
737
 
738
+ #: adrotate.php:619
739
  msgid "Database can only be optimized or cleaned once every hour"
740
  msgstr ""
741
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
742
 
743
+ #: adrotate.php:627
744
  msgid "Access Rights"
745
  msgstr "Droits d'Accès"
746
 
747
+ #: adrotate.php:628
748
  msgid "Who has access to what?"
749
  msgstr "Qui a accès à quoi?"
750
 
751
+ #: adrotate.php:631
752
  msgid "Manage/Add/Edit adverts"
753
  msgstr "Gérer/Ajouter/Modifier les publicités"
754
 
755
+ #: adrotate.php:635
756
  msgid "Role to see and add/edit ads."
757
  msgstr "Rôle pour voir et gérer/modifier les publicités."
758
 
759
+ #: adrotate.php:639
760
  msgid "Delete/Reset adverts"
761
  msgstr "Supprimer/Mettre à zéro les publicités"
762
 
763
+ #: adrotate.php:643
764
  msgid "Role to delete ads and reset stats."
765
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
766
 
767
+ #: adrotate.php:647
768
  msgid "Manage/Add/Edit groups"
769
  msgstr "Gérer/Ajouter/Modifier les groupes"
770
 
771
+ #: adrotate.php:651
772
  msgid "Role to see and add/edit groups."
773
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
774
 
775
+ #: adrotate.php:655
776
  msgid "Delete groups"
777
  msgstr "Effacer les groups"
778
 
779
+ #: adrotate.php:659
780
  msgid "Role to delete groups."
781
  msgstr "Rôle pour supprimer les groupes."
782
 
783
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
784
+ #: adrotate.php:890
785
  msgid "Update Options"
786
  msgstr "Mettre à jour les options"
787
 
788
+ #: adrotate.php:691
789
  msgid "Statistics"
790
  msgstr "Statistiques"
791
 
792
+ #: adrotate.php:694
793
+ msgid "How to track stats"
794
+ msgstr ""
795
 
796
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
797
+ #: dashboard/publisher/adrotate-groups-edit.php:240
798
+ msgid "Disabled"
799
+ msgstr "Désactivé"
800
 
801
+ #: adrotate.php:703
802
+ msgid "No impressions and clicks are recorded for any of your adverts."
803
+ msgstr ""
804
+
805
+ #: adrotate.php:704
806
+ msgid "Tracks impressions and clicks internally."
807
+ msgstr ""
808
+
809
+ #: adrotate.php:705
810
+ msgid ""
811
+ "Click and Impression recording, Click and impression limits, impression "
812
+ "spread for schedules, local stats display."
813
  msgstr ""
 
 
814
 
815
+ #: adrotate.php:706
816
+ msgid ""
817
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
818
+ "attributes."
819
+ msgstr ""
820
+
821
+ #: adrotate.php:706 adrotate.php:708
822
+ msgid "Available in AdRotate Pro!"
823
+ msgstr ""
824
+
825
+ #: adrotate.php:707
826
+ msgid ""
827
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
828
+ "Contents."
829
+ msgstr ""
830
+
831
+ #: adrotate.php:708
832
+ msgid ""
833
+ "Requires Google Analytics tracker installed in your sites footer! uses "
834
+ "onClick() in adverts."
835
+ msgstr ""
836
+
837
+ #: adrotate.php:709
838
+ msgid ""
839
+ "Click and Impression recording via Cookie, stats are displayed in Events."
840
+ msgstr ""
841
+
842
+ #: adrotate.php:714
843
  msgid "Impressions timer"
844
  msgstr "Minuterie de impressions"
845
 
846
+ #: adrotate.php:716 adrotate.php:723
847
  msgid "Seconds."
848
  msgstr "Secondes."
849
 
850
+ #: adrotate.php:717
851
  msgid "Default: 60."
852
  msgstr ""
853
 
854
+ #: adrotate.php:717
855
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
856
  msgstr ""
857
 
858
+ #: adrotate.php:721
859
  msgid "Clicks timer"
860
  msgstr "Interval de clicks"
861
 
862
+ #: adrotate.php:724
863
  msgid "Default: 86400."
864
  msgstr ""
865
 
866
+ #: adrotate.php:724
867
  msgid ""
868
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
869
  msgstr ""
870
 
871
+ #: adrotate.php:729
872
  msgid "Bot filter"
873
  msgstr "Filtre de robots"
874
 
875
+ #: adrotate.php:732
876
  msgid "User-Agent Filter"
877
  msgstr "Filtrage par User-Agent"
878
 
879
+ #: adrotate.php:735
880
  msgid ""
881
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
882
  "prevent impressions and clicks counted on them."
884
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
885
  "impressions et le clics fait par les robots/crawlers/user-agents."
886
 
887
+ #: adrotate.php:736
888
  msgid ""
889
  "Keep in mind that this might give false positives. The word 'google' also "
890
  "matches 'googlebot', but not vice-versa. So be careful!"
892
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
893
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
894
 
895
+ #: adrotate.php:736
896
  msgid "Keep your list up-to-date"
897
  msgstr "Gardez votre liste à jour"
898
 
899
+ #: adrotate.php:737
900
  msgid ""
901
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
902
  "other characters are stripped out."
904
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
905
  "sont aussi permis. Tous les autres caractères seront supprimés. "
906
 
907
+ #: adrotate.php:738
908
  msgid ""
909
  "Additionally to the list specified here, empty User-Agents are blocked as "
910
  "well."
912
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
913
  "bloqués."
914
 
915
+ #: adrotate.php:738
916
  msgid "Learn more about"
917
  msgstr "En savoir plus sur"
918
 
919
+ #: adrotate.php:738
920
  msgid "user-agents"
921
  msgstr "user-agents"
922
 
923
+ #: adrotate.php:747
924
  msgid "Miscellaneous"
925
  msgstr "Divers"
926
 
927
+ #: adrotate.php:750
928
  msgid "Widget alignment"
929
  msgstr "Alignement du Widget"
930
 
931
+ #: adrotate.php:751
932
  msgid ""
933
  "Check this box if your widgets do not align in your themes sidebar. (Does "
934
  "not always help!)"
936
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
937
  "votre thème. Cette fonction peux ne pas régler le soucis!"
938
 
939
+ #: adrotate.php:754
940
  msgid "Widget padding"
941
  msgstr "Marge interne du Widget"
942
 
943
+ #: adrotate.php:755
944
  msgid ""
945
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
946
  "not always work!)"
948
  "Activez cette option pour supprimer la marge (espace vide) autour des "
949
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
950
 
951
+ #: adrotate.php:760 adrotate.php:771
952
  msgid "NOTICE:"
953
  msgstr ""
954
 
955
+ #: adrotate.php:761
956
  msgid ""
957
  "You have enabled W3 Total Caching support but not defined the security hash. "
958
  "You need to add the following line to your wp-config.php near the bottom or "
964
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
965
  "fonction \"late init\" doit être activée dans W3 Total Cache."
966
 
967
+ #: adrotate.php:765
968
  msgid "W3 Total Caching"
969
  msgstr "W3 Total Caching"
970
 
971
+ #: adrotate.php:766
972
  msgid "Check this box if you use W3 Total Caching on your site."
973
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
974
 
975
+ #: adrotate.php:772
976
  msgid ""
977
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
978
  "this function will not work. WP Super Cache has discontinued support for "
982
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
983
  "support pour le contenu dynamique."
984
 
985
+ #: adrotate.php:776
986
  msgid "WP Super Cache"
987
  msgstr "WP Super Cache"
988
 
989
+ #: adrotate.php:777
990
  msgid "Check this box if you use WP Super Cache on your site."
991
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
992
 
993
+ #: adrotate.php:782
994
  msgid ""
995
  "It may take a while for the ad to start rotating. The caching plugin needs "
996
  "to refresh the cache. This can take up to a week if not done manually."
1000
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1001
  "pas fait manuellement."
1002
 
1003
+ #: adrotate.php:782
1004
  msgid ""
1005
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1006
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1009
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1010
  "PHP dans le code d'exclusion vous-même."
1011
 
1012
+ #: adrotate.php:786
1013
  msgid "Javascript"
1014
  msgstr ""
1015
 
1016
+ #: adrotate.php:789
1017
  msgid "Load jQuery"
1018
  msgstr "Utilisez jQuery"
1019
 
1020
+ #: adrotate.php:790
1021
  msgid ""
1022
  "jQuery is required for all Javascript features below. Enable this if your "
1023
  "theme does not load jQuery already."
1025
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1026
  "le si votre thème ne charge pas jQuery directement."
1027
 
1028
+ #: adrotate.php:793
1029
  msgid "Load in footer?"
1030
  msgstr "Chargement dans le pied de page?"
1031
 
1032
+ #: adrotate.php:794
1033
  msgid ""
1034
  "Enable if you want to load the above libraries in the footer. Your theme "
1035
  "needs to call wp_footer() for this to work."
1037
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1038
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1039
 
1040
+ #: adrotate.php:802
1041
  msgid "Maintenance"
1042
  msgstr "Maintenance"
1043
 
1044
+ #: adrotate.php:803
1045
  msgid ""
1046
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1047
  "They only apply to your ads/groups and stats. Not to other settings or other "
1055
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1056
  "de données est lente ou ne réponds pas."
1057
 
1058
+ #: adrotate.php:818 adrotate.php:820
1059
  msgid "Optimize Database"
1060
  msgstr "Optimiser la base de données"
1061
 
1062
+ #: adrotate.php:820
1063
  msgid "You are about to optimize the AdRotate database."
1064
  msgstr "Vous allez optimiser la base de données de Adrotate."
1065
 
1066
+ #: adrotate.php:820
1067
  msgid "Did you make a backup of your database?"
1068
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1069
 
1070
+ #: adrotate.php:820
1071
  msgid ""
1072
  "This may take a moment and may cause your website to respond slow "
1073
  "temporarily!"
1075
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1076
  "temporaire!"
1077
 
1078
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1079
  #: dashboard/publisher/adrotate-groups-main.php:24
1080
  msgid "OK to continue, CANCEL to stop."
1081
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1082
 
1083
+ #: adrotate.php:821
1084
  msgid "Cleans up overhead data in the AdRotate tables."
1085
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1086
 
1087
+ #: adrotate.php:822
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."
1093
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1094
  "KB de données."
1095
 
1096
+ #: adrotate.php:826 adrotate.php:828
1097
  msgid "Clean-up Database"
1098
  msgstr "Nettoyer la base de données"
1099
 
1100
+ #: adrotate.php:828
1101
  msgid ""
1102
  "You are about to clean up your database. This may delete expired schedules "
1103
  "and older statistics."
1105
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1106
  "supprimer des calendriers périmés et des vieilles statistiques.."
1107
 
1108
+ #: adrotate.php:828
1109
  msgid "Are you sure you want to continue?"
1110
  msgstr "Etes-vous certains de vouloir continuer?"
1111
 
1112
+ #: adrotate.php:828 adrotate.php:836
1113
  msgid "This might take a while and may slow down your site during this action!"
1114
  msgstr ""
1115
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1116
  "interval!"
1117
 
1118
+ #: adrotate.php:829
1119
  msgid "Delete stats older than 356 days (Optional)."
1120
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1121
 
1122
+ #: adrotate.php:830
1123
  msgid ""
1124
  "AdRotate creates empty records when you start making ads or groups. In rare "
1125
  "occasions these records are faulty."
1127
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1128
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1129
 
1130
+ #: adrotate.php:830
1131
  msgid ""
1132
  "If you made an ad or group that does not save when you make it use this "
1133
  "button to delete those empty records."
1136
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1137
  "registres vides."
1138
 
1139
+ #: adrotate.php:830
1140
  msgid ""
1141
  "Additionally you can clean up old statistics. This will improve the speed of "
1142
  "your site."
1144
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1145
  "d'améliorer la vitesse de votre site."
1146
 
1147
+ #: adrotate.php:834
1148
  msgid "Re-evaluate Ads"
1149
  msgstr "Re-évaluer les publicités"
1150
 
1151
+ #: adrotate.php:836
1152
  msgid "Re-evaluate all ads"
1153
  msgstr "Re-évaluer toutes les publicités"
1154
 
1155
+ #: adrotate.php:836
1156
  msgid "You are about to check all ads for errors."
1157
  msgstr "Vous allez véifier l'état de toutes les publicités."
1158
 
1159
+ #: adrotate.php:837
1160
  msgid ""
1161
  "This will apply all evaluation rules to all ads to see if any error slipped "
1162
  "in. Normally you should not need this feature."
1165
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1166
  "fonctionalité."
1167
 
1168
+ #: adrotate.php:841
1169
  msgid ""
1170
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1171
  "becomes unusable in any way or by any means in whichever way I will not take "
1182
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1183
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1184
 
1185
+ #: adrotate.php:849
1186
  msgid "Troubleshooting"
1187
  msgstr "Diagnostic de dépannage"
1188
 
1189
+ #: adrotate.php:852
1190
  msgid "Current version:"
1191
  msgstr "Version actuelle :"
1192
 
1193
+ #: adrotate.php:853
1194
  msgid "Previous version:"
1195
  msgstr "Version antérieure :"
1196
 
1197
+ #: adrotate.php:856
1198
  msgid "Current database version:"
1199
  msgstr "Version actuelle de la base de données :"
1200
 
1201
+ #: adrotate.php:857
1202
  msgid "Previous database version:"
1203
  msgstr "Version antérieure de la base de données :"
1204
 
1205
+ #: adrotate.php:860
1206
  msgid "Ad evaluation next run:"
1207
  msgstr ""
1208
 
1209
+ #: adrotate.php:861 adrotate.php:865
1210
  msgid "Not scheduled!"
1211
  msgstr "Pas planifié!"
1212
 
1213
+ #: adrotate.php:864
1214
  msgid "Clean Trackerdata next run:"
1215
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
1216
 
1217
+ #: adrotate.php:868
1218
  msgid "Current status of adverts"
1219
  msgstr "Etat actuel des publicités"
1220
 
1221
+ #: adrotate.php:869
1222
  msgid "Normal"
1223
  msgstr "Normal"
1224
 
1225
+ #: adrotate.php:869
1226
  msgid "Error"
1227
  msgstr "Erreur"
1228
 
1229
+ #: adrotate.php:869
1230
  msgid "Expired"
1231
  msgstr "Expiré"
1232
 
1233
+ #: adrotate.php:869
1234
  msgid "Expires Soon"
1235
  msgstr "Expire bientôt"
1236
 
1237
+ #: adrotate.php:869
1238
  msgid "Unknown Status"
1239
  msgstr "Statut Inconnu"
1240
 
1241
+ #: adrotate.php:872
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 "
1251
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1252
  "une utilisation normale, ils ne doivent pas être activés!"
1253
 
1254
+ #: adrotate.php:876
1255
  msgid "Developer Debug"
1256
  msgstr "Debuggage de développeur"
1257
 
1258
+ #: adrotate.php:878
1259
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1260
  msgstr ""
1261
  "Dépannage des publicités. Si cette option est activée, les données seront "
1262
  "placées sur le site."
1263
 
1264
+ #: adrotate.php:879
1265
  msgid "Show all settings, dashboard routines and related values."
1266
  msgstr ""
1267
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1268
  "connexes."
1269
 
1270
+ #: adrotate.php:880
1271
  msgid "Show array of all userroles and capabilities."
1272
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1273
 
1274
+ #: adrotate.php:881
1275
  msgid "Review saved advertisers! Visible to advertisers."
1276
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1277
 
1278
+ #: adrotate.php:882
1279
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1280
  msgstr ""
1281
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1282
  "Visible uniquement aux annonceurs."
1283
 
1284
+ #: adrotate.php:883
1285
  msgid ""
1286
  "Disable timers for clicks and impressions and enable a alert window for "
1287
  "clicktracking."
1289
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1290
  "fenêtre d'alerte pour le suivi des clicks."
1291
 
1292
+ #: adrotate.php:884
1293
  msgid "Temporarily disable encryption on the redirect url."
1294
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1295
 
1338
  msgstr ""
1339
 
1340
  #: dashboard/adrotate-info.php:139
1341
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1342
  msgstr ""
1343
 
1344
  #: dashboard/adrotate-info.php:148
1404
  msgid "Developer License"
1405
  msgstr "Licence de Developpeur"
1406
 
1407
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1408
  msgid "Unlimited WordPress installations and/or networks."
1409
  msgstr ""
1410
 
1530
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1531
  "d'expiration."
1532
 
 
 
 
 
 
 
1533
  #: dashboard/publisher/adrotate-ads-edit.php:46
1534
  msgid "The AdCode cannot be empty!"
1535
  msgstr "Le code de la publicité ne peut être vide!"
1546
 
1547
  #: dashboard/publisher/adrotate-ads-edit.php:55
1548
  msgid ""
1549
+ "There is a problem saving the image. Please reset your image and re-save the "
1550
+ "ad!"
1551
  msgstr ""
 
 
 
1552
 
1553
  #: dashboard/publisher/adrotate-ads-edit.php:58
1554
  msgid ""
1557
  msgstr ""
1558
 
1559
  #: dashboard/publisher/adrotate-ads-edit.php:61
1560
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1561
  msgstr ""
1562
 
1563
  #: dashboard/publisher/adrotate-ads-edit.php:64
1680
  "valeur, ce champ a la priorité."
1681
 
1682
  #: dashboard/publisher/adrotate-ads-edit.php:156
1683
+ msgid "Statistics:"
1684
+ msgstr ""
1685
 
1686
  #: dashboard/publisher/adrotate-ads-edit.php:158
1687
+ msgid "Enable click and impression tracking for this advert."
1688
+ msgstr ""
1689
 
1690
  #: dashboard/publisher/adrotate-ads-edit.php:159
1691
  msgid ""
1692
  "Note: Clicktracking does not work for Javascript adverts such as those "
1693
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1694
  "supported."
1695
  msgstr ""
1696
 
1707
  msgstr "Non, cette publicité ne sera pas utilisée"
1708
 
1709
  #: dashboard/publisher/adrotate-ads-edit.php:177
1710
+ #: dashboard/publisher/adrotate-ads-main.php:114
1711
  #: dashboard/publisher/adrotate-groups-edit.php:75
1712
+ #: dashboard/publisher/adrotate-groups-main.php:92
1713
  msgid "Get more features with AdRotate Pro."
1714
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1715
 
1726
  #: dashboard/publisher/adrotate-ads-edit.php:437
1727
  #: dashboard/publisher/adrotate-groups-edit.php:154
1728
  #: dashboard/publisher/adrotate-groups-edit.php:297
1729
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1730
  msgid "Cancel"
1731
  msgstr "Annuller"
1732
 
1983
  msgstr "Pubs dans le groupe"
1984
 
1985
  #: dashboard/publisher/adrotate-ads-edit.php:415
1986
+ #: dashboard/publisher/adrotate-groups-main.php:61
1987
  msgid "Default"
1988
  msgstr "Par défaut"
1989
 
1990
  #: dashboard/publisher/adrotate-ads-edit.php:416
1991
+ #: dashboard/publisher/adrotate-groups-main.php:62
1992
  msgid "Dynamic"
1993
  msgstr "Dynamique"
1994
 
1995
  #: dashboard/publisher/adrotate-ads-edit.php:416
1996
+ #: dashboard/publisher/adrotate-groups-main.php:62
1997
  msgid "second rotation"
1998
  msgstr "deuxième rotation"
1999
 
2000
  #: dashboard/publisher/adrotate-ads-edit.php:417
2001
+ #: dashboard/publisher/adrotate-groups-main.php:63
2002
  msgid "Block"
2003
  msgstr "Bloc"
2004
 
2005
  #: dashboard/publisher/adrotate-ads-edit.php:417
2006
+ #: dashboard/publisher/adrotate-groups-main.php:63
2007
  msgid "grid"
2008
  msgstr "grille"
2009
 
2010
  #: dashboard/publisher/adrotate-ads-edit.php:418
2011
  #: dashboard/publisher/adrotate-groups-edit.php:192
2012
+ #: dashboard/publisher/adrotate-groups-main.php:64
2013
  msgid "Post Injection"
2014
  msgstr "Injection dans l'article"
2015
 
2016
  #: dashboard/publisher/adrotate-ads-edit.php:419
2017
+ #: dashboard/publisher/adrotate-groups-main.php:65
2018
  msgid "Geolocation"
2019
  msgstr "Géolocalisation"
2020
 
2021
  #: dashboard/publisher/adrotate-ads-edit.php:425
2022
  #: dashboard/publisher/adrotate-groups-edit.php:61
2023
+ #: dashboard/publisher/adrotate-groups-main.php:72
2024
  msgid "Mode"
2025
  msgstr "Mode"
2026
 
2052
 
2053
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2054
  #: dashboard/publisher/adrotate-ads-report.php:34
2055
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2056
+ #: dashboard/publisher/adrotate-groups-main.php:36
2057
  #: dashboard/publisher/adrotate-groups-report.php:40
2058
  msgid "Impressions"
2059
  msgstr "Vues"
2060
 
2061
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2062
+ #: dashboard/publisher/adrotate-ads-main.php:46
2063
  #: dashboard/publisher/adrotate-ads-report.php:35
2064
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2065
+ #: dashboard/publisher/adrotate-groups-main.php:38
2066
  #: dashboard/publisher/adrotate-groups-report.php:41
2067
  msgid "Clicks"
2068
  msgstr "Clicks"
2069
 
2070
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2071
+ #: dashboard/publisher/adrotate-ads-main.php:48
2072
  #: dashboard/publisher/adrotate-ads-report.php:38
2073
  #: dashboard/publisher/adrotate-groups-report.php:44
2074
  msgid "CTR"
2076
 
2077
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2078
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2079
+ #: dashboard/publisher/adrotate-ads-main.php:87
2080
+ #: dashboard/publisher/adrotate-groups-main.php:72
2081
  msgid "Edit"
2082
  msgstr "Modifier"
2083
 
2088
 
2089
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2090
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2091
+ #: dashboard/publisher/adrotate-ads-main.php:87
2092
  #, fuzzy
2093
  msgid "Groups:"
2094
  msgstr "Groupes"
2128
  msgstr "Pour 7 jours"
2129
 
2130
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2131
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2132
  msgid "Configuration errors."
2133
  msgstr "Erreurs de configuration."
2134
 
2141
  msgstr ""
2142
 
2143
  #: dashboard/publisher/adrotate-ads-main.php:42
2144
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2145
  msgid "Weight"
2146
  msgstr "Importance"
2147
 
2148
+ #: dashboard/publisher/adrotate-ads-main.php:44
2149
  msgid "Shown"
2150
  msgstr "Montré"
2151
 
2152
+ #: dashboard/publisher/adrotate-ads-main.php:45
2153
+ #: dashboard/publisher/adrotate-ads-main.php:47
2154
+ #: dashboard/publisher/adrotate-groups-main.php:37
2155
+ #: dashboard/publisher/adrotate-groups-main.php:39
2156
  msgid "Today"
2157
  msgstr "Aujourd'hui"
2158
 
2159
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2160
  msgid "No ads created yet!"
2161
  msgstr "Aucune pub n'a encore été créé!"
2162
 
2299
 
2300
  #: dashboard/publisher/adrotate-groups-edit.php:153
2301
  #: dashboard/publisher/adrotate-groups-edit.php:296
2302
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2303
  msgid "Save Group"
2304
  msgstr "Sauvegarder groupe"
2305
 
2367
  msgid "Include ads in categories?"
2368
  msgstr "Intégrer les publicités dans les catégories?"
2369
 
 
 
 
 
 
2370
  #: dashboard/publisher/adrotate-groups-edit.php:200
2371
  #: dashboard/publisher/adrotate-groups-edit.php:241
2372
  msgid "Before content"
2394
 
2395
  #: dashboard/publisher/adrotate-groups-edit.php:210
2396
  #: dashboard/publisher/adrotate-groups-edit.php:251
2397
+ msgid "the second paragraph"
2398
+ msgstr ""
2399
 
2400
  #: dashboard/publisher/adrotate-groups-edit.php:211
2401
  #: dashboard/publisher/adrotate-groups-edit.php:252
2402
+ msgid "the third paragraph"
2403
+ msgstr ""
2404
 
2405
  #: dashboard/publisher/adrotate-groups-edit.php:212
2406
  #: dashboard/publisher/adrotate-groups-edit.php:253
2407
+ msgid "the fourth paragraph"
2408
+ msgstr ""
2409
 
2410
  #: dashboard/publisher/adrotate-groups-edit.php:214
2411
  #: dashboard/publisher/adrotate-groups-edit.php:255
2488
  msgid "Select Ads"
2489
  msgstr "Choisir les pubs"
2490
 
2491
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2492
  msgid "Visible until"
2493
  msgstr "Visible jusqu'à"
2494
 
2495
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2496
  msgid "No ads created!"
2497
  msgstr "Aucune pub créée!"
2498
 
2512
  msgid "This action can not be undone!"
2513
  msgstr "Ceci ne peux pas être défait!"
2514
 
2515
+ #: dashboard/publisher/adrotate-groups-main.php:41
2516
  msgid "Code"
2517
  msgstr "Code"
2518
 
2519
+ #: dashboard/publisher/adrotate-groups-main.php:87
2520
  msgid "No groups created!"
2521
  msgstr "Aucun groupe n'a été créé!"
2522
 
2524
  msgid "Statistics for group"
2525
  msgstr "Statistiques pour le groupe"
2526
 
2527
+ #~ msgid "Enable stats"
2528
+ #~ msgstr "Statistiques activés"
2529
+
2530
+ #~ msgid "Track clicks and impressions."
2531
+ #~ msgstr "Suivi des clicks et des impressions."
2532
+
2533
+ #, fuzzy
2534
+ #~ msgid ""
2535
+ #~ "Disabling this also disables click and impression limits on schedules."
2536
+ #~ msgstr ""
2537
+ #~ "La désactivation de cette fonction désactive aussi la limitation des "
2538
+ #~ "clics et des impressions sujet du calendrier, et désactive les délais."
2539
+
2540
+ #~ msgid ""
2541
+ #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
2542
+ #~ msgstr ""
2543
+ #~ "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
2544
+ #~ "réseaux."
2545
+
2546
+ #~ msgid ""
2547
+ #~ "There is a problem saving the image specification. Please reset your "
2548
+ #~ "image and re-save the ad!"
2549
+ #~ msgstr ""
2550
+ #~ "Il y a un problème au niveau de la sauvergarde des spécifications de "
2551
+ #~ "l'image. Merci de bien vouloir réinitialiser votre image et réenregistrer "
2552
+ #~ "la publicité!"
2553
+
2554
+ #~ msgid "Clicktracking:"
2555
+ #~ msgstr "Clicktracking :"
2556
+
2557
+ #~ msgid "Enable click tracking for this advert."
2558
+ #~ msgstr "Activer le suivi des clicks pour cette publicité."
2559
+
2560
+ #~ msgid "the 2nd paragraph"
2561
+ #~ msgstr "le second paragraphe"
2562
+
2563
+ #~ msgid "the 3rd paragraph"
2564
+ #~ msgstr "le troisième paragraphe"
2565
+
2566
+ #~ msgid "the 4th paragraph"
2567
+ #~ msgstr "le quatrième paragraphe"
2568
+
2569
  #, fuzzy
2570
  #~ msgid "Usage:"
2571
  #~ msgstr "Usage"
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-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,19 +16,19 @@ msgstr ""
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,28 +38,28 @@ msgstr ""
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,30 +68,30 @@ msgstr ""
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,164 +99,160 @@ msgstr ""
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,7 +262,7 @@ msgstr ""
266
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
267
  "さい。英語ですが。"
268
 
269
- #: adrotate-output.php:974 dashboard/adrotate-info.php:171
270
  #, fuzzy
271
  msgid "Visit the"
272
  msgstr ""
@@ -274,27 +270,27 @@ 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 "ユーザーえー助演について知りたい方はこちらから。"
@@ -437,7 +433,7 @@ msgstr "広告管理"
437
  msgid "Manage Groups"
438
  msgstr "グループの管理"
439
 
440
- #: adrotate.php:111 adrotate.php:440
441
  #, fuzzy
442
  msgid "Manage Schedules"
443
  msgstr "管理"
@@ -506,78 +502,83 @@ msgstr ""
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,299 +586,335 @@ msgstr "実行"
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,7 +922,7 @@ msgstr ""
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,21 +931,21 @@ msgstr ""
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,23 +953,23 @@ msgstr ""
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,12 +977,12 @@ msgstr ""
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,11 +991,11 @@ msgstr ""
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,36 +1003,36 @@ msgid ""
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,33 +1041,33 @@ msgstr ""
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,11 +1077,11 @@ msgstr ""
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,19 +1091,19 @@ msgid ""
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,91 +1111,91 @@ msgstr ""
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,76 +1206,76 @@ msgid ""
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,45 +1285,45 @@ msgstr ""
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 ""
@@ -1349,7 +1386,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1349
  msgstr ""
1350
 
1351
  #: dashboard/adrotate-info.php:139
1352
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1353
  msgstr ""
1354
 
1355
  #: dashboard/adrotate-info.php:148
@@ -1418,7 +1455,7 @@ msgstr ""
1418
  msgid "Developer License"
1419
  msgstr "開発者向けデバッグ"
1420
 
1421
- #: dashboard/adrotate-info.php:182
1422
  msgid "Unlimited WordPress installations and/or networks."
1423
  msgstr ""
1424
 
@@ -1525,10 +1562,6 @@ msgid ""
1525
  "miss an expiration date again."
1526
  msgstr ""
1527
 
1528
- #: dashboard/adrotate-pro.php:83
1529
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1530
- msgstr ""
1531
-
1532
  #: dashboard/publisher/adrotate-ads-edit.php:46
1533
  msgid "The AdCode cannot be empty!"
1534
  msgstr "AdCodeを空にすることはできません!"
@@ -1543,11 +1576,9 @@ msgstr "AdCodeに%image%がありますが、画像が選択されていませ
1543
 
1544
  #: dashboard/publisher/adrotate-ads-edit.php:55
1545
  msgid ""
1546
- "There is a problem saving the image specification. Please reset your image "
1547
- "and re-save the ad!"
1548
  msgstr ""
1549
- "保存したい画像の仕様に問題があります。画像をリセットし、広告を再度保存してく"
1550
- "ださい!"
1551
 
1552
  #: dashboard/publisher/adrotate-ads-edit.php:58
1553
  msgid ""
@@ -1556,9 +1587,7 @@ msgid ""
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
@@ -1685,18 +1714,17 @@ msgstr ""
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
 
@@ -1714,9 +1742,9 @@ 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."
1722
  msgstr ""
@@ -1737,7 +1765,7 @@ msgstr "保存"
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
 
@@ -1995,30 +2023,30 @@ 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"
2024
  msgstr ""
@@ -2027,19 +2055,19 @@ msgstr ""
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"
2045
  msgstr "承認待ち"
@@ -2072,23 +2100,23 @@ 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
2093
  #: dashboard/publisher/adrotate-groups-report.php:44
2094
  msgid "CTR"
@@ -2096,8 +2124,8 @@ msgstr ""
2096
 
2097
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2098
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2099
- #: dashboard/publisher/adrotate-ads-main.php:85
2100
- #: dashboard/publisher/adrotate-groups-main.php:69
2101
  msgid "Edit"
2102
  msgstr "編集"
2103
 
@@ -2109,7 +2137,7 @@ msgstr "統計リセット"
2109
 
2110
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2111
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2112
- #: dashboard/publisher/adrotate-ads-main.php:85
2113
  #, fuzzy
2114
  msgid "Groups:"
2115
  msgstr "グループ"
@@ -2149,7 +2177,7 @@ msgid "For 7 days"
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,28 +2192,23 @@ msgid "Export to XML"
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
 
2171
- #: dashboard/publisher/adrotate-ads-main.php:43
2172
  #, fuzzy
2173
  msgid "Shown"
2174
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
2175
 
2176
- #: dashboard/publisher/adrotate-ads-main.php:44
2177
- #: dashboard/publisher/adrotate-ads-main.php:46
2178
- #: dashboard/publisher/adrotate-groups-main.php:36
2179
- #: dashboard/publisher/adrotate-groups-main.php:38
2180
  msgid "Today"
2181
  msgstr "本日"
2182
 
2183
- #: dashboard/publisher/adrotate-ads-main.php:85
2184
- #: dashboard/publisher/adrotate-groups-main.php:69
2185
- msgid "Report"
2186
- msgstr "レポート"
2187
-
2188
- #: dashboard/publisher/adrotate-ads-main.php:103
2189
  msgid "No ads created yet!"
2190
  msgstr "まだ広告が1つも作られていません。"
2191
 
@@ -2339,7 +2362,7 @@ 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 "保存"
@@ -2411,12 +2434,6 @@ msgstr ""
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
@@ -2448,17 +2465,17 @@ 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
@@ -2543,11 +2560,11 @@ msgstr "広告の後に入れるタグ"
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
 
@@ -2567,11 +2584,11 @@ msgstr "グループを削除しようとしています。"
2567
  msgid "This action can not be undone!"
2568
  msgstr "この処理は復旧できません。注意して下さい。"
2569
 
2570
- #: dashboard/publisher/adrotate-groups-main.php:39
2571
  msgid "Code"
2572
  msgstr "コード"
2573
 
2574
- #: dashboard/publisher/adrotate-groups-main.php:82
2575
  msgid "No groups created!"
2576
  msgstr "グループがまだ作られていません。"
2577
 
@@ -2580,6 +2597,33 @@ msgstr "グループがまだ作られていません。"
2580
  msgid "Statistics for group"
2581
  msgstr "統計 "
2582
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2583
  #, fuzzy
2584
  #~ msgid "Usage:"
2585
  #~ msgstr "利用タグ"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:803
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-output.php:742
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
+ #: adrotate-output.php:743
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:744
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:745
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
+ #: adrotate-output.php:786
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
+ #: adrotate-output.php:791
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
+ #: adrotate-output.php:797
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:797
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
+ #: adrotate-output.php:803
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
+ #: adrotate-output.php:828
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
+ #: adrotate-output.php:828
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
+ #: adrotate-output.php:830
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
+ #: adrotate-output.php:830
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
+ #: adrotate-output.php:832
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
+ #: adrotate-output.php:832
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
+ #: adrotate-output.php:834
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
+ #: adrotate-output.php:834
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
+ #: adrotate-output.php:834
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
+ #: adrotate-output.php:834
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
+ #: adrotate-output.php:846
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
+ #: adrotate-output.php:847
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:847
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
+ #: adrotate-output.php:847
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
+ #: adrotate-output.php:891
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:891
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
+ #: adrotate-output.php:891 adrotate-output.php:967
183
  #: dashboard/publisher/adrotate-ads-edit.php:151
184
  msgid "and"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:891
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
+ #: adrotate-output.php:927
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
+ #: adrotate-output.php:928
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:930
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
+ #: adrotate-output.php:931
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
+ #: adrotate-output.php:932
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
+ #: adrotate-output.php:933
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
+ #: adrotate-output.php:959
 
 
 
 
224
  #, fuzzy
225
  msgid "Help AdRotate Grow"
226
  msgstr "AdRotate Blog"
227
 
228
+ #: adrotate-output.php:960
229
  msgid "Brought to you by"
230
  msgstr "サービス紹介"
231
 
232
+ #: adrotate-output.php:967
233
  msgid ""
234
  "A lot of users only think to review AdRotate when something goes wrong while "
235
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:967
239
  msgid "If you find AdRotate useful please leave your honest"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:967
243
  msgid "rating"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:967
247
  #, fuzzy
248
  msgid "review"
249
  msgstr "全般レポートを見れる権限"
250
 
251
+ #: adrotate-output.php:967
252
  msgid "on WordPress.org to help AdRotate grow in a positive way"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:970
256
  #, fuzzy
257
  msgid ""
258
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
262
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
263
  "さい。英語ですが。"
264
 
265
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
266
  #, fuzzy
267
  msgid "Visit the"
268
  msgstr ""
270
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
271
  "さい。英語ですが。"
272
 
273
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
274
  #, fuzzy
275
  msgid "website"
276
  msgstr "開発者のWEBサイトは以下です。"
277
 
278
+ #: adrotate-output.php:1000
279
  #, fuzzy
280
  msgid "Available in AdRotate Pro"
281
  msgstr "AdRotate Blog"
282
 
283
+ #: adrotate-output.php:1000
284
  #, fuzzy
285
  msgid "More information..."
286
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
287
 
288
+ #: adrotate-output.php:1001
289
  #, fuzzy
290
  msgid "This feature is available in AdRotate Pro"
291
  msgstr "この機能は使いません。"
292
 
293
+ #: adrotate-output.php:1001
294
  #, fuzzy
295
  msgid "Learn more"
296
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
433
  msgid "Manage Groups"
434
  msgstr "グループの管理"
435
 
436
+ #: adrotate.php:111 adrotate.php:441
437
  #, fuzzy
438
  msgid "Manage Schedules"
439
  msgstr "管理"
502
  msgid "Export created"
503
  msgstr "エクスポートオプション"
504
 
505
+ #: adrotate.php:221
506
  msgid "Action prohibited"
507
  msgstr "今の操作は禁止されました。"
508
 
509
+ #: adrotate.php:223 adrotate.php:371
510
  msgid "No data found in selected time period"
511
  msgstr "選ばれた期間が見つかりません。"
512
 
513
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
514
  msgid "Manage"
515
  msgstr "管理"
516
 
517
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
518
  msgid "Add New"
519
  msgstr "新規追加"
520
 
521
+ #: adrotate.php:360
522
  msgid "Group Management"
523
  msgstr "グループの管理"
524
 
525
+ #: adrotate.php:363
526
  msgid "Group created"
527
  msgstr "グループの作成"
528
 
529
+ #: adrotate.php:365
530
  msgid "Group updated"
531
  msgstr "グループの更新"
532
 
533
+ #: adrotate.php:367
534
  msgid "Group deleted"
535
  msgstr "グループの削除"
536
 
537
+ #: adrotate.php:369
538
  msgid "Group including it's Ads deleted"
539
  msgstr "削除された広告がグループに含まれています。"
540
 
541
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
542
+ #: dashboard/publisher/adrotate-groups-main.php:72
543
+ msgid "Report"
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:177
560
+ #: dashboard/publisher/adrotate-ads-main.php:114
561
  #: dashboard/publisher/adrotate-groups-edit.php:75
562
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-main-disabled.php:35
582
  #: dashboard/publisher/adrotate-ads-main-error.php:39
583
  #: dashboard/publisher/adrotate-ads-main.php:39
584
  #: dashboard/publisher/adrotate-groups-main.php:32
586
  msgid "ID"
587
  msgstr "広告ブロック - ブロックIDを使ってください。"
588
 
589
+ #: adrotate.php:460
590
  msgid "Start"
591
  msgstr ""
592
 
593
+ #: adrotate.php:460
594
  msgid "End"
595
  msgstr ""
596
 
597
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
598
  #: dashboard/publisher/adrotate-groups-main.php:34
599
  msgid "Ads"
600
  msgstr "広告"
601
 
602
+ #: adrotate.php:463
603
  #, fuzzy
604
  msgid "Max Clicks"
605
  msgstr "クリック"
606
 
607
+ #: adrotate.php:464
608
  #, fuzzy
609
  msgid "Max Impressions"
610
  msgstr "表示数"
611
 
612
+ #: adrotate.php:494
613
  #, fuzzy
614
  msgid "No schedules created yet!"
615
  msgstr "まだブロックが作られていません。"
616
 
617
+ #: adrotate.php:499
618
  #, fuzzy
619
  msgid "Easily manage your schedules from here with AdRotate Pro."
620
  msgstr ""
621
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
622
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
623
 
624
+ #: adrotate.php:499 adrotate.php:562
625
  #, fuzzy
626
  msgid "Upgrade today!"
627
  msgstr "本日"
628
 
629
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
630
+ #: dashboard/publisher/adrotate-groups-edit.php:383
631
  #, fuzzy
632
  msgid "Expires soon."
633
  msgstr "これは出来る限り早く修正して下さい。"
634
 
635
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
636
+ #: dashboard/publisher/adrotate-groups-edit.php:384
637
  #, fuzzy
638
  msgid "Has expired."
639
  msgstr "個の広告が期限切れです。"
640
 
641
+ #: adrotate.php:527
642
  #, fuzzy
643
  msgid "Media Management available in AdRotate Pro"
644
  msgstr "この機能は使いません。"
645
 
646
+ #: adrotate.php:529
647
  msgid ""
648
  "Upload images to the AdRotate Pro banners folder from here. This is "
649
  "especially useful if you use responsive adverts with multiple images."
650
  msgstr ""
651
 
652
+ #: adrotate.php:529
653
  #, fuzzy
654
  msgid "Media uploading and management is available in AdRotate Pro."
655
  msgstr "この機能は使いません。"
656
 
657
+ #: adrotate.php:531
658
  #, fuzzy
659
  msgid "Upload new banner image"
660
  msgstr "バナー画像"
661
 
662
+ #: adrotate.php:532
663
  #, fuzzy
664
  msgid "Accepted files are:"
665
  msgstr ""
666
  "%image%を利用する場合は設定して下さい。利用可能はファイル形式は次のとおりで"
667
  "す。"
668
 
669
+ #: adrotate.php:532
670
  msgid "Maximum size is 512Kb."
671
  msgstr ""
672
 
673
+ #: adrotate.php:532
674
  msgid "Important:"
675
  msgstr ""
676
 
677
+ #: adrotate.php:532
678
  msgid ""
679
  "Make sure your file has no spaces or special characters in the name. Replace "
680
  "spaces with a - or _."
681
  msgstr ""
682
 
683
+ #: adrotate.php:534
684
  msgid ""
685
  "For responsive adverts make sure the filename is in the following format; "
686
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
687
  msgstr ""
688
 
689
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
690
  msgid ""
691
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
692
  "filename instead of \".full\" for the various viewports."
693
  msgstr ""
694
 
695
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
696
  #: dashboard/publisher/adrotate-groups-edit.php:308
697
  #: dashboard/publisher/adrotate-groups-edit.php:316
698
  msgid "Example:"
699
  msgstr "例:"
700
 
701
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
702
  msgid ""
703
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
704
  "for different viewports."
705
  msgstr ""
706
 
707
+ #: adrotate.php:540
708
  #, fuzzy
709
  msgid "Upload image"
710
  msgstr "バナー画像"
711
 
712
+ #: adrotate.php:543
713
  #, fuzzy
714
  msgid "Available banner images in"
715
  msgstr "バナー画像"
716
 
717
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
718
  msgid "Name"
719
  msgstr "名前"
720
 
721
+ #: adrotate.php:549
722
  #, fuzzy
723
  msgid "Actions"
724
  msgstr "一括操作"
725
 
726
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
727
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
728
  #: dashboard/publisher/adrotate-ads-main-error.php:21
729
  #: dashboard/publisher/adrotate-ads-main.php:22
730
  msgid "Delete"
731
  msgstr "削除"
732
 
733
+ #: adrotate.php:562
734
  msgid ""
735
  "Make sure the banner images are not in use by adverts when you delete them!"
736
  msgstr ""
737
 
738
+ #: adrotate.php:562
739
  #, fuzzy
740
  msgid "Manage your banner folder from here with AdRotate Pro."
741
  msgstr ""
742
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
743
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
744
 
745
+ #: adrotate.php:606
746
  msgid "AdRotate Settings"
747
  msgstr "AdRotate 設定"
748
 
749
+ #: adrotate.php:609
750
  msgid "Settings saved"
751
  msgstr "設定を保存します。"
752
 
753
+ #: adrotate.php:611
754
  msgid "Database optimized"
755
  msgstr "データベースの最適化"
756
 
757
+ #: adrotate.php:613
758
  msgid "Database repaired"
759
  msgstr "データベースの修復"
760
 
761
+ #: adrotate.php:615
762
  #, fuzzy
763
  msgid "Ads evaluated and statuses have been corrected where required"
764
  msgstr "広告"
765
 
766
+ #: adrotate.php:617
767
  msgid "Empty database records removed"
768
  msgstr "空のデータベースは削除されました。"
769
 
770
+ #: adrotate.php:619
771
  msgid "Database can only be optimized or cleaned once every hour"
772
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
773
 
774
+ #: adrotate.php:627
775
  msgid "Access Rights"
776
  msgstr "アクセス権限"
777
 
778
+ #: adrotate.php:628
779
  msgid "Who has access to what?"
780
  msgstr ""
781
 
782
+ #: adrotate.php:631
783
  msgid "Manage/Add/Edit adverts"
784
  msgstr "広告の追加・編集管理"
785
 
786
+ #: adrotate.php:635
787
  msgid "Role to see and add/edit ads."
788
  msgstr "広告を追加・編集する権限"
789
 
790
+ #: adrotate.php:639
791
  msgid "Delete/Reset adverts"
792
  msgstr "広告の削除やリセット"
793
 
794
+ #: adrotate.php:643
795
  msgid "Role to delete ads and reset stats."
796
  msgstr "広告の削除やリセットする権限"
797
 
798
+ #: adrotate.php:647
799
  msgid "Manage/Add/Edit groups"
800
  msgstr "グループの追加・編集管理"
801
 
802
+ #: adrotate.php:651
803
  msgid "Role to see and add/edit groups."
804
  msgstr "グループを削除・編集する権限"
805
 
806
+ #: adrotate.php:655
807
  msgid "Delete groups"
808
  msgstr "グループの削除"
809
 
810
+ #: adrotate.php:659
811
  msgid "Role to delete groups."
812
  msgstr "グループを削除できる権限"
813
 
814
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
815
+ #: adrotate.php:890
816
  msgid "Update Options"
817
  msgstr "設定の更新"
818
 
819
+ #: adrotate.php:691
820
  msgid "Statistics"
821
  msgstr "統計"
822
 
823
+ #: adrotate.php:694
824
+ msgid "How to track stats"
825
+ msgstr ""
 
826
 
827
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
828
+ #: dashboard/publisher/adrotate-groups-edit.php:240
829
  #, fuzzy
830
+ msgid "Disabled"
831
+ msgstr "掲載不可広告"
832
 
833
+ #: adrotate.php:703
834
+ msgid "No impressions and clicks are recorded for any of your adverts."
835
+ msgstr ""
836
+
837
+ #: adrotate.php:704
838
+ msgid "Tracks impressions and clicks internally."
839
+ msgstr ""
840
+
841
+ #: adrotate.php:705
842
+ msgid ""
843
+ "Click and Impression recording, Click and impression limits, impression "
844
+ "spread for schedules, local stats display."
845
+ msgstr ""
846
+
847
+ #: adrotate.php:706
848
+ msgid ""
849
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
850
+ "attributes."
851
+ msgstr ""
852
+
853
+ #: adrotate.php:706 adrotate.php:708
854
+ msgid "Available in AdRotate Pro!"
855
+ msgstr ""
856
+
857
+ #: adrotate.php:707
858
+ msgid ""
859
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
860
+ "Contents."
861
+ msgstr ""
862
+
863
+ #: adrotate.php:708
864
+ msgid ""
865
+ "Requires Google Analytics tracker installed in your sites footer! uses "
866
+ "onClick() in adverts."
867
+ msgstr ""
868
+
869
+ #: adrotate.php:709
870
+ msgid ""
871
+ "Click and Impression recording via Cookie, stats are displayed in Events."
872
+ msgstr ""
873
 
874
+ #: adrotate.php:714
875
  msgid "Impressions timer"
876
  msgstr "表示時間"
877
 
878
+ #: adrotate.php:716 adrotate.php:723
879
  msgid "Seconds."
880
  msgstr "秒"
881
 
882
+ #: adrotate.php:717
883
  #, fuzzy
884
  msgid "Default: 60."
885
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
886
 
887
+ #: adrotate.php:717
888
  #, fuzzy
889
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
890
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
891
 
892
+ #: adrotate.php:721
893
  #, fuzzy
894
  msgid "Clicks timer"
895
  msgstr "表示時間"
896
 
897
+ #: adrotate.php:724
898
  #, fuzzy
899
  msgid "Default: 86400."
900
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
901
 
902
+ #: adrotate.php:724
903
  #, fuzzy
904
  msgid ""
905
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
906
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
907
 
908
+ #: adrotate.php:729
909
  #, fuzzy
910
  msgid "Bot filter"
911
  msgstr "ユーザーエージェントフィルター"
912
 
913
+ #: adrotate.php:732
914
  msgid "User-Agent Filter"
915
  msgstr "ユーザーエージェントフィルター"
916
 
917
+ #: adrotate.php:735
918
  msgid ""
919
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
920
  "prevent impressions and clicks counted on them."
922
  "コンマは、キーワードのリストを区切ります。カウント表示回数やクリックを防止す"
923
  "るために、ボット/クローラ/ユーザエージェントを除外します。"
924
 
925
+ #: adrotate.php:736
926
  #, fuzzy
927
  msgid ""
928
  "Keep in mind that this might give false positives. The word 'google' also "
931
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
932
  "場合があります。"
933
 
934
+ #: adrotate.php:736
935
  #, fuzzy
936
  msgid "Keep your list up-to-date"
937
  msgstr ""
938
  "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
939
  "抑えて下さい。"
940
 
941
+ #: adrotate.php:737
942
  #, fuzzy
943
  msgid ""
944
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
945
  "other characters are stripped out."
946
  msgstr "HTMLタグは取り除かれます。"
947
 
948
+ #: adrotate.php:738
949
  msgid ""
950
  "Additionally to the list specified here, empty User-Agents are blocked as "
951
  "well."
953
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
954
  "れます。"
955
 
956
+ #: adrotate.php:738
957
  msgid "Learn more about"
958
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
959
 
960
+ #: adrotate.php:738
961
  msgid "user-agents"
962
  msgstr "ユーザーエージェント[英語]"
963
 
964
+ #: adrotate.php:747
965
  msgid "Miscellaneous"
966
  msgstr "その他"
967
 
968
+ #: adrotate.php:750
969
  msgid "Widget alignment"
970
  msgstr "ウィジェットの配置"
971
 
972
+ #: adrotate.php:751
973
  msgid ""
974
  "Check this box if your widgets do not align in your themes sidebar. (Does "
975
  "not always help!)"
977
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
978
  "クスをオンにします。"
979
 
980
+ #: adrotate.php:754
981
  #, fuzzy
982
  msgid "Widget padding"
983
  msgstr "ブロックの隙間"
984
 
985
+ #: adrotate.php:755
986
  #, fuzzy
987
  msgid ""
988
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
991
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
992
  "クスをオンにします。"
993
 
994
+ #: adrotate.php:760 adrotate.php:771
995
  msgid "NOTICE:"
996
  msgstr ""
997
 
998
+ #: adrotate.php:761
999
  msgid ""
1000
  "You have enabled W3 Total Caching support but not defined the security hash. "
1001
  "You need to add the following line to your wp-config.php near the bottom or "
1003
  "needs to be enabled in W3 Total Cache as well too."
1004
  msgstr ""
1005
 
1006
+ #: adrotate.php:765
1007
  msgid "W3 Total Caching"
1008
  msgstr ""
1009
 
1010
+ #: adrotate.php:766
1011
  #, fuzzy
1012
  msgid "Check this box if you use W3 Total Caching on your site."
1013
  msgstr ""
1014
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
1015
  "クスをオンにします。"
1016
 
1017
+ #: adrotate.php:772
1018
  msgid ""
1019
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
1020
  "this function will not work. WP Super Cache has discontinued support for "
1021
  "dynamic content."
1022
  msgstr ""
1023
 
1024
+ #: adrotate.php:776
1025
  msgid "WP Super Cache"
1026
  msgstr ""
1027
 
1028
+ #: adrotate.php:777
1029
  #, fuzzy
1030
  msgid "Check this box if you use WP Super Cache on your site."
1031
  msgstr ""
1032
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
1033
  "クスをオンにします。"
1034
 
1035
+ #: adrotate.php:782
1036
  #, fuzzy
1037
  msgid ""
1038
  "It may take a while for the ad to start rotating. The caching plugin needs "
1041
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1042
  "可能性があります。"
1043
 
1044
+ #: adrotate.php:782
1045
  #, fuzzy
1046
  msgid ""
1047
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1048
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1049
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1050
 
1051
+ #: adrotate.php:786
1052
  msgid "Javascript"
1053
  msgstr ""
1054
 
1055
+ #: adrotate.php:789
1056
  msgid "Load jQuery"
1057
  msgstr ""
1058
 
1059
+ #: adrotate.php:790
1060
  #, fuzzy
1061
  msgid ""
1062
  "jQuery is required for all Javascript features below. Enable this if your "
1063
  "theme does not load jQuery already."
1064
  msgstr "テキストリンク(クリック数調査付):"
1065
 
1066
+ #: adrotate.php:793
1067
  msgid "Load in footer?"
1068
  msgstr ""
1069
 
1070
+ #: adrotate.php:794
1071
  #, fuzzy
1072
  msgid ""
1073
  "Enable if you want to load the above libraries in the footer. Your theme "
1077
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1078
  "さい。英語ですが。"
1079
 
1080
+ #: adrotate.php:802
1081
  msgid "Maintenance"
1082
  msgstr "メンテナンス"
1083
 
1084
+ #: adrotate.php:803
1085
  #, fuzzy
1086
  msgid ""
1087
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1091
  "sluggish."
1092
  msgstr "データベースのバックアップを取りましたか?"
1093
 
1094
+ #: adrotate.php:818 adrotate.php:820
1095
  msgid "Optimize Database"
1096
  msgstr "データベースの最適化"
1097
 
1098
+ #: adrotate.php:820
1099
  msgid "You are about to optimize the AdRotate database."
1100
  msgstr "AdRotateのデータベースの最適化を行います。"
1101
 
1102
+ #: adrotate.php:820
1103
  msgid "Did you make a backup of your database?"
1104
  msgstr "データベースのバックアップを取りましたか?"
1105
 
1106
+ #: adrotate.php:820
1107
  msgid ""
1108
  "This may take a moment and may cause your website to respond slow "
1109
  "temporarily!"
1111
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1112
  "可能性があります。"
1113
 
1114
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1115
  #: dashboard/publisher/adrotate-groups-main.php:24
1116
  msgid "OK to continue, CANCEL to stop."
1117
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1118
 
1119
+ #: adrotate.php:821
1120
  msgid "Cleans up overhead data in the AdRotate tables."
1121
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1122
 
1123
+ #: adrotate.php:822
1124
  #, fuzzy
1125
  msgid ""
1126
  "Overhead data is accumulated garbage resulting from many changes you've "
1127
  "made. This can vary from nothing to hundreds of KiB of data."
1128
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1129
 
1130
+ #: adrotate.php:826 adrotate.php:828
1131
  msgid "Clean-up Database"
1132
  msgstr "データベースのクリーンアップ"
1133
 
1134
+ #: adrotate.php:828
1135
  #, fuzzy
1136
  msgid ""
1137
  "You are about to clean up your database. This may delete expired schedules "
1138
  "and older statistics."
1139
  msgstr "データベースのクリーンアップ"
1140
 
1141
+ #: adrotate.php:828
1142
  #, fuzzy
1143
  msgid "Are you sure you want to continue?"
1144
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1145
 
1146
+ #: adrotate.php:828 adrotate.php:836
1147
  #, fuzzy
1148
  msgid "This might take a while and may slow down your site during this action!"
1149
  msgstr ""
1150
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1151
  "可能性があります。"
1152
 
1153
+ #: adrotate.php:829
1154
  #, fuzzy
1155
  msgid "Delete stats older than 356 days (Optional)."
1156
  msgstr "広告の削除やリセットする権限"
1157
 
1158
+ #: adrotate.php:830
1159
  #, fuzzy
1160
  msgid ""
1161
  "AdRotate creates empty records when you start making ads or groups. In rare "
1162
  "occasions these records are faulty."
1163
  msgstr "空のデータベースは削除されました。"
1164
 
1165
+ #: adrotate.php:830
1166
  #, fuzzy
1167
  msgid ""
1168
  "If you made an ad or group that does not save when you make it use this "
1169
  "button to delete those empty records."
1170
  msgstr "グループを削除しようとしています。"
1171
 
1172
+ #: adrotate.php:830
1173
  #, fuzzy
1174
  msgid ""
1175
  "Additionally you can clean up old statistics. This will improve the speed of "
1176
  "your site."
1177
  msgstr "データベースのクリーンアップ"
1178
 
1179
+ #: adrotate.php:834
1180
  msgid "Re-evaluate Ads"
1181
  msgstr "広告の再評価"
1182
 
1183
+ #: adrotate.php:836
1184
  msgid "Re-evaluate all ads"
1185
  msgstr "すべての広告の再評価"
1186
 
1187
+ #: adrotate.php:836
1188
  msgid "You are about to check all ads for errors."
1189
  msgstr "すべての広告のエラーをチェックしようとしています。"
1190
 
1191
+ #: adrotate.php:837
1192
  #, fuzzy
1193
  msgid ""
1194
  "This will apply all evaluation rules to all ads to see if any error slipped "
1195
  "in. Normally you should not need this feature."
1196
  msgstr "すべての広告のエラーをチェックしようとしています。"
1197
 
1198
+ #: adrotate.php:841
1199
  #, fuzzy
1200
  msgid ""
1201
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1206
  "clicking these buttons is not a valid point in any case."
1207
  msgstr "データベースのバックアップを取りましたか?"
1208
 
1209
+ #: adrotate.php:849
1210
  msgid "Troubleshooting"
1211
  msgstr "トラブルシューティング(トラブル対応)"
1212
 
1213
+ #: adrotate.php:852
1214
  #, fuzzy
1215
  msgid "Current version:"
1216
  msgstr "現在のスケジュール"
1217
 
1218
+ #: adrotate.php:853
1219
  #, fuzzy
1220
  msgid "Previous version:"
1221
  msgstr "プレビュー"
1222
 
1223
+ #: adrotate.php:856
1224
  #, fuzzy
1225
  msgid "Current database version:"
1226
  msgstr "現在のスケジュール"
1227
 
1228
+ #: adrotate.php:857
1229
  #, fuzzy
1230
  msgid "Previous database version:"
1231
  msgstr "データベースの最適化"
1232
 
1233
+ #: adrotate.php:860
1234
  #, fuzzy
1235
  msgid "Ad evaluation next run:"
1236
  msgstr "通知先"
1237
 
1238
+ #: adrotate.php:861 adrotate.php:865
1239
  #, fuzzy
1240
  msgid "Not scheduled!"
1241
  msgstr "掲載期間"
1242
 
1243
+ #: adrotate.php:864
1244
  #, fuzzy
1245
  msgid "Clean Trackerdata next run:"
1246
  msgstr "データベースのクリーンアップ"
1247
 
1248
+ #: adrotate.php:868
1249
  #, fuzzy
1250
  msgid "Current status of adverts"
1251
  msgstr "現在のスケジュール"
1252
 
1253
+ #: adrotate.php:869
1254
  #, fuzzy
1255
  msgid "Normal"
1256
  msgstr "平均的表示(50%程度)"
1257
 
1258
+ #: adrotate.php:869
1259
  #, fuzzy
1260
  msgid "Error"
1261
  msgstr "理解できないエラーが起こっています。"
1262
 
1263
+ #: adrotate.php:869
1264
  #, fuzzy
1265
  msgid "Expired"
1266
  msgstr "個の広告が期限切れです。"
1267
 
1268
+ #: adrotate.php:869
1269
  #, fuzzy
1270
  msgid "Expires Soon"
1271
  msgstr "これは出来る限り早く修正して下さい。"
1272
 
1273
+ #: adrotate.php:869
1274
  #, fuzzy
1275
  msgid "Unknown Status"
1276
  msgstr "理解できないエラーが起こっています。"
1277
 
1278
+ #: adrotate.php:872
1279
  msgid ""
1280
  "NOTE: The below options are not meant for normal use and are only there for "
1281
  "developers to review saved settings or how ads are selected. These can be "
1285
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1286
  "用しないで下さい。基本的にチェックを入れない!"
1287
 
1288
+ #: adrotate.php:876
1289
  msgid "Developer Debug"
1290
  msgstr "開発者向けデバッグ"
1291
 
1292
+ #: adrotate.php:878
1293
  #, fuzzy
1294
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1295
  msgstr ""
1296
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1297
  "用しないで下さい。基本的にチェックを入れない!"
1298
 
1299
+ #: adrotate.php:879
1300
  #, fuzzy
1301
  msgid "Show all settings, dashboard routines and related values."
1302
  msgstr "設定"
1303
 
1304
+ #: adrotate.php:880
1305
  #, fuzzy
1306
  msgid "Show array of all userroles and capabilities."
1307
  msgstr "表示できるデータがありません。"
1308
 
1309
+ #: adrotate.php:881
1310
  #, fuzzy
1311
  msgid "Review saved advertisers! Visible to advertisers."
1312
  msgstr "広告主から提出された広告を承認する権限"
1313
 
1314
+ #: adrotate.php:882
1315
  #, fuzzy
1316
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1317
  msgstr "統計リセット"
1318
 
1319
+ #: adrotate.php:883
1320
  #, fuzzy
1321
  msgid ""
1322
  "Disable timers for clicks and impressions and enable a alert window for "
1323
  "clicktracking."
1324
  msgstr "テキストリンク(クリック数調査付):"
1325
 
1326
+ #: adrotate.php:884
1327
  #, fuzzy
1328
  msgid "Temporarily disable encryption on the redirect url."
1329
  msgstr ""
1386
  msgstr ""
1387
 
1388
  #: dashboard/adrotate-info.php:139
1389
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1390
  msgstr ""
1391
 
1392
  #: dashboard/adrotate-info.php:148
1455
  msgid "Developer License"
1456
  msgstr "開発者向けデバッグ"
1457
 
1458
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1459
  msgid "Unlimited WordPress installations and/or networks."
1460
  msgstr ""
1461
 
1562
  "miss an expiration date again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: dashboard/publisher/adrotate-ads-edit.php:46
1566
  msgid "The AdCode cannot be empty!"
1567
  msgstr "AdCodeを空にすることはできません!"
1576
 
1577
  #: dashboard/publisher/adrotate-ads-edit.php:55
1578
  msgid ""
1579
+ "There is a problem saving the image. Please reset your image and re-save the "
1580
+ "ad!"
1581
  msgstr ""
 
 
1582
 
1583
  #: dashboard/publisher/adrotate-ads-edit.php:58
1584
  msgid ""
1587
  msgstr ""
1588
 
1589
  #: dashboard/publisher/adrotate-ads-edit.php:61
1590
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1591
  msgstr ""
1592
 
1593
  #: dashboard/publisher/adrotate-ads-edit.php:64
1714
  "合はそちらが優先されます。"
1715
 
1716
  #: dashboard/publisher/adrotate-ads-edit.php:156
1717
+ msgid "Statistics:"
1718
+ msgstr ""
1719
 
1720
  #: dashboard/publisher/adrotate-ads-edit.php:158
1721
+ msgid "Enable click and impression tracking for this advert."
1722
+ msgstr ""
 
1723
 
1724
  #: dashboard/publisher/adrotate-ads-edit.php:159
1725
  msgid ""
1726
  "Note: Clicktracking does not work for Javascript adverts such as those "
1727
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1728
  "supported."
1729
  msgstr ""
1730
 
1742
  msgstr "表示できるデータがありません。"
1743
 
1744
  #: dashboard/publisher/adrotate-ads-edit.php:177
1745
+ #: dashboard/publisher/adrotate-ads-main.php:114
1746
  #: dashboard/publisher/adrotate-groups-edit.php:75
1747
+ #: dashboard/publisher/adrotate-groups-main.php:92
1748
  #, fuzzy
1749
  msgid "Get more features with AdRotate Pro."
1750
  msgstr ""
1765
  #: dashboard/publisher/adrotate-ads-edit.php:437
1766
  #: dashboard/publisher/adrotate-groups-edit.php:154
1767
  #: dashboard/publisher/adrotate-groups-edit.php:297
1768
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1769
  msgid "Cancel"
1770
  msgstr "キャンセル"
1771
 
2023
  msgstr "広告グループ - グループIDを使ってください。"
2024
 
2025
  #: dashboard/publisher/adrotate-ads-edit.php:415
2026
+ #: dashboard/publisher/adrotate-groups-main.php:61
2027
  #, fuzzy
2028
  msgid "Default"
2029
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2030
 
2031
  #: dashboard/publisher/adrotate-ads-edit.php:416
2032
+ #: dashboard/publisher/adrotate-groups-main.php:62
2033
  msgid "Dynamic"
2034
  msgstr ""
2035
 
2036
  #: dashboard/publisher/adrotate-ads-edit.php:416
2037
+ #: dashboard/publisher/adrotate-groups-main.php:62
2038
  #, fuzzy
2039
  msgid "second rotation"
2040
  msgstr "バナーがないか、利用不可か適応されていません。"
2041
 
2042
  #: dashboard/publisher/adrotate-ads-edit.php:417
2043
+ #: dashboard/publisher/adrotate-groups-main.php:63
2044
  #, fuzzy
2045
  msgid "Block"
2046
  msgstr "ブロック管理"
2047
 
2048
  #: dashboard/publisher/adrotate-ads-edit.php:417
2049
+ #: dashboard/publisher/adrotate-groups-main.php:63
2050
  #, fuzzy
2051
  msgid "grid"
2052
  msgstr ""
2055
 
2056
  #: dashboard/publisher/adrotate-ads-edit.php:418
2057
  #: dashboard/publisher/adrotate-groups-edit.php:192
2058
+ #: dashboard/publisher/adrotate-groups-main.php:64
2059
  #, fuzzy
2060
  msgid "Post Injection"
2061
  msgstr "投稿及びページ内掲載する場合:"
2062
 
2063
  #: dashboard/publisher/adrotate-ads-edit.php:419
2064
+ #: dashboard/publisher/adrotate-groups-main.php:65
2065
  msgid "Geolocation"
2066
  msgstr ""
2067
 
2068
  #: dashboard/publisher/adrotate-ads-edit.php:425
2069
  #: dashboard/publisher/adrotate-groups-edit.php:61
2070
+ #: dashboard/publisher/adrotate-groups-main.php:72
2071
  #, fuzzy
2072
  msgid "Mode"
2073
  msgstr "承認待ち"
2100
 
2101
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2102
  #: dashboard/publisher/adrotate-ads-report.php:34
2103
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2104
+ #: dashboard/publisher/adrotate-groups-main.php:36
2105
  #: dashboard/publisher/adrotate-groups-report.php:40
2106
  msgid "Impressions"
2107
  msgstr "表示数"
2108
 
2109
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2110
+ #: dashboard/publisher/adrotate-ads-main.php:46
2111
  #: dashboard/publisher/adrotate-ads-report.php:35
2112
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2113
+ #: dashboard/publisher/adrotate-groups-main.php:38
2114
  #: dashboard/publisher/adrotate-groups-report.php:41
2115
  msgid "Clicks"
2116
  msgstr "クリック"
2117
 
2118
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2119
+ #: dashboard/publisher/adrotate-ads-main.php:48
2120
  #: dashboard/publisher/adrotate-ads-report.php:38
2121
  #: dashboard/publisher/adrotate-groups-report.php:44
2122
  msgid "CTR"
2124
 
2125
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2126
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2127
+ #: dashboard/publisher/adrotate-ads-main.php:87
2128
+ #: dashboard/publisher/adrotate-groups-main.php:72
2129
  msgid "Edit"
2130
  msgstr "編集"
2131
 
2137
 
2138
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2139
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2140
+ #: dashboard/publisher/adrotate-ads-main.php:87
2141
  #, fuzzy
2142
  msgid "Groups:"
2143
  msgstr "グループ"
2177
  msgstr "1週間(7日)"
2178
 
2179
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2180
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2181
  #, fuzzy
2182
  msgid "Configuration errors."
2183
  msgstr "個の広告が設定エラーになっています。"
2192
  msgstr "エクスポートオプション"
2193
 
2194
  #: dashboard/publisher/adrotate-ads-main.php:42
2195
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2196
  msgid "Weight"
2197
  msgstr "表示頻度"
2198
 
2199
+ #: dashboard/publisher/adrotate-ads-main.php:44
2200
  #, fuzzy
2201
  msgid "Shown"
2202
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
2203
 
2204
+ #: dashboard/publisher/adrotate-ads-main.php:45
2205
+ #: dashboard/publisher/adrotate-ads-main.php:47
2206
+ #: dashboard/publisher/adrotate-groups-main.php:37
2207
+ #: dashboard/publisher/adrotate-groups-main.php:39
2208
  msgid "Today"
2209
  msgstr "本日"
2210
 
2211
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2212
  msgid "No ads created yet!"
2213
  msgstr "まだ広告が1つも作られていません。"
2214
 
2362
 
2363
  #: dashboard/publisher/adrotate-groups-edit.php:153
2364
  #: dashboard/publisher/adrotate-groups-edit.php:296
2365
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2366
  #, fuzzy
2367
  msgid "Save Group"
2368
  msgstr "保存"
2434
  msgid "Include ads in categories?"
2435
  msgstr "カテゴリーに広告を含めますか?"
2436
 
 
 
 
 
 
 
2437
  #: dashboard/publisher/adrotate-groups-edit.php:200
2438
  #: dashboard/publisher/adrotate-groups-edit.php:241
2439
  #, fuzzy
2465
 
2466
  #: dashboard/publisher/adrotate-groups-edit.php:210
2467
  #: dashboard/publisher/adrotate-groups-edit.php:251
2468
+ msgid "the second paragraph"
2469
  msgstr ""
2470
 
2471
  #: dashboard/publisher/adrotate-groups-edit.php:211
2472
  #: dashboard/publisher/adrotate-groups-edit.php:252
2473
+ msgid "the third paragraph"
2474
  msgstr ""
2475
 
2476
  #: dashboard/publisher/adrotate-groups-edit.php:212
2477
  #: dashboard/publisher/adrotate-groups-edit.php:253
2478
+ msgid "the fourth paragraph"
2479
  msgstr ""
2480
 
2481
  #: dashboard/publisher/adrotate-groups-edit.php:214
2560
  msgid "Select Ads"
2561
  msgstr "広告選択"
2562
 
2563
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2564
  msgid "Visible until"
2565
  msgstr "掲載期限"
2566
 
2567
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2568
  msgid "No ads created!"
2569
  msgstr "広告が作成されていません!"
2570
 
2584
  msgid "This action can not be undone!"
2585
  msgstr "この処理は復旧できません。注意して下さい。"
2586
 
2587
+ #: dashboard/publisher/adrotate-groups-main.php:41
2588
  msgid "Code"
2589
  msgstr "コード"
2590
 
2591
+ #: dashboard/publisher/adrotate-groups-main.php:87
2592
  msgid "No groups created!"
2593
  msgstr "グループがまだ作られていません。"
2594
 
2597
  msgid "Statistics for group"
2598
  msgstr "統計 "
2599
 
2600
+ #, fuzzy
2601
+ #~ msgid "Enable stats"
2602
+ #~ msgstr "統計リセット"
2603
+
2604
+ #, fuzzy
2605
+ #~ msgid "Track clicks and impressions."
2606
+ #~ msgstr "クリック"
2607
+
2608
+ #, fuzzy
2609
+ #~ msgid ""
2610
+ #~ "Disabling this also disables click and impression limits on schedules."
2611
+ #~ msgstr "現在のスケジュール"
2612
+
2613
+ #~ msgid ""
2614
+ #~ "There is a problem saving the image specification. Please reset your "
2615
+ #~ "image and re-save the ad!"
2616
+ #~ msgstr ""
2617
+ #~ "保存したい画像の仕様に問題があります。画像をリセットし、広告を再度保存して"
2618
+ #~ "ください!"
2619
+
2620
+ #~ msgid "Clicktracking:"
2621
+ #~ msgstr "テキストリンク(クリック数調査付):"
2622
+
2623
+ #, fuzzy
2624
+ #~ msgid "Enable click tracking for this advert."
2625
+ #~ msgstr "広告の枠線"
2626
+
2627
  #, fuzzy
2628
  #~ msgid "Usage:"
2629
  #~ msgstr "利用タグ"
language/adrotate-pl_PL.mo CHANGED
Binary file
language/adrotate-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-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,19 +20,19 @@ msgstr ""
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,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:747
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: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,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:768
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:775 adrotate-output.php:777
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: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,161 +96,157 @@ 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: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,27 +255,27 @@ msgstr ""
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
 
@@ -415,7 +411,7 @@ msgstr "Zarządzaj reklamami"
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"
@@ -482,172 +478,177 @@ msgstr ""
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,7 +658,7 @@ msgstr ""
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,13 +666,13 @@ msgstr ""
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,177 +681,211 @@ msgstr ""
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 ""
807
- "Wyłączenie tej opcji skutkuje jednoczesnym wyłączeniem limitów kliknięć i "
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,7 +893,7 @@ msgstr ""
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,11 +902,11 @@ msgstr ""
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,29 +914,29 @@ msgstr ""
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,11 +944,11 @@ msgstr ""
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,7 +956,7 @@ msgstr ""
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,7 +966,7 @@ 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,30 +974,30 @@ msgid ""
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,7 +1006,7 @@ msgstr ""
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,15 +1015,15 @@ msgstr ""
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,11 +1031,11 @@ msgstr ""
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,11 +1043,11 @@ msgstr ""
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,19 +1061,19 @@ msgstr ""
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,16 +1081,16 @@ msgstr ""
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,11 +1099,11 @@ msgstr ""
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,19 +1111,19 @@ msgstr ""
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,7 +1132,7 @@ msgstr ""
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,7 +1140,7 @@ msgstr ""
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,19 +1148,19 @@ msgstr ""
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,7 +1169,7 @@ msgstr ""
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,64 +1186,64 @@ msgstr ""
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,37 +1256,37 @@ msgstr ""
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,7 +1294,7 @@ msgstr ""
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
 
@@ -1308,7 +1343,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1308
  msgstr ""
1309
 
1310
  #: dashboard/adrotate-info.php:139
1311
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1312
  msgstr ""
1313
 
1314
  #: dashboard/adrotate-info.php:148
@@ -1374,7 +1409,7 @@ msgstr "dla 5 instalacji Wordpessa."
1374
  msgid "Developer License"
1375
  msgstr "Licencja Programisty"
1376
 
1377
- #: dashboard/adrotate-info.php:182
1378
  msgid "Unlimited WordPress installations and/or networks."
1379
  msgstr ""
1380
 
@@ -1496,10 +1531,6 @@ msgstr ""
1496
  "wygaśnie, posiada błędy lub gdy reklamodawcy utworzą nową reklamę. Już nigdy "
1497
  "niczego nie przeoczysz !!"
1498
 
1499
- #: dashboard/adrotate-pro.php:83
1500
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1501
- msgstr "Aktywujesz AdRote na nielimitowanej ilości instalacji Wordpressa."
1502
-
1503
  #: dashboard/publisher/adrotate-ads-edit.php:46
1504
  msgid "The AdCode cannot be empty!"
1505
  msgstr "Kod reklamy nie może być pusty!"
@@ -1516,11 +1547,9 @@ msgstr ""
1516
 
1517
  #: dashboard/publisher/adrotate-ads-edit.php:55
1518
  msgid ""
1519
- "There is a problem saving the image specification. Please reset your image "
1520
- "and re-save the ad!"
1521
  msgstr ""
1522
- "Powstał problem przy zapisywaniu grafiki. Wgraj grafike ponownie i zapisz "
1523
- "jeszcze raz swoją reklamę!"
1524
 
1525
  #: dashboard/publisher/adrotate-ads-edit.php:58
1526
  msgid ""
@@ -1529,9 +1558,7 @@ msgid ""
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
@@ -1656,17 +1683,17 @@ msgstr ""
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
 
@@ -1683,9 +1710,9 @@ 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"
@@ -1703,7 +1730,7 @@ msgstr "Zapisz reklamę"
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
 
@@ -1954,44 +1981,44 @@ 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"
1997
 
@@ -2023,23 +2050,23 @@ 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
2044
  #: dashboard/publisher/adrotate-groups-report.php:44
2045
  msgid "CTR"
@@ -2047,8 +2074,8 @@ msgstr "CTR"
2047
 
2048
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2049
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2050
- #: dashboard/publisher/adrotate-ads-main.php:85
2051
- #: dashboard/publisher/adrotate-groups-main.php:69
2052
  msgid "Edit"
2053
  msgstr "Edytuj"
2054
 
@@ -2059,7 +2086,7 @@ msgstr "Statystyki"
2059
 
2060
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2061
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2062
- #: dashboard/publisher/adrotate-ads-main.php:85
2063
  #, fuzzy
2064
  msgid "Groups:"
2065
  msgstr "Grupy"
@@ -2099,7 +2126,7 @@ msgid "For 7 days"
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,27 +2140,22 @@ msgid "Export to XML"
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
 
2120
- #: dashboard/publisher/adrotate-ads-main.php:43
2121
  msgid "Shown"
2122
  msgstr "Wyświetlane"
2123
 
2124
- #: dashboard/publisher/adrotate-ads-main.php:44
2125
- #: dashboard/publisher/adrotate-ads-main.php:46
2126
- #: dashboard/publisher/adrotate-groups-main.php:36
2127
- #: dashboard/publisher/adrotate-groups-main.php:38
2128
  msgid "Today"
2129
  msgstr "Dziś"
2130
 
2131
- #: dashboard/publisher/adrotate-ads-main.php:85
2132
- #: dashboard/publisher/adrotate-groups-main.php:69
2133
- msgid "Report"
2134
- msgstr "Raport"
2135
-
2136
- #: dashboard/publisher/adrotate-ads-main.php:103
2137
  msgid "No ads created yet!"
2138
  msgstr "Nie utworzono jeszcze żadnych reklam!"
2139
 
@@ -2280,7 +2302,7 @@ 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
 
@@ -2348,11 +2370,6 @@ msgstr ""
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"
@@ -2380,18 +2397,18 @@ 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
@@ -2472,11 +2489,11 @@ msgstr "Po reklamie"
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
 
@@ -2496,11 +2513,11 @@ msgstr "Zamierzasz usunąc grupę reklam"
2496
  msgid "This action can not be undone!"
2497
  msgstr "Nie można cofnąć tego ruchu!"
2498
 
2499
- #: dashboard/publisher/adrotate-groups-main.php:39
2500
  msgid "Code"
2501
  msgstr "Kod"
2502
 
2503
- #: dashboard/publisher/adrotate-groups-main.php:82
2504
  msgid "No groups created!"
2505
  msgstr "Nie utworzono grupy!"
2506
 
@@ -2508,6 +2525,46 @@ msgstr "Nie utworzono grupy!"
2508
  msgid "Statistics for group"
2509
  msgstr "Statystyki dla grupy"
2510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2511
  #~ msgid "Usage:"
2512
  #~ msgstr "Użycie:"
2513
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:803
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-output.php:742
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
+ #: adrotate-output.php:743
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:744
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:745
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:763
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:765
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:772 adrotate-output.php:774
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:780
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:786
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:791
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:797
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:797
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:803
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
+ #: adrotate-output.php:828
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
+ #: adrotate-output.php:828
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
+ #: adrotate-output.php:830
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
+ #: adrotate-output.php:830
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
+ #: adrotate-output.php:832
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
+ #: adrotate-output.php:832
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
+ #: adrotate-output.php:834
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
+ #: adrotate-output.php:834
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
+ #: adrotate-output.php:834
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
+ #: adrotate-output.php:834
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
+ #: adrotate-output.php:846
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
+ #: adrotate-output.php:847
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:847
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:847
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
+ #: adrotate-output.php:891
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:891
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
+ #: adrotate-output.php:891 adrotate-output.php:967
179
  #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:891
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:927
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
+ #: adrotate-output.php:928
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:930
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:931
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
+ #: adrotate-output.php:932
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
+ #: adrotate-output.php:933
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
+ #: adrotate-output.php:959
 
 
 
 
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
220
 
221
+ #: adrotate-output.php:960
222
  msgid "Brought to you by"
223
  msgstr "Dostarczone przez "
224
 
225
+ #: adrotate-output.php:967
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:967
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:967
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:967
240
  #, fuzzy
241
  msgid "review"
242
  msgstr ""
243
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
244
 
245
+ #: adrotate-output.php:967
246
  msgid "on WordPress.org to help AdRotate grow in a positive way"
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:970
250
  msgid ""
251
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
252
  "out more about what I can do for you!"
255
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
256
  "więcej dla Wordpress'a."
257
 
258
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
259
  msgid "Visit the"
260
  msgstr "Odwiedź"
261
 
262
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
263
  msgid "website"
264
  msgstr "strone internetową"
265
 
266
+ #: adrotate-output.php:1000
267
  msgid "Available in AdRotate Pro"
268
  msgstr "Dostępne w wersji AdRotate Pro"
269
 
270
+ #: adrotate-output.php:1000
271
  msgid "More information..."
272
  msgstr "Więcej informacji"
273
 
274
+ #: adrotate-output.php:1001
275
  msgid "This feature is available in AdRotate Pro"
276
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
277
 
278
+ #: adrotate-output.php:1001
279
  msgid "Learn more"
280
  msgstr "Dowiedź się więcej"
281
 
411
  msgid "Manage Groups"
412
  msgstr "Zarządzaj grupami"
413
 
414
+ #: adrotate.php:111 adrotate.php:441
415
  #, fuzzy
416
  msgid "Manage Schedules"
417
  msgstr "Zarządzaj"
478
  msgid "Export created"
479
  msgstr "Reklama utworzona"
480
 
481
+ #: adrotate.php:221
482
  msgid "Action prohibited"
483
  msgstr "Czynność zabroniona."
484
 
485
+ #: adrotate.php:223 adrotate.php:371
486
  msgid "No data found in selected time period"
487
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
488
 
489
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
490
  msgid "Manage"
491
  msgstr "Zarządzaj"
492
 
493
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
494
  msgid "Add New"
495
  msgstr "Dodaj nową"
496
 
497
+ #: adrotate.php:360
498
  msgid "Group Management"
499
  msgstr "Zarządzanie grupą reklam"
500
 
501
+ #: adrotate.php:363
502
  msgid "Group created"
503
  msgstr "Grupa utworzona."
504
 
505
+ #: adrotate.php:365
506
  msgid "Group updated"
507
  msgstr "Grupa zaktualizowana"
508
 
509
+ #: adrotate.php:367
510
  msgid "Group deleted"
511
  msgstr "Grupa usunięta"
512
 
513
+ #: adrotate.php:369
514
  msgid "Group including it's Ads deleted"
515
  msgstr "Grupa wraz z reklamami usunięta"
516
 
517
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
518
+ #: dashboard/publisher/adrotate-groups-main.php:72
519
+ msgid "Report"
520
+ msgstr "Raport"
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:177
535
+ #: dashboard/publisher/adrotate-ads-main.php:114
536
  #: dashboard/publisher/adrotate-groups-edit.php:75
537
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-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 "Start / Koniec"
567
 
568
+ #: adrotate.php:460
569
  #, fuzzy
570
  msgid "End"
571
  msgstr "Start / Koniec"
572
 
573
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
574
  #: dashboard/publisher/adrotate-groups-main.php:34
575
  msgid "Ads"
576
  msgstr "Reklamy"
577
 
578
+ #: adrotate.php:463
579
  msgid "Max Clicks"
580
  msgstr "Maksymalna liczna kliknięć"
581
 
582
+ #: adrotate.php:464
583
  msgid "Max Impressions"
584
  msgstr "Maksymalna liczba wyświetleń"
585
 
586
+ #: adrotate.php:494
587
  #, fuzzy
588
  msgid "No schedules created yet!"
589
  msgstr "Nie utworzono jeszcze żadnych reklam!"
590
 
591
+ #: adrotate.php:499
592
  #, fuzzy
593
  msgid "Easily manage your schedules from here with AdRotate Pro."
594
  msgstr "Więcej ustawień z AdRotate Pro"
595
 
596
+ #: adrotate.php:499 adrotate.php:562
597
  #, fuzzy
598
  msgid "Upgrade today!"
599
  msgstr "Dziś"
600
 
601
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
602
+ #: dashboard/publisher/adrotate-groups-edit.php:383
603
  msgid "Expires soon."
604
  msgstr "Wygasa wkrótce."
605
 
606
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
607
+ #: dashboard/publisher/adrotate-groups-edit.php:384
608
  msgid "Has expired."
609
  msgstr "Wygasła."
610
 
611
+ #: adrotate.php:527
612
  #, fuzzy
613
  msgid "Media Management available in AdRotate Pro"
614
  msgstr "Dostępne w wersji AdRotate Pro"
615
 
616
+ #: adrotate.php:529
617
  msgid ""
618
  "Upload images to the AdRotate Pro banners folder from here. This is "
619
  "especially useful if you use responsive adverts with multiple images."
620
  msgstr ""
621
 
622
+ #: adrotate.php:529
623
  #, fuzzy
624
  msgid "Media uploading and management is available in AdRotate Pro."
625
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
626
 
627
+ #: adrotate.php:531
628
  #, fuzzy
629
  msgid "Upload new banner image"
630
  msgstr "Obraz banera:"
631
 
632
+ #: adrotate.php:532
633
  #, fuzzy
634
  msgid "Accepted files are:"
635
  msgstr "Użyj znacznika %image% w kodzie . Akceptowane pliki:"
636
 
637
+ #: adrotate.php:532
638
  msgid "Maximum size is 512Kb."
639
  msgstr ""
640
 
641
+ #: adrotate.php:532
642
  msgid "Important:"
643
  msgstr ""
644
 
645
+ #: adrotate.php:532
646
  msgid ""
647
  "Make sure your file has no spaces or special characters in the name. Replace "
648
  "spaces with a - or _."
649
  msgstr ""
650
 
651
+ #: adrotate.php:534
652
  #, fuzzy
653
  msgid ""
654
  "For responsive adverts make sure the filename is in the following format; "
658
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
659
  "pełnego wachlarza rozmiarów.'"
660
 
661
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
662
  msgid ""
663
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
664
  "filename instead of \".full\" for the various viewports."
666
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
667
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
668
 
669
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
670
  #: dashboard/publisher/adrotate-groups-edit.php:308
671
  #: dashboard/publisher/adrotate-groups-edit.php:316
672
  msgid "Example:"
673
  msgstr "Przykład:"
674
 
675
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
676
  #, fuzzy
677
  msgid ""
678
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
681
  "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
682
  "różnych widokach. Wymaga jQuery."
683
 
684
+ #: adrotate.php:540
685
  #, fuzzy
686
  msgid "Upload image"
687
  msgstr "Obraz banera:"
688
 
689
+ #: adrotate.php:543
690
  msgid "Available banner images in"
691
  msgstr ""
692
 
693
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
694
  msgid "Name"
695
  msgstr "Nazwa"
696
 
697
+ #: adrotate.php:549
698
  #, fuzzy
699
  msgid "Actions"
700
  msgstr "Działania masowe"
701
 
702
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
703
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
704
  #: dashboard/publisher/adrotate-ads-main-error.php:21
705
  #: dashboard/publisher/adrotate-ads-main.php:22
706
  msgid "Delete"
707
  msgstr "Usuń"
708
 
709
+ #: adrotate.php:562
710
  msgid ""
711
  "Make sure the banner images are not in use by adverts when you delete them!"
712
  msgstr ""
713
 
714
+ #: adrotate.php:562
715
  #, fuzzy
716
  msgid "Manage your banner folder from here with AdRotate Pro."
717
  msgstr "Więcej ustawień z AdRotate Pro"
718
 
719
+ #: adrotate.php:606
720
  msgid "AdRotate Settings"
721
  msgstr "Ustawienia AdRotate"
722
 
723
+ #: adrotate.php:609
724
  msgid "Settings saved"
725
  msgstr "Ustawienia zapisane"
726
 
727
+ #: adrotate.php:611
728
  msgid "Database optimized"
729
  msgstr "Baza danych zoptymalizowana"
730
 
731
+ #: adrotate.php:613
732
  msgid "Database repaired"
733
  msgstr "Baza danych naprawiona"
734
 
735
+ #: adrotate.php:615
736
  msgid "Ads evaluated and statuses have been corrected where required"
737
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
738
 
739
+ #: adrotate.php:617
740
  msgid "Empty database records removed"
741
  msgstr "Usunięto puste rekordy bazy danych"
742
 
743
+ #: adrotate.php:619
744
  msgid "Database can only be optimized or cleaned once every hour"
745
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
746
 
747
+ #: adrotate.php:627
748
  msgid "Access Rights"
749
  msgstr "Prawa dostępu"
750
 
751
+ #: adrotate.php:628
752
  msgid "Who has access to what?"
753
  msgstr "Kto ma dostęp i do czego?"
754
 
755
+ #: adrotate.php:631
756
  msgid "Manage/Add/Edit adverts"
757
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
758
 
759
+ #: adrotate.php:635
760
  msgid "Role to see and add/edit ads."
761
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
762
 
763
+ #: adrotate.php:639
764
  msgid "Delete/Reset adverts"
765
  msgstr "Usuń/Resetuj reklamy"
766
 
767
+ #: adrotate.php:643
768
  msgid "Role to delete ads and reset stats."
769
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
770
 
771
+ #: adrotate.php:647
772
  msgid "Manage/Add/Edit groups"
773
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
774
 
775
+ #: adrotate.php:651
776
  msgid "Role to see and add/edit groups."
777
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
778
 
779
+ #: adrotate.php:655
780
  msgid "Delete groups"
781
  msgstr "Usuwanie grup"
782
 
783
+ #: adrotate.php:659
784
  msgid "Role to delete groups."
785
  msgstr "Uprawnienia do usuwania grup"
786
 
787
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
788
+ #: adrotate.php:890
789
  msgid "Update Options"
790
  msgstr "Zapisz opcje"
791
 
792
+ #: adrotate.php:691
793
  msgid "Statistics"
794
  msgstr "Statystyki"
795
 
796
+ #: adrotate.php:694
797
+ msgid "How to track stats"
798
+ msgstr ""
799
+
800
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
801
+ #: dashboard/publisher/adrotate-groups-edit.php:240
802
+ msgid "Disabled"
803
+ msgstr "Wyłącz"
804
 
805
+ #: adrotate.php:703
806
+ msgid "No impressions and clicks are recorded for any of your adverts."
807
+ msgstr ""
808
 
809
+ #: adrotate.php:704
810
+ msgid "Tracks impressions and clicks internally."
811
+ msgstr ""
812
+
813
+ #: adrotate.php:705
814
+ msgid ""
815
+ "Click and Impression recording, Click and impression limits, impression "
816
+ "spread for schedules, local stats display."
817
+ msgstr ""
818
+
819
+ #: adrotate.php:706
820
+ msgid ""
821
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
822
+ "attributes."
823
+ msgstr ""
824
+
825
+ #: adrotate.php:706 adrotate.php:708
826
+ msgid "Available in AdRotate Pro!"
827
  msgstr ""
 
 
 
828
 
829
+ #: adrotate.php:707
830
+ msgid ""
831
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
832
+ "Contents."
833
+ msgstr ""
834
+
835
+ #: adrotate.php:708
836
+ msgid ""
837
+ "Requires Google Analytics tracker installed in your sites footer! uses "
838
+ "onClick() in adverts."
839
+ msgstr ""
840
+
841
+ #: adrotate.php:709
842
+ msgid ""
843
+ "Click and Impression recording via Cookie, stats are displayed in Events."
844
+ msgstr ""
845
+
846
+ #: adrotate.php:714
847
  msgid "Impressions timer"
848
  msgstr "Licznik wyświetleń"
849
 
850
+ #: adrotate.php:716 adrotate.php:723
851
  msgid "Seconds."
852
  msgstr "Sekundy"
853
 
854
+ #: adrotate.php:717
855
  #, fuzzy
856
  msgid "Default: 60."
857
  msgstr "Domyślny"
858
 
859
+ #: adrotate.php:717
860
  #, fuzzy
861
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
862
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
863
 
864
+ #: adrotate.php:721
865
  msgid "Clicks timer"
866
  msgstr "Licznik kliknięć"
867
 
868
+ #: adrotate.php:724
869
  #, fuzzy
870
  msgid "Default: 86400."
871
  msgstr "Domyślny"
872
 
873
+ #: adrotate.php:724
874
  #, fuzzy
875
  msgid ""
876
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
877
  msgstr ""
878
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
879
 
880
+ #: adrotate.php:729
881
  msgid "Bot filter"
882
  msgstr "Filtr Botów Internetowych"
883
 
884
+ #: adrotate.php:732
885
  msgid "User-Agent Filter"
886
  msgstr "Filtr Agentów"
887
 
888
+ #: adrotate.php:735
889
  msgid ""
890
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
891
  "prevent impressions and clicks counted on them."
893
  "Średnik oddziala listę słów. Filtruj boty/pajączki/agentów by chronić się "
894
  "przed zliczaniem kliknięć i wyświetleń przez te programy."
895
 
896
+ #: adrotate.php:736
897
  msgid ""
898
  "Keep in mind that this might give false positives. The word 'google' also "
899
  "matches 'googlebot', but not vice-versa. So be careful!"
902
  "również do słowa \"Googlebot\", ale nie odwrotnie. Więc należy być "
903
  "ostrożnym!"
904
 
905
+ #: adrotate.php:736
906
  msgid "Keep your list up-to-date"
907
  msgstr "Pamietaj by twoja lista była akutalna."
908
 
909
+ #: adrotate.php:737
910
  msgid ""
911
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
912
  "other characters are stripped out."
914
  "Używaj tylko słów z literami i cyframi, [- _] są też dozwolone. Wszystkie "
915
  "inne znaki są usuwane."
916
 
917
+ #: adrotate.php:738
918
  msgid ""
919
  "Additionally to the list specified here, empty User-Agents are blocked as "
920
  "well."
921
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
922
 
923
+ #: adrotate.php:738
924
  msgid "Learn more about"
925
  msgstr "Dowiedź się więcej o"
926
 
927
+ #: adrotate.php:738
928
  msgid "user-agents"
929
  msgstr "Agenci przeglądarek"
930
 
931
+ #: adrotate.php:747
932
  msgid "Miscellaneous"
933
  msgstr "Różne"
934
 
935
+ #: adrotate.php:750
936
  msgid "Widget alignment"
937
  msgstr "Wyrównanie widżetu"
938
 
939
+ #: adrotate.php:751
940
  msgid ""
941
  "Check this box if your widgets do not align in your themes sidebar. (Does "
942
  "not always help!)"
944
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
945
  "pomaga!)"
946
 
947
+ #: adrotate.php:754
948
  msgid "Widget padding"
949
  msgstr "Pusta przestrzeń Widżetu"
950
 
951
+ #: adrotate.php:755
952
  msgid ""
953
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
954
  "not always work!)"
956
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
957
  "działa)"
958
 
959
+ #: adrotate.php:760 adrotate.php:771
960
  #, fuzzy
961
  msgid "NOTICE:"
962
  msgstr ""
966
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
967
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
968
 
969
+ #: adrotate.php:761
970
  msgid ""
971
  "You have enabled W3 Total Caching support but not defined the security hash. "
972
  "You need to add the following line to your wp-config.php near the bottom or "
974
  "needs to be enabled in W3 Total Cache as well too."
975
  msgstr ""
976
 
977
+ #: adrotate.php:765
978
  msgid "W3 Total Caching"
979
  msgstr "W3 Total Caching"
980
 
981
+ #: adrotate.php:766
982
  msgid "Check this box if you use W3 Total Caching on your site."
983
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
984
 
985
+ #: adrotate.php:772
986
  msgid ""
987
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
988
  "this function will not work. WP Super Cache has discontinued support for "
989
  "dynamic content."
990
  msgstr ""
991
 
992
+ #: adrotate.php:776
993
  msgid "WP Super Cache"
994
  msgstr "WP Super Cache"
995
 
996
+ #: adrotate.php:777
997
  msgid "Check this box if you use WP Super Cache on your site."
998
  msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
999
 
1000
+ #: adrotate.php:782
1001
  msgid ""
1002
  "It may take a while for the ad to start rotating. The caching plugin needs "
1003
  "to refresh the cache. This can take up to a week if not done manually."
1006
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
1007
  "jeśli nie wykonasz tego ręcznie."
1008
 
1009
+ #: adrotate.php:782
1010
  msgid ""
1011
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1012
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1015
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
1016
  "strony."
1017
 
1018
+ #: adrotate.php:786
1019
  msgid "Javascript"
1020
  msgstr ""
1021
 
1022
+ #: adrotate.php:789
1023
  msgid "Load jQuery"
1024
  msgstr "Załąduj jQuery"
1025
 
1026
+ #: adrotate.php:790
1027
  msgid ""
1028
  "jQuery is required for all Javascript features below. Enable this if your "
1029
  "theme does not load jQuery already."
1031
  "jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
1032
  "jeśli strona nie załądowałą jeszcze jQuery."
1033
 
1034
+ #: adrotate.php:793
1035
  msgid "Load in footer?"
1036
  msgstr "Załadować do stopki?"
1037
 
1038
+ #: adrotate.php:794
1039
  msgid ""
1040
  "Enable if you want to load the above libraries in the footer. Your theme "
1041
  "needs to call wp_footer() for this to work."
1043
  "Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
1044
  "szablon musi odwoływać się do wp_footer() by działać."
1045
 
1046
+ #: adrotate.php:802
1047
  msgid "Maintenance"
1048
  msgstr "Ostrzeżenie"
1049
 
1050
+ #: adrotate.php:803
1051
  msgid ""
1052
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1053
  "They only apply to your ads/groups and stats. Not to other settings or other "
1061
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
1062
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
1063
 
1064
+ #: adrotate.php:818 adrotate.php:820
1065
  msgid "Optimize Database"
1066
  msgstr "Optymalizuj bazę danych"
1067
 
1068
+ #: adrotate.php:820
1069
  msgid "You are about to optimize the AdRotate database."
1070
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
1071
 
1072
+ #: adrotate.php:820
1073
  msgid "Did you make a backup of your database?"
1074
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
1075
 
1076
+ #: adrotate.php:820
1077
  msgid ""
1078
  "This may take a moment and may cause your website to respond slow "
1079
  "temporarily!"
1081
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
1082
  "wolniej przez jakiś czas."
1083
 
1084
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1085
  #: dashboard/publisher/adrotate-groups-main.php:24
1086
  msgid "OK to continue, CANCEL to stop."
1087
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1088
 
1089
+ #: adrotate.php:821
1090
  msgid "Cleans up overhead data in the AdRotate tables."
1091
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
1092
 
1093
+ #: adrotate.php:822
1094
  msgid ""
1095
  "Overhead data is accumulated garbage resulting from many changes you've "
1096
  "made. This can vary from nothing to hundreds of KiB of data."
1099
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
1100
  "kilobajtow do kilku GB."
1101
 
1102
+ #: adrotate.php:826 adrotate.php:828
1103
  msgid "Clean-up Database"
1104
  msgstr "Wyczyść bazę danych"
1105
 
1106
+ #: adrotate.php:828
1107
  msgid ""
1108
  "You are about to clean up your database. This may delete expired schedules "
1109
  "and older statistics."
1111
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
1112
  "harmonogramów i starych statystyk."
1113
 
1114
+ #: adrotate.php:828
1115
  msgid "Are you sure you want to continue?"
1116
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
1117
 
1118
+ #: adrotate.php:828 adrotate.php:836
1119
  msgid "This might take a while and may slow down your site during this action!"
1120
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
1121
 
1122
+ #: adrotate.php:829
1123
  msgid "Delete stats older than 356 days (Optional)."
1124
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
1125
 
1126
+ #: adrotate.php:830
1127
  msgid ""
1128
  "AdRotate creates empty records when you start making ads or groups. In rare "
1129
  "occasions these records are faulty."
1132
  "Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
1133
  "systemu."
1134
 
1135
+ #: adrotate.php:830
1136
  msgid ""
1137
  "If you made an ad or group that does not save when you make it use this "
1138
  "button to delete those empty records."
1140
  "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
1141
  "ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
1142
 
1143
+ #: adrotate.php:830
1144
  msgid ""
1145
  "Additionally you can clean up old statistics. This will improve the speed of "
1146
  "your site."
1148
  "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
1149
  "strony."
1150
 
1151
+ #: adrotate.php:834
1152
  msgid "Re-evaluate Ads"
1153
  msgstr "Oszacuj ponownie reklamy."
1154
 
1155
+ #: adrotate.php:836
1156
  msgid "Re-evaluate all ads"
1157
  msgstr "Oszacuj ponownie wszystkie reklamy."
1158
 
1159
+ #: adrotate.php:836
1160
  msgid "You are about to check all ads for errors."
1161
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
1162
 
1163
+ #: adrotate.php:837
1164
  msgid ""
1165
  "This will apply all evaluation rules to all ads to see if any error slipped "
1166
  "in. Normally you should not need this feature."
1169
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
1170
  "potrzebujesz wykorzystywać tej funkcji."
1171
 
1172
+ #: adrotate.php:841
1173
  msgid ""
1174
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1175
  "becomes unusable in any way or by any means in whichever way I will not take "
1186
  "kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
1187
  "roszczeń."
1188
 
1189
+ #: adrotate.php:849
1190
  msgid "Troubleshooting"
1191
  msgstr "Masz problem"
1192
 
1193
+ #: adrotate.php:852
1194
  msgid "Current version:"
1195
  msgstr "Bieżąca wersja:"
1196
 
1197
+ #: adrotate.php:853
1198
  msgid "Previous version:"
1199
  msgstr "Poprzednia wersja:"
1200
 
1201
+ #: adrotate.php:856
1202
  msgid "Current database version:"
1203
  msgstr "Obecna wersja bazy danych:"
1204
 
1205
+ #: adrotate.php:857
1206
  msgid "Previous database version:"
1207
  msgstr "Poprzednia wersja bazy danych:"
1208
 
1209
+ #: adrotate.php:860
1210
  #, fuzzy
1211
  msgid "Ad evaluation next run:"
1212
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1213
 
1214
+ #: adrotate.php:861 adrotate.php:865
1215
  msgid "Not scheduled!"
1216
  msgstr "Nie ustalono harmnogramu!"
1217
 
1218
+ #: adrotate.php:864
1219
  msgid "Clean Trackerdata next run:"
1220
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1221
 
1222
+ #: adrotate.php:868
1223
  msgid "Current status of adverts"
1224
  msgstr "Bieżący status reklam"
1225
 
1226
+ #: adrotate.php:869
1227
  msgid "Normal"
1228
  msgstr "Normalny"
1229
 
1230
+ #: adrotate.php:869
1231
  msgid "Error"
1232
  msgstr "Błąd"
1233
 
1234
+ #: adrotate.php:869
1235
  msgid "Expired"
1236
  msgstr "Wygasa"
1237
 
1238
+ #: adrotate.php:869
1239
  msgid "Expires Soon"
1240
  msgstr "Wygas wkrótce"
1241
 
1242
+ #: adrotate.php:869
1243
  msgid "Unknown Status"
1244
  msgstr "Nieznany status"
1245
 
1246
+ #: adrotate.php:872
1247
  msgid ""
1248
  "NOTE: The below options are not meant for normal use and are only there for "
1249
  "developers to review saved settings or how ads are selected. These can be "
1256
  "problemów na żądanie, ale do normalnego użytkowania, powinny one być "
1257
  "pozostawiona nie zaznaczone!"
1258
 
1259
+ #: adrotate.php:876
1260
  msgid "Developer Debug"
1261
  msgstr "Debuger dewelopera"
1262
 
1263
+ #: adrotate.php:878
1264
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1265
  msgstr ""
1266
  "Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
1267
  "związane z zewnętrznym widokiem Wordpressa."
1268
 
1269
+ #: adrotate.php:879
1270
  msgid "Show all settings, dashboard routines and related values."
1271
  msgstr ""
1272
  "Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
1273
 
1274
+ #: adrotate.php:880
1275
  msgid "Show array of all userroles and capabilities."
1276
  msgstr "Pokaż tablice wszystkich ról i uprawnień."
1277
 
1278
+ #: adrotate.php:881
1279
  msgid "Review saved advertisers! Visible to advertisers."
1280
  msgstr ""
1281
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
1282
 
1283
+ #: adrotate.php:882
1284
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1285
  msgstr ""
1286
  "Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
1287
  "grupy. Widoczne tylko dla reklamodawców."
1288
 
1289
+ #: adrotate.php:883
1290
  msgid ""
1291
  "Disable timers for clicks and impressions and enable a alert window for "
1292
  "clicktracking."
1294
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
1295
  "śledzenia kliknięć."
1296
 
1297
+ #: adrotate.php:884
1298
  msgid "Temporarily disable encryption on the redirect url."
1299
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
1300
 
1343
  msgstr ""
1344
 
1345
  #: dashboard/adrotate-info.php:139
1346
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1347
  msgstr ""
1348
 
1349
  #: dashboard/adrotate-info.php:148
1409
  msgid "Developer License"
1410
  msgstr "Licencja Programisty"
1411
 
1412
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1413
  msgid "Unlimited WordPress installations and/or networks."
1414
  msgstr ""
1415
 
1531
  "wygaśnie, posiada błędy lub gdy reklamodawcy utworzą nową reklamę. Już nigdy "
1532
  "niczego nie przeoczysz !!"
1533
 
 
 
 
 
1534
  #: dashboard/publisher/adrotate-ads-edit.php:46
1535
  msgid "The AdCode cannot be empty!"
1536
  msgstr "Kod reklamy nie może być pusty!"
1547
 
1548
  #: dashboard/publisher/adrotate-ads-edit.php:55
1549
  msgid ""
1550
+ "There is a problem saving the image. Please reset your image and re-save the "
1551
+ "ad!"
1552
  msgstr ""
 
 
1553
 
1554
  #: dashboard/publisher/adrotate-ads-edit.php:58
1555
  msgid ""
1558
  msgstr ""
1559
 
1560
  #: dashboard/publisher/adrotate-ads-edit.php:61
1561
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1562
  msgstr ""
1563
 
1564
  #: dashboard/publisher/adrotate-ads-edit.php:64
1683
  "zawiera treści, te pole ma pierwszeństwo."
1684
 
1685
  #: dashboard/publisher/adrotate-ads-edit.php:156
1686
+ msgid "Statistics:"
1687
+ msgstr ""
1688
 
1689
  #: dashboard/publisher/adrotate-ads-edit.php:158
1690
+ msgid "Enable click and impression tracking for this advert."
1691
+ msgstr ""
1692
 
1693
  #: dashboard/publisher/adrotate-ads-edit.php:159
1694
  msgid ""
1695
  "Note: Clicktracking does not work for Javascript adverts such as those "
1696
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1697
  "supported."
1698
  msgstr ""
1699
 
1710
  msgstr "Niepokazuj tej reklamy."
1711
 
1712
  #: dashboard/publisher/adrotate-ads-edit.php:177
1713
+ #: dashboard/publisher/adrotate-ads-main.php:114
1714
  #: dashboard/publisher/adrotate-groups-edit.php:75
1715
+ #: dashboard/publisher/adrotate-groups-main.php:92
1716
  #, fuzzy
1717
  msgid "Get more features with AdRotate Pro."
1718
  msgstr "Więcej ustawień z AdRotate Pro"
1730
  #: dashboard/publisher/adrotate-ads-edit.php:437
1731
  #: dashboard/publisher/adrotate-groups-edit.php:154
1732
  #: dashboard/publisher/adrotate-groups-edit.php:297
1733
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1734
  msgid "Cancel"
1735
  msgstr "Anuluj"
1736
 
1981
  msgstr "Reklamy w grupie"
1982
 
1983
  #: dashboard/publisher/adrotate-ads-edit.php:415
1984
+ #: dashboard/publisher/adrotate-groups-main.php:61
1985
  msgid "Default"
1986
  msgstr "Domyślny"
1987
 
1988
  #: dashboard/publisher/adrotate-ads-edit.php:416
1989
+ #: dashboard/publisher/adrotate-groups-main.php:62
1990
  msgid "Dynamic"
1991
  msgstr "Dynamiczny"
1992
 
1993
  #: dashboard/publisher/adrotate-ads-edit.php:416
1994
+ #: dashboard/publisher/adrotate-groups-main.php:62
1995
  msgid "second rotation"
1996
  msgstr "drugi obrót"
1997
 
1998
  #: dashboard/publisher/adrotate-ads-edit.php:417
1999
+ #: dashboard/publisher/adrotate-groups-main.php:63
2000
  msgid "Block"
2001
  msgstr "Blok"
2002
 
2003
  #: dashboard/publisher/adrotate-ads-edit.php:417
2004
+ #: dashboard/publisher/adrotate-groups-main.php:63
2005
  msgid "grid"
2006
  msgstr "siatka"
2007
 
2008
  #: dashboard/publisher/adrotate-ads-edit.php:418
2009
  #: dashboard/publisher/adrotate-groups-edit.php:192
2010
+ #: dashboard/publisher/adrotate-groups-main.php:64
2011
  msgid "Post Injection"
2012
  msgstr "Umieszczanie we wpisach"
2013
 
2014
  #: dashboard/publisher/adrotate-ads-edit.php:419
2015
+ #: dashboard/publisher/adrotate-groups-main.php:65
2016
  msgid "Geolocation"
2017
  msgstr "Geolokalizacja"
2018
 
2019
  #: dashboard/publisher/adrotate-ads-edit.php:425
2020
  #: dashboard/publisher/adrotate-groups-edit.php:61
2021
+ #: dashboard/publisher/adrotate-groups-main.php:72
2022
  msgid "Mode"
2023
  msgstr "Tryb"
2024
 
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:329
2054
+ #: dashboard/publisher/adrotate-groups-main.php:36
2055
  #: dashboard/publisher/adrotate-groups-report.php:40
2056
  msgid "Impressions"
2057
  msgstr "Wyświetlenia"
2058
 
2059
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2060
+ #: dashboard/publisher/adrotate-ads-main.php:46
2061
  #: dashboard/publisher/adrotate-ads-report.php:35
2062
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2063
+ #: dashboard/publisher/adrotate-groups-main.php:38
2064
  #: dashboard/publisher/adrotate-groups-report.php:41
2065
  msgid "Clicks"
2066
  msgstr "Kliknięcia"
2067
 
2068
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2069
+ #: dashboard/publisher/adrotate-ads-main.php:48
2070
  #: dashboard/publisher/adrotate-ads-report.php:38
2071
  #: dashboard/publisher/adrotate-groups-report.php:44
2072
  msgid "CTR"
2074
 
2075
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2076
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2077
+ #: dashboard/publisher/adrotate-ads-main.php:87
2078
+ #: dashboard/publisher/adrotate-groups-main.php:72
2079
  msgid "Edit"
2080
  msgstr "Edytuj"
2081
 
2086
 
2087
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2088
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2089
+ #: dashboard/publisher/adrotate-ads-main.php:87
2090
  #, fuzzy
2091
  msgid "Groups:"
2092
  msgstr "Grupy"
2126
  msgstr "Na 7 dni"
2127
 
2128
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2129
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2130
  msgid "Configuration errors."
2131
  msgstr "Błedy konfiguracji."
2132
 
2140
  msgstr "Eksportuj ustawienia"
2141
 
2142
  #: dashboard/publisher/adrotate-ads-main.php:42
2143
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2144
  msgid "Weight"
2145
  msgstr "Waga"
2146
 
2147
+ #: dashboard/publisher/adrotate-ads-main.php:44
2148
  msgid "Shown"
2149
  msgstr "Wyświetlane"
2150
 
2151
+ #: dashboard/publisher/adrotate-ads-main.php:45
2152
+ #: dashboard/publisher/adrotate-ads-main.php:47
2153
+ #: dashboard/publisher/adrotate-groups-main.php:37
2154
+ #: dashboard/publisher/adrotate-groups-main.php:39
2155
  msgid "Today"
2156
  msgstr "Dziś"
2157
 
2158
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2159
  msgid "No ads created yet!"
2160
  msgstr "Nie utworzono jeszcze żadnych reklam!"
2161
 
2302
 
2303
  #: dashboard/publisher/adrotate-groups-edit.php:153
2304
  #: dashboard/publisher/adrotate-groups-edit.php:296
2305
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2306
  msgid "Save Group"
2307
  msgstr "Zapisz grupę"
2308
 
2370
  msgid "Include ads in categories?"
2371
  msgstr "Wyświetlać reklamy w kategoriach?"
2372
 
 
 
 
 
 
2373
  #: dashboard/publisher/adrotate-groups-edit.php:200
2374
  #: dashboard/publisher/adrotate-groups-edit.php:241
2375
  msgid "Before content"
2397
 
2398
  #: dashboard/publisher/adrotate-groups-edit.php:210
2399
  #: dashboard/publisher/adrotate-groups-edit.php:251
2400
+ msgid "the second paragraph"
2401
+ msgstr ""
2402
 
2403
  #: dashboard/publisher/adrotate-groups-edit.php:211
2404
  #: dashboard/publisher/adrotate-groups-edit.php:252
2405
+ msgid "the third paragraph"
2406
+ msgstr ""
2407
 
2408
  #: dashboard/publisher/adrotate-groups-edit.php:212
2409
  #: dashboard/publisher/adrotate-groups-edit.php:253
2410
+ msgid "the fourth paragraph"
2411
+ msgstr ""
2412
 
2413
  #: dashboard/publisher/adrotate-groups-edit.php:214
2414
  #: dashboard/publisher/adrotate-groups-edit.php:255
2489
  msgid "Select Ads"
2490
  msgstr "Wybierz reklamy"
2491
 
2492
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2493
  msgid "Visible until"
2494
  msgstr "Widoczne do"
2495
 
2496
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2497
  msgid "No ads created!"
2498
  msgstr "Nie utworzono reklam!"
2499
 
2513
  msgid "This action can not be undone!"
2514
  msgstr "Nie można cofnąć tego ruchu!"
2515
 
2516
+ #: dashboard/publisher/adrotate-groups-main.php:41
2517
  msgid "Code"
2518
  msgstr "Kod"
2519
 
2520
+ #: dashboard/publisher/adrotate-groups-main.php:87
2521
  msgid "No groups created!"
2522
  msgstr "Nie utworzono grupy!"
2523
 
2525
  msgid "Statistics for group"
2526
  msgstr "Statystyki dla grupy"
2527
 
2528
+ #~ msgid "Enable stats"
2529
+ #~ msgstr "Włącz statystyki"
2530
+
2531
+ #~ msgid "Track clicks and impressions."
2532
+ #~ msgstr "Śledź kliknięcia i wyświetlenia."
2533
+
2534
+ #, fuzzy
2535
+ #~ msgid ""
2536
+ #~ "Disabling this also disables click and impression limits on schedules."
2537
+ #~ msgstr ""
2538
+ #~ "Wyłączenie tej opcji skutkuje jednoczesnym wyłączeniem limitów kliknięć i "
2539
+ #~ "wyświetleń ustalonych w harmonogramach dodatkowo wyłącza ustalone "
2540
+ #~ "przedziały czasowe dla wyświetlania reklam."
2541
+
2542
+ #~ msgid ""
2543
+ #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
2544
+ #~ msgstr "Aktywujesz AdRote na nielimitowanej ilości instalacji Wordpressa."
2545
+
2546
+ #~ msgid ""
2547
+ #~ "There is a problem saving the image specification. Please reset your "
2548
+ #~ "image and re-save the ad!"
2549
+ #~ msgstr ""
2550
+ #~ "Powstał problem przy zapisywaniu grafiki. Wgraj grafike ponownie i zapisz "
2551
+ #~ "jeszcze raz swoją reklamę!"
2552
+
2553
+ #~ msgid "Clicktracking:"
2554
+ #~ msgstr "Śledzenie kliknięć"
2555
+
2556
+ #~ msgid "Enable click tracking for this advert."
2557
+ #~ msgstr "Włącz śledzenie kliknięc dla tej strony."
2558
+
2559
+ #~ msgid "the 2nd paragraph"
2560
+ #~ msgstr "Drugi akapit"
2561
+
2562
+ #~ msgid "the 3rd paragraph"
2563
+ #~ msgstr "Trzeci akapit"
2564
+
2565
+ #~ msgid "the 4th paragraph"
2566
+ #~ msgstr "Czwarty akapit"
2567
+
2568
  #~ msgid "Usage:"
2569
  #~ msgstr "Użycie:"
2570
 
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-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,19 +16,19 @@ msgstr ""
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,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: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,158 +89,154 @@ 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: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,28 +247,28 @@ msgstr ""
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
 
@@ -410,7 +406,7 @@ msgstr "Upravljajte oglasima"
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"
@@ -478,372 +474,412 @@ msgstr ""
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,7 +887,7 @@ msgstr ""
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,21 +897,21 @@ msgstr ""
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,23 +919,23 @@ msgstr ""
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,12 +943,12 @@ msgstr ""
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,7 +957,7 @@ msgstr ""
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,7 +967,7 @@ 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,34 +975,34 @@ msgid ""
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,7 +1010,7 @@ msgstr ""
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,32 +1018,32 @@ msgstr ""
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,11 +1054,11 @@ msgstr ""
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,19 +1073,19 @@ msgstr ""
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,16 +1093,16 @@ msgstr ""
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,68 +1110,68 @@ msgstr ""
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,7 +1179,7 @@ msgstr ""
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,45 +1196,45 @@ msgstr ""
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,27 +1243,27 @@ 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,43 +1275,43 @@ msgstr ""
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
 
@@ -1324,7 +1360,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1324
  msgstr ""
1325
 
1326
  #: dashboard/adrotate-info.php:139
1327
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1328
  msgstr ""
1329
 
1330
  #: dashboard/adrotate-info.php:148
@@ -1393,7 +1429,7 @@ msgstr "Instalacije"
1393
  msgid "Developer License"
1394
  msgstr "Debug za programera"
1395
 
1396
- #: dashboard/adrotate-info.php:182
1397
  msgid "Unlimited WordPress installations and/or networks."
1398
  msgstr ""
1399
 
@@ -1499,10 +1535,6 @@ msgid ""
1499
  "miss an expiration date again."
1500
  msgstr ""
1501
 
1502
- #: dashboard/adrotate-pro.php:83
1503
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1504
- msgstr ""
1505
-
1506
  #: dashboard/publisher/adrotate-ads-edit.php:46
1507
  msgid "The AdCode cannot be empty!"
1508
  msgstr "AdCode ne može biti prazan !"
@@ -1517,11 +1549,9 @@ msgstr "Vi ste koristili %image% u AdCode ali niste izabrali sliku !"
1517
 
1518
  #: dashboard/publisher/adrotate-ads-edit.php:55
1519
  msgid ""
1520
- "There is a problem saving the image specification. Please reset your image "
1521
- "and re-save the ad!"
1522
  msgstr ""
1523
- "Postoji problem čuvanja slike specifikaciju. Molimo resetujete sliku i "
1524
- "ponovo sačuvajte oglas !"
1525
 
1526
  #: dashboard/publisher/adrotate-ads-edit.php:58
1527
  msgid ""
@@ -1530,9 +1560,7 @@ msgid ""
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
@@ -1659,18 +1687,17 @@ msgstr ""
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
 
@@ -1687,9 +1714,9 @@ 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."
@@ -1707,7 +1734,7 @@ msgstr "Sačuvaj oglas"
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
 
@@ -1969,31 +1996,31 @@ 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 ""
@@ -2001,20 +2028,20 @@ msgstr ""
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"
2020
 
@@ -2050,23 +2077,23 @@ 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
2071
  #: dashboard/publisher/adrotate-groups-report.php:44
2072
  msgid "CTR"
@@ -2074,8 +2101,8 @@ msgstr "CTR"
2074
 
2075
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2076
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2077
- #: dashboard/publisher/adrotate-ads-main.php:85
2078
- #: dashboard/publisher/adrotate-groups-main.php:69
2079
  msgid "Edit"
2080
  msgstr "Edituj"
2081
 
@@ -2086,7 +2113,7 @@ msgstr "Statistika"
2086
 
2087
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2088
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2089
- #: dashboard/publisher/adrotate-ads-main.php:85
2090
  #, fuzzy
2091
  msgid "Groups:"
2092
  msgstr "Grupe"
@@ -2126,7 +2153,7 @@ msgid "For 7 days"
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,28 +2167,23 @@ msgid "Export to XML"
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
 
2147
- #: dashboard/publisher/adrotate-ads-main.php:43
2148
  #, fuzzy
2149
  msgid "Shown"
2150
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
2151
 
2152
- #: dashboard/publisher/adrotate-ads-main.php:44
2153
- #: dashboard/publisher/adrotate-ads-main.php:46
2154
- #: dashboard/publisher/adrotate-groups-main.php:36
2155
- #: dashboard/publisher/adrotate-groups-main.php:38
2156
  msgid "Today"
2157
  msgstr "Danas"
2158
 
2159
- #: dashboard/publisher/adrotate-ads-main.php:85
2160
- #: dashboard/publisher/adrotate-groups-main.php:69
2161
- msgid "Report"
2162
- msgstr "Izveštaj"
2163
-
2164
- #: dashboard/publisher/adrotate-ads-main.php:103
2165
  msgid "No ads created yet!"
2166
  msgstr "Nijedan oglas još nje stvoren!"
2167
 
@@ -2314,7 +2336,7 @@ 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"
@@ -2382,12 +2404,6 @@ msgstr ""
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
@@ -2419,17 +2435,17 @@ 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
@@ -2512,11 +2528,11 @@ msgstr "Posle oglasa"
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
 
@@ -2536,11 +2552,11 @@ msgstr "Vi ste na putu da izbrišete grupu"
2536
  msgid "This action can not be undone!"
2537
  msgstr "Ovo delo se ne može povratiti!"
2538
 
2539
- #: dashboard/publisher/adrotate-groups-main.php:39
2540
  msgid "Code"
2541
  msgstr "Kod"
2542
 
2543
- #: dashboard/publisher/adrotate-groups-main.php:82
2544
  msgid "No groups created!"
2545
  msgstr "Grupa nije napravljena!"
2546
 
@@ -2549,6 +2565,34 @@ msgstr "Grupa nije napravljena!"
2549
  msgid "Statistics for group"
2550
  msgstr "Sttistike za"
2551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2552
  #, fuzzy
2553
  #~ msgid "Usage:"
2554
  #~ msgstr "upotreba"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:803
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-output.php:742
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
+ #: adrotate-output.php:743
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:744
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:745
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
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:786
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:791
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:797
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:797
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:803
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
+ #: adrotate-output.php:828
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
+ #: adrotate-output.php:828
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
+ #: adrotate-output.php:830
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
+ #: adrotate-output.php:830
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
+ #: adrotate-output.php:832
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
+ #: adrotate-output.php:832
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
+ #: adrotate-output.php:834
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
+ #: adrotate-output.php:834
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
+ #: adrotate-output.php:834
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
+ #: adrotate-output.php:834
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
+ #: adrotate-output.php:846
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
+ #: adrotate-output.php:847
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:847
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:847
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:891
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:891
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
+ #: adrotate-output.php:891 adrotate-output.php:967
170
  #: dashboard/publisher/adrotate-ads-edit.php:151
171
  msgid "and"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:891
175
  msgid "forums"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:927
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
+ #: adrotate-output.php:928
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:930
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
+ #: adrotate-output.php:931
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
+ #: adrotate-output.php:932
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
+ #: adrotate-output.php:933
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
+ #: adrotate-output.php:959
 
 
 
 
208
  #, fuzzy
209
  msgid "Help AdRotate Grow"
210
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
211
 
212
+ #: adrotate-output.php:960
213
  msgid "Brought to you by"
214
  msgstr "Za tebe od"
215
 
216
+ #: adrotate-output.php:967
217
  msgid ""
218
  "A lot of users only think to review AdRotate when something goes wrong while "
219
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
220
  msgstr ""
221
 
222
+ #: adrotate-output.php:967
223
  msgid "If you find AdRotate useful please leave your honest"
224
  msgstr ""
225
 
226
+ #: adrotate-output.php:967
227
  msgid "rating"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:967
231
  #, fuzzy
232
  msgid "review"
233
  msgstr "Dajte ocenu i komentar"
234
 
235
+ #: adrotate-output.php:967
236
  msgid "on WordPress.org to help AdRotate grow in a positive way"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:970
240
  #, fuzzy
241
  msgid ""
242
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
248
  "detalja !"
249
 
250
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
251
  msgid "Visit the"
252
  msgstr "Posetite"
253
 
254
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
255
  msgid "website"
256
  msgstr "websajt"
257
 
258
+ #: adrotate-output.php:1000
259
  msgid "Available in AdRotate Pro"
260
  msgstr "Dostupno u AdRotate Pro"
261
 
262
+ #: adrotate-output.php:1000
263
  #, fuzzy
264
  msgid "More information..."
265
  msgstr "Saznajte više"
266
 
267
+ #: adrotate-output.php:1001
268
  msgid "This feature is available in AdRotate Pro"
269
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
270
 
271
+ #: adrotate-output.php:1001
272
  msgid "Learn more"
273
  msgstr "Saznajte više"
274
 
406
  msgid "Manage Groups"
407
  msgstr "Upravljajte grupama"
408
 
409
+ #: adrotate.php:111 adrotate.php:441
410
  #, fuzzy
411
  msgid "Manage Schedules"
412
  msgstr "Upravljati"
474
  msgid "Export created"
475
  msgstr "Izlazne opcije za"
476
 
477
+ #: adrotate.php:221
478
  msgid "Action prohibited"
479
  msgstr "Zabranjeno delo"
480
 
481
+ #: adrotate.php:223 adrotate.php:371
482
  msgid "No data found in selected time period"
483
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
484
 
485
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
486
  msgid "Manage"
487
  msgstr "Upravljati"
488
 
489
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
490
  msgid "Add New"
491
  msgstr "Dodati novi"
492
 
493
+ #: adrotate.php:360
494
  msgid "Group Management"
495
  msgstr "Menadžment grupe"
496
 
497
+ #: adrotate.php:363
498
  msgid "Group created"
499
  msgstr "Stvorena grupa"
500
 
501
+ #: adrotate.php:365
502
  msgid "Group updated"
503
  msgstr "Updateovana grupa"
504
 
505
+ #: adrotate.php:367
506
  msgid "Group deleted"
507
  msgstr "Izbrisana grupa"
508
 
509
+ #: adrotate.php:369
510
  msgid "Group including it's Ads deleted"
511
  msgstr "Grupa koja podrazumeva obrisane oglase"
512
 
513
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
514
+ #: dashboard/publisher/adrotate-groups-main.php:72
515
+ msgid "Report"
516
+ msgstr "Izveštaj"
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:177
532
+ #: dashboard/publisher/adrotate-ads-main.php:114
533
  #: dashboard/publisher/adrotate-groups-edit.php:75
534
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-main-disabled.php:35
554
  #: dashboard/publisher/adrotate-ads-main-error.php:39
555
  #: dashboard/publisher/adrotate-ads-main.php:39
556
  #: dashboard/publisher/adrotate-groups-main.php:32
557
  msgid "ID"
558
  msgstr "ID"
559
 
560
+ #: adrotate.php:460
561
  #, fuzzy
562
  msgid "Start"
563
  msgstr "Početno vreme (hh:mm):"
564
 
565
+ #: adrotate.php:460
566
  #, fuzzy
567
  msgid "End"
568
  msgstr "Završno vreme (hh:mm):"
569
 
570
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
571
  #: dashboard/publisher/adrotate-groups-main.php:34
572
  msgid "Ads"
573
  msgstr "Oglasi"
574
 
575
+ #: adrotate.php:463
576
  #, fuzzy
577
  msgid "Max Clicks"
578
  msgstr "Klikovi"
579
 
580
+ #: adrotate.php:464
581
  #, fuzzy
582
  msgid "Max Impressions"
583
  msgstr "Utisci"
584
 
585
+ #: adrotate.php:494
586
  #, fuzzy
587
  msgid "No schedules created yet!"
588
  msgstr "Nijedan blok nije stvoren još uvek!"
589
 
590
+ #: adrotate.php:499
591
  #, fuzzy
592
  msgid "Easily manage your schedules from here with AdRotate Pro."
593
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
594
 
595
+ #: adrotate.php:499 adrotate.php:562
596
  #, fuzzy
597
  msgid "Upgrade today!"
598
  msgstr "Danas"
599
 
600
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
601
+ #: dashboard/publisher/adrotate-groups-edit.php:383
602
  msgid "Expires soon."
603
  msgstr "Ističe uskoro."
604
 
605
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
606
+ #: dashboard/publisher/adrotate-groups-edit.php:384
607
  msgid "Has expired."
608
  msgstr "Isteklo je."
609
 
610
+ #: adrotate.php:527
611
  #, fuzzy
612
  msgid "Media Management available in AdRotate Pro"
613
  msgstr "Dostupno u AdRotate Pro"
614
 
615
+ #: adrotate.php:529
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:529
622
  #, fuzzy
623
  msgid "Media uploading and management is available in AdRotate Pro."
624
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
625
 
626
+ #: adrotate.php:531
627
  #, fuzzy
628
  msgid "Upload new banner image"
629
  msgstr "Slika banera:"
630
 
631
+ #: adrotate.php:532
632
  #, fuzzy
633
  msgid "Accepted files are:"
634
  msgstr "Koristi %image% u kodu. Prihvatljivi fajlovi su:"
635
 
636
+ #: adrotate.php:532
637
  msgid "Maximum size is 512Kb."
638
  msgstr ""
639
 
640
+ #: adrotate.php:532
641
  msgid "Important:"
642
  msgstr ""
643
 
644
+ #: adrotate.php:532
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:534
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:535 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:536 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 "Primer"
667
 
668
+ #: adrotate.php:536 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:540
675
  #, fuzzy
676
  msgid "Upload image"
677
  msgstr "Slika banera:"
678
 
679
+ #: adrotate.php:543
680
  msgid "Available banner images in"
681
  msgstr ""
682
 
683
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
684
  msgid "Name"
685
  msgstr "Ime"
686
 
687
+ #: adrotate.php:549
688
  #, fuzzy
689
  msgid "Actions"
690
  msgstr "Delo bulk-ovanja"
691
 
692
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
693
+ #: adrotate.php:558 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 "Obrisati"
698
 
699
+ #: adrotate.php:562
700
  msgid ""
701
  "Make sure the banner images are not in use by adverts when you delete them!"
702
  msgstr ""
703
 
704
+ #: adrotate.php:562
705
  #, fuzzy
706
  msgid "Manage your banner folder from here with AdRotate Pro."
707
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
708
 
709
+ #: adrotate.php:606
710
  msgid "AdRotate Settings"
711
  msgstr "AdRotate postavke"
712
 
713
+ #: adrotate.php:609
714
  msgid "Settings saved"
715
  msgstr "Postavke sačuvane"
716
 
717
+ #: adrotate.php:611
718
  msgid "Database optimized"
719
  msgstr "Baza podataka optimizirana"
720
 
721
+ #: adrotate.php:613
722
  msgid "Database repaired"
723
  msgstr "Baza podataka popravljena"
724
 
725
+ #: adrotate.php:615
726
  msgid "Ads evaluated and statuses have been corrected where required"
727
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
728
 
729
+ #: adrotate.php:617
730
  msgid "Empty database records removed"
731
  msgstr "Prazni zapisi baze podataka uklanjaju"
732
 
733
+ #: adrotate.php:619
734
  msgid "Database can only be optimized or cleaned once every hour"
735
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
736
 
737
+ #: adrotate.php:627
738
  msgid "Access Rights"
739
  msgstr "Prava pristupa"
740
 
741
+ #: adrotate.php:628
742
  msgid "Who has access to what?"
743
  msgstr ""
744
 
745
+ #: adrotate.php:631
746
  msgid "Manage/Add/Edit adverts"
747
  msgstr "Upravljanje / Add / Edit reklame"
748
 
749
+ #: adrotate.php:635
750
  msgid "Role to see and add/edit ads."
751
  msgstr "Uloga videti i add / edit oglase ."
752
 
753
+ #: adrotate.php:639
754
  msgid "Delete/Reset adverts"
755
  msgstr "Brisanje / Reset reklame"
756
 
757
+ #: adrotate.php:643
758
  msgid "Role to delete ads and reset stats."
759
  msgstr "Uloga obrisati oglase i resetovanje ."
760
 
761
+ #: adrotate.php:647
762
  msgid "Manage/Add/Edit groups"
763
  msgstr "Upravljanje / Add / Edit grupama"
764
 
765
+ #: adrotate.php:651
766
  msgid "Role to see and add/edit groups."
767
  msgstr "Uloga videti i add / edit grupe ."
768
 
769
+ #: adrotate.php:655
770
  msgid "Delete groups"
771
  msgstr "Brisanje grupe"
772
 
773
+ #: adrotate.php:659
774
  msgid "Role to delete groups."
775
  msgstr "Uloga za brisanje grupe ."
776
 
777
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
778
+ #: adrotate.php:890
779
  msgid "Update Options"
780
  msgstr "Update opcije"
781
 
782
+ #: adrotate.php:691
783
  msgid "Statistics"
784
  msgstr "Statistike"
785
 
786
+ #: adrotate.php:694
787
+ msgid "How to track stats"
788
+ msgstr ""
789
+
790
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
791
+ #: dashboard/publisher/adrotate-groups-edit.php:240
792
  #, fuzzy
793
+ msgid "Disabled"
794
+ msgstr "Onemogući odgovore"
795
 
796
+ #: adrotate.php:703
797
+ msgid "No impressions and clicks are recorded for any of your adverts."
798
+ msgstr ""
799
 
800
+ #: adrotate.php:704
801
+ msgid "Tracks impressions and clicks internally."
802
+ msgstr ""
803
+
804
+ #: adrotate.php:705
805
+ msgid ""
806
+ "Click and Impression recording, Click and impression limits, impression "
807
+ "spread for schedules, local stats display."
808
+ msgstr ""
809
+
810
+ #: adrotate.php:706
811
+ msgid ""
812
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
813
+ "attributes."
814
+ msgstr ""
815
+
816
+ #: adrotate.php:706 adrotate.php:708
817
+ msgid "Available in AdRotate Pro!"
818
+ msgstr ""
819
+
820
+ #: adrotate.php:707
821
+ msgid ""
822
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
823
+ "Contents."
824
+ msgstr ""
825
+
826
+ #: adrotate.php:708
827
+ msgid ""
828
+ "Requires Google Analytics tracker installed in your sites footer! uses "
829
+ "onClick() in adverts."
830
  msgstr ""
 
 
831
 
832
+ #: adrotate.php:709
833
+ msgid ""
834
+ "Click and Impression recording via Cookie, stats are displayed in Events."
835
+ msgstr ""
836
+
837
+ #: adrotate.php:714
838
  msgid "Impressions timer"
839
  msgstr "Utisci tajmer"
840
 
841
+ #: adrotate.php:716 adrotate.php:723
842
  msgid "Seconds."
843
  msgstr "Sekunde."
844
 
845
+ #: adrotate.php:717
846
  #, fuzzy
847
  msgid "Default: 60."
848
  msgstr "Default - Prikazati po jedan oglas"
849
 
850
+ #: adrotate.php:717
851
  #, fuzzy
852
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
853
  msgstr ""
854
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
855
 
856
+ #: adrotate.php:721
857
  #, fuzzy
858
  msgid "Clicks timer"
859
  msgstr "Utisci tajmer"
860
 
861
+ #: adrotate.php:724
862
  #, fuzzy
863
  msgid "Default: 86400."
864
  msgstr "Default - Prikazati po jedan oglas"
865
 
866
+ #: adrotate.php:724
867
  #, fuzzy
868
  msgid ""
869
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
870
  msgstr ""
871
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
872
 
873
+ #: adrotate.php:729
874
  #, fuzzy
875
  msgid "Bot filter"
876
  msgstr "User- agent filter"
877
 
878
+ #: adrotate.php:732
879
  msgid "User-Agent Filter"
880
  msgstr "User- agent filter"
881
 
882
+ #: adrotate.php:735
883
  msgid ""
884
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
885
  "prevent impressions and clicks counted on them."
887
  "Zarezom odvojena lista ključnih reči . Filter se botovi / popisivači / user-"
888
  "agent . Da biste sprečili prikaza i klikova na njih računati ."
889
 
890
+ #: adrotate.php:736
891
  #, fuzzy
892
  msgid ""
893
  "Keep in mind that this might give false positives. The word 'google' also "
897
  "na umu : Ako je početak ili kraj je vreme posle ručka , dodajte 12 sati . "
898
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
899
 
900
+ #: adrotate.php:736
901
  #, fuzzy
902
  msgid "Keep your list up-to-date"
903
  msgstr ""
904
  "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
905
  "ovu listu na minimum !"
906
 
907
+ #: adrotate.php:737
908
  #, fuzzy
909
  msgid ""
910
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
911
  "other characters are stripped out."
912
  msgstr "HTML će biti skinut."
913
 
914
+ #: adrotate.php:738
915
  msgid ""
916
  "Additionally to the list specified here, empty User-Agents are blocked as "
917
  "well."
919
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
920
  "dobro."
921
 
922
+ #: adrotate.php:738
923
  msgid "Learn more about"
924
  msgstr "Saznajte više o"
925
 
926
+ #: adrotate.php:738
927
  msgid "user-agents"
928
  msgstr "korisnici-agenti"
929
 
930
+ #: adrotate.php:747
931
  msgid "Miscellaneous"
932
  msgstr "Ostalo"
933
 
934
+ #: adrotate.php:750
935
  msgid "Widget alignment"
936
  msgstr "Widget alignment"
937
 
938
+ #: adrotate.php:751
939
  msgid ""
940
  "Check this box if your widgets do not align in your themes sidebar. (Does "
941
  "not always help!)"
943
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
944
  "uvek ! )"
945
 
946
+ #: adrotate.php:754
947
  #, fuzzy
948
  msgid "Widget padding"
949
  msgstr "Blokiraj punjenje"
950
 
951
+ #: adrotate.php:755
952
  #, fuzzy
953
  msgid ""
954
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
957
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
958
  "uvek ! )"
959
 
960
+ #: adrotate.php:760 adrotate.php:771
961
  #, fuzzy
962
  msgid "NOTICE:"
963
  msgstr ""
967
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
968
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
969
 
970
+ #: adrotate.php:761
971
  msgid ""
972
  "You have enabled W3 Total Caching support but not defined the security hash. "
973
  "You need to add the following line to your wp-config.php near the bottom or "
975
  "needs to be enabled in W3 Total Cache as well too."
976
  msgstr ""
977
 
978
+ #: adrotate.php:765
979
  msgid "W3 Total Caching"
980
  msgstr "W3 Total Caching"
981
 
982
+ #: adrotate.php:766
983
  msgid "Check this box if you use W3 Total Caching on your site."
984
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
985
 
986
+ #: adrotate.php:772
987
  msgid ""
988
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
989
  "this function will not work. WP Super Cache has discontinued support for "
990
  "dynamic content."
991
  msgstr ""
992
 
993
+ #: adrotate.php:776
994
  #, fuzzy
995
  msgid "WP Super Cache"
996
  msgstr ""
997
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
998
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
999
 
1000
+ #: adrotate.php:777
1001
  #, fuzzy
1002
  msgid "Check this box if you use WP Super Cache on your site."
1003
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
1004
 
1005
+ #: adrotate.php:782
1006
  msgid ""
1007
  "It may take a while for the ad to start rotating. The caching plugin needs "
1008
  "to refresh the cache. This can take up to a week if not done manually."
1010
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
1011
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
1012
 
1013
+ #: adrotate.php:782
1014
  msgid ""
1015
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1016
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1018
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
1019
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
1020
 
1021
+ #: adrotate.php:786
1022
  msgid "Javascript"
1023
  msgstr ""
1024
 
1025
+ #: adrotate.php:789
1026
  #, fuzzy
1027
  msgid "Load jQuery"
1028
  msgstr ""
1029
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1030
  "Default: 6."
1031
 
1032
+ #: adrotate.php:790
1033
  #, fuzzy
1034
  msgid ""
1035
  "jQuery is required for all Javascript features below. Enable this if your "
1036
  "theme does not load jQuery already."
1037
  msgstr "Praćenje klikom:"
1038
 
1039
+ #: adrotate.php:793
1040
  #, fuzzy
1041
  msgid "Load in footer?"
1042
  msgstr ""
1043
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1044
  "Default: 6."
1045
 
1046
+ #: adrotate.php:794
1047
  #, fuzzy
1048
  msgid ""
1049
  "Enable if you want to load the above libraries in the footer. Your theme "
1054
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1055
  "detalja !"
1056
 
1057
+ #: adrotate.php:802
1058
  msgid "Maintenance"
1059
  msgstr "Održavanje"
1060
 
1061
+ #: adrotate.php:803
1062
  #, fuzzy
1063
  msgid ""
1064
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1073
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
1074
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
1075
 
1076
+ #: adrotate.php:818 adrotate.php:820
1077
  msgid "Optimize Database"
1078
  msgstr "Optimizacija baze podataka"
1079
 
1080
+ #: adrotate.php:820
1081
  msgid "You are about to optimize the AdRotate database."
1082
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
1083
 
1084
+ #: adrotate.php:820
1085
  msgid "Did you make a backup of your database?"
1086
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
1087
 
1088
+ #: adrotate.php:820
1089
  msgid ""
1090
  "This may take a moment and may cause your website to respond slow "
1091
  "temporarily!"
1093
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1094
  "sporo privremeno !"
1095
 
1096
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1097
  #: dashboard/publisher/adrotate-groups-main.php:24
1098
  msgid "OK to continue, CANCEL to stop."
1099
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1100
 
1101
+ #: adrotate.php:821
1102
  msgid "Cleans up overhead data in the AdRotate tables."
1103
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
1104
 
1105
+ #: adrotate.php:822
1106
  msgid ""
1107
  "Overhead data is accumulated garbage resulting from many changes you've "
1108
  "made. This can vary from nothing to hundreds of KiB of data."
1110
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
1111
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
1112
 
1113
+ #: adrotate.php:826 adrotate.php:828
1114
  msgid "Clean-up Database"
1115
  msgstr "Čišćenje baze"
1116
 
1117
+ #: adrotate.php:828
1118
  #, fuzzy
1119
  msgid ""
1120
  "You are about to clean up your database. This may delete expired schedules "
1121
  "and older statistics."
1122
  msgstr "Čišćenje baze"
1123
 
1124
+ #: adrotate.php:828
1125
  #, fuzzy
1126
  msgid "Are you sure you want to continue?"
1127
  msgstr "Popunite ID tipa koji želite da prikažete!"
1128
 
1129
+ #: adrotate.php:828 adrotate.php:836
1130
  #, fuzzy
1131
  msgid "This might take a while and may slow down your site during this action!"
1132
  msgstr ""
1133
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1134
  "sporo privremeno !"
1135
 
1136
+ #: adrotate.php:829
1137
  #, fuzzy
1138
  msgid "Delete stats older than 356 days (Optional)."
1139
  msgstr "Uloga obrisati oglase i resetovanje ."
1140
 
1141
+ #: adrotate.php:830
1142
  #, fuzzy
1143
  msgid ""
1144
  "AdRotate creates empty records when you start making ads or groups. In rare "
1145
  "occasions these records are faulty."
1146
  msgstr "Prazni zapisi baze podataka uklanjaju"
1147
 
1148
+ #: adrotate.php:830
1149
  #, fuzzy
1150
  msgid ""
1151
  "If you made an ad or group that does not save when you make it use this "
1152
  "button to delete those empty records."
1153
  msgstr "Vi ste na putu da izbrišete grupu"
1154
 
1155
+ #: adrotate.php:830
1156
  #, fuzzy
1157
  msgid ""
1158
  "Additionally you can clean up old statistics. This will improve the speed of "
1159
  "your site."
1160
  msgstr "Čišćenje baze"
1161
 
1162
+ #: adrotate.php:834
1163
  msgid "Re-evaluate Ads"
1164
  msgstr "Ponovo ocenjeni oglasi"
1165
 
1166
+ #: adrotate.php:836
1167
  msgid "Re-evaluate all ads"
1168
  msgstr "Ponovo ocenite sve oglase"
1169
 
1170
+ #: adrotate.php:836
1171
  msgid "You are about to check all ads for errors."
1172
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
1173
 
1174
+ #: adrotate.php:837
1175
  msgid ""
1176
  "This will apply all evaluation rules to all ads to see if any error slipped "
1177
  "in. Normally you should not need this feature."
1179
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
1180
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
1181
 
1182
+ #: adrotate.php:841
1183
  msgid ""
1184
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1185
  "becomes unusable in any way or by any means in whichever way I will not take "
1196
  "već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
1197
  "nijevažna stvar u svakom slučaju ."
1198
 
1199
+ #: adrotate.php:849
1200
  msgid "Troubleshooting"
1201
  msgstr "Rešavanje problema"
1202
 
1203
+ #: adrotate.php:852
1204
  msgid "Current version:"
1205
  msgstr "Trenutna verzija :"
1206
 
1207
+ #: adrotate.php:853
1208
  msgid "Previous version:"
1209
  msgstr "Prethodna verzija :"
1210
 
1211
+ #: adrotate.php:856
1212
  msgid "Current database version:"
1213
  msgstr "Trenutna verzija baze podataka :"
1214
 
1215
+ #: adrotate.php:857
1216
  msgid "Previous database version:"
1217
  msgstr "Prethodna verzija baze podataka :"
1218
 
1219
+ #: adrotate.php:860
1220
  #, fuzzy
1221
  msgid "Ad evaluation next run:"
1222
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1223
 
1224
+ #: adrotate.php:861 adrotate.php:865
1225
  msgid "Not scheduled!"
1226
  msgstr "Nije planirano:"
1227
 
1228
+ #: adrotate.php:864
1229
  msgid "Clean Trackerdata next run:"
1230
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1231
 
1232
+ #: adrotate.php:868
1233
  #, fuzzy
1234
  msgid "Current status of adverts"
1235
  msgstr "Trenutni raspored"
1236
 
1237
+ #: adrotate.php:869
1238
  #, fuzzy
1239
  msgid "Normal"
1240
  msgstr ""
1243
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1244
  "normalnu upotrebu oni treba da budu levo neprovereni "
1245
 
1246
+ #: adrotate.php:869
1247
  #, fuzzy
1248
  msgid "Error"
1249
  msgstr "Nepoznati error se ukazao."
1250
 
1251
+ #: adrotate.php:869
1252
  #, fuzzy
1253
  msgid "Expired"
1254
  msgstr "Isteklo je."
1255
 
1256
+ #: adrotate.php:869
1257
  #, fuzzy
1258
  msgid "Expires Soon"
1259
  msgstr "Ističe uskoro."
1260
 
1261
+ #: adrotate.php:869
1262
  #, fuzzy
1263
  msgid "Unknown Status"
1264
  msgstr "Nepoznati error se ukazao."
1265
 
1266
+ #: adrotate.php:872
1267
  msgid ""
1268
  "NOTE: The below options are not meant for normal use and are only there for "
1269
  "developers to review saved settings or how ads are selected. These can be "
1275
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1276
  "normalnu upotrebu oni treba da budu levo neprovereni "
1277
 
1278
+ #: adrotate.php:876
1279
  msgid "Developer Debug"
1280
  msgstr "Debug za programera"
1281
 
1282
+ #: adrotate.php:878
1283
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1284
  msgstr ""
1285
  "Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
1286
  "izlaza ."
1287
 
1288
+ #: adrotate.php:879
1289
  msgid "Show all settings, dashboard routines and related values."
1290
  msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
1291
 
1292
+ #: adrotate.php:880
1293
  msgid "Show array of all userroles and capabilities."
1294
  msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
1295
 
1296
+ #: adrotate.php:881
1297
  msgid "Review saved advertisers! Visible to advertisers."
1298
  msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
1299
 
1300
+ #: adrotate.php:882
1301
  #, fuzzy
1302
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1303
  msgstr ""
1304
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
1305
  "samo izdavačima ."
1306
 
1307
+ #: adrotate.php:883
1308
  #, fuzzy
1309
  msgid ""
1310
  "Disable timers for clicks and impressions and enable a alert window for "
1311
  "clicktracking."
1312
  msgstr "Pratite klikove i prikaze ."
1313
 
1314
+ #: adrotate.php:884
1315
  msgid "Temporarily disable encryption on the redirect url."
1316
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
1317
 
1360
  msgstr ""
1361
 
1362
  #: dashboard/adrotate-info.php:139
1363
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1364
  msgstr ""
1365
 
1366
  #: dashboard/adrotate-info.php:148
1429
  msgid "Developer License"
1430
  msgstr "Debug za programera"
1431
 
1432
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1433
  msgid "Unlimited WordPress installations and/or networks."
1434
  msgstr ""
1435
 
1535
  "miss an expiration date again."
1536
  msgstr ""
1537
 
 
 
 
 
1538
  #: dashboard/publisher/adrotate-ads-edit.php:46
1539
  msgid "The AdCode cannot be empty!"
1540
  msgstr "AdCode ne može biti prazan !"
1549
 
1550
  #: dashboard/publisher/adrotate-ads-edit.php:55
1551
  msgid ""
1552
+ "There is a problem saving the image. Please reset your image and re-save the "
1553
+ "ad!"
1554
  msgstr ""
 
 
1555
 
1556
  #: dashboard/publisher/adrotate-ads-edit.php:58
1557
  msgid ""
1560
  msgstr ""
1561
 
1562
  #: dashboard/publisher/adrotate-ads-edit.php:61
1563
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1564
  msgstr ""
1565
 
1566
  #: dashboard/publisher/adrotate-ads-edit.php:64
1687
  "polje ima prioritet ."
1688
 
1689
  #: dashboard/publisher/adrotate-ads-edit.php:156
1690
+ msgid "Statistics:"
1691
+ msgstr ""
1692
 
1693
  #: dashboard/publisher/adrotate-ads-edit.php:158
1694
+ msgid "Enable click and impression tracking for this advert."
1695
+ msgstr ""
 
1696
 
1697
  #: dashboard/publisher/adrotate-ads-edit.php:159
1698
  msgid ""
1699
  "Note: Clicktracking does not work for Javascript adverts such as those "
1700
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1701
  "supported."
1702
  msgstr ""
1703
 
1714
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1715
 
1716
  #: dashboard/publisher/adrotate-ads-edit.php:177
1717
+ #: dashboard/publisher/adrotate-ads-main.php:114
1718
  #: dashboard/publisher/adrotate-groups-edit.php:75
1719
+ #: dashboard/publisher/adrotate-groups-main.php:92
1720
  #, fuzzy
1721
  msgid "Get more features with AdRotate Pro."
1722
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1734
  #: dashboard/publisher/adrotate-ads-edit.php:437
1735
  #: dashboard/publisher/adrotate-groups-edit.php:154
1736
  #: dashboard/publisher/adrotate-groups-edit.php:297
1737
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1738
  msgid "Cancel"
1739
  msgstr "Ukini"
1740
 
1996
  msgstr "Gupni oglasi - Koristite grupni ID"
1997
 
1998
  #: dashboard/publisher/adrotate-ads-edit.php:415
1999
+ #: dashboard/publisher/adrotate-groups-main.php:61
2000
  #, fuzzy
2001
  msgid "Default"
2002
  msgstr "Default - Prikazati po jedan oglas"
2003
 
2004
  #: dashboard/publisher/adrotate-ads-edit.php:416
2005
+ #: dashboard/publisher/adrotate-groups-main.php:62
2006
  #, fuzzy
2007
  msgid "Dynamic"
2008
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
2009
 
2010
  #: dashboard/publisher/adrotate-ads-edit.php:416
2011
+ #: dashboard/publisher/adrotate-groups-main.php:62
2012
  #, fuzzy
2013
  msgid "second rotation"
2014
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2015
 
2016
  #: dashboard/publisher/adrotate-ads-edit.php:417
2017
+ #: dashboard/publisher/adrotate-groups-main.php:63
2018
  #, fuzzy
2019
  msgid "Block"
2020
  msgstr "Menadžmet blokiranih"
2021
 
2022
  #: dashboard/publisher/adrotate-ads-edit.php:417
2023
+ #: dashboard/publisher/adrotate-groups-main.php:63
2024
  #, fuzzy
2025
  msgid "grid"
2026
  msgstr ""
2028
 
2029
  #: dashboard/publisher/adrotate-ads-edit.php:418
2030
  #: dashboard/publisher/adrotate-groups-edit.php:192
2031
+ #: dashboard/publisher/adrotate-groups-main.php:64
2032
  #, fuzzy
2033
  msgid "Post Injection"
2034
  msgstr "U post ili stranicu:"
2035
 
2036
  #: dashboard/publisher/adrotate-ads-edit.php:419
2037
+ #: dashboard/publisher/adrotate-groups-main.php:65
2038
  #, fuzzy
2039
  msgid "Geolocation"
2040
  msgstr "GeoLocation"
2041
 
2042
  #: dashboard/publisher/adrotate-ads-edit.php:425
2043
  #: dashboard/publisher/adrotate-groups-edit.php:61
2044
+ #: dashboard/publisher/adrotate-groups-main.php:72
2045
  msgid "Mode"
2046
  msgstr "Mod"
2047
 
2077
 
2078
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2079
  #: dashboard/publisher/adrotate-ads-report.php:34
2080
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2081
+ #: dashboard/publisher/adrotate-groups-main.php:36
2082
  #: dashboard/publisher/adrotate-groups-report.php:40
2083
  msgid "Impressions"
2084
  msgstr "Utisci"
2085
 
2086
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2087
+ #: dashboard/publisher/adrotate-ads-main.php:46
2088
  #: dashboard/publisher/adrotate-ads-report.php:35
2089
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2090
+ #: dashboard/publisher/adrotate-groups-main.php:38
2091
  #: dashboard/publisher/adrotate-groups-report.php:41
2092
  msgid "Clicks"
2093
  msgstr "Klikovi"
2094
 
2095
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2096
+ #: dashboard/publisher/adrotate-ads-main.php:48
2097
  #: dashboard/publisher/adrotate-ads-report.php:38
2098
  #: dashboard/publisher/adrotate-groups-report.php:44
2099
  msgid "CTR"
2101
 
2102
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2103
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2104
+ #: dashboard/publisher/adrotate-ads-main.php:87
2105
+ #: dashboard/publisher/adrotate-groups-main.php:72
2106
  msgid "Edit"
2107
  msgstr "Edituj"
2108
 
2113
 
2114
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2115
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2116
+ #: dashboard/publisher/adrotate-ads-main.php:87
2117
  #, fuzzy
2118
  msgid "Groups:"
2119
  msgstr "Grupe"
2153
  msgstr "Za 7 dana"
2154
 
2155
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2156
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2157
  msgid "Configuration errors."
2158
  msgstr "Konfiguracione greške."
2159
 
2167
  msgstr "Izlazne opcije za"
2168
 
2169
  #: dashboard/publisher/adrotate-ads-main.php:42
2170
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2171
  msgid "Weight"
2172
  msgstr "Težina"
2173
 
2174
+ #: dashboard/publisher/adrotate-ads-main.php:44
2175
  #, fuzzy
2176
  msgid "Shown"
2177
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
2178
 
2179
+ #: dashboard/publisher/adrotate-ads-main.php:45
2180
+ #: dashboard/publisher/adrotate-ads-main.php:47
2181
+ #: dashboard/publisher/adrotate-groups-main.php:37
2182
+ #: dashboard/publisher/adrotate-groups-main.php:39
2183
  msgid "Today"
2184
  msgstr "Danas"
2185
 
2186
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2187
  msgid "No ads created yet!"
2188
  msgstr "Nijedan oglas još nje stvoren!"
2189
 
2336
 
2337
  #: dashboard/publisher/adrotate-groups-edit.php:153
2338
  #: dashboard/publisher/adrotate-groups-edit.php:296
2339
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2340
  #, fuzzy
2341
  msgid "Save Group"
2342
  msgstr "Sačuvati"
2404
  msgid "Include ads in categories?"
2405
  msgstr "Uključiti oglase u kategorije?"
2406
 
 
 
 
 
 
 
2407
  #: dashboard/publisher/adrotate-groups-edit.php:200
2408
  #: dashboard/publisher/adrotate-groups-edit.php:241
2409
  #, fuzzy
2435
 
2436
  #: dashboard/publisher/adrotate-groups-edit.php:210
2437
  #: dashboard/publisher/adrotate-groups-edit.php:251
2438
+ msgid "the second paragraph"
2439
  msgstr ""
2440
 
2441
  #: dashboard/publisher/adrotate-groups-edit.php:211
2442
  #: dashboard/publisher/adrotate-groups-edit.php:252
2443
+ msgid "the third paragraph"
2444
  msgstr ""
2445
 
2446
  #: dashboard/publisher/adrotate-groups-edit.php:212
2447
  #: dashboard/publisher/adrotate-groups-edit.php:253
2448
+ msgid "the fourth paragraph"
2449
  msgstr ""
2450
 
2451
  #: dashboard/publisher/adrotate-groups-edit.php:214
2528
  msgid "Select Ads"
2529
  msgstr "Izaberite oglase"
2530
 
2531
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2532
  msgid "Visible until"
2533
  msgstr "Vidljivo do"
2534
 
2535
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2536
  msgid "No ads created!"
2537
  msgstr "Nema oglasa stvorio!"
2538
 
2552
  msgid "This action can not be undone!"
2553
  msgstr "Ovo delo se ne može povratiti!"
2554
 
2555
+ #: dashboard/publisher/adrotate-groups-main.php:41
2556
  msgid "Code"
2557
  msgstr "Kod"
2558
 
2559
+ #: dashboard/publisher/adrotate-groups-main.php:87
2560
  msgid "No groups created!"
2561
  msgstr "Grupa nije napravljena!"
2562
 
2565
  msgid "Statistics for group"
2566
  msgstr "Sttistike za"
2567
 
2568
+ #, fuzzy
2569
+ #~ msgid "Enable stats"
2570
+ #~ msgstr "Statistika"
2571
+
2572
+ #~ msgid "Track clicks and impressions."
2573
+ #~ msgstr "Pratite klikove i prikaze ."
2574
+
2575
+ #, fuzzy
2576
+ #~ msgid ""
2577
+ #~ "Disabling this also disables click and impression limits on schedules."
2578
+ #~ msgstr ""
2579
+ #~ "Onemogućavanje ovoga takođe onemogućava klikovima i prikazima granice "
2580
+ #~ "rasporede i onemogućava rokovima "
2581
+
2582
+ #~ msgid ""
2583
+ #~ "There is a problem saving the image specification. Please reset your "
2584
+ #~ "image and re-save the ad!"
2585
+ #~ msgstr ""
2586
+ #~ "Postoji problem čuvanja slike specifikaciju. Molimo resetujete sliku i "
2587
+ #~ "ponovo sačuvajte oglas !"
2588
+
2589
+ #~ msgid "Clicktracking:"
2590
+ #~ msgstr "Praćenje klikom:"
2591
+
2592
+ #, fuzzy
2593
+ #~ msgid "Enable click tracking for this advert."
2594
+ #~ msgstr "Nema efekta ako se klik i utisak praćenja onemogući ."
2595
+
2596
  #, fuzzy
2597
  #~ msgid "Usage:"
2598
  #~ msgstr "upotreba"
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-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,19 +17,19 @@ msgstr ""
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,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: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,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:768
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:775 adrotate-output.php:777
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: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,159 +93,155 @@ 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: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,28 +249,28 @@ 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: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"
@@ -412,7 +408,7 @@ msgstr "Hantera Annonser"
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"
@@ -480,371 +476,411 @@ msgstr ""
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,7 +888,7 @@ msgstr ""
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,11 +896,11 @@ msgstr ""
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,30 +908,30 @@ msgstr ""
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,11 +939,11 @@ msgstr ""
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,12 +951,12 @@ msgstr ""
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,30 +964,30 @@ msgid ""
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,7 +996,7 @@ msgstr ""
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,18 +1004,18 @@ msgstr ""
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,24 +1024,24 @@ msgstr ""
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,19 +1056,19 @@ msgstr ""
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,16 +1076,16 @@ msgstr ""
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,11 +1093,11 @@ msgstr ""
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,22 +1105,22 @@ msgstr ""
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,7 +1129,7 @@ msgstr ""
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,7 +1137,7 @@ msgstr ""
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,22 +1145,22 @@ msgstr ""
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,7 +1169,7 @@ msgstr ""
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,64 +1186,64 @@ msgstr ""
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,42 +1255,42 @@ msgstr ""
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
 
@@ -1303,7 +1339,7 @@ msgid "Your gift helps ensure the continued development of AdRotate!"
1303
  msgstr ""
1304
 
1305
  #: dashboard/adrotate-info.php:139
1306
- msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1307
  msgstr ""
1308
 
1309
  #: dashboard/adrotate-info.php:148
@@ -1375,7 +1411,7 @@ msgstr "Installation"
1375
  msgid "Developer License"
1376
  msgstr "Utvecklar Debug"
1377
 
1378
- #: dashboard/adrotate-info.php:182
1379
  msgid "Unlimited WordPress installations and/or networks."
1380
  msgstr ""
1381
 
@@ -1480,10 +1516,6 @@ msgid ""
1480
  "miss an expiration date again."
1481
  msgstr ""
1482
 
1483
- #: dashboard/adrotate-pro.php:83
1484
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1485
- msgstr ""
1486
-
1487
  #: dashboard/publisher/adrotate-ads-edit.php:46
1488
  msgid "The AdCode cannot be empty!"
1489
  msgstr "Den AdCode kan inte vara tomt!"
@@ -1498,11 +1530,9 @@ msgstr "Du använde %image% i AdCode men valde inte en bild!"
1498
 
1499
  #: dashboard/publisher/adrotate-ads-edit.php:55
1500
  msgid ""
1501
- "There is a problem saving the image specification. Please reset your image "
1502
- "and re-save the ad!"
1503
  msgstr ""
1504
- "Det är ett problem med att spara bilden specifikationen. Återställ din image "
1505
- "och åter spara annonsen!"
1506
 
1507
  #: dashboard/publisher/adrotate-ads-edit.php:58
1508
  msgid ""
@@ -1511,9 +1541,7 @@ msgid ""
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
@@ -1636,17 +1664,17 @@ msgstr ""
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
 
@@ -1663,9 +1691,9 @@ 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."
@@ -1683,7 +1711,7 @@ msgstr "Spara annons"
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
 
@@ -1939,28 +1967,28 @@ 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"
1966
  msgstr ""
@@ -1969,18 +1997,18 @@ msgstr ""
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"
1986
 
@@ -2016,23 +2044,23 @@ 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
2037
  #: dashboard/publisher/adrotate-groups-report.php:44
2038
  msgid "CTR"
@@ -2040,8 +2068,8 @@ msgstr "CTR"
2040
 
2041
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2042
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2043
- #: dashboard/publisher/adrotate-ads-main.php:85
2044
- #: dashboard/publisher/adrotate-groups-main.php:69
2045
  msgid "Edit"
2046
  msgstr "Ändra"
2047
 
@@ -2052,7 +2080,7 @@ msgstr "Statistik"
2052
 
2053
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2054
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2055
- #: dashboard/publisher/adrotate-ads-main.php:85
2056
  #, fuzzy
2057
  msgid "Groups:"
2058
  msgstr "Grupper"
@@ -2092,7 +2120,7 @@ msgid "For 7 days"
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,27 +2134,22 @@ msgid "Export to XML"
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
 
2113
- #: dashboard/publisher/adrotate-ads-main.php:43
2114
  msgid "Shown"
2115
  msgstr "Visa"
2116
 
2117
- #: dashboard/publisher/adrotate-ads-main.php:44
2118
- #: dashboard/publisher/adrotate-ads-main.php:46
2119
- #: dashboard/publisher/adrotate-groups-main.php:36
2120
- #: dashboard/publisher/adrotate-groups-main.php:38
2121
  msgid "Today"
2122
  msgstr "i dag"
2123
 
2124
- #: dashboard/publisher/adrotate-ads-main.php:85
2125
- #: dashboard/publisher/adrotate-groups-main.php:69
2126
- msgid "Report"
2127
- msgstr "Rapport"
2128
-
2129
- #: dashboard/publisher/adrotate-ads-main.php:103
2130
  msgid "No ads created yet!"
2131
  msgstr "Inga annonser skapats ännu!"
2132
 
@@ -2271,7 +2294,7 @@ 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"
@@ -2340,12 +2363,6 @@ msgstr ""
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
@@ -2377,17 +2394,17 @@ 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
@@ -2469,11 +2486,11 @@ msgstr "Efter annons"
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
 
@@ -2493,11 +2510,11 @@ msgstr "Du håller på att ta bort en grupp"
2493
  msgid "This action can not be undone!"
2494
  msgstr "Denna åtgärd kan inte ångras!"
2495
 
2496
- #: dashboard/publisher/adrotate-groups-main.php:39
2497
  msgid "Code"
2498
  msgstr "Kod"
2499
 
2500
- #: dashboard/publisher/adrotate-groups-main.php:82
2501
  msgid "No groups created!"
2502
  msgstr "Inga grupper skapas!"
2503
 
@@ -2505,6 +2522,33 @@ msgstr "Inga grupper skapas!"
2505
  msgid "Statistics for group"
2506
  msgstr "Statistik för grupp"
2507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2508
  #, fuzzy
2509
  #~ msgid "Usage:"
2510
  #~ msgstr "Användning:"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 16:01+0100\n"
6
+ "PO-Revision-Date: 2015-05-04 16:01+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:800
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:803
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-output.php:742
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
+ #: adrotate-output.php:743
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:744
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:745
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
+ #: adrotate-output.php:763
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:765
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:772 adrotate-output.php:774
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:780
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:786
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:791
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
+ #: adrotate-output.php:797
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:797
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:803
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
+ #: adrotate-output.php:828
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
+ #: adrotate-output.php:828
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
+ #: adrotate-output.php:830
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:830
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
+ #: adrotate-output.php:832
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
+ #: adrotate-output.php:832
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
+ #: adrotate-output.php:834
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
+ #: adrotate-output.php:834
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:834
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
+ #: adrotate-output.php:834
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:846
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
+ #: adrotate-output.php:847
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:847
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:847
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
+ #: adrotate-output.php:891
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:891
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
+ #: adrotate-output.php:891 adrotate-output.php:967
175
  #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:891
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:927
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
+ #: adrotate-output.php:928
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:930
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:931
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
+ #: adrotate-output.php:932
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
+ #: adrotate-output.php:933
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
+ #: adrotate-output.php:959
 
 
 
 
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "Fastnat med AdRotate? Jag hjälper!"
216
 
217
+ #: adrotate-output.php:960
218
  msgid "Brought to you by"
219
  msgstr "Presenteras av"
220
 
221
+ #: adrotate-output.php:967
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:967
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:967
232
  msgid "rating"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:967
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "Betygsätt och omdöme"
239
 
240
+ #: adrotate-output.php:967
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:970
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
249
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
250
  "mer om vad jag kan göra för dig!"
251
 
252
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Besök"
255
 
256
+ #: adrotate-output.php:970 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "hemsida"
259
 
260
+ #: adrotate-output.php:1000
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Tillgänglig i AdRotate Pro"
263
 
264
+ #: adrotate-output.php:1000
265
  #, fuzzy
266
  msgid "More information..."
267
  msgstr "Mer info"
268
 
269
+ #: adrotate-output.php:1001
270
  msgid "This feature is available in AdRotate Pro"
271
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
272
 
273
+ #: adrotate-output.php:1001
274
  #, fuzzy
275
  msgid "Learn more"
276
  msgstr "Läs mer om"
408
  msgid "Manage Groups"
409
  msgstr "Hantera Grupper"
410
 
411
+ #: adrotate.php:111 adrotate.php:441
412
  #, fuzzy
413
  msgid "Manage Schedules"
414
  msgstr "Hantera"
476
  msgid "Export created"
477
  msgstr "export skapad"
478
 
479
+ #: adrotate.php:221
480
  msgid "Action prohibited"
481
  msgstr "Åtgärden förbjuden"
482
 
483
+ #: adrotate.php:223 adrotate.php:371
484
  msgid "No data found in selected time period"
485
  msgstr "Inga data finns i vald tidsperiod"
486
 
487
+ #: adrotate.php:281 adrotate.php:377 adrotate.php:436
488
  msgid "Manage"
489
  msgstr "Hantera"
490
 
491
+ #: adrotate.php:282 adrotate.php:378 adrotate.php:437
492
  msgid "Add New"
493
  msgstr "Lägg till ny"
494
 
495
+ #: adrotate.php:360
496
  msgid "Group Management"
497
  msgstr "Grupp Hantering"
498
 
499
+ #: adrotate.php:363
500
  msgid "Group created"
501
  msgstr "Grupp skapad"
502
 
503
+ #: adrotate.php:365
504
  msgid "Group updated"
505
  msgstr "Grupp uppdaterad"
506
 
507
+ #: adrotate.php:367
508
  msgid "Group deleted"
509
  msgstr "Grupp raderad"
510
 
511
+ #: adrotate.php:369
512
  msgid "Group including it's Ads deleted"
513
  msgstr "Grupp inklusive dess annonser raderade"
514
 
515
+ #: adrotate.php:380 dashboard/publisher/adrotate-ads-main.php:87
516
+ #: dashboard/publisher/adrotate-groups-main.php:72
517
+ msgid "Report"
518
+ msgstr "Rapport"
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:177
534
+ #: dashboard/publisher/adrotate-ads-main.php:114
535
  #: dashboard/publisher/adrotate-groups-edit.php:75
536
+ #: dashboard/publisher/adrotate-groups-main.php:92
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-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:460
563
  #, fuzzy
564
  msgid "Start"
565
  msgstr "Starttid (hh: mm):"
566
 
567
+ #: adrotate.php:460
568
  #, fuzzy
569
  msgid "End"
570
  msgstr "Avsluta tid (hh: mm):"
571
 
572
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:426
573
  #: dashboard/publisher/adrotate-groups-main.php:34
574
  msgid "Ads"
575
  msgstr "Annonser"
576
 
577
+ #: adrotate.php:463
578
  msgid "Max Clicks"
579
  msgstr "Max Klick"
580
 
581
+ #: adrotate.php:464
582
  msgid "Max Impressions"
583
  msgstr "Max Intryck"
584
 
585
+ #: adrotate.php:494
586
  #, fuzzy
587
  msgid "No schedules created yet!"
588
  msgstr "Inga block har skapats än!"
589
 
590
+ #: adrotate.php:499
591
  #, fuzzy
592
  msgid "Easily manage your schedules from here with AdRotate Pro."
593
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
594
 
595
+ #: adrotate.php:499 adrotate.php:562
596
  #, fuzzy
597
  msgid "Upgrade today!"
598
  msgstr "i dag"
599
 
600
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-main-error.php:74
601
+ #: dashboard/publisher/adrotate-groups-edit.php:383
602
  msgid "Expires soon."
603
  msgstr "Utgår inom kort."
604
 
605
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
606
+ #: dashboard/publisher/adrotate-groups-edit.php:384
607
  msgid "Has expired."
608
  msgstr "Har gått ut."
609
 
610
+ #: adrotate.php:527
611
  #, fuzzy
612
  msgid "Media Management available in AdRotate Pro"
613
  msgstr "Tillgänglig i AdRotate Pro"
614
 
615
+ #: adrotate.php:529
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:529
622
  #, fuzzy
623
  msgid "Media uploading and management is available in AdRotate Pro."
624
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
625
 
626
+ #: adrotate.php:531
627
  #, fuzzy
628
  msgid "Upload new banner image"
629
  msgstr "Banner image:"
630
 
631
+ #: adrotate.php:532
632
  #, fuzzy
633
  msgid "Accepted files are:"
634
  msgstr "Godkända filer är:"
635
 
636
+ #: adrotate.php:532
637
  #, fuzzy
638
  msgid "Maximum size is 512Kb."
639
  msgstr "Maximal storlek är 512Kb."
640
 
641
+ #: adrotate.php:532
642
  msgid "Important:"
643
  msgstr ""
644
 
645
+ #: adrotate.php:532
646
  msgid ""
647
  "Make sure your file has no spaces or special characters in the name. Replace "
648
  "spaces with a - or _."
649
  msgstr ""
650
 
651
+ #: adrotate.php:534
652
  msgid ""
653
  "For responsive adverts make sure the filename is in the following format; "
654
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
655
  msgstr ""
656
 
657
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:308
658
  msgid ""
659
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
660
  "filename instead of \".full\" for the various viewports."
661
  msgstr ""
662
 
663
+ #: adrotate.php:536 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 "Exempel:"
668
 
669
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:309
670
  msgid ""
671
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
672
  "for different viewports."
673
  msgstr ""
674
 
675
+ #: adrotate.php:540
676
  #, fuzzy
677
  msgid "Upload image"
678
  msgstr "Överföring ofullständig."
679
 
680
+ #: adrotate.php:543
681
  msgid "Available banner images in"
682
  msgstr ""
683
 
684
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
685
  msgid "Name"
686
  msgstr "Namn"
687
 
688
+ #: adrotate.php:549
689
  #, fuzzy
690
  msgid "Actions"
691
  msgstr "Massåtgärder"
692
 
693
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
694
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
695
  #: dashboard/publisher/adrotate-ads-main-error.php:21
696
  #: dashboard/publisher/adrotate-ads-main.php:22
697
  msgid "Delete"
698
  msgstr "Radera"
699
 
700
+ #: adrotate.php:562
701
  msgid ""
702
  "Make sure the banner images are not in use by adverts when you delete them!"
703
  msgstr ""
704
 
705
+ #: adrotate.php:562
706
  #, fuzzy
707
  msgid "Manage your banner folder from here with AdRotate Pro."
708
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
709
 
710
+ #: adrotate.php:606
711
  msgid "AdRotate Settings"
712
  msgstr "AdRotate Inställningar"
713
 
714
+ #: adrotate.php:609
715
  msgid "Settings saved"
716
  msgstr "Inställningar sparas"
717
 
718
+ #: adrotate.php:611
719
  msgid "Database optimized"
720
  msgstr "Databas optimerad"
721
 
722
+ #: adrotate.php:613
723
  msgid "Database repaired"
724
  msgstr "Databas reparation"
725
 
726
+ #: adrotate.php:615
727
  msgid "Ads evaluated and statuses have been corrected where required"
728
  msgstr "annonser utvärderas och status har rättats till vid behov"
729
 
730
+ #: adrotate.php:617
731
  msgid "Empty database records removed"
732
  msgstr "Tomma databasposter tas bort"
733
 
734
+ #: adrotate.php:619
735
  msgid "Database can only be optimized or cleaned once every hour"
736
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
737
 
738
+ #: adrotate.php:627
739
  msgid "Access Rights"
740
  msgstr "Tillträde"
741
 
742
+ #: adrotate.php:628
743
  msgid "Who has access to what?"
744
  msgstr ""
745
 
746
+ #: adrotate.php:631
747
  msgid "Manage/Add/Edit adverts"
748
  msgstr "Hantera / Lägg till / redigera annonser"
749
 
750
+ #: adrotate.php:635
751
  msgid "Role to see and add/edit ads."
752
  msgstr "Role för att se och lägga till / redigera annonser."
753
 
754
+ #: adrotate.php:639
755
  msgid "Delete/Reset adverts"
756
  msgstr "Radera / Reset annonser"
757
 
758
+ #: adrotate.php:643
759
  msgid "Role to delete ads and reset stats."
760
  msgstr "Role att ta bort annonser och återställ statistik."
761
 
762
+ #: adrotate.php:647
763
  msgid "Manage/Add/Edit groups"
764
  msgstr "Hantera / Lägg till / Redigera grupper"
765
 
766
+ #: adrotate.php:651
767
  msgid "Role to see and add/edit groups."
768
  msgstr "Role för att se och lägga till / redigera grupp."
769
 
770
+ #: adrotate.php:655
771
  msgid "Delete groups"
772
  msgstr "Ta bort grupper"
773
 
774
+ #: adrotate.php:659
775
  msgid "Role to delete groups."
776
  msgstr "Role att ta bort grupper."
777
 
778
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
779
+ #: adrotate.php:890
780
  msgid "Update Options"
781
  msgstr "Update Options"
782
 
783
+ #: adrotate.php:691
784
  msgid "Statistics"
785
  msgstr "Statistik"
786
 
787
+ #: adrotate.php:694
788
+ msgid "How to track stats"
789
+ msgstr ""
790
+
791
+ #: adrotate.php:697 dashboard/publisher/adrotate-groups-edit.php:199
792
+ #: dashboard/publisher/adrotate-groups-edit.php:240
793
  #, fuzzy
794
+ msgid "Disabled"
795
+ msgstr "Inaktivera annonser"
796
+
797
+ #: adrotate.php:703
798
+ msgid "No impressions and clicks are recorded for any of your adverts."
799
+ msgstr ""
800
 
801
+ #: adrotate.php:704
802
+ msgid "Tracks impressions and clicks internally."
803
+ msgstr ""
804
 
805
+ #: adrotate.php:705
806
+ msgid ""
807
+ "Click and Impression recording, Click and impression limits, impression "
808
+ "spread for schedules, local stats display."
809
  msgstr ""
 
 
810
 
811
+ #: adrotate.php:706
812
+ msgid ""
813
+ "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
814
+ "attributes."
815
+ msgstr ""
816
+
817
+ #: adrotate.php:706 adrotate.php:708
818
+ msgid "Available in AdRotate Pro!"
819
+ msgstr ""
820
+
821
+ #: adrotate.php:707
822
+ msgid ""
823
+ "Click and Impression recording via Cookie, stats are displayed in Actions > "
824
+ "Contents."
825
+ msgstr ""
826
+
827
+ #: adrotate.php:708
828
+ msgid ""
829
+ "Requires Google Analytics tracker installed in your sites footer! uses "
830
+ "onClick() in adverts."
831
+ msgstr ""
832
+
833
+ #: adrotate.php:709
834
+ msgid ""
835
+ "Click and Impression recording via Cookie, stats are displayed in Events."
836
+ msgstr ""
837
+
838
+ #: adrotate.php:714
839
  msgid "Impressions timer"
840
  msgstr "Intryck timer"
841
 
842
+ #: adrotate.php:716 adrotate.php:723
843
  msgid "Seconds."
844
  msgstr "Sekunder."
845
 
846
+ #: adrotate.php:717
847
  #, fuzzy
848
  msgid "Default: 60."
849
  msgstr "Default"
850
 
851
+ #: adrotate.php:717
852
  #, fuzzy
853
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
854
  msgstr ""
855
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
856
 
857
+ #: adrotate.php:721
858
  #, fuzzy
859
  msgid "Clicks timer"
860
  msgstr "Intryck timer"
861
 
862
+ #: adrotate.php:724
863
  #, fuzzy
864
  msgid "Default: 86400."
865
  msgstr "Default"
866
 
867
+ #: adrotate.php:724
868
  #, fuzzy
869
  msgid ""
870
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
871
  msgstr ""
872
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
873
 
874
+ #: adrotate.php:729
875
  #, fuzzy
876
  msgid "Bot filter"
877
  msgstr "User-Agent Filter"
878
 
879
+ #: adrotate.php:732
880
  msgid "User-Agent Filter"
881
  msgstr "User-Agent Filter"
882
 
883
+ #: adrotate.php:735
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
  "En kommaseparerad lista med sökord. Filtrera bort bots / sökrobotar / user-"
889
  "agents. För att förhindra att visningar och klick räknas på dem."
890
 
891
+ #: adrotate.php:736
892
  msgid ""
893
  "Keep in mind that this might give false positives. The word 'google' also "
894
  "matches 'googlebot', but not vice-versa. So be careful!"
896
  "Tänk på att detta kan ge falska positiva. Ordet \"google\" träffar "
897
  "\"googlebot\", men inte vice versa. Så var försiktig!"
898
 
899
+ #: adrotate.php:736
900
  msgid "Keep your list up-to-date"
901
  msgstr "Håll din lista up-to-date"
902
 
903
+ #: adrotate.php:737
904
  msgid ""
905
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
906
  "other characters are stripped out."
908
  "Använd endast ord med alfanumeriska tecken, [- _] tillåts också. Alla andra "
909
  "tecken avskalade ut."
910
 
911
+ #: adrotate.php:738
912
  msgid ""
913
  "Additionally to the list specified here, empty User-Agents are blocked as "
914
  "well."
915
  msgstr ""
916
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
917
 
918
+ #: adrotate.php:738
919
  msgid "Learn more about"
920
  msgstr "Läs mer om"
921
 
922
+ #: adrotate.php:738
923
  msgid "user-agents"
924
  msgstr "user-agents"
925
 
926
+ #: adrotate.php:747
927
  msgid "Miscellaneous"
928
  msgstr "Diverse"
929
 
930
+ #: adrotate.php:750
931
  msgid "Widget alignment"
932
  msgstr "widget inriktnings"
933
 
934
+ #: adrotate.php:751
935
  msgid ""
936
  "Check this box if your widgets do not align in your themes sidebar. (Does "
937
  "not always help!)"
939
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
940
  "alltid hjälper!)"
941
 
942
+ #: adrotate.php:754
943
  msgid "Widget padding"
944
  msgstr "widget padding"
945
 
946
+ #: adrotate.php:755
947
  msgid ""
948
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
949
  "not always work!)"
951
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
952
  "widgets. (Fungerar inte alltid!)"
953
 
954
+ #: adrotate.php:760 adrotate.php:771
955
  #, fuzzy
956
  msgid "NOTICE:"
957
  msgstr "Meddelande"
958
 
959
+ #: adrotate.php:761
960
  msgid ""
961
  "You have enabled W3 Total Caching support but not defined the security hash. "
962
  "You need to add the following line to your wp-config.php near the bottom or "
964
  "needs to be enabled in W3 Total Cache as well too."
965
  msgstr ""
966
 
967
+ #: adrotate.php:765
968
  msgid "W3 Total Caching"
969
  msgstr "W3 Total Caching"
970
 
971
+ #: adrotate.php:766
972
  msgid "Check this box if you use W3 Total Caching on your site."
973
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
974
 
975
+ #: adrotate.php:772
976
  msgid ""
977
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
978
  "this function will not work. WP Super Cache has discontinued support for "
979
  "dynamic content."
980
  msgstr ""
981
 
982
+ #: adrotate.php:776
983
  msgid "WP Super Cache"
984
  msgstr "WP Super Cache"
985
 
986
+ #: adrotate.php:777
987
  msgid "Check this box if you use WP Super Cache on your site."
988
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
989
 
990
+ #: adrotate.php:782
991
  msgid ""
992
  "It may take a while for the ad to start rotating. The caching plugin needs "
993
  "to refresh the cache. This can take up to a week if not done manually."
996
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
997
  "manuellt."
998
 
999
+ #: adrotate.php:782
1000
  msgid ""
1001
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1002
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1004
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
1005
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
1006
 
1007
+ #: adrotate.php:786
1008
  msgid "Javascript"
1009
  msgstr ""
1010
 
1011
+ #: adrotate.php:789
1012
  #, fuzzy
1013
  msgid "Load jQuery"
1014
  msgstr ""
1015
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
1016
  "om andra plugins eller teman redan läsa här."
1017
 
1018
+ #: adrotate.php:790
1019
  #, fuzzy
1020
  msgid ""
1021
  "jQuery is required for all Javascript features below. Enable this if your "
1024
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
1025
  "om andra plugins eller teman redan läsa här."
1026
 
1027
+ #: adrotate.php:793
1028
  #, fuzzy
1029
  msgid "Load in footer?"
1030
  msgstr ""
1031
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1032
 
1033
+ #: adrotate.php:794
1034
  #, fuzzy
1035
  msgid ""
1036
  "Enable if you want to load the above libraries in the footer. Your theme "
1037
  "needs to call wp_footer() for this to work."
1038
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
1039
 
1040
+ #: adrotate.php:802
1041
  msgid "Maintenance"
1042
  msgstr "Underhåll"
1043
 
1044
+ #: adrotate.php:803
1045
  #, fuzzy
1046
  msgid ""
1047
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1056
  "Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
1057
  "eller märker din databas är långsam, inte svarar och trög."
1058
 
1059
+ #: adrotate.php:818 adrotate.php:820
1060
  msgid "Optimize Database"
1061
  msgstr "Optimera Databas"
1062
 
1063
+ #: adrotate.php:820
1064
  msgid "You are about to optimize the AdRotate database."
1065
  msgstr "Du håller på att optimera AdRotate databasen."
1066
 
1067
+ #: adrotate.php:820
1068
  msgid "Did you make a backup of your database?"
1069
  msgstr "Har du gjort en säkerhetskopia av din databas?"
1070
 
1071
+ #: adrotate.php:820
1072
  msgid ""
1073
  "This may take a moment and may cause your website to respond slow "
1074
  "temporarily!"
1076
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1077
  "tillfälligt!"
1078
 
1079
+ #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1080
  #: dashboard/publisher/adrotate-groups-main.php:24
1081
  msgid "OK to continue, CANCEL to stop."
1082
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1083
 
1084
+ #: adrotate.php:821
1085
  msgid "Cleans up overhead data in the AdRotate tables."
1086
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
1087
 
1088
+ #: adrotate.php:822
1089
  msgid ""
1090
  "Overhead data is accumulated garbage resulting from many changes you've "
1091
  "made. This can vary from nothing to hundreds of KiB of data."
1093
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
1094
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
1095
 
1096
+ #: adrotate.php:826 adrotate.php:828
1097
  msgid "Clean-up Database"
1098
  msgstr "Städa upp Databas"
1099
 
1100
+ #: adrotate.php:828
1101
  msgid ""
1102
  "You are about to clean up your database. This may delete expired schedules "
1103
  "and older statistics."
1105
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
1106
  "och äldre statistik."
1107
 
1108
+ #: adrotate.php:828
1109
  msgid "Are you sure you want to continue?"
1110
  msgstr "Är du säker på att du vill fortsätta?"
1111
 
1112
+ #: adrotate.php:828 adrotate.php:836
1113
  #, fuzzy
1114
  msgid "This might take a while and may slow down your site during this action!"
1115
  msgstr ""
1116
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1117
  "tillfälligt!"
1118
 
1119
+ #: adrotate.php:829
1120
  msgid "Delete stats older than 356 days (Optional)."
1121
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
1122
 
1123
+ #: adrotate.php:830
1124
  #, fuzzy
1125
  msgid ""
1126
  "AdRotate creates empty records when you start making ads or groups. In rare "
1129
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1130
  "den här knappen för att ta bort de tomma poster."
1131
 
1132
+ #: adrotate.php:830
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."
1137
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1138
  "den här knappen för att ta bort de tomma poster."
1139
 
1140
+ #: adrotate.php:830
1141
  msgid ""
1142
  "Additionally you can clean up old statistics. This will improve the speed of "
1143
  "your site."
1145
  "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
1146
  "hastigheten på din webbplats."
1147
 
1148
+ #: adrotate.php:834
1149
  #, fuzzy
1150
  msgid "Re-evaluate Ads"
1151
  msgstr "Omvärdera annonser"
1152
 
1153
+ #: adrotate.php:836
1154
  #, fuzzy
1155
  msgid "Re-evaluate all ads"
1156
  msgstr "Omvärdera alla annonser"
1157
 
1158
+ #: adrotate.php:836
1159
  #, fuzzy
1160
  msgid "You are about to check all ads for errors."
1161
  msgstr "Du håller på att kolla alla annonser för fel."
1162
 
1163
+ #: adrotate.php:837
1164
  #, fuzzy
1165
  msgid ""
1166
  "This will apply all evaluation rules to all ads to see if any error slipped "
1169
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
1170
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
1171
 
1172
+ #: adrotate.php:841
1173
  msgid ""
1174
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1175
  "becomes unusable in any way or by any means in whichever way I will not take "
1186
  "det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
1187
  "alla fall."
1188
 
1189
+ #: adrotate.php:849
1190
  msgid "Troubleshooting"
1191
  msgstr "Felsökning"
1192
 
1193
+ #: adrotate.php:852
1194
  msgid "Current version:"
1195
  msgstr "Aktuell version:"
1196
 
1197
+ #: adrotate.php:853
1198
  msgid "Previous version:"
1199
  msgstr "Tidigare version:"
1200
 
1201
+ #: adrotate.php:856
1202
  msgid "Current database version:"
1203
  msgstr "Nuvarande databasversion:"
1204
 
1205
+ #: adrotate.php:857
1206
  msgid "Previous database version:"
1207
  msgstr "Tidigare databasversion:"
1208
 
1209
+ #: adrotate.php:860
1210
  #, fuzzy
1211
  msgid "Ad evaluation next run:"
1212
  msgstr "Annons Meddelanden nästa körning:"
1213
 
1214
+ #: adrotate.php:861 adrotate.php:865
1215
  msgid "Not scheduled!"
1216
  msgstr "Inte planerat!"
1217
 
1218
+ #: adrotate.php:864
1219
  msgid "Clean Trackerdata next run:"
1220
  msgstr "Rensa Trackerdata nästa körning:"
1221
 
1222
+ #: adrotate.php:868
1223
  msgid "Current status of adverts"
1224
  msgstr "Aktuell status för annonser"
1225
 
1226
+ #: adrotate.php:869
1227
  msgid "Normal"
1228
  msgstr "Normal"
1229
 
1230
+ #: adrotate.php:869
1231
  msgid "Error"
1232
  msgstr "Error"
1233
 
1234
+ #: adrotate.php:869
1235
  msgid "Expired"
1236
  msgstr "Utgånget"
1237
 
1238
+ #: adrotate.php:869
1239
  msgid "Expires Soon"
1240
  msgstr "Utgår snart"
1241
 
1242
+ #: adrotate.php:869
1243
  msgid "Unknown Status"
1244
  msgstr "Okänd status"
1245
 
1246
+ #: adrotate.php:872
1247
  msgid ""
1248
  "NOTE: The below options are not meant for normal use and are only there for "
1249
  "developers to review saved settings or how ads are selected. These can be "
1255
  "väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
1256
  "normal användning de bör lämnas därhän!"
1257
 
1258
+ #: adrotate.php:876
1259
  msgid "Developer Debug"
1260
  msgstr "Utvecklar Debug"
1261
 
1262
+ #: adrotate.php:878
1263
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1264
  msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
1265
 
1266
+ #: adrotate.php:879
1267
  msgid "Show all settings, dashboard routines and related values."
1268
  msgstr ""
1269
  "Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
1270
 
1271
+ #: adrotate.php:880
1272
  msgid "Show array of all userroles and capabilities."
1273
  msgstr "Visa samling av alla userroles och möjligheter."
1274
 
1275
+ #: adrotate.php:881
1276
  msgid "Review saved advertisers! Visible to advertisers."
1277
  msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
1278
 
1279
+ #: adrotate.php:882
1280
  #, fuzzy
1281
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1282
  msgstr ""
1283
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
1284
  "endast till förlag."
1285
 
1286
+ #: adrotate.php:883
1287
  #, fuzzy
1288
  msgid ""
1289
  "Disable timers for clicks and impressions and enable a alert window for "
1290
  "clicktracking."
1291
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
1292
 
1293
+ #: adrotate.php:884
1294
  msgid "Temporarily disable encryption on the redirect url."
1295
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
1296
 
1339
  msgstr ""
1340
 
1341
  #: dashboard/adrotate-info.php:139
1342
+ msgid "Can't donate money? Consider writing a review instead. Thank you!"
1343
  msgstr ""
1344
 
1345
  #: dashboard/adrotate-info.php:148
1411
  msgid "Developer License"
1412
  msgstr "Utvecklar Debug"
1413
 
1414
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1415
  msgid "Unlimited WordPress installations and/or networks."
1416
  msgstr ""
1417
 
1516
  "miss an expiration date again."
1517
  msgstr ""
1518
 
 
 
 
 
1519
  #: dashboard/publisher/adrotate-ads-edit.php:46
1520
  msgid "The AdCode cannot be empty!"
1521
  msgstr "Den AdCode kan inte vara tomt!"
1530
 
1531
  #: dashboard/publisher/adrotate-ads-edit.php:55
1532
  msgid ""
1533
+ "There is a problem saving the image. Please reset your image and re-save the "
1534
+ "ad!"
1535
  msgstr ""
 
 
1536
 
1537
  #: dashboard/publisher/adrotate-ads-edit.php:58
1538
  msgid ""
1541
  msgstr ""
1542
 
1543
  #: dashboard/publisher/adrotate-ads-edit.php:61
1544
+ msgid "Responsive is enabled but your banner image has the wrong name."
 
 
1545
  msgstr ""
1546
 
1547
  #: dashboard/publisher/adrotate-ads-edit.php:64
1664
  "området har företräde."
1665
 
1666
  #: dashboard/publisher/adrotate-ads-edit.php:156
1667
+ msgid "Statistics:"
1668
+ msgstr ""
1669
 
1670
  #: dashboard/publisher/adrotate-ads-edit.php:158
1671
+ msgid "Enable click and impression tracking for this advert."
1672
+ msgstr ""
1673
 
1674
  #: dashboard/publisher/adrotate-ads-edit.php:159
1675
  msgid ""
1676
  "Note: Clicktracking does not work for Javascript adverts such as those "
1677
+ "provided by Google AdSense/DFP/DoubleClick. Flash adverts are not always "
1678
  "supported."
1679
  msgstr ""
1680
 
1691
  msgstr "Nej, inte visa denna annons någonstans"
1692
 
1693
  #: dashboard/publisher/adrotate-ads-edit.php:177
1694
+ #: dashboard/publisher/adrotate-ads-main.php:114
1695
  #: dashboard/publisher/adrotate-groups-edit.php:75
1696
+ #: dashboard/publisher/adrotate-groups-main.php:92
1697
  #, fuzzy
1698
  msgid "Get more features with AdRotate Pro."
1699
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1711
  #: dashboard/publisher/adrotate-ads-edit.php:437
1712
  #: dashboard/publisher/adrotate-groups-edit.php:154
1713
  #: dashboard/publisher/adrotate-groups-edit.php:297
1714
+ #: dashboard/publisher/adrotate-groups-edit.php:389
1715
  msgid "Cancel"
1716
  msgstr "Avbryt"
1717
 
1967
  msgstr "Annonser i grupp"
1968
 
1969
  #: dashboard/publisher/adrotate-ads-edit.php:415
1970
+ #: dashboard/publisher/adrotate-groups-main.php:61
1971
  msgid "Default"
1972
  msgstr "Default"
1973
 
1974
  #: dashboard/publisher/adrotate-ads-edit.php:416
1975
+ #: dashboard/publisher/adrotate-groups-main.php:62
1976
  msgid "Dynamic"
1977
  msgstr "Dynamic"
1978
 
1979
  #: dashboard/publisher/adrotate-ads-edit.php:416
1980
+ #: dashboard/publisher/adrotate-groups-main.php:62
1981
  #, fuzzy
1982
  msgid "second rotation"
1983
  msgstr "Geo Location"
1984
 
1985
  #: dashboard/publisher/adrotate-ads-edit.php:417
1986
+ #: dashboard/publisher/adrotate-groups-main.php:63
1987
  msgid "Block"
1988
  msgstr "Block"
1989
 
1990
  #: dashboard/publisher/adrotate-ads-edit.php:417
1991
+ #: dashboard/publisher/adrotate-groups-main.php:63
1992
  #, fuzzy
1993
  msgid "grid"
1994
  msgstr ""
1997
 
1998
  #: dashboard/publisher/adrotate-ads-edit.php:418
1999
  #: dashboard/publisher/adrotate-groups-edit.php:192
2000
+ #: dashboard/publisher/adrotate-groups-main.php:64
2001
  msgid "Post Injection"
2002
  msgstr "Post injektion"
2003
 
2004
  #: dashboard/publisher/adrotate-ads-edit.php:419
2005
+ #: dashboard/publisher/adrotate-groups-main.php:65
2006
  msgid "Geolocation"
2007
  msgstr "Geolocation"
2008
 
2009
  #: dashboard/publisher/adrotate-ads-edit.php:425
2010
  #: dashboard/publisher/adrotate-groups-edit.php:61
2011
+ #: dashboard/publisher/adrotate-groups-main.php:72
2012
  msgid "Mode"
2013
  msgstr "läge"
2014
 
2044
 
2045
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2046
  #: dashboard/publisher/adrotate-ads-report.php:34
2047
+ #: dashboard/publisher/adrotate-groups-edit.php:329
2048
+ #: dashboard/publisher/adrotate-groups-main.php:36
2049
  #: dashboard/publisher/adrotate-groups-report.php:40
2050
  msgid "Impressions"
2051
  msgstr "Intryck"
2052
 
2053
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2054
+ #: dashboard/publisher/adrotate-ads-main.php:46
2055
  #: dashboard/publisher/adrotate-ads-report.php:35
2056
+ #: dashboard/publisher/adrotate-groups-edit.php:330
2057
+ #: dashboard/publisher/adrotate-groups-main.php:38
2058
  #: dashboard/publisher/adrotate-groups-report.php:41
2059
  msgid "Clicks"
2060
  msgstr "Klick"
2061
 
2062
  #: dashboard/publisher/adrotate-ads-main-disabled.php:40
2063
+ #: dashboard/publisher/adrotate-ads-main.php:48
2064
  #: dashboard/publisher/adrotate-ads-report.php:38
2065
  #: dashboard/publisher/adrotate-groups-report.php:44
2066
  msgid "CTR"
2068
 
2069
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2070
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2071
+ #: dashboard/publisher/adrotate-ads-main.php:87
2072
+ #: dashboard/publisher/adrotate-groups-main.php:72
2073
  msgid "Edit"
2074
  msgstr "Ändra"
2075
 
2080
 
2081
  #: dashboard/publisher/adrotate-ads-main-disabled.php:74
2082
  #: dashboard/publisher/adrotate-ads-main-error.php:64
2083
+ #: dashboard/publisher/adrotate-ads-main.php:87
2084
  #, fuzzy
2085
  msgid "Groups:"
2086
  msgstr "Grupper"
2120
  msgstr "För 7 dagar"
2121
 
2122
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2123
+ #: dashboard/publisher/adrotate-groups-edit.php:382
2124
  msgid "Configuration errors."
2125
  msgstr "Konfigurations fel."
2126
 
2134
  msgstr "Exportera"
2135
 
2136
  #: dashboard/publisher/adrotate-ads-main.php:42
2137
+ #: dashboard/publisher/adrotate-groups-edit.php:332
2138
  msgid "Weight"
2139
  msgstr "Vikt"
2140
 
2141
+ #: dashboard/publisher/adrotate-ads-main.php:44
2142
  msgid "Shown"
2143
  msgstr "Visa"
2144
 
2145
+ #: dashboard/publisher/adrotate-ads-main.php:45
2146
+ #: dashboard/publisher/adrotate-ads-main.php:47
2147
+ #: dashboard/publisher/adrotate-groups-main.php:37
2148
+ #: dashboard/publisher/adrotate-groups-main.php:39
2149
  msgid "Today"
2150
  msgstr "i dag"
2151
 
2152
+ #: dashboard/publisher/adrotate-ads-main.php:109
 
 
 
 
 
2153
  msgid "No ads created yet!"
2154
  msgstr "Inga annonser skapats ännu!"
2155
 
2294
 
2295
  #: dashboard/publisher/adrotate-groups-edit.php:153
2296
  #: dashboard/publisher/adrotate-groups-edit.php:296
2297
+ #: dashboard/publisher/adrotate-groups-edit.php:388
2298
  #, fuzzy
2299
  msgid "Save Group"
2300
  msgstr "Spara"
2363
  msgid "Include ads in categories?"
2364
  msgstr "Inkludera annonser i kategorierna?"
2365
 
 
 
 
 
 
 
2366
  #: dashboard/publisher/adrotate-groups-edit.php:200
2367
  #: dashboard/publisher/adrotate-groups-edit.php:241
2368
  #, fuzzy
2394
 
2395
  #: dashboard/publisher/adrotate-groups-edit.php:210
2396
  #: dashboard/publisher/adrotate-groups-edit.php:251
2397
+ msgid "the second paragraph"
2398
  msgstr ""
2399
 
2400
  #: dashboard/publisher/adrotate-groups-edit.php:211
2401
  #: dashboard/publisher/adrotate-groups-edit.php:252
2402
+ msgid "the third paragraph"
2403
  msgstr ""
2404
 
2405
  #: dashboard/publisher/adrotate-groups-edit.php:212
2406
  #: dashboard/publisher/adrotate-groups-edit.php:253
2407
+ msgid "the fourth paragraph"
2408
  msgstr ""
2409
 
2410
  #: dashboard/publisher/adrotate-groups-edit.php:214
2486
  msgid "Select Ads"
2487
  msgstr "Välj Annonser"
2488
 
2489
+ #: dashboard/publisher/adrotate-groups-edit.php:333
2490
  msgid "Visible until"
2491
  msgstr "Synlig tills"
2492
 
2493
+ #: dashboard/publisher/adrotate-groups-edit.php:375
2494
  msgid "No ads created!"
2495
  msgstr "Inga annonser skapat!"
2496
 
2510
  msgid "This action can not be undone!"
2511
  msgstr "Denna åtgärd kan inte ångras!"
2512
 
2513
+ #: dashboard/publisher/adrotate-groups-main.php:41
2514
  msgid "Code"
2515
  msgstr "Kod"
2516
 
2517
+ #: dashboard/publisher/adrotate-groups-main.php:87
2518
  msgid "No groups created!"
2519
  msgstr "Inga grupper skapas!"
2520
 
2522
  msgid "Statistics for group"
2523
  msgstr "Statistik för grupp"
2524
 
2525
+ #, fuzzy
2526
+ #~ msgid "Enable stats"
2527
+ #~ msgstr "Statistik"
2528
+
2529
+ #~ msgid "Track clicks and impressions."
2530
+ #~ msgstr "Spåra klick och visningar."
2531
+
2532
+ #, fuzzy
2533
+ #~ msgid ""
2534
+ #~ "Disabling this also disables click and impression limits on schedules."
2535
+ #~ msgstr ""
2536
+ #~ "Inaktivera detta också inaktiverar klick och visningar gränser för "
2537
+ #~ "scheman och inaktiverar tidsramar."
2538
+
2539
+ #~ msgid ""
2540
+ #~ "There is a problem saving the image specification. Please reset your "
2541
+ #~ "image and re-save the ad!"
2542
+ #~ msgstr ""
2543
+ #~ "Det är ett problem med att spara bilden specifikationen. Återställ din "
2544
+ #~ "image och åter spara annonsen!"
2545
+
2546
+ #~ msgid "Clicktracking:"
2547
+ #~ msgstr "Clicktracking:"
2548
+
2549
+ #~ msgid "Enable click tracking for this advert."
2550
+ #~ msgstr "Aktivera klickspårning för denna annons."
2551
+
2552
  #, fuzzy
2553
  #~ msgid "Usage:"
2554
  #~ msgstr "Användning:"
library/jquery.adrotate.clicktracker.js CHANGED
@@ -1,10 +1,10 @@
1
- /****************************************************************************************
2
- * Track clicks from special elements *
3
- * Arnan de Gans from AJdG Solutions (http://meandmymac.net, http://ajdg.solutions) *
4
- * Version: 0.7 *
5
- * With help from: Fraser Munro *
6
- * Original code: N/a *
7
- ****************************************************************************************/
8
 
9
  /* ------------------------------------------------------------------------------------
10
  * COPYRIGHT AND TRADEMARK NOTICE
@@ -16,15 +16,14 @@
16
  * liability that might arise from it's use.
17
  ------------------------------------------------------------------------------------ */
18
 
19
- jQuery(document).ready(function() {
20
- jQuery("a.gofollow").click(function(){
21
- var tracker = jQuery(this).attr("data-track");
22
- var debug = jQuery(this).attr("data-debug");
23
-
24
- jQuery.post(click_object.ajax_url, {'action':'adrotate_click','track':tracker});
25
-
26
- if(debug == 1) {
27
- alert('Tracker: ' + tracker + '\nclick_object.ajax_url: '+click_object.ajax_url);
28
- }
29
  });
30
- });
1
+ /*
2
+ Track clicks from special elements
3
+ Arnan de Gans from AJdG Solutions (http://meandmymac.net, https://ajdg.solutions)
4
+ Version: 1.0
5
+ With help from: Fraser Munro
6
+ Original code: Arnan de Gans
7
+ */
8
 
9
  /* ------------------------------------------------------------------------------------
10
  * COPYRIGHT AND TRADEMARK NOTICE
16
  * liability that might arise from it's use.
17
  ------------------------------------------------------------------------------------ */
18
 
19
+ (function($) {
20
+ $(document).ready(function() {
21
+ $(document).on('click', 'a.gofollow', function(){
22
+ var tracker = $(this).attr("data-track");
23
+ var debug = $(this).attr("data-debug");
24
+
25
+ $.post(click_object.ajax_url, {'action':'adrotate_click','track':tracker});
26
+ if(debug == 1) alert('Tracker: ' + tracker + '\nclick_object.ajax_url: '+click_object.ajax_url);
27
+ });
 
28
  });
29
+ }(jQuery));
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === AdRotate ===
2
  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.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
 
@@ -19,13 +19,13 @@ AdRotate looks and feels similar to the dashboard you already know, so you're al
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)!
23
 
24
  **Important links**
25
 
26
- * [Details](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=details) - Lots of Additional plugin information
27
- * [Manuals & Support](https://ajdg.solutions/forums/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=manuals) - Setup instructions and support
28
- * [AdRotate Store](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=shop) - Buy AdRotate Pro or hire me to install or troubleshoot AdRotate
29
 
30
  **Some Features**
31
 
@@ -55,7 +55,7 @@ Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.so
55
  * Warns you on the dashboard when ads are about to expire or need attention
56
  * Use shortcodes, widgets or PHP to put ads on your site
57
 
58
- NOTE: Certain features are exclusive to AdRotate PRO. Learn more about what AdRotate Pro will do for you in the [features list](https://ajdg.solutions/products/adrotate-for-wordpress/features/).
59
 
60
  **AdRotate Switch**
61
 
@@ -73,10 +73,9 @@ Looking to switch from another plugin? Check out [AdRotate Switch](https://wordp
73
 
74
  **Important links**
75
 
76
- * [Manual Installation](https://ajdg.solutions/manuals/adrotate/installing-adrotate-on-your-website/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=manuals)
77
- * [Upgrade AdRotate Free to Pro](https://ajdg.solutions/manuals/adrotate/upgrade-adrotate-to-adrotate-pro/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)
78
- * [Manuals & Support](https://https://ajdg.solutions/forums/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=manuals)
79
- * [AdRotate Store](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=shop)
80
 
81
  == Frequently Asked Questions ==
82
 
@@ -84,65 +83,56 @@ Looking to switch from another plugin? Check out [AdRotate Switch](https://wordp
84
  **Answer:**
85
  Maybe. Take a look at [AdRotate Switch](https://wordpress.org/plugins/adrotate-switch/) and see if your current advertising plugin is compatible for migrating your data!
86
 
87
- There are [manual](https://ajdg.solutions/manuals/adrotate/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=manuals) with every feature explained.
88
- If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=support) and ask your question there!
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)!
123
 
124
  NOTE: Unsolicited offers, parnterships, job offers, promotional emails or product offers to "enhance" my business or products through this site or any means are not appreciated and will most likely be ignored.
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)!
142
 
143
- 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).
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)
1
  === AdRotate ===
2
  Contributors: adegans
3
+ Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme&pk_kwd=donatelink
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.2.2
7
+ Stable tag: 3.11.4
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
 
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/?pk_campaign=adrotatefree-readme&pk_kwd=adrotatepage)!
23
 
24
  **Important links**
25
 
26
+ * [Details](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=adrotatepage) - Lots of Additional plugin information
27
+ * [Manuals & Support](https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=manuals) - Setup instructions and support
28
+ * [AdRotate Store](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro) - Buy AdRotate Pro or hire me to install or troubleshoot AdRotate
29
 
30
  **Some Features**
31
 
55
  * Warns you on the dashboard when ads are about to expire or need attention
56
  * Use shortcodes, widgets or PHP to put ads on your site
57
 
58
+ NOTE: Certain features are exclusive to AdRotate PRO. Learn more about what AdRotate Pro will do for you in the [features list](https://ajdg.solutions/products/adrotate-for-wordpress/features/?pk_campaign=adrotatefree-readme&pk_kwd=features).
59
 
60
  **AdRotate Switch**
61
 
73
 
74
  **Important links**
75
 
76
+ * [Manual Installation](https://ajdg.solutions/manuals/adrotate/installing-adrotate-on-your-website/?pk_campaign=adrotatefree-readme&pk_kwd=installation)
77
+ * [Manuals & Support](https://https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=manuals)
78
+ * [AdRotate Store](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)
 
79
 
80
  == Frequently Asked Questions ==
81
 
83
  **Answer:**
84
  Maybe. Take a look at [AdRotate Switch](https://wordpress.org/plugins/adrotate-switch/) and see if your current advertising plugin is compatible for migrating your data!
85
 
86
+ There are [manual](https://ajdg.solutions/manuals/adrotate/?pk_campaign=adrotatefree-readme&pk_kwd=manuals) with every feature explained.
87
+ If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=forum) and ask your question there!
88
 
89
  == Changelog ==
90
 
91
+ = 3.11.4 FREE =
92
+ * [fix] New adverts validating properly
93
+ * [fix] Much more accurate post injection filter
94
+ * [fix] Much more accurate page injection filter
95
+ * [fix] Welcome popup 'dismiss' not always working
96
+ * [tweak] Clicktracking counting jQuery on()
97
+ * [tweak] Changed "upgrade" button to "update now"
98
+ * [tweak] Clearer error status for responsive adverts
99
+
100
+ 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/?pk_campaign=adrotatefree-readme&pk_kwd=features).
101
+
102
+ = 3.12.6 PRO =
103
+ * [new] Stats tracking with Piwik Analytics content tracking
104
+ * [new] Stats tracking with Google Analytics event tracking
105
+ * [fix] Time shown correctly when editing schedules
106
+ * [fix] Notification emails not being sent reliably
107
+ * [fix] New adverts validating properly
108
+ * [fix] Much more accurate post injection filter
109
+ * [fix] Much more accurate page injection filter
110
+ * [tweak] Clicktracking counting jQuery on()
111
+ * [tweak] Changed "upgrade" button to "update now"
112
+ * [tweak] Clearer error status for responsive adverts
113
+
114
+ The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
115
+ Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
 
 
 
 
 
 
116
 
117
  NOTE: Unsolicited offers, parnterships, job offers, promotional emails or product offers to "enhance" my business or products through this site or any means are not appreciated and will most likely be ignored.
118
 
119
  == Upgrade Notice ==
120
 
121
+ = 3.11.4 FREE =
122
+ * [fix] New adverts validating properly
123
+ * [fix] Much more accurate post injection filter
124
+ * [fix] Much more accurate page injection filter
125
+ * [fix] Welcome popup 'dismiss' not always working
126
+ * [tweak] Clicktracking counting jQuery on()
127
+ * [tweak] Changed "upgrade" button to "update now"
128
+ * [tweak] Clearer error status for responsive adverts
 
 
 
129
 
130
+ The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
131
+ Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
132
 
133
+ 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/?pk_campaign=adrotatefree-readme&pk_kwd=features).
134
 
135
  == Screenshots ==
136
 
137
+ * Visit [the site](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=screenshots) for screenshots.
138
+ * [Manuals & Support](https://https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=manuals)