AdRotate Banner Manager - Version 3.11.2

Version Description

FREE = * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save' * [fix] Query error when cleaning database manually * [fix] Self-repairing database function now actually works * [tweak] Load max. 20 ads for a dynamic group * [tweak] Impression counting excluded from popular caching plugins * [tweak] Click counting excluded from popular caching plugins * [change] Upgrade script cleaned up * [change] Removed unnecessary indexes from database * [change] Removed obsolete 'block' columns from database * [change] Improved INT() unsigned datatypes in MySQL

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

Code changes from version 3.11.1 to 3.11.2

adrotate-functions.php CHANGED
@@ -20,10 +20,9 @@
20
  function adrotate_shortcode($atts, $content = null) {
21
  global $adrotate_config;
22
 
23
- $banner_id = $group_ids = $block_id = $fallback = $weight = $site = 0;
24
  if(!empty($atts['banner'])) $banner_id = trim($atts['banner'], "\r\t ");
25
  if(!empty($atts['group'])) $group_ids = trim($atts['group'], "\r\t ");
26
- if(!empty($atts['block'])) $block_id = trim($atts['block'], "\r\t ");
27
  if(!empty($atts['fallback'])) $fallback = trim($atts['fallback'], "\r\t "); // Optional for groups (override)
28
  if(!empty($atts['weight'])) $weight = trim($atts['weight'], "\r\t "); // Optional for groups (override)
29
  if(!empty($atts['site'])) $site = 0; // Not supported in free version
@@ -32,24 +31,18 @@ function adrotate_shortcode($atts, $content = null) {
32
 
33
  if($adrotate_config['w3caching'] == "Y") $output .= '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
34
 
35
- if($banner_id > 0 AND ($group_ids == 0 OR $group_ids > 0) AND $block_id == 0) { // Show one Ad
36
  if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_ad('.$banner_id.', true, 0, 0) -->';
37
  $output .= adrotate_ad($banner_id, true, 0, 0);
38
  if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
39
  }
40
 
41
- if($banner_id == 0 AND $group_ids > 0 AND $block_id == 0) { // Show group
42
  if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_group('.$group_ids.', '.$fallback.', '.$weight.') -->';
43
  $output .= adrotate_group($group_ids, $fallback, $weight);
44
  if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
45
  }
46
 
47
- if($banner_id == 0 AND $group_ids == 0 AND $block_id > 0) { // Show block
48
- if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_block( $block_id, $weight ) -->';
49
- $output .= adrotate_block($block_id, $weight);
50
- if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
51
- }
52
-
53
  if($adrotate_config['w3caching'] == "Y") $output .= '<!-- /mfunc -->';
54
 
55
  return $output;
@@ -137,7 +130,7 @@ function adrotate_count_impression($ad, $group = 0, $blog_id = 0, $impression_ti
137
  if($stats > 0) {
138
  $wpdb->query("UPDATE `".$wpdb->prefix."adrotate_stats` SET `impressions` = `impressions` + 1 WHERE `id` = $stats;");
139
  } else {
140
- $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'block' => 0, 'thetime' => $today, 'clicks' => 0, 'impressions' => 1));
141
  }
142
 
143
  $wpdb->insert($wpdb->prefix."adrotate_tracker", array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'i', 'useragent' => '', 'country' => '', 'city' => ''));
@@ -154,6 +147,10 @@ function adrotate_count_impression($ad, $group = 0, $blog_id = 0, $impression_ti
154
  Since: 3.10.14
155
  -------------------------------------------------------------*/
156
  function adrotate_impression_callback() {
 
 
 
 
157
  global $adrotate_debug;
158
 
159
  $meta = $_POST['track'];
@@ -165,7 +162,7 @@ function adrotate_impression_callback() {
165
  list($ad, $group, $blog_id, $impression_timer) = explode(",", $meta, 4);
166
  adrotate_count_impression($ad, $group, $blog_id, $impression_timer);
167
 
168
- die();
169
  }
170
 
171
 
@@ -178,6 +175,10 @@ function adrotate_impression_callback() {
178
  Since: 3.10.14
179
  -------------------------------------------------------------*/
180
  function adrotate_click_callback() {
 
 
 
 
181
  global $wpdb, $adrotate_config, $adrotate_debug;
182
 
183
  $meta = $_POST['track'];
@@ -209,7 +210,7 @@ function adrotate_click_callback() {
209
  if($stats > 0) {
210
  $wpdb->query("UPDATE `".$wpdb->prefix."adrotate_stats` SET `clicks` = `clicks` + 1 WHERE `id` = $stats;");
211
  } else {
212
- $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'block' => 0, 'thetime' => $today, 'clicks' => 1, 'impressions' => 1));
213
  }
214
 
215
  $wpdb->insert($wpdb->prefix.'adrotate_tracker', array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'c', 'useragent' => $useragent, 'country' => '', 'city' => ''));
@@ -220,7 +221,7 @@ function adrotate_click_callback() {
220
  unset($remote_ip, $track, $meta, $ad, $group, $remote, $banner);
221
  }
222
 
223
- die();
224
  }
225
  /*-------------------------------------------------------------
226
  Name: adrotate_filter_schedule
@@ -334,19 +335,15 @@ function adrotate_rand($length = 8) {
334
  Name: adrotate_shuffle
335
 
336
  Purpose: Randomize and slice an array but keep keys intact
337
- Receive: $array, $amount
338
  Return: $shuffle
339
  Since: 3.8.8.3
340
  -------------------------------------------------------------*/
341
- function adrotate_shuffle($array, $amount = 0) {
342
  if(!is_array($array)) return $array;
343
  $keys = array_keys($array);
344
  shuffle($keys);
345
 
346
- $count = count($keys);
347
- if($amount == 0 OR $amount > $count) $amount = $count;
348
- $keys = array_slice($keys, 0, $amount, 1);
349
-
350
  $shuffle = array();
351
  foreach($keys as $key) {
352
  $shuffle[$key] = $array[$key];
@@ -538,7 +535,7 @@ function adrotate_evaluate_ad($ad_id) {
538
 
539
  // Fetch ad
540
  $ad = $wpdb->get_row($wpdb->prepare("SELECT `id`, `bannercode`, `tracker`, `link`, `imagetype`, `image`, `cbudget`, `ibudget`, `crate`, `irate` FROM `".$wpdb->prefix."adrotate` WHERE `id` = %d;", $ad_id));
541
- $advertiser = $wpdb->get_var("SELECT `user` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `group` = 0 AND `block` = 0 AND `user` > 0 AND `schedule` = 0;");
542
  $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;");
543
 
544
  $bannercode = stripslashes(htmlspecialchars_decode($ad->bannercode, ENT_QUOTES));
@@ -614,7 +611,6 @@ function adrotate_ad_is_in_groups($id) {
614
  WHERE
615
  `".$wpdb->prefix."adrotate_linkmeta`.`ad` = '".$id."'
616
  AND `".$wpdb->prefix."adrotate_linkmeta`.`group` = `".$wpdb->prefix."adrotate_groups`.`id`
617
- AND `".$wpdb->prefix."adrotate_linkmeta`.`block` = 0
618
  AND `".$wpdb->prefix."adrotate_linkmeta`.`user` = 0
619
  ;");
620
  if($groups) {
20
  function adrotate_shortcode($atts, $content = null) {
21
  global $adrotate_config;
22
 
23
+ $banner_id = $group_ids = $fallback = $weight = 0;
24
  if(!empty($atts['banner'])) $banner_id = trim($atts['banner'], "\r\t ");
25
  if(!empty($atts['group'])) $group_ids = trim($atts['group'], "\r\t ");
 
26
  if(!empty($atts['fallback'])) $fallback = trim($atts['fallback'], "\r\t "); // Optional for groups (override)
27
  if(!empty($atts['weight'])) $weight = trim($atts['weight'], "\r\t "); // Optional for groups (override)
28
  if(!empty($atts['site'])) $site = 0; // Not supported in free version
31
 
32
  if($adrotate_config['w3caching'] == "Y") $output .= '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
33
 
34
+ if($banner_id > 0 AND $group_ids == 0) { // Show one Ad
35
  if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_ad('.$banner_id.', true, 0, 0) -->';
36
  $output .= adrotate_ad($banner_id, true, 0, 0);
37
  if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
38
  }
39
 
40
+ if($banner_id == 0 AND $group_ids > 0) { // Show group
41
  if($adrotate_config['supercache'] == "Y") $output .= '<!--mfunc echo adrotate_group('.$group_ids.', '.$fallback.', '.$weight.') -->';
42
  $output .= adrotate_group($group_ids, $fallback, $weight);
43
  if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
44
  }
45
 
 
 
 
 
 
 
46
  if($adrotate_config['w3caching'] == "Y") $output .= '<!-- /mfunc -->';
47
 
48
  return $output;
130
  if($stats > 0) {
131
  $wpdb->query("UPDATE `".$wpdb->prefix."adrotate_stats` SET `impressions` = `impressions` + 1 WHERE `id` = $stats;");
132
  } else {
133
+ $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'thetime' => $today, 'clicks' => 0, 'impressions' => 1));
134
  }
135
 
136
  $wpdb->insert($wpdb->prefix."adrotate_tracker", array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'i', 'useragent' => '', 'country' => '', 'city' => ''));
147
  Since: 3.10.14
148
  -------------------------------------------------------------*/
149
  function adrotate_impression_callback() {
150
+ define('DONOTCACHEPAGE', true);
151
+ define('DONOTCACHEDB', true);
152
+ define('DONOTCACHCEOBJECT', true);
153
+
154
  global $adrotate_debug;
155
 
156
  $meta = $_POST['track'];
162
  list($ad, $group, $blog_id, $impression_timer) = explode(",", $meta, 4);
163
  adrotate_count_impression($ad, $group, $blog_id, $impression_timer);
164
 
165
+ wp_die();
166
  }
167
 
168
 
175
  Since: 3.10.14
176
  -------------------------------------------------------------*/
177
  function adrotate_click_callback() {
178
+ define('DONOTCACHEPAGE', true);
179
+ define('DONOTCACHEDB', true);
180
+ define('DONOTCACHCEOBJECT', true);
181
+
182
  global $wpdb, $adrotate_config, $adrotate_debug;
183
 
184
  $meta = $_POST['track'];
210
  if($stats > 0) {
211
  $wpdb->query("UPDATE `".$wpdb->prefix."adrotate_stats` SET `clicks` = `clicks` + 1 WHERE `id` = $stats;");
212
  } else {
213
+ $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'thetime' => $today, 'clicks' => 1, 'impressions' => 1));
214
  }
215
 
216
  $wpdb->insert($wpdb->prefix.'adrotate_tracker', array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'c', 'useragent' => $useragent, 'country' => '', 'city' => ''));
221
  unset($remote_ip, $track, $meta, $ad, $group, $remote, $banner);
222
  }
223
 
224
+ wp_die();
225
  }
226
  /*-------------------------------------------------------------
227
  Name: adrotate_filter_schedule
335
  Name: adrotate_shuffle
336
 
337
  Purpose: Randomize and slice an array but keep keys intact
338
+ Receive: $array
339
  Return: $shuffle
340
  Since: 3.8.8.3
341
  -------------------------------------------------------------*/
342
+ function adrotate_shuffle($array) {
343
  if(!is_array($array)) return $array;
344
  $keys = array_keys($array);
345
  shuffle($keys);
346
 
 
 
 
 
347
  $shuffle = array();
348
  foreach($keys as $key) {
349
  $shuffle[$key] = $array[$key];
535
 
536
  // Fetch ad
537
  $ad = $wpdb->get_row($wpdb->prepare("SELECT `id`, `bannercode`, `tracker`, `link`, `imagetype`, `image`, `cbudget`, `ibudget`, `crate`, `irate` FROM `".$wpdb->prefix."adrotate` WHERE `id` = %d;", $ad_id));
538
+ $advertiser = $wpdb->get_var("SELECT `user` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `group` = 0 AND `user` > 0 AND `schedule` = 0;");
539
  $stoptime = $wpdb->get_var("SELECT `stoptime` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '".$ad->id."' AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
540
 
541
  $bannercode = stripslashes(htmlspecialchars_decode($ad->bannercode, ENT_QUOTES));
611
  WHERE
612
  `".$wpdb->prefix."adrotate_linkmeta`.`ad` = '".$id."'
613
  AND `".$wpdb->prefix."adrotate_linkmeta`.`group` = `".$wpdb->prefix."adrotate_groups`.`id`
 
614
  AND `".$wpdb->prefix."adrotate_linkmeta`.`user` = 0
615
  ;");
616
  if($groups) {
adrotate-manage-publisher.php CHANGED
@@ -136,7 +136,7 @@ function adrotate_insert_input() {
136
 
137
  // Save schedule for new ads or update the existing one
138
  if($type != 'empty') {
139
- $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_schedule` WHERE `id` IN (SELECT `schedule` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `schedule` != %d AND `schedule` > 0 AND `ad` = %d AND `group` = 0 AND `block` = 0 AND `user` = 0);", $schedule_id, $id));
140
  }
141
  $wpdb->update($wpdb->prefix.'adrotate_schedule', array('starttime' => $startdate, 'stoptime' => $enddate, 'maxclicks' => $maxclicks, 'maximpressions' => $maxshown), array('id' => $schedule_id));
142
 
@@ -148,7 +148,7 @@ function adrotate_insert_input() {
148
  update_option('adrotate_responsive_required', $responsive_count);
149
 
150
  // Fetch group records for the ad
151
- $groupmeta = $wpdb->get_results($wpdb->prepare("SELECT `group` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `block` = 0 AND `user` = 0 AND `schedule` = 0;", $id));
152
  foreach($groupmeta as $meta) {
153
  $group_array[] = $meta->group;
154
  }
@@ -159,14 +159,14 @@ function adrotate_insert_input() {
159
  // Add new groups to this ad
160
  $insert = array_diff($groups, $group_array);
161
  foreach($insert as &$value) {
162
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $id, 'group' => $value, 'block' => 0, 'user' => 0, 'schedule' => 0));
163
  }
164
  unset($value);
165
 
166
  // Remove groups from this ad
167
  $delete = array_diff($group_array, $groups);
168
  foreach($delete as &$value) {
169
- $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `group` = %d AND `block` = 0 AND `user` = 0 AND `schedule` = 0;", $id, $value));
170
  }
171
  unset($value);
172
 
@@ -283,7 +283,7 @@ function adrotate_insert_group() {
283
  if($page_loc != 4) $page_par = 0;
284
 
285
  // Fetch records for the group
286
- $linkmeta = $wpdb->get_results($wpdb->prepare("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = %d AND `block` = 0 AND `user` = 0;", $id));
287
  foreach($linkmeta as $meta) {
288
  $meta_array[] = $meta->ad;
289
  }
@@ -294,14 +294,14 @@ function adrotate_insert_group() {
294
  // Add new ads to this group
295
  $insert = array_diff($ads,$meta_array);
296
  foreach($insert as &$value) {
297
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $value, 'group' => $id, 'block' => 0, 'user' => 0));
298
  }
299
  unset($value);
300
 
301
  // Remove ads from this group
302
  $delete = array_diff($meta_array,$ads);
303
  foreach($delete as &$value) {
304
- $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `group` = %d AND `block` = 0 AND `user` = 0;", $value, $id));
305
  }
306
  unset($value);
307
 
@@ -471,7 +471,7 @@ function adrotate_delete($id, $what) {
471
  $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = %d;", $id));
472
  adrotate_prepare_evaluate_ads(false);
473
  } else if ($what == 'bannergroup') {
474
- $linkmeta = $wpdb->get_results($wpdb->prepare("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = %d AND `block` = '0';", $id));
475
  foreach($linkmeta as $meta) {
476
  $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate` WHERE `id` = ".$meta->ad.";");
477
  $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_stats` WHERE `ad` = ".$meta->ad.";");
@@ -542,14 +542,14 @@ function adrotate_renew($id, $howlong = 2592000) {
542
  global $wpdb;
543
 
544
  if($id > 0) {
545
- $schedule_id = $wpdb->get_var($wpdb->prepare("SELECT `schedule` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `group` = 0 AND `block` = 0 AND `user` = 0 ORDER BY `id` DESC LIMIT 1;", $id));
546
  if($schedule_id > 0) {
547
  $wpdb->query("UPDATE `".$wpdb->prefix."adrotate_schedule` SET `stoptime` = `stoptime` + $howlong WHERE `id` = $schedule_id;");
548
  } else {
549
  $now = adrotate_now();
550
  $stoptime = $now + $howlong;
551
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$id, 'starttime' => $now, 'stoptime' => $stoptime, 'maxclicks' => 0, 'maximpressions' => 0));
552
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $id, 'group' => 0, 'block' => 0, 'user' => 0, 'schedule' => $wpdb->insert_id));
553
  }
554
  }
555
  }
136
 
137
  // Save schedule for new ads or update the existing one
138
  if($type != 'empty') {
139
+ $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_schedule` WHERE `id` IN (SELECT `schedule` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `schedule` != %d AND `schedule` > 0 AND `ad` = %d AND `group` = 0 AND `user` = 0);", $schedule_id, $id));
140
  }
141
  $wpdb->update($wpdb->prefix.'adrotate_schedule', array('starttime' => $startdate, 'stoptime' => $enddate, 'maxclicks' => $maxclicks, 'maximpressions' => $maxshown), array('id' => $schedule_id));
142
 
148
  update_option('adrotate_responsive_required', $responsive_count);
149
 
150
  // Fetch group records for the ad
151
+ $groupmeta = $wpdb->get_results($wpdb->prepare("SELECT `group` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `user` = 0 AND `schedule` = 0;", $id));
152
  foreach($groupmeta as $meta) {
153
  $group_array[] = $meta->group;
154
  }
159
  // Add new groups to this ad
160
  $insert = array_diff($groups, $group_array);
161
  foreach($insert as &$value) {
162
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $id, 'group' => $value, 'user' => 0, 'schedule' => 0));
163
  }
164
  unset($value);
165
 
166
  // Remove groups from this ad
167
  $delete = array_diff($group_array, $groups);
168
  foreach($delete as &$value) {
169
+ $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `group` = %d AND `user` = 0 AND `schedule` = 0;", $id, $value));
170
  }
171
  unset($value);
172
 
283
  if($page_loc != 4) $page_par = 0;
284
 
285
  // Fetch records for the group
286
+ $linkmeta = $wpdb->get_results($wpdb->prepare("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = %d AND `user` = 0;", $id));
287
  foreach($linkmeta as $meta) {
288
  $meta_array[] = $meta->ad;
289
  }
294
  // Add new ads to this group
295
  $insert = array_diff($ads,$meta_array);
296
  foreach($insert as &$value) {
297
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $value, 'group' => $id, 'user' => 0));
298
  }
299
  unset($value);
300
 
301
  // Remove ads from this group
302
  $delete = array_diff($meta_array,$ads);
303
  foreach($delete as &$value) {
304
+ $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `group` = %d AND `user` = 0;", $value, $id));
305
  }
306
  unset($value);
307
 
471
  $wpdb->query($wpdb->prepare("DELETE FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = %d;", $id));
472
  adrotate_prepare_evaluate_ads(false);
473
  } else if ($what == 'bannergroup') {
474
+ $linkmeta = $wpdb->get_results($wpdb->prepare("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = %d;", $id));
475
  foreach($linkmeta as $meta) {
476
  $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate` WHERE `id` = ".$meta->ad.";");
477
  $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_stats` WHERE `ad` = ".$meta->ad.";");
542
  global $wpdb;
543
 
544
  if($id > 0) {
545
+ $schedule_id = $wpdb->get_var($wpdb->prepare("SELECT `schedule` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = %d AND `group` = 0 AND `user` = 0 ORDER BY `id` DESC LIMIT 1;", $id));
546
  if($schedule_id > 0) {
547
  $wpdb->query("UPDATE `".$wpdb->prefix."adrotate_schedule` SET `stoptime` = `stoptime` + $howlong WHERE `id` = $schedule_id;");
548
  } else {
549
  $now = adrotate_now();
550
  $stoptime = $now + $howlong;
551
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$id, 'starttime' => $now, 'stoptime' => $stoptime, 'maxclicks' => 0, 'maximpressions' => 0));
552
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $id, 'group' => 0, 'user' => 0, 'schedule' => $wpdb->insert_id));
553
  }
554
  }
555
  }
adrotate-output.php CHANGED
@@ -92,11 +92,11 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
92
  (!is_array($group_ids)) ? $group_array = explode(",", $group_ids) : $group_array = $group_ids;
93
 
94
  foreach($group_array as $key => $value) {
95
- $group_select .= ' `'.$wpdb->prefix.'adrotate_linkmeta`.`group` = '.$value.' OR';
96
  }
97
  $group_select = rtrim($group_select, " OR");
98
 
99
- $group = $wpdb->get_row($wpdb->prepare("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' AND `id` = %d;", $group_array[0]));
100
 
101
  if($adrotate_debug['general'] == true) {
102
  echo "<p><strong>[DEBUG][adrotate_group] Selected group</strong><pre>";
@@ -106,31 +106,34 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
106
 
107
  if($group) {
108
  if($fallback == 0) $fallback = $group->fallback;
109
- if($weight > 0) $weightoverride = " AND `".$wpdb->prefix."adrotate`.`weight` >= '$weight'";
110
 
 
 
 
 
111
  $ads = $wpdb->get_results(
112
  "SELECT
113
- `".$wpdb->prefix."adrotate`.`id`,
114
- `".$wpdb->prefix."adrotate`.`bannercode`,
115
- `".$wpdb->prefix."adrotate`.`link`,
116
- `".$wpdb->prefix."adrotate`.`image`,
117
- `".$wpdb->prefix."adrotate`.`responsive`,
118
- `".$wpdb->prefix."adrotate`.`tracker`,
119
- `".$wpdb->prefix."adrotate_linkmeta`.`group`
120
  FROM
121
- `".$wpdb->prefix."adrotate`,
122
- `".$wpdb->prefix."adrotate_linkmeta`
123
  WHERE
124
- (".$group_select.")
125
- AND `".$wpdb->prefix."adrotate_linkmeta`.`block` = 0
126
- AND `".$wpdb->prefix."adrotate_linkmeta`.`user` = 0
127
- AND `".$wpdb->prefix."adrotate`.`id` = `".$wpdb->prefix."adrotate_linkmeta`.`ad`
128
- AND (`".$wpdb->prefix."adrotate`.`type` = 'active'
129
- OR `".$wpdb->prefix."adrotate`.`type` = '2days'
130
- OR `".$wpdb->prefix."adrotate`.`type` = '7days')
131
- ".$weightoverride."
132
- GROUP BY `".$wpdb->prefix."adrotate`.`id`
133
- ORDER BY `".$wpdb->prefix."adrotate`.`id`;");
134
 
135
  if($ads) {
136
  if($adrotate_debug['general'] == true) {
@@ -162,10 +165,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
162
  if($group->modus == 1) { // Dynamic ads
163
  $i = 1;
164
 
165
- // Determine the amount of ads to show for the group
166
- $amount = ($group->adspeed >= 10000) ? 5 : 10;
167
- $selected = adrotate_shuffle($selected, $amount);
168
-
169
  foreach($selected as $key => $banner) {
170
  $image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
171
 
@@ -445,21 +445,8 @@ function adrotate_inject_posts($post_content) {
445
  Return: $output
446
  Since: 3.0
447
  -------------------------------------------------------------*/
448
- function adrotate_block($block_id, $weight = 0) {
449
- global $wpdb;
450
-
451
- $output = '';
452
- if($block_id) {
453
- $groups = $wpdb->get_results($wpdb->prepare("SELECT `group` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = 0 AND `block` = %d AND `user` = 0;", $block_id));
454
- if($groups) {
455
- foreach($groups as $group) {
456
- $group_ids[] = $group->group;
457
- }
458
- $output .= adrotate_group($group_ids);
459
- }
460
- }
461
-
462
- return $output;
463
  }
464
 
465
  /*-------------------------------------------------------------
@@ -666,6 +653,7 @@ function adrotate_custom_css() {
666
  $groups = $wpdb->get_results("SELECT `id`, `modus`, `gridrows`, `gridcolumns`, `adwidth`, `adheight`, `admargin`, `align` FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
667
  if($groups) {
668
  $output_css = "\t.g { margin:0px; padding:0px; overflow:hidden; line-height:1; zoom:1; }\n";
 
669
  $output_css .= "\t.g-col { position:relative; float:left; }\n";
670
  $output_css .= "\t.g-col:first-child { margin-left: 0; }\n";
671
  $output_css .= "\t.g-col:last-child { margin-right: 0; }\n";
@@ -853,13 +841,14 @@ function adrotate_notifications_dashboard() {
853
  }
854
  }
855
 
856
- if(isset($_GET['hide'])) update_option('adrotate_hide_banner', 1);
 
857
  if(isset($_GET['page'])) { $page = $_GET['page']; } else { $page = ''; }
858
 
859
- $banner = get_option('adrotate_hide_banner');
860
- if($banner != 1 AND $banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
861
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
862
- echo ' <div class="adrotate_pro_banner">';
863
  echo ' <div class="button_div">';
864
  echo ' <a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_free_banner&utm_campaign=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a>';
865
  echo ' </div>';
@@ -873,6 +862,24 @@ function adrotate_notifications_dashboard() {
873
  echo ' </div>';
874
  echo '</div>';
875
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
876
  }
877
  }
878
 
@@ -886,7 +893,7 @@ function adrotate_notifications_dashboard() {
886
  -------------------------------------------------------------*/
887
  function adrotate_welcome_pointer() {
888
  $pointer_content = '<h3>AdRotate '.ADROTATE_DISPLAY.'</h3>';
889
- $pointer_content .= '<p>'.__('Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate Pro is in this menu. Check out the', 'adrotate').' <a href="http:\/\/ajdg.solutions\/manuals\/adrotate\/" target="_blank">'.__('manuals', 'adrotate').'</a> '.__('and', 'adrotate').' <a href="https:\/\/ajdg.solutions\/forums\/forum\/adrotate-for-wordpress\/" target="_blank">'.__('forums', 'adrotate').'</a>.</p>';
890
  $pointer_content .= '<p><strong>AdRotate Professional</strong><br />Did you know there is also a premium version of AdRotate? Learn how you can benefit from the <a href="admin.php?page=adrotate-pro" target="_blank">extra features</a>.</p>';
891
  ?>
892
  <script type="text/javascript">
@@ -925,10 +932,10 @@ function adrotate_help_info() {
925
  'title' => __('Useful Links'),
926
  'content' => '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>'.
927
  '<ul>'.
928
- '<li><a href="https://ajdg.solutions/products/adrotate-for-wordpress/" target="_blank">'.__('AdRotate Page', 'adrotate').'</a>.</li>'.
929
- '<li><a href="https://ajdg.solutions/manuals/adrotate/getting-started-with-adrotate/" target="_blank">'.__('Getting Started With AdRotate', 'adrotate').'</a>.</li>'.
930
- '<li><a href="https://ajdg.solutions/manuals/adrotate/" target="_blank">'.__('AdRotate manuals', 'adrotate').'</a>.</li>'.
931
- '<li><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/" target="_blank">'.__('AdRotate Support Forum', 'adrotate').'</a>.</li>'.
932
  '<li><a href="http://wordpress.org/support/plugin/adrotate" target="_blank">'.__('WordPress.org Forum', 'adrotate').'</a>.</li>'.
933
  '</ul>'
934
  )
@@ -942,25 +949,6 @@ function adrotate_help_info() {
942
  );
943
  }
944
 
945
- /*-------------------------------------------------------------
946
- Name: adrotate_credits
947
-
948
- Purpose: Promotional stuff shown throughout the plugin
949
- Receive: -none-
950
- Return: -none-
951
- Since: 3.7
952
- -------------------------------------------------------------*/
953
- function adrotate_help_links() {
954
- echo '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>';
955
- echo '<ul>';
956
- echo '<li><a href="https://ajdg.solutions/products/adrotate-for-wordpress/" target="_blank">'.__('AdRotate Website.', 'adrotate').'</a></li>';
957
- echo '<li><a href="https://ajdg.solutions/manuals/adrotate/getting-started-with-adrotate/" target="_blank">'.__('AdRotate Getting Started.', 'adrotate').'</a></li>';
958
- echo '<li><a href="https://ajdg.solutions/manuals/adrotate/" target="_blank">'.__('AdRotate Knoweledge base and manuals.', 'adrotate').'</a></li>';
959
- echo '<li><a href="https://ajdg.solutions/forums/" target="_blank">'.__('AdRotate Website Forum.', 'adrotate').'</a></li>';
960
- echo '<li><a href="http://wordpress.org/support/plugin/adrotate" target="_blank">'.__('WordPress.org Forum.', 'adrotate').'</a></li>';
961
- echo '</ul>';
962
- }
963
-
964
  /*-------------------------------------------------------------
965
  Name: adrotate_credits
966
 
@@ -984,8 +972,8 @@ function adrotate_credits() {
984
  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>';
985
  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>';
986
 
987
- echo '<td><center><a href="https://ajdg.solutions/" title="AJdG Solutions"><img src="'.plugins_url('/images/ajdg-logo-100x60.png', __FILE__).'" alt="ajdg-logo-100x60" width="100" height="60" /></a></center></td>';
988
- echo '<td><a href="https://ajdg.solutions/" 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/" target="_blank">AJdG Solutions</a> '.__('website', 'adrotate').'</td>';
989
  echo '</tr>';
990
  echo '</tbody>';
991
 
92
  (!is_array($group_ids)) ? $group_array = explode(",", $group_ids) : $group_array = $group_ids;
93
 
94
  foreach($group_array as $key => $value) {
95
+ $group_select .= " `{$wpdb->prefix}adrotate_linkmeta`.`group` = {$value} OR";
96
  }
97
  $group_select = rtrim($group_select, " OR");
98
 
99
+ $group = $wpdb->get_row($wpdb->prepare("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' AND `id` = %d;", $group_array[0]));
100
 
101
  if($adrotate_debug['general'] == true) {
102
  echo "<p><strong>[DEBUG][adrotate_group] Selected group</strong><pre>";
106
 
107
  if($group) {
108
  if($fallback == 0) $fallback = $group->fallback;
109
+ if($weight > 0) $weightoverride = " AND `{$wpdb->prefix}adrotate`.`weight` >= '{$weight}'";
110
 
111
+ // Limit group to save resources
112
+ $amount = ($group->adspeed >= 10000) ? 10 : 20;
113
+
114
+ // Get all ads in all selected groups
115
  $ads = $wpdb->get_results(
116
  "SELECT
117
+ `{$wpdb->prefix}adrotate`.`id`,
118
+ `{$wpdb->prefix}adrotate`.`bannercode`,
119
+ `{$wpdb->prefix}adrotate`.`link`,
120
+ `{$wpdb->prefix}adrotate`.`image`,
121
+ `{$wpdb->prefix}adrotate`.`responsive`,
122
+ `{$wpdb->prefix}adrotate`.`tracker`,
123
+ `{$wpdb->prefix}adrotate_linkmeta`.`group`
124
  FROM
125
+ `{$wpdb->prefix}adrotate`,
126
+ `{$wpdb->prefix}adrotate_linkmeta`
127
  WHERE
128
+ ({$group_select})
129
+ AND `{$wpdb->prefix}adrotate_linkmeta`.`user` = 0
130
+ AND `{$wpdb->prefix}adrotate`.`id` = `{$wpdb->prefix}adrotate_linkmeta`.`ad`
131
+ AND (`{$wpdb->prefix}adrotate`.`type` = 'active'
132
+ OR `{$wpdb->prefix}adrotate`.`type` = '2days'
133
+ OR `{$wpdb->prefix}adrotate`.`type` = '7days')
134
+ {$weightoverride}
135
+ GROUP BY `{$wpdb->prefix}adrotate`.`id`
136
+ ORDER BY RAND() LIMIT {$amount};");
 
137
 
138
  if($ads) {
139
  if($adrotate_debug['general'] == true) {
165
  if($group->modus == 1) { // Dynamic ads
166
  $i = 1;
167
 
168
+ $selected = adrotate_shuffle($selected);
 
 
 
169
  foreach($selected as $key => $banner) {
170
  $image = str_replace('%folder%', $adrotate_config['banner_folder'], $banner->image);
171
 
445
  Return: $output
446
  Since: 3.0
447
  -------------------------------------------------------------*/
448
+ function adrotate_block($block_id = 0, $weight = 0) {
449
+ return null;
 
 
 
 
 
 
 
 
 
 
 
 
 
450
  }
451
 
452
  /*-------------------------------------------------------------
653
  $groups = $wpdb->get_results("SELECT `id`, `modus`, `gridrows`, `gridcolumns`, `adwidth`, `adheight`, `admargin`, `align` FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
654
  if($groups) {
655
  $output_css = "\t.g { margin:0px; padding:0px; overflow:hidden; line-height:1; zoom:1; }\n";
656
+ $output_css .= "\t.g img { height:auto; }\n";
657
  $output_css .= "\t.g-col { position:relative; float:left; }\n";
658
  $output_css .= "\t.g-col:first-child { margin-left: 0; }\n";
659
  $output_css .= "\t.g-col:last-child { margin-right: 0; }\n";
841
  }
842
  }
843
 
844
+ if(isset($_GET['hide']) AND $_GET['hide'] == 1) update_option('adrotate_hide_banner', 1);
845
+ if(isset($_GET['hide']) AND $_GET['hide'] == 2) update_option('adrotate_hide_review', 1);
846
  if(isset($_GET['page'])) { $page = $_GET['page']; } else { $page = ''; }
847
 
848
+ $pro_banner = get_option('adrotate_hide_banner');
849
+ if($pro_banner != 1 AND $pro_banner < (adrotate_now() - 604800) AND strpos($page, 'adrotate') !== false) {
850
  echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
851
+ echo ' <div class="adrotate_banner">';
852
  echo ' <div class="button_div">';
853
  echo ' <a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_free_banner&utm_campaign=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a>';
854
  echo ' </div>';
862
  echo ' </div>';
863
  echo '</div>';
864
  }
865
+
866
+ $review_banner = get_option('adrotate_hide_review');
867
+ if($review_banner != 1 AND $review_banner < (adrotate_now() - 2419200) AND strpos($page, 'adrotate') !== false) {
868
+ echo '<div class="updated" style="padding: 0; margin: 0; border-left: none;">';
869
+ echo ' <div class="adrotate_banner">';
870
+ echo ' <div class="button_div">';
871
+ echo ' <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a>';
872
+ echo ' </div>';
873
+ echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br />';
874
+ echo ' <span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?utm_source=adrotate_free&utm_medium=adrotate_review_banner&utm_campaign=get_help" target="_blank">get in touch</a>!</span>';
875
+ echo ' </div>';
876
+ echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><small>dismiss</small></a>';
877
+ echo ' <div class="icon">';
878
+ echo ' <img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/>';
879
+ echo ' </div>';
880
+ echo ' </div>';
881
+ echo '</div>';
882
+ }
883
  }
884
  }
885
 
893
  -------------------------------------------------------------*/
894
  function adrotate_welcome_pointer() {
895
  $pointer_content = '<h3>AdRotate '.ADROTATE_DISPLAY.'</h3>';
896
+ $pointer_content .= '<p>'.__('Welcome, and thanks for using AdRotate. Everything related to AdRotate is in this menu. Check out the', 'adrotate').' <a href="http:\/\/ajdg.solutions\/manuals\/adrotate\/" target="_blank">'.__('manuals', 'adrotate').'</a> '.__('and', 'adrotate').' <a href="https:\/\/ajdg.solutions\/forums\/forum\/adrotate-for-wordpress\/" target="_blank">'.__('forums', 'adrotate').'</a>.</p>';
897
  $pointer_content .= '<p><strong>AdRotate Professional</strong><br />Did you know there is also a premium version of AdRotate? Learn how you can benefit from the <a href="admin.php?page=adrotate-pro" target="_blank">extra features</a>.</p>';
898
  ?>
899
  <script type="text/javascript">
932
  'title' => __('Useful Links'),
933
  'content' => '<h4>'.__('Useful links to learn more about AdRotate', 'adrotate').'</h4>'.
934
  '<ul>'.
935
+ '<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>'.
936
+ '<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>'.
937
+ '<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>'.
938
+ '<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>'.
939
  '<li><a href="http://wordpress.org/support/plugin/adrotate" target="_blank">'.__('WordPress.org Forum', 'adrotate').'</a>.</li>'.
940
  '</ul>'
941
  )
949
  );
950
  }
951
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
952
  /*-------------------------------------------------------------
953
  Name: adrotate_credits
954
 
972
  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>';
973
  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>';
974
 
975
+ 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>';
976
+ 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>';
977
  echo '</tr>';
978
  echo '</tbody>';
979
 
adrotate-setup.php CHANGED
@@ -72,6 +72,7 @@ function adrotate_activate_setup() {
72
  add_option('adrotate_responsive_required', 0);
73
  add_option('adrotate_dynamic_required', 0);
74
  add_option('adrotate_hide_banner', adrotate_now());
 
75
 
76
  adrotate_check_config();
77
 
@@ -134,6 +135,9 @@ function adrotate_deactivate_setup() {
134
  adrotate_remove_roles();
135
  }
136
 
 
 
 
137
  // Clean up capabilities from ALL users
138
  adrotate_remove_capability("adrotate_advertiser");
139
  adrotate_remove_capability("adrotate_global_report");
@@ -196,6 +200,8 @@ function adrotate_uninstall_setup() {
196
  delete_option('adrotate_db_version');
197
  delete_option('adrotate_debug');
198
  delete_option('adrotate_hide_license');
 
 
199
  delete_option('adrotate_notifications');
200
  delete_option('adrotate_geo_required');
201
  delete_option('adrotate_responsive_required');
@@ -248,7 +254,7 @@ function adrotate_check_upgrade() {
248
 
249
  if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
250
  deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
251
- wp_die('AdRotate 3.10.8 and up requires PHP 5.3 or higher. You have version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to plugins</a>.');
252
  return;
253
  } else {
254
  $adrotate_db_version = get_option("adrotate_db_version");
@@ -256,6 +262,10 @@ function adrotate_check_upgrade() {
256
 
257
  // Check if there are tables with AdRotate in the name
258
  if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate%';")) {
 
 
 
 
259
  // Old version? Upgrade
260
  if(is_array($adrotate_db_version) AND $adrotate_db_version['current'] < ADROTATE_DB_VERSION) {
261
  adrotate_database_upgrade();
@@ -275,7 +285,7 @@ function adrotate_check_upgrade() {
275
  $ad_id = $wpdb->insert_id;
276
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
277
  $schedule_id = $wpdb->insert_id;
278
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'block' => 0, 'user' => 0, 'schedule' => $schedule_id));
279
  unset($ad_id, $schedule_id);
280
 
281
  // Demo ad 2
@@ -283,15 +293,15 @@ function adrotate_check_upgrade() {
283
  $ad_id = $wpdb->insert_id;
284
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
285
  $schedule_id = $wpdb->insert_id;
286
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'block' => 0, 'user' => 0, 'schedule' => $schedule_id));
287
  unset($ad_id, $schedule_id);
288
 
289
- // Demo ad 3 (FLoating Coconut)
290
  $wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Visit floatingcoconut.net', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.floatingcoconut.net\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/banners/floatingcoconut-horizontal.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
291
  $ad_id = $wpdb->insert_id;
292
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
293
  $schedule_id = $wpdb->insert_id;
294
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'block' => 0, 'user' => 0, 'schedule' => $schedule_id));
295
  unset($ad_id, $schedule_id);
296
  }
297
 
@@ -458,48 +468,43 @@ function adrotate_database_install() {
458
 
459
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_linkmeta']."` (
460
  `id` mediumint(8) unsigned NOT NULL auto_increment,
461
- `ad` int(5) NOT NULL default '0',
462
- `group` int(5) NOT NULL default '0',
463
- `block` int(5) NOT NULL default '0',
464
- `user` int(5) NOT NULL default '0',
465
- `schedule` int(5) NOT NULL default '0',
466
- PRIMARY KEY (`id`),
467
- KEY `schedule` (`schedule`),
468
- KEY `ad` (`ad`)
469
  ) ".$charset_collate.$engine.";");
470
 
471
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_schedule']."` (
472
  `id` int(8) unsigned NOT NULL auto_increment,
473
  `name` varchar(255) NOT NULL default '',
474
- `starttime` int(15) NOT NULL default '0',
475
- `stoptime` int(15) NOT NULL default '0',
476
- `maxclicks` int(15) NOT NULL default '0',
477
- `maximpressions` int(15) NOT NULL default '0',
478
  `spread` varchar(5) NOT NULL default 'N',
479
- `dayimpressions` int(15) NOT NULL default '0',
480
  PRIMARY KEY (`id`),
481
- KEY `starttime` (`starttime`),
482
- KEY `stoptime` (`stoptime`)
483
  ) ".$charset_collate.$engine.";");
484
 
485
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_stats']."` (
486
  `id` bigint(9) unsigned NOT NULL auto_increment,
487
- `ad` int(5) NOT NULL default '0',
488
- `group` int(5) NOT NULL default '0',
489
- `block` int(5) NOT NULL default '0',
490
- `thetime` int(15) NOT NULL default '0',
491
- `clicks` int(15) NOT NULL default '0',
492
- `impressions` int(15) NOT NULL default '0',
493
  PRIMARY KEY (`id`),
494
  INDEX `ad` (`ad`),
495
- INDEX `group` (`group`)
496
  ) ".$charset_collate.$engine.";");
497
 
498
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_tracker']."` (
499
  `id` bigint(9) unsigned NOT NULL auto_increment,
500
- `ipaddress` varchar(255) NOT NULL default '0',
501
- `timer` int(15) NOT NULL default '0',
502
- `bannerid` int(15) NOT NULL default '0',
503
  `stat` char(1) NOT NULL default 'c',
504
  `useragent` mediumtext NOT NULL,
505
  `country` text NOT NULL,
@@ -533,8 +538,6 @@ function adrotate_database_upgrade() {
533
  if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_stats_tracker'")) {
534
  $wpdb->query("RENAME TABLE `".$wpdb->prefix."adrotate_stats_tracker` TO `".$wpdb->prefix."adrotate_stats`;");
535
  }
536
- adrotate_del_column($tables['adrotate_blocks'], 'gridborder');
537
- adrotate_del_column($tables['adrotate_blocks'], 'adpadding');
538
  }
539
 
540
  // Database: 25
@@ -544,7 +547,6 @@ function adrotate_database_upgrade() {
544
  $wpdb->query("CREATE INDEX `ipaddress` ON `".$tables['adrotate_tracker']."` (ipaddress);");
545
  $wpdb->query("CREATE INDEX `ad` ON `".$tables['adrotate_stats']."` (ad);");
546
  $wpdb->query("CREATE INDEX `thetime` ON `".$tables['adrotate_stats']."` (thetime);");
547
- $wpdb->query("CREATE INDEX `ad` ON `".$tables['adrotate_schedule']."` (ad);");
548
  }
549
 
550
  // Database: 26
@@ -556,13 +558,6 @@ function adrotate_database_upgrade() {
556
  adrotate_add_column($tables['adrotate'], 'irate', 'double NOT NULL default \'0\' AFTER `crate`');
557
  }
558
 
559
- // Database: 27
560
- // AdRotate: 3.8.3.1
561
- if($adrotate_db_version['current'] < 27) {
562
- $wpdb->query("ALTER TABLE `".$tables['adrotate_blocks']."` CHANGE `adwidth` `adwidth` varchar(6) NOT NULL DEFAULT '125';");
563
- $wpdb->query("ALTER TABLE `".$tables['adrotate_blocks']."` CHANGE `adheight` `adheight` varchar(6) NOT NULL DEFAULT '125';");
564
- }
565
-
566
  // Database: 30
567
  // AdRotate: 3.8.3.4
568
  if($adrotate_db_version['current'] < 30) {
@@ -570,12 +565,6 @@ function adrotate_database_upgrade() {
570
  adrotate_add_column($tables['adrotate_groups'], 'wrapper_after', 'longtext NOT NULL AFTER `wrapper_before`');
571
  }
572
 
573
- // Database: 31
574
- // AdRotate: 3.8.4
575
- if($adrotate_db_version['current'] < 31) {
576
- adrotate_add_column($tables['adrotate_groups'], 'token', 'varchar(10) NOT NULL default \'0\' AFTER `name`');
577
- }
578
-
579
  // Database: 32
580
  // AdRotate: 3.8.4.4
581
  if($adrotate_db_version['current'] < 32) {
@@ -615,7 +604,7 @@ function adrotate_database_upgrade() {
615
  adrotate_add_column($tables['adrotate_linkmeta'], 'schedule', 'int(5) NOT NULL default \'0\' AFTER `user`');
616
  $schedules = $wpdb->get_results("SELECT `id`, `ad` FROM ".$tables['adrotate_schedule']." ORDER BY `id` ASC;");
617
  foreach($schedules as $schedule) {
618
- $wpdb->insert($tables['adrotate_linkmeta'], array('ad' => $schedule->ad, 'group' => 0, 'block' => 0, 'user' => 0, 'schedule' => $schedule->id), array('%d', '%d', '%d', '%d', '%d'));
619
  unset($schedule);
620
  }
621
  unset($schedules);
@@ -677,26 +666,6 @@ function adrotate_database_upgrade() {
677
  adrotate_del_column($tables['adrotate'], 'timeframeimpressions');
678
  }
679
 
680
- // Database: 45
681
- // AdRotate: 3.10.11
682
- if($adrotate_db_version['current'] < 45) {
683
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_tracker']."` WHERE Key_name = 'bannerid';") === null) {
684
- $wpdb->query("CREATE INDEX `bannerid` ON `".$tables['adrotate_tracker']."` (bannerid);");
685
- }
686
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_linkmeta']."` WHERE Key_name = 'schedule';") === null) {
687
- $wpdb->query("CREATE INDEX `schedule` ON `".$tables['adrotate_linkmeta']."` (schedule);");
688
- }
689
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_stats']."` WHERE Key_name = 'starttime';") === null) {
690
- $wpdb->query("CREATE INDEX `starttime` ON `".$tables['adrotate_schedule']."` (starttime);");
691
- }
692
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_stats']."` WHERE Key_name = 'stoptime';") === null) {
693
- $wpdb->query("CREATE INDEX `stoptime` ON `".$tables['adrotate_schedule']."` (stoptime);");
694
- }
695
- if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_stats']."` WHERE Key_name = 'thetime';") === null) {
696
- $wpdb->query("CREATE INDEX `thetime` ON `".$tables['adrotate_stats']."` (thetime);");
697
- }
698
- }
699
-
700
  // Database: 46
701
  // AdRotate: 3.10.13
702
  if($adrotate_db_version['current'] < 46) {
@@ -704,11 +673,52 @@ function adrotate_database_upgrade() {
704
  }
705
 
706
  // Database: 47
707
- // AdRotate: 3.10.13
708
  if($adrotate_db_version['current'] < 47) {
709
  adrotate_add_column($tables['adrotate_groups'], 'align', 'tinyint(1) NOT NULL default \'0\' AFTER `wrapper_after`');
710
  }
711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
713
  }
714
 
@@ -845,6 +855,14 @@ function adrotate_core_upgrade() {
845
  delete_option('adrotate_server_hide');
846
  }
847
 
 
 
 
 
 
 
 
 
848
  update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
849
  }
850
 
@@ -900,7 +918,7 @@ function adrotate_cleanup_database() {
900
 
901
  // Clean up Tracker data
902
  $yesterday = $now - 2073600;
903
- $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_tracker` WHERE `thetime` < $yesterday;");
904
 
905
  // Delete empty ads, groups and schedules
906
  $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'empty' OR `type` = 'a_empty';");
72
  add_option('adrotate_responsive_required', 0);
73
  add_option('adrotate_dynamic_required', 0);
74
  add_option('adrotate_hide_banner', adrotate_now());
75
+ add_option('adrotate_hide_review', adrotate_now());
76
 
77
  adrotate_check_config();
78
 
135
  adrotate_remove_roles();
136
  }
137
 
138
+ update_option('adrotate_hide_banner', adrotate_now());
139
+ update_option('adrotate_hide_review', adrotate_now());
140
+
141
  // Clean up capabilities from ALL users
142
  adrotate_remove_capability("adrotate_advertiser");
143
  adrotate_remove_capability("adrotate_global_report");
200
  delete_option('adrotate_db_version');
201
  delete_option('adrotate_debug');
202
  delete_option('adrotate_hide_license');
203
+ delete_option('adrotate_hide_banner');
204
+ delete_option('adrotate_hide_review');
205
  delete_option('adrotate_notifications');
206
  delete_option('adrotate_geo_required');
207
  delete_option('adrotate_responsive_required');
254
 
255
  if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
256
  deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
257
+ wp_die('AdRotate 3.10.8 and up requires PHP 5.3 or higher. Your server reports version '.PHP_VERSION.'. Contact your hosting provider about upgrading your server!<br /><a href="'. get_option('siteurl').'/wp-admin/plugins.php">Back to plugins</a>.');
258
  return;
259
  } else {
260
  $adrotate_db_version = get_option("adrotate_db_version");
262
 
263
  // Check if there are tables with AdRotate in the name
264
  if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate%';")) {
265
+
266
+ // Install missing bits in database
267
+ adrotate_database_install();
268
+
269
  // Old version? Upgrade
270
  if(is_array($adrotate_db_version) AND $adrotate_db_version['current'] < ADROTATE_DB_VERSION) {
271
  adrotate_database_upgrade();
285
  $ad_id = $wpdb->insert_id;
286
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
287
  $schedule_id = $wpdb->insert_id;
288
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
289
  unset($ad_id, $schedule_id);
290
 
291
  // Demo ad 2
293
  $ad_id = $wpdb->insert_id;
294
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
295
  $schedule_id = $wpdb->insert_id;
296
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
297
  unset($ad_id, $schedule_id);
298
 
299
+ // Demo ad 3 (Floating Coconut)
300
  $wpdb->insert($wpdb->prefix."adrotate", array('title' => 'Visit floatingcoconut.net', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.floatingcoconut.net\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/banners/floatingcoconut-horizontal.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'link' => '', 'tracker' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'cbudget' => 0, 'ibudget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
301
  $ad_id = $wpdb->insert_id;
302
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0));
303
  $schedule_id = $wpdb->insert_id;
304
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
305
  unset($ad_id, $schedule_id);
306
  }
307
 
468
 
469
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_linkmeta']."` (
470
  `id` mediumint(8) unsigned NOT NULL auto_increment,
471
+ `ad` int(5) unsigned NOT NULL default '0',
472
+ `group` int(5) unsigned NOT NULL default '0',
473
+ `user` int(5) unsigned NOT NULL default '0',
474
+ `schedule` int(5) unsigned NOT NULL default '0',
475
+ PRIMARY KEY (`id`)
 
 
 
476
  ) ".$charset_collate.$engine.";");
477
 
478
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_schedule']."` (
479
  `id` int(8) unsigned NOT NULL auto_increment,
480
  `name` varchar(255) NOT NULL default '',
481
+ `starttime` int(15) unsigned NOT NULL default '0',
482
+ `stoptime` int(15) unsigned NOT NULL default '0',
483
+ `maxclicks` int(15) unsigned NOT NULL default '0',
484
+ `maximpressions` int(15) unsigned NOT NULL default '0',
485
  `spread` varchar(5) NOT NULL default 'N',
486
+ `dayimpressions` int(15) unsigned NOT NULL default '0',
487
  PRIMARY KEY (`id`),
488
+ KEY `starttime` (`starttime`)
 
489
  ) ".$charset_collate.$engine.";");
490
 
491
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_stats']."` (
492
  `id` bigint(9) unsigned NOT NULL auto_increment,
493
+ `ad` int(5) unsigned NOT NULL default '0',
494
+ `group` int(5) unsigned NOT NULL default '0',
495
+ `thetime` int(15) unsigned NOT NULL default '0',
496
+ `clicks` int(15) unsigned NOT NULL default '0',
497
+ `impressions` int(15) unsigned NOT NULL default '0',
 
498
  PRIMARY KEY (`id`),
499
  INDEX `ad` (`ad`),
500
+ INDEX `thetime` (`thetime`)
501
  ) ".$charset_collate.$engine.";");
502
 
503
  dbDelta("CREATE TABLE IF NOT EXISTS `".$tables['adrotate_tracker']."` (
504
  `id` bigint(9) unsigned NOT NULL auto_increment,
505
+ `ipaddress` varchar(15) NOT NULL default '0',
506
+ `timer` int(15) unsigned NOT NULL default '0',
507
+ `bannerid` int(15) unsigned NOT NULL default '0',
508
  `stat` char(1) NOT NULL default 'c',
509
  `useragent` mediumtext NOT NULL,
510
  `country` text NOT NULL,
538
  if($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."adrotate_stats_tracker'")) {
539
  $wpdb->query("RENAME TABLE `".$wpdb->prefix."adrotate_stats_tracker` TO `".$wpdb->prefix."adrotate_stats`;");
540
  }
 
 
541
  }
542
 
543
  // Database: 25
547
  $wpdb->query("CREATE INDEX `ipaddress` ON `".$tables['adrotate_tracker']."` (ipaddress);");
548
  $wpdb->query("CREATE INDEX `ad` ON `".$tables['adrotate_stats']."` (ad);");
549
  $wpdb->query("CREATE INDEX `thetime` ON `".$tables['adrotate_stats']."` (thetime);");
 
550
  }
551
 
552
  // Database: 26
558
  adrotate_add_column($tables['adrotate'], 'irate', 'double NOT NULL default \'0\' AFTER `crate`');
559
  }
560
 
 
 
 
 
 
 
 
561
  // Database: 30
562
  // AdRotate: 3.8.3.4
563
  if($adrotate_db_version['current'] < 30) {
565
  adrotate_add_column($tables['adrotate_groups'], 'wrapper_after', 'longtext NOT NULL AFTER `wrapper_before`');
566
  }
567
 
 
 
 
 
 
 
568
  // Database: 32
569
  // AdRotate: 3.8.4.4
570
  if($adrotate_db_version['current'] < 32) {
604
  adrotate_add_column($tables['adrotate_linkmeta'], 'schedule', 'int(5) NOT NULL default \'0\' AFTER `user`');
605
  $schedules = $wpdb->get_results("SELECT `id`, `ad` FROM ".$tables['adrotate_schedule']." ORDER BY `id` ASC;");
606
  foreach($schedules as $schedule) {
607
+ $wpdb->insert($tables['adrotate_linkmeta'], array('ad' => $schedule->ad, 'group' => 0, 'user' => 0, 'schedule' => $schedule->id), array('%d', '%d', '%d', '%d', '%d'));
608
  unset($schedule);
609
  }
610
  unset($schedules);
666
  adrotate_del_column($tables['adrotate'], 'timeframeimpressions');
667
  }
668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  // Database: 46
670
  // AdRotate: 3.10.13
671
  if($adrotate_db_version['current'] < 46) {
673
  }
674
 
675
  // Database: 47
676
+ // AdRotate: 3.10.18
677
  if($adrotate_db_version['current'] < 47) {
678
  adrotate_add_column($tables['adrotate_groups'], 'align', 'tinyint(1) NOT NULL default \'0\' AFTER `wrapper_after`');
679
  }
680
 
681
+ // Database: 48
682
+ // AdRotate: 3.11.2b2
683
+ if($adrotate_db_version['current'] < 48) {
684
+ if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_tracker']."` WHERE Key_name = 'bannerid';") !== null) {
685
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` DROP KEY `bannerid`;");
686
+ }
687
+ if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_schedule']."` WHERE Key_name = 'stoptime';") !== null) {
688
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` DROP KEY `stoptime`;");
689
+ }
690
+ if($wpdb->get_var("SHOW INDEX FROM `".$tables['adrotate_schedule']."` WHERE Key_name = 'ad';") !== null) {
691
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` DROP KEY `ad`;");
692
+ }
693
+ adrotate_del_column($tables['adrotate_stats'], 'block');
694
+ adrotate_del_column($tables['adrotate_linkmeta'], 'block');
695
+ }
696
+
697
+ // Database: 49
698
+ // AdRotate: 3.11.2b3
699
+ if($adrotate_db_version['current'] < 49) {
700
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `ad` `ad` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
701
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `group` `group` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
702
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `thetime` `thetime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
703
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `clicks` `clicks` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
704
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_stats']."` CHANGE `impressions` `impressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
705
+
706
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` CHANGE `ipaddress` `ipaddress` char(15) NOT NULL DEFAULT '';");
707
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` CHANGE `timer` `timer` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
708
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_tracker']."` CHANGE `bannerid` `bannerid` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
709
+
710
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `starttime` `starttime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
711
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `stoptime` `stoptime` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
712
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `maxclicks` `maxclicks` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
713
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `maximpressions` `maximpressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
714
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_schedule']."` CHANGE `dayimpressions` `dayimpressions` INT(15) UNSIGNED NOT NULL DEFAULT '0';");
715
+
716
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `ad` `ad` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
717
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `group` `group` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
718
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `user` `user` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
719
+ $wpdb->query("ALTER TABLE `".$tables['adrotate_linkmeta']."` CHANGE `schedule` `schedule` INT(5) UNSIGNED NOT NULL DEFAULT '0';");
720
+ }
721
+
722
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
723
  }
724
 
855
  delete_option('adrotate_server_hide');
856
  }
857
 
858
+ // 3.11.2
859
+ if($adrotate_version['current'] < 378) {
860
+ // Reset wp-cron tasks
861
+ if(!wp_next_scheduled('adrotate_notification')) wp_schedule_event($firstrun, 'daily', 'adrotate_notification');
862
+ if(!wp_next_scheduled('adrotate_clean_trackerdata')) wp_schedule_event($firstrun + 1800, 'twicedaily', 'adrotate_clean_trackerdata');
863
+ if(!wp_next_scheduled('adrotate_evaluate_ads')) wp_schedule_event($firstrun + 3600, 'twicedaily', 'adrotate_evaluate_ads');
864
+ }
865
+
866
  update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
867
  }
868
 
918
 
919
  // Clean up Tracker data
920
  $yesterday = $now - 2073600;
921
+ $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate_tracker` WHERE `timer` < $yesterday;");
922
 
923
  // Delete empty ads, groups and schedules
924
  $wpdb->query("DELETE FROM `".$wpdb->prefix."adrotate` WHERE `type` = 'empty' OR `type` = 'a_empty';");
adrotate-widget.php CHANGED
@@ -35,9 +35,11 @@ class adrotate_widgets extends WP_Widget {
35
  global $adrotate_config, $blog_id;
36
 
37
  extract($args);
38
- $title = apply_filters('widget_title', $instance['title']);
39
  if(empty($instance['adid'])) $instance['adid'] = 0;
40
  if(empty($instance['siteid'])) $instance['siteid'] = $blog_id;
 
 
 
41
 
42
  echo $before_widget;
43
  if($title) {
35
  global $adrotate_config, $blog_id;
36
 
37
  extract($args);
 
38
  if(empty($instance['adid'])) $instance['adid'] = 0;
39
  if(empty($instance['siteid'])) $instance['siteid'] = $blog_id;
40
+ if(empty($instance['title'])) $instance['title'] = '';
41
+
42
+ $title = apply_filters('widget_title', $instance['title']);
43
 
44
  echo $before_widget;
45
  if($title) {
adrotate.php CHANGED
@@ -4,8 +4,8 @@ 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: The very best and most convenient way to publish your ads.
8
- Version: 3.11.1
9
  License: GPLv3
10
  */
11
 
@@ -20,9 +20,9 @@ License: GPLv3
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
- define("ADROTATE_DISPLAY", '3.11.1');
24
- define("ADROTATE_VERSION", 377);
25
- define("ADROTATE_DB_VERSION", 47);
26
  define("ADROTATE_FOLDER", 'adrotate');
27
  /*-----------------------------------------------------------*/
28
 
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.2
9
  License: GPLv3
10
  */
11
 
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
+ define("ADROTATE_DISPLAY", '3.11.2');
24
+ define("ADROTATE_VERSION", 378);
25
+ define("ADROTATE_DB_VERSION", 49);
26
  define("ADROTATE_FOLDER", 'adrotate');
27
  /*-----------------------------------------------------------*/
28
 
dashboard/adrotate-info.php CHANGED
@@ -126,15 +126,25 @@ $data = get_option("adrotate_advert_status");
126
  </td>
127
  </tr>
128
  </tbody>
129
- </table>
130
 
131
- <div class="versions">
132
- <span id="adrotate-version-message"><?php _e('You are using', 'adrotate'); ?> <strong>AdRotate <?php echo ADROTATE_DISPLAY; ?></strong>.</span>
133
- <br class="clear">
134
- </div>
 
 
 
 
 
 
 
 
 
 
 
135
  </div>
136
  </div>
137
-
138
  <h3><?php _e('AdRotate News and Developer Blog', 'adrotate'); ?></h3>
139
  <div class="postbox-adrotate">
140
  <div class="inside">
@@ -155,6 +165,13 @@ $data = get_option("adrotate_advert_status");
155
  <div id="postbox-container-3" class="postbox-container" style="width:50%;">
156
  <div id="side-sortables" class="meta-box-sortables ui-sortable">
157
 
 
 
 
 
 
 
 
158
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
159
  <div class="postbox-adrotate">
160
  <div class="inside">
@@ -162,28 +179,12 @@ $data = get_option("adrotate_advert_status");
162
  <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>
163
  <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>
164
  <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>
165
- <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_info_page&utm_campaign=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
166
  <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>
167
  <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>
168
  </div>
169
  </div>
170
 
171
- <h3><?php _e('Get more features with AdRotate Pro', 'adrotate'); ?></h3>
172
- <div class="postbox-adrotate">
173
- <div class="inside">
174
- <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'); ?></p>
175
- <p><?php _e('Learn more about', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro">AdRotate Pro</a> <?php _e('or go to 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'); ?> &raquo;</a></p>
176
- </div>
177
- </div>
178
-
179
- <h3><?php _e('Support AdRotate', 'adrotate'); ?></h3>
180
- <div class="postbox-adrotate">
181
- <div class="inside">
182
- <p><center><?php _e('Your gift will ensure the continued development of AdRotate!', 'adrotate'); ?></center></p>
183
- <p><center><a 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"><img src="http://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" /></a></center></p>
184
- </div>
185
- </div>
186
-
187
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
188
  <div class="postbox-adrotate">
189
  <div class="inside">
126
  </td>
127
  </tr>
128
  </tbody>
 
129
 
130
+ <thead>
131
+ <tr class="first">
132
+ <td colspan="2"><strong><?php _e('Support AdRotate', 'adrotate'); ?></strong></td>
133
+ </tr>
134
+ </thead>
135
+
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>
144
+ </table>
145
  </div>
146
  </div>
147
+
148
  <h3><?php _e('AdRotate News and Developer Blog', 'adrotate'); ?></h3>
149
  <div class="postbox-adrotate">
150
  <div class="inside">
165
  <div id="postbox-container-3" class="postbox-container" style="width:50%;">
166
  <div id="side-sortables" class="meta-box-sortables ui-sortable">
167
 
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">
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">
dashboard/publisher/adrotate-ads-edit.php CHANGED
@@ -16,15 +16,15 @@ if(!$ad_edit_id) {
16
  $edit_id = $wpdb->insert_id;
17
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0));
18
  $schedule_id = $wpdb->insert_id;
19
- $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $edit_id, 'group' => 0, 'block' => 0, 'user' => 0, 'schedule' => $schedule_id));
20
  }
21
  $ad_edit_id = $edit_id;
22
  }
23
 
24
  $edit_banner = $wpdb->get_row("SELECT * FROM `".$wpdb->prefix."adrotate` WHERE `id` = '$ad_edit_id';");
25
  $groups = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `sortorder` ASC, `id` ASC;");
26
- $schedules = $wpdb->get_row("SELECT `".$wpdb->prefix."adrotate_schedule`.`id`, `starttime`, `stoptime`, `maxclicks`, `maximpressions` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = $edit_banner->id AND `group` = 0 AND `block` = 0 AND `user` = 0 AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `".$wpdb->prefix."adrotate_schedule`.`id` ASC LIMIT 1;");
27
- $linkmeta = $wpdb->get_results("SELECT `group` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '$edit_banner->id' AND `block` = 0 AND `user` = 0 AND `schedule` = 0;");
28
 
29
  wp_enqueue_media();
30
  wp_enqueue_script('uploader-hook', plugins_url().'/'.ADROTATE_FOLDER.'/library/uploader-hook.js', array('jquery'));
@@ -467,7 +467,7 @@ if($edit_banner->imagetype == "field") {
467
  if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
468
  if($group->geo == 1 AND $adrotate_config['enable_geo'] > 0) $modus[] = __('Geolocation', 'adrotate');
469
 
470
- $ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = ".$group->id." AND `block` = 0 AND `user` = 0 AND `schedule` = 0;");
471
  $class = ('alternate' != $class) ? 'alternate' : ''; ?>
472
  <tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
473
  <th class="check-column" width="2%"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
16
  $edit_id = $wpdb->insert_id;
17
  $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0));
18
  $schedule_id = $wpdb->insert_id;
19
+ $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $edit_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
20
  }
21
  $ad_edit_id = $edit_id;
22
  }
23
 
24
  $edit_banner = $wpdb->get_row("SELECT * FROM `".$wpdb->prefix."adrotate` WHERE `id` = '$ad_edit_id';");
25
  $groups = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `sortorder` ASC, `id` ASC;");
26
+ $schedules = $wpdb->get_row("SELECT `".$wpdb->prefix."adrotate_schedule`.`id`, `starttime`, `stoptime`, `maxclicks`, `maximpressions` FROM `".$wpdb->prefix."adrotate_schedule`, `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = $edit_banner->id AND `group` = 0 AND `user` = 0 AND `schedule` = `".$wpdb->prefix."adrotate_schedule`.`id` ORDER BY `".$wpdb->prefix."adrotate_schedule`.`id` ASC LIMIT 1;");
27
+ $linkmeta = $wpdb->get_results("SELECT `group` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `ad` = '$edit_banner->id' AND `user` = 0 AND `schedule` = 0;");
28
 
29
  wp_enqueue_media();
30
  wp_enqueue_script('uploader-hook', plugins_url().'/'.ADROTATE_FOLDER.'/library/uploader-hook.js', array('jquery'));
467
  if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
468
  if($group->geo == 1 AND $adrotate_config['enable_geo'] > 0) $modus[] = __('Geolocation', 'adrotate');
469
 
470
+ $ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = ".$group->id." AND `user` = 0 AND `schedule` = 0;");
471
  $class = ('alternate' != $class) ? 'alternate' : ''; ?>
472
  <tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
473
  <th class="check-column" width="2%"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
dashboard/publisher/adrotate-groups-edit.php CHANGED
@@ -25,7 +25,7 @@
25
  $edit_group = $wpdb->get_row("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `id` = '$group_edit_id';");
26
  $groups = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
27
  $ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `crate`, `cbudget`, `irate`, `ibudget`, `type` FROM `".$wpdb->prefix."adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty') ORDER BY `id` ASC;");
28
- $linkmeta = $wpdb->get_results("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `block` = 0 AND `user` = 0;");
29
 
30
  $meta_array = '';
31
  foreach($linkmeta as $meta) {
25
  $edit_group = $wpdb->get_row("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `id` = '$group_edit_id';");
26
  $groups = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
27
  $ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `crate`, `cbudget`, `irate`, `ibudget`, `type` FROM `".$wpdb->prefix."adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty') ORDER BY `id` ASC;");
28
+ $linkmeta = $wpdb->get_results("SELECT `ad` FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `user` = 0;");
29
 
30
  $meta_array = '';
31
  foreach($linkmeta as $meta) {
dashboard/publisher/adrotate-groups-main.php CHANGED
@@ -61,7 +61,7 @@
61
  if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
62
  if($group->geo == 1) $modus[] = __('Geolocation', 'adrotate');
63
 
64
- $ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = ".$group->id." AND `block` = 0;");
65
  $class = ('alternate' != $class) ? 'alternate' : ''; ?>
66
  <tr class='<?php echo $class; ?>'>
67
  <th class="check-column"><input type="checkbox" name="groupcheck[]" value="<?php echo $group->id; ?>" /></th>
61
  if($group->cat_loc > 0 OR $group->page_loc > 0) $modus[] = __('Post Injection', 'adrotate');
62
  if($group->geo == 1) $modus[] = __('Geolocation', 'adrotate');
63
 
64
+ $ads_in_group = $wpdb->get_var("SELECT COUNT(*) FROM `".$wpdb->prefix."adrotate_linkmeta` WHERE `group` = ".$group->id.";");
65
  $class = ('alternate' != $class) ? 'alternate' : ''; ?>
66
  <tr class='<?php echo $class; ?>'>
67
  <th class="check-column"><input type="checkbox" name="groupcheck[]" value="<?php echo $group->id; ?>" /></th>
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: 2014-12-15 01:11+0100\n"
6
- "PO-Revision-Date: 2015-01-11 22:29+0200\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
@@ -13,23 +13,23 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.7.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:806
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:809
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-output.php:724
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
- #: adrotate-output.php:725
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:726
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:727
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
- #: adrotate-output.php:745
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:747
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:754 adrotate-output.php:756
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:762
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
- #: adrotate-output.php:768
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
- #: adrotate-output.php:773
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
- #: adrotate-output.php:779
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:779
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
- #: adrotate-output.php:785
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
- #: adrotate-output.php:811
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
- #: adrotate-output.php:811
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
- #: adrotate-output.php:813
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
- #: adrotate-output.php:813
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
- #: adrotate-output.php:815
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
- #: adrotate-output.php:815
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
- #: adrotate-output.php:817
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
- #: adrotate-output.php:817
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
- #: adrotate-output.php:817
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
- #: adrotate-output.php:817
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
- #: adrotate-output.php:829
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
- #: adrotate-output.php:831
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,72 +150,71 @@ msgstr ""
150
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
151
  "до <strong>PRO</strong> версията"
152
 
153
- #: adrotate-output.php:832
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
- #: adrotate-output.php:832
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
- #: adrotate-output.php:890
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgid "Useful Links"
164
  msgstr "Полезни връзки"
165
 
166
- #: adrotate-output.php:891 adrotate-output.php:919
167
  msgid "Useful links to learn more about AdRotate"
168
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
169
 
170
- #: adrotate-output.php:893
171
- msgid "AdRotate Website"
172
- msgstr "Уебсайт на AdRotate"
173
 
174
- #: adrotate-output.php:894
175
  msgid "Getting Started With AdRotate"
176
  msgstr "Започнете от нулата с AdRotate Pro"
177
 
178
- #: adrotate-output.php:895
179
- msgid "AdRotate Knowledge base and manuals"
180
- msgstr "AdRotate помощна информация и упътвания"
181
 
182
- #: adrotate-output.php:896
183
  msgid "AdRotate Support Forum"
184
  msgstr "Форум за поддръжка на AdRotate"
185
 
186
- #: adrotate-output.php:897
187
  msgid "WordPress.org Forum"
188
  msgstr "WordPress.org форум"
189
 
190
- #: adrotate-output.php:921
191
- msgid "AdRotate Website."
192
- msgstr "Уебсайт на AdRotate."
193
-
194
- #: adrotate-output.php:922
195
- msgid "AdRotate Getting Started."
196
- msgstr "Започнете от нулата с AdRotate."
197
-
198
- #: adrotate-output.php:923
199
- msgid "AdRotate Knoweledge base and manuals."
200
- msgstr "AdRotate помощна информация и упътвания."
201
-
202
- #: adrotate-output.php:924
203
- msgid "AdRotate Website Forum."
204
- msgstr "Форум на сайта на AdRotate."
205
-
206
- #: adrotate-output.php:925
207
- msgid "WordPress.org Forum."
208
- msgstr "WordPress.org форум."
209
-
210
- #: adrotate-output.php:942
211
  msgid "Help AdRotate Grow"
212
  msgstr "Помогнете за развитието на AdRotate"
213
 
214
- #: adrotate-output.php:943
215
  msgid "Brought to you by"
216
  msgstr "Достига до Вас благодарение на"
217
 
218
- #: adrotate-output.php:950
219
  msgid ""
220
  "A lot of users only think to review AdRotate when something goes wrong while "
221
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
@@ -224,27 +223,23 @@ msgstr ""
224
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
225
  "това да остане незабелязано."
226
 
227
- #: adrotate-output.php:950
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
230
 
231
- #: adrotate-output.php:950
232
  msgid "rating"
233
  msgstr "оценка"
234
 
235
- #: adrotate-output.php:950 dashboard/publisher/adrotate-ads-edit.php:228
236
- msgid "and"
237
- msgstr "и"
238
-
239
- #: adrotate-output.php:950
240
  msgid "review"
241
  msgstr "мнение"
242
 
243
- #: adrotate-output.php:950
244
  msgid "on WordPress.org to help AdRotate grow in a positive way"
245
  msgstr "на WordPress.org, за да се развива AdRotate"
246
 
247
- #: adrotate-output.php:953
248
  msgid ""
249
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
250
  "out more about what I can do for you!"
@@ -252,87 +247,87 @@ msgstr ""
252
  "Мястото, където да се консултирате и/или да поръчате разработка за "
253
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
254
 
255
- #: adrotate-output.php:953
256
  msgid "Visit the"
257
  msgstr "Посетете"
258
 
259
- #: adrotate-output.php:953 dashboard/adrotate-info.php:179
260
  msgid "website"
261
  msgstr "уебсайт"
262
 
263
- #: adrotate-output.php:983
264
  msgid "Available in AdRotate Pro"
265
  msgstr "Налично в AdRotate Pro"
266
 
267
- #: adrotate-output.php:983
268
  msgid "More information..."
269
  msgstr "Повече информация..."
270
 
271
- #: adrotate-output.php:984
272
  msgid "This feature is available in AdRotate Pro"
273
  msgstr "Тази функционалност е налична в AdRotate Pro"
274
 
275
- #: adrotate-output.php:984
276
  msgid "Learn more"
277
  msgstr "Повече информация"
278
 
279
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:330
280
- #: dashboard/publisher/adrotate-ads-edit.php:351
281
  msgid "January"
282
  msgstr "Януари"
283
 
284
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
285
- #: dashboard/publisher/adrotate-ads-edit.php:352
286
  msgid "February"
287
  msgstr "Февруари"
288
 
289
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
290
- #: dashboard/publisher/adrotate-ads-edit.php:353
291
  msgid "March"
292
  msgstr "Март"
293
 
294
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
295
- #: dashboard/publisher/adrotate-ads-edit.php:354
296
  msgid "April"
297
  msgstr "Април"
298
 
299
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
300
- #: dashboard/publisher/adrotate-ads-edit.php:355
301
  msgid "May"
302
  msgstr "Май"
303
 
304
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
305
- #: dashboard/publisher/adrotate-ads-edit.php:356
306
  msgid "June"
307
  msgstr "Юни"
308
 
309
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
310
- #: dashboard/publisher/adrotate-ads-edit.php:357
311
  msgid "July"
312
  msgstr "Юли"
313
 
314
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
315
- #: dashboard/publisher/adrotate-ads-edit.php:358
316
  msgid "August"
317
  msgstr "Август"
318
 
319
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
320
- #: dashboard/publisher/adrotate-ads-edit.php:359
321
  msgid "September"
322
  msgstr "Септември"
323
 
324
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
325
- #: dashboard/publisher/adrotate-ads-edit.php:360
326
  msgid "October"
327
  msgstr "Октомври"
328
 
329
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
330
- #: dashboard/publisher/adrotate-ads-edit.php:361
331
  msgid "November"
332
  msgstr "Ноември"
333
 
334
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
335
- #: dashboard/publisher/adrotate-ads-edit.php:362
336
  msgid "December"
337
  msgstr "Декември"
338
 
@@ -352,51 +347,51 @@ msgstr "Следващ"
352
  msgid "No data to show!"
353
  msgstr "Няма информация!"
354
 
355
- #: adrotate-widget.php:115
356
  msgid "Title (optional):"
357
  msgstr "Заглавие (не е задължително):"
358
 
359
- #: adrotate-widget.php:118
360
  msgid "HTML will be stripped out."
361
  msgstr "HTML тагове не се поддържат."
362
 
363
- #: adrotate-widget.php:121
364
  msgid "Description (optional):"
365
  msgstr "Описание (не е задължително):"
366
 
367
- #: adrotate-widget.php:124
368
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
369
  msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
370
 
371
- #: adrotate-widget.php:127
372
  msgid "Type:"
373
  msgstr "Тип:"
374
 
375
- #: adrotate-widget.php:129
376
  msgid "Single Ad - Use Ad ID"
377
  msgstr "Единична реклама - Използване на ID на рекламата"
378
 
379
- #: adrotate-widget.php:130
380
  msgid "Group of Ads - Use group ID"
381
  msgstr "Група реклами - Използване на ID на групата"
382
 
383
- #: adrotate-widget.php:133
384
  msgid "Choose what you want to use this widget for"
385
  msgstr "Изберете за какво иската да използвате тази джаджа"
386
 
387
- #: adrotate-widget.php:136 dashboard/publisher/adrotate-groups-edit.php:52
388
  msgid "ID:"
389
  msgstr "ID:"
390
 
391
- #: adrotate-widget.php:139
392
  msgid "Fill in the ID of the type you want to display!"
393
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
394
 
395
- #: adrotate.php:107
396
  msgid "General Info"
397
  msgstr "Обща информация"
398
 
399
- #: adrotate.php:108
400
  msgid "AdRotate Pro"
401
  msgstr "AdRotate Pro"
402
 
@@ -404,64 +399,64 @@ msgstr "AdRotate Pro"
404
  msgid "Manage Ads"
405
  msgstr "Управление на реклами"
406
 
407
- #: adrotate.php:112 dashboard/publisher/adrotate-groups-main.php:12
408
  msgid "Manage Groups"
409
  msgstr "Управление на групи"
410
 
411
- #: adrotate.php:114 adrotate.php:445
412
- #: dashboard/publisher/adrotate-ads-edit.php:401
413
  msgid "Manage Schedules"
414
  msgstr "Управление на графици"
415
 
416
- #: adrotate.php:115
417
  msgid "Manage Media"
418
  msgstr "Управление на Медия"
419
 
420
- #: adrotate.php:118 adrotate.php:612
421
  msgid "Settings"
422
  msgstr "Настройки"
423
 
424
- #: adrotate.php:141
425
  msgid "AdRotate Info"
426
  msgstr "AdRotate Info"
427
 
428
- #: adrotate.php:162
429
  msgid "AdRotate Professional"
430
  msgstr "AdRotate Professional"
431
 
432
- #: adrotate.php:205
433
  msgid "Ad Management"
434
  msgstr "Управление на реклами"
435
 
436
- #: adrotate.php:208
437
  msgid "Ad created"
438
  msgstr "Рекламата е създадена"
439
 
440
- #: adrotate.php:210
441
  msgid "Ad updated"
442
  msgstr "Рекламата е обновена"
443
 
444
- #: adrotate.php:212
445
  msgid "Ad(s) deleted"
446
  msgstr "Успешно изтриване"
447
 
448
- #: adrotate.php:214
449
  msgid "Ad(s) statistics reset"
450
  msgstr "Статистиката е нулирана"
451
 
452
- #: adrotate.php:216
453
  msgid "Ad(s) renewed"
454
  msgstr "Успешно подновяване"
455
 
456
- #: adrotate.php:218
457
  msgid "Ad(s) deactivated"
458
  msgstr "Успешно деактивиране"
459
 
460
- #: adrotate.php:220
461
  msgid "Ad(s) activated"
462
  msgstr "Успешно активиране"
463
 
464
- #: adrotate.php:222
465
  msgid ""
466
  "The ad was saved but has an issue which might prevent it from working "
467
  "properly. Review the yellow marked ad."
@@ -469,51 +464,51 @@ msgstr ""
469
  "Рекламата е запазена, но има проблеми, които могат да ѝ попречат да работи "
470
  "нормално. Прегледайте рекламата маркирана в жълто."
471
 
472
- #: adrotate.php:224
473
  msgid "Export created"
474
  msgstr "Експорта е завършен"
475
 
476
- #: adrotate.php:228
477
  msgid "Action prohibited"
478
  msgstr "Забранено действие"
479
 
480
- #: adrotate.php:230 adrotate.php:378
481
  msgid "No data found in selected time period"
482
  msgstr "Не е намерена информация за избрания период"
483
 
484
- #: adrotate.php:288 adrotate.php:384 adrotate.php:440
485
  msgid "Manage"
486
  msgstr "Управление"
487
 
488
- #: adrotate.php:289 adrotate.php:385 adrotate.php:441
489
  msgid "Add New"
490
  msgstr "Добавяне"
491
 
492
- #: adrotate.php:367
493
  msgid "Group Management"
494
  msgstr "Управление на групи"
495
 
496
- #: adrotate.php:370
497
  msgid "Group created"
498
  msgstr "Групата е създадена"
499
 
500
- #: adrotate.php:372
501
  msgid "Group updated"
502
  msgstr "Групата е обновена"
503
 
504
- #: adrotate.php:374
505
  msgid "Group deleted"
506
  msgstr "Групата е изтрита"
507
 
508
- #: adrotate.php:376
509
  msgid "Group including it's Ads deleted"
510
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
511
 
512
- #: adrotate.php:436
513
  msgid "Schedule Management available in AdRotate Pro"
514
  msgstr "Управление с графици е налично в AdRotate Pro"
515
 
516
- #: adrotate.php:446
517
  msgid ""
518
  "Schedule management and multiple schedules per advert is available in "
519
  "AdRotate Pro."
@@ -521,87 +516,85 @@ msgstr ""
521
  "Управлението на графици и множество графици за една реклама са налични в "
522
  "AdRotate Pro."
523
 
524
- #: adrotate.php:446 adrotate.php:533
525
- #: dashboard/publisher/adrotate-ads-edit.php:144
526
  #: dashboard/publisher/adrotate-ads-main.php:108
527
  #: dashboard/publisher/adrotate-groups-edit.php:76
528
  #: dashboard/publisher/adrotate-groups-main.php:87
529
  msgid "More information"
530
  msgstr "Повече информация"
531
 
532
- #: adrotate.php:453 dashboard/publisher/adrotate-ads-main-disabled.php:20
533
  #: dashboard/publisher/adrotate-ads-main-error.php:19
534
  #: dashboard/publisher/adrotate-ads-main.php:20
535
  #: dashboard/publisher/adrotate-groups-main.php:20
536
  msgid "Bulk Actions"
537
  msgstr "Масови действия"
538
 
539
- #: adrotate.php:454 dashboard/publisher/adrotate-ads-main-disabled.php:25
540
  #: dashboard/publisher/adrotate-ads-main-error.php:29
541
  #: dashboard/publisher/adrotate-ads-main.php:30
542
  #: dashboard/publisher/adrotate-groups-main.php:24
543
  msgid "Go"
544
  msgstr "Напред"
545
 
546
- #: adrotate.php:463 dashboard/publisher/adrotate-ads-edit.php:407
547
  #: 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
- #: dashboard/server/adrotate-active.php:18
552
- #: dashboard/server/adrotate-error.php:18
553
  msgid "ID"
554
  msgstr "ID"
555
 
556
- #: adrotate.php:464
557
  msgid "Start"
558
  msgstr "Начало"
559
 
560
- #: adrotate.php:464
561
  msgid "End"
562
  msgstr "Край"
563
 
564
- #: adrotate.php:465 dashboard/publisher/adrotate-ads-edit.php:474
565
  #: dashboard/publisher/adrotate-groups-main.php:34
566
  msgid "Ads"
567
  msgstr "Реклами"
568
 
569
- #: adrotate.php:467
570
  msgid "Max Clicks"
571
  msgstr "Максимум кликове"
572
 
573
- #: adrotate.php:468
574
  msgid "Max Impressions"
575
  msgstr "Максимум импресии"
576
 
577
- #: adrotate.php:498
578
  msgid "No schedules created yet!"
579
  msgstr "Все още няма създадени графици!"
580
 
581
- #: adrotate.php:503
582
  msgid "Easily manage your schedules from here with AdRotate Pro."
583
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
584
 
585
- #: adrotate.php:503 adrotate.php:566
586
  msgid "Upgrade today!"
587
  msgstr "Надградете днес!"
588
 
589
- #: adrotate.php:506 dashboard/publisher/adrotate-ads-edit.php:437
590
  #: dashboard/publisher/adrotate-ads-main-error.php:74
591
- #: dashboard/publisher/adrotate-groups-edit.php:385
592
  msgid "Expires soon."
593
  msgstr "Изтича скоро."
594
 
595
- #: adrotate.php:507 dashboard/publisher/adrotate-ads-main-error.php:75
596
- #: dashboard/publisher/adrotate-groups-edit.php:386
597
  msgid "Has expired."
598
  msgstr "Изтекла."
599
 
600
- #: adrotate.php:531
601
  msgid "Media Management available in AdRotate Pro"
602
  msgstr "Управление на медия е налично в AdRotate Pro"
603
 
604
- #: adrotate.php:533
605
  msgid ""
606
  "Upload images to the AdRotate Pro banners folder from here. This is "
607
  "especially useful if you use responsive adverts with multiple images."
@@ -609,27 +602,27 @@ msgstr ""
609
  "Качете картинки в папката за банери на AdRotate Pro от тук. Това е особено "
610
  "полезно, ако използвате responsive реклами с няколко картинки."
611
 
612
- #: adrotate.php:533
613
  msgid "Media uploading and management is available in AdRotate Pro."
614
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
615
 
616
- #: adrotate.php:535
617
  msgid "Upload new banner image"
618
  msgstr "Качване на нова картинка на банера"
619
 
620
- #: adrotate.php:536
621
  msgid "Accepted files are:"
622
  msgstr "Приемат се следните файлове:"
623
 
624
- #: adrotate.php:536
625
  msgid "Maximum size is 512Kb."
626
  msgstr "Максималния размер е 512Kb."
627
 
628
- #: adrotate.php:536
629
  msgid "Important:"
630
  msgstr "Важно:"
631
 
632
- #: adrotate.php:536
633
  msgid ""
634
  "Make sure your file has no spaces or special characters in the name. Replace "
635
  "spaces with a - or _."
@@ -637,7 +630,7 @@ msgstr ""
637
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
638
  "интервалите с - или _."
639
 
640
- #: adrotate.php:538
641
  msgid ""
642
  "For responsive adverts make sure the filename is in the following format; "
643
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
@@ -646,7 +639,7 @@ msgstr ""
646
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
647
  "е строго препоръчителен."
648
 
649
- #: adrotate.php:539 dashboard/publisher/adrotate-ads-edit.php:211
650
  msgid ""
651
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
652
  "filename instead of \".full\" for the various viewports."
@@ -655,13 +648,13 @@ msgstr ""
655
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
656
  "файловете, вместо \".full\"."
657
 
658
- #: adrotate.php:540 dashboard/publisher/adrotate-ads-edit.php:212
659
- #: dashboard/publisher/adrotate-groups-edit.php:320
660
- #: dashboard/publisher/adrotate-groups-edit.php:329
661
  msgid "Example:"
662
  msgstr "Пример:"
663
 
664
- #: adrotate.php:540
665
  msgid ""
666
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
667
  "for different viewports."
@@ -669,189 +662,171 @@ msgstr ""
669
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
670
  "реклама в различни резолюции на екрана."
671
 
672
- #: adrotate.php:544
673
  msgid "Upload image"
674
  msgstr "Качването на картинка"
675
 
676
- #: adrotate.php:547
677
  msgid "Available banner images in"
678
  msgstr "Налични картинки за банери в"
679
 
680
- #: adrotate.php:552 dashboard/publisher/adrotate-groups-main.php:33
681
  msgid "Name"
682
  msgstr "Име"
683
 
684
- #: adrotate.php:553
685
  msgid "Actions"
686
  msgstr "Действия"
687
 
688
- #: adrotate.php:558 adrotate.php:559 adrotate.php:560 adrotate.php:561
689
- #: adrotate.php:562 dashboard/publisher/adrotate-ads-main-disabled.php:22
690
  #: dashboard/publisher/adrotate-ads-main-error.php:21
691
  #: dashboard/publisher/adrotate-ads-main.php:22
692
  msgid "Delete"
693
  msgstr "Изтриване"
694
 
695
- #: adrotate.php:566
696
  msgid ""
697
  "Make sure the banner images are not in use by adverts when you delete them!"
698
  msgstr ""
699
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
700
  "изтриете!"
701
 
702
- #: adrotate.php:566
703
  msgid "Manage your banner folder from here with AdRotate Pro."
704
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
705
 
706
- #: adrotate.php:599
707
- msgid "AdRotate Server"
708
- msgstr "AdRotate Сървър"
709
-
710
- #: adrotate.php:607
711
- msgid ""
712
- "AdRotate server is currently in development and these menus are not "
713
- "functional yet."
714
- msgstr ""
715
- "AdRotate Server все още се разработва и тези менюта не функционират в "
716
- "момента."
717
-
718
- #: adrotate.php:611
719
- msgid "Overview"
720
- msgstr "Преглед"
721
-
722
- #: adrotate.php:706
723
  msgid "AdRotate Settings"
724
  msgstr "AdRotate Настройки"
725
 
726
- #: adrotate.php:709
727
  msgid "Settings saved"
728
  msgstr "Настройките са запазени"
729
 
730
- #: adrotate.php:711
731
  msgid "Database optimized"
732
  msgstr "Базата данни е оптимизирана"
733
 
734
- #: adrotate.php:713
735
  msgid "Database repaired"
736
  msgstr "Базата данни е поправена"
737
 
738
- #: adrotate.php:715
739
  msgid "Ads evaluated and statuses have been corrected where required"
740
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
741
 
742
- #: adrotate.php:717
743
  msgid "Empty database records removed"
744
  msgstr "Празните записи в базата данни са премахнати"
745
 
746
- #: adrotate.php:719
747
  msgid "Database can only be optimized or cleaned once every hour"
748
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
749
 
750
- #: adrotate.php:727
751
  msgid "Access Rights"
752
  msgstr "Права на достъп"
753
 
754
- #: adrotate.php:728
755
  msgid "Who has access to what?"
756
  msgstr "Кой до какво има достъп?"
757
 
758
- #: adrotate.php:731
759
  msgid "Manage/Add/Edit adverts"
760
  msgstr "Управление/Добавяне/Редакция на обяви"
761
 
762
- #: adrotate.php:735
763
  msgid "Role to see and add/edit ads."
764
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
765
 
766
- #: adrotate.php:739
767
  msgid "Delete/Reset adverts"
768
  msgstr "Изтриване/Нулиране на реклами"
769
 
770
- #: adrotate.php:743
771
  msgid "Role to delete ads and reset stats."
772
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
773
 
774
- #: adrotate.php:747
775
  msgid "Manage/Add/Edit groups"
776
  msgstr "Управление/Добавяне/Редакция на групи"
777
 
778
- #: adrotate.php:751
779
  msgid "Role to see and add/edit groups."
780
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
781
 
782
- #: adrotate.php:755
783
  msgid "Delete groups"
784
  msgstr "Изтриване на групи"
785
 
786
- #: adrotate.php:759
787
  msgid "Role to delete groups."
788
  msgstr "Роля за изтриване на групи."
789
 
790
- #: adrotate.php:780 adrotate.php:830 adrotate.php:885 adrotate.php:932
791
- #: adrotate.php:972
792
  msgid "Update Options"
793
  msgstr "Опции за обновяване"
794
 
795
- #: adrotate.php:791
796
  msgid "Statistics"
797
  msgstr "Статистики"
798
 
799
- #: adrotate.php:794
800
  msgid "Enable stats"
801
  msgstr "Включване на статистиката"
802
 
803
- #: adrotate.php:796
804
  msgid "Track clicks and impressions."
805
  msgstr "Проследяване на кликове и импресии."
806
 
807
- #: adrotate.php:796
808
  msgid "Disabling this also disables click and impression limits on schedules."
809
  msgstr ""
810
  "Ако деактивирате тази опция, ще бъдат деактивирани и лимитите за кликове и "
811
  "импресии на графици."
812
 
813
- #: adrotate.php:800
814
  msgid "Impressions timer"
815
  msgstr "Таймер за импресии"
816
 
817
- #: adrotate.php:802 adrotate.php:809
818
  msgid "Seconds."
819
  msgstr "Секудни."
820
 
821
- #: adrotate.php:803
822
  msgid "Default: 60."
823
  msgstr "По подразбиране: 60."
824
 
825
- #: adrotate.php:803
826
- msgid "This number may not be empty, be lower than 60 or exceed 3600 (1 hour)."
827
  msgstr ""
828
- "Полето не може да остава празно, да съдържа стойност под 60 или над 3600 (1 "
829
- "час)."
830
 
831
- #: adrotate.php:807
832
  msgid "Clicks timer"
833
  msgstr "Таймер за кликове"
834
 
835
- #: adrotate.php:810
836
  msgid "Default: 86400."
837
  msgstr "По подразбиране: 86400."
838
 
839
- #: adrotate.php:810
840
  msgid ""
841
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
842
  msgstr ""
843
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
844
  "(24 часа)."
845
 
846
- #: adrotate.php:815
847
  msgid "Bot filter"
848
  msgstr "Филтър на ботове"
849
 
850
- #: adrotate.php:818
851
  msgid "User-Agent Filter"
852
  msgstr "Филтър за агенти"
853
 
854
- #: adrotate.php:821
855
  msgid ""
856
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
857
  "prevent impressions and clicks counted on them."
@@ -859,7 +834,7 @@ msgstr ""
859
  "Списък с ключови думи, за разделител използвайте запетая. Филтриране на "
860
  "импресиите и кликовете от ботове/роботи/агенти."
861
 
862
- #: adrotate.php:822
863
  msgid ""
864
  "Keep in mind that this might give false positives. The word 'google' also "
865
  "matches 'googlebot', but not vice-versa. So be careful!"
@@ -867,11 +842,11 @@ msgstr ""
867
  "Имайте в предвид, че това може да даде фалшиви резултати. Думата 'google' ще "
868
  "включи и 'googlebot', но не и обратното. Бъдете внимателни!"
869
 
870
- #: adrotate.php:822
871
  msgid "Keep your list up-to-date"
872
  msgstr "Поддържайте списъка актуален"
873
 
874
- #: adrotate.php:823
875
  msgid ""
876
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
877
  "other characters are stripped out."
@@ -879,29 +854,29 @@ msgstr ""
879
  "Използвайте само думи с букви и цифри, тире и долно тире. Всички останали "
880
  "знаци са забранени."
881
 
882
- #: adrotate.php:824
883
  msgid ""
884
  "Additionally to the list specified here, empty User-Agents are blocked as "
885
  "well."
886
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
887
 
888
- #: adrotate.php:824 dashboard/adrotate-info.php:179
889
  msgid "Learn more about"
890
  msgstr "Научете повече за"
891
 
892
- #: adrotate.php:824
893
  msgid "user-agents"
894
  msgstr "агенти"
895
 
896
- #: adrotate.php:833
897
  msgid "Miscellaneous"
898
  msgstr "Разни"
899
 
900
- #: adrotate.php:836
901
  msgid "Widget alignment"
902
  msgstr "Подравняване на джаджата"
903
 
904
- #: adrotate.php:837
905
  msgid ""
906
  "Check this box if your widgets do not align in your themes sidebar. (Does "
907
  "not always help!)"
@@ -909,11 +884,11 @@ msgstr ""
909
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
910
  "темата Ви. (Не винаги помага)"
911
 
912
- #: adrotate.php:840
913
  msgid "Widget padding"
914
  msgstr "Padding за джаджата"
915
 
916
- #: adrotate.php:841
917
  msgid ""
918
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
919
  "not always work!)"
@@ -921,11 +896,11 @@ msgstr ""
921
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
922
  "джаджата. (Не винаги работи!)"
923
 
924
- #: adrotate.php:846 adrotate.php:857
925
  msgid "NOTICE:"
926
  msgstr "ЗАБЕЛЕЖКА:"
927
 
928
- #: adrotate.php:847
929
  msgid ""
930
  "You have enabled W3 Total Caching support but not defined the security hash. "
931
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -937,15 +912,15 @@ msgstr ""
937
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
938
  "включена в W3 Total Cache."
939
 
940
- #: adrotate.php:851
941
  msgid "W3 Total Caching"
942
  msgstr "W3 Total Caching"
943
 
944
- #: adrotate.php:852
945
  msgid "Check this box if you use W3 Total Caching on your site."
946
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
947
 
948
- #: adrotate.php:858
949
  msgid ""
950
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
951
  "this function will not work. WP Super Cache has discontinued support for "
@@ -955,15 +930,15 @@ msgstr ""
955
  "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
956
  "динамично съдържание."
957
 
958
- #: adrotate.php:862
959
  msgid "WP Super Cache"
960
  msgstr "WP Super Cache"
961
 
962
- #: adrotate.php:863
963
  msgid "Check this box if you use WP Super Cache on your site."
964
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
965
 
966
- #: adrotate.php:868
967
  msgid ""
968
  "It may take a while for the ad to start rotating. The caching plugin needs "
969
  "to refresh the cache. This can take up to a week if not done manually."
@@ -972,7 +947,7 @@ msgstr ""
972
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
973
  "седмица, ако не го направите ръчно."
974
 
975
- #: adrotate.php:868
976
  msgid ""
977
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
978
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -981,15 +956,15 @@ msgstr ""
981
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
982
  "сами."
983
 
984
- #: adrotate.php:872
985
- msgid "Javascript Libraries"
986
- msgstr "Javascript библиотеки"
987
 
988
- #: adrotate.php:875
989
  msgid "Load jQuery"
990
  msgstr "Зареди jQuery"
991
 
992
- #: adrotate.php:876
993
  msgid ""
994
  "jQuery is required for all Javascript features below. Enable this if your "
995
  "theme does not load jQuery already."
@@ -997,11 +972,11 @@ msgstr ""
997
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
998
  "темата ви вече не го е заредила."
999
 
1000
- #: adrotate.php:879
1001
  msgid "Load in footer?"
1002
  msgstr "Зареди във футера?"
1003
 
1004
- #: adrotate.php:880
1005
  msgid ""
1006
  "Enable if you want to load the above libraries in the footer. Your theme "
1007
  "needs to call wp_footer() for this to work."
@@ -1009,11 +984,11 @@ msgstr ""
1009
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
1010
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
1011
 
1012
- #: adrotate.php:888
1013
  msgid "Maintenance"
1014
  msgstr "Поддръжка"
1015
 
1016
- #: adrotate.php:889
1017
  msgid ""
1018
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1019
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1027,19 +1002,19 @@ msgstr ""
1027
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1028
  "отговаря."
1029
 
1030
- #: adrotate.php:904 adrotate.php:906
1031
  msgid "Optimize Database"
1032
  msgstr "Оптимизиране на базата данни"
1033
 
1034
- #: adrotate.php:906
1035
  msgid "You are about to optimize the AdRotate database."
1036
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1037
 
1038
- #: adrotate.php:906
1039
  msgid "Did you make a backup of your database?"
1040
  msgstr "Направихте ли резервно копие на своята база данни?"
1041
 
1042
- #: adrotate.php:906
1043
  msgid ""
1044
  "This may take a moment and may cause your website to respond slow "
1045
  "temporarily!"
@@ -1047,16 +1022,16 @@ msgstr ""
1047
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1048
  "момент!"
1049
 
1050
- #: adrotate.php:906 adrotate.php:914 adrotate.php:922
1051
  #: dashboard/publisher/adrotate-groups-main.php:24
1052
  msgid "OK to continue, CANCEL to stop."
1053
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1054
 
1055
- #: adrotate.php:907
1056
  msgid "Cleans up overhead data in the AdRotate tables."
1057
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1058
 
1059
- #: adrotate.php:908
1060
  msgid ""
1061
  "Overhead data is accumulated garbage resulting from many changes you've "
1062
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1064,11 +1039,11 @@ msgstr ""
1064
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1065
  "които правите. Те могар да варират от 0 до хиляди KB."
1066
 
1067
- #: adrotate.php:912 adrotate.php:914
1068
  msgid "Clean-up Database"
1069
  msgstr "Почистване на базата данни"
1070
 
1071
- #: adrotate.php:914
1072
  msgid ""
1073
  "You are about to clean up your database. This may delete expired schedules "
1074
  "and older statistics."
@@ -1076,21 +1051,21 @@ msgstr ""
1076
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1077
  "и стари статистики."
1078
 
1079
- #: adrotate.php:914
1080
  msgid "Are you sure you want to continue?"
1081
  msgstr "Сигурни ли сте, че искате да продължите?"
1082
 
1083
- #: adrotate.php:914 adrotate.php:922
1084
  msgid "This might take a while and may slow down your site during this action!"
1085
  msgstr ""
1086
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1087
  "изпълнението му!"
1088
 
1089
- #: adrotate.php:915
1090
  msgid "Delete stats older than 356 days (Optional)."
1091
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1092
 
1093
- #: adrotate.php:916
1094
  msgid ""
1095
  "AdRotate creates empty records when you start making ads or groups. In rare "
1096
  "occasions these records are faulty."
@@ -1098,7 +1073,7 @@ msgstr ""
1098
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1099
  "група. В редки случай тези записи са дефектни."
1100
 
1101
- #: adrotate.php:916
1102
  msgid ""
1103
  "If you made an ad or group that does not save when you make it use this "
1104
  "button to delete those empty records."
@@ -1106,7 +1081,7 @@ msgstr ""
1106
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1107
  "този бутон, за да изтриете празните полета."
1108
 
1109
- #: adrotate.php:916
1110
  msgid ""
1111
  "Additionally you can clean up old statistics. This will improve the speed of "
1112
  "your site."
@@ -1114,19 +1089,19 @@ msgstr ""
1114
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1115
  "скоростта на сайта Ви."
1116
 
1117
- #: adrotate.php:920
1118
  msgid "Re-evaluate Ads"
1119
  msgstr "Преоценка на реклами"
1120
 
1121
- #: adrotate.php:922
1122
  msgid "Re-evaluate all ads"
1123
  msgstr "Преоценка на всички реклами"
1124
 
1125
- #: adrotate.php:922
1126
  msgid "You are about to check all ads for errors."
1127
  msgstr "На път сте да проверите всички реклами за грешки."
1128
 
1129
- #: adrotate.php:923
1130
  msgid ""
1131
  "This will apply all evaluation rules to all ads to see if any error slipped "
1132
  "in. Normally you should not need this feature."
@@ -1134,7 +1109,7 @@ msgstr ""
1134
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1135
  "нужда от тази функция."
1136
 
1137
- #: adrotate.php:927
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,60 +1126,65 @@ msgstr ""
1151
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1152
  "тези бутони е безсмислено."
1153
 
1154
- #: adrotate.php:935
1155
  msgid "Troubleshooting"
1156
  msgstr "Отстраняване на проблеми"
1157
 
1158
- #: adrotate.php:938
1159
  msgid "Current version:"
1160
  msgstr "Текуща версия:"
1161
 
1162
- #: adrotate.php:939
1163
  msgid "Previous version:"
1164
  msgstr "Предишна версия:"
1165
 
1166
- #: adrotate.php:942
1167
  msgid "Current database version:"
1168
  msgstr "Текуща верския на базата данни:"
1169
 
1170
- #: adrotate.php:943
1171
  msgid "Previous database version:"
1172
  msgstr "Предишна версия на базата данни:"
1173
 
1174
- #: adrotate.php:946
1175
  #, fuzzy
1176
  msgid "Ad evaluation next run:"
1177
  msgstr "Оценка на рекламата:"
1178
 
1179
- #: adrotate.php:947
1180
  msgid "Not scheduled!"
1181
  msgstr "Не е планирано!"
1182
 
1183
- #: adrotate.php:950
 
 
 
 
 
1184
  msgid "Current status of adverts"
1185
  msgstr "Настоящ статус на рекламите"
1186
 
1187
- #: adrotate.php:951
1188
  msgid "Normal"
1189
  msgstr "Нормално"
1190
 
1191
- #: adrotate.php:951
1192
  msgid "Error"
1193
  msgstr "Грешка"
1194
 
1195
- #: adrotate.php:951
1196
  msgid "Expired"
1197
  msgstr "Изтекло"
1198
 
1199
- #: adrotate.php:951
1200
  msgid "Expires Soon"
1201
  msgstr "Изтича скоро"
1202
 
1203
- #: adrotate.php:951
1204
  msgid "Unknown Status"
1205
  msgstr "Неизвестен статус"
1206
 
1207
- #: adrotate.php:954
1208
  msgid ""
1209
  "NOTE: The below options are not meant for normal use and are only there for "
1210
  "developers to review saved settings or how ads are selected. These can be "
@@ -1217,35 +1197,35 @@ msgstr ""
1217
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1218
  "ИЗКЛЮЧЕНИ!!"
1219
 
1220
- #: adrotate.php:958
1221
  msgid "Developer Debug"
1222
  msgstr "Developer Debug"
1223
 
1224
- #: adrotate.php:960
1225
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1226
  msgstr ""
1227
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1228
  "изглед."
1229
 
1230
- #: adrotate.php:961
1231
  msgid "Show all settings, dashboard routines and related values."
1232
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1233
 
1234
- #: adrotate.php:962
1235
  msgid "Show array of all userroles and capabilities."
1236
  msgstr "Покажи масив с всички потребителски роли и възможности."
1237
 
1238
- #: adrotate.php:963
1239
  msgid "Review saved advertisers! Visible to advertisers."
1240
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1241
 
1242
- #: adrotate.php:964
1243
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1244
  msgstr ""
1245
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1246
  "автори."
1247
 
1248
- #: adrotate.php:965
1249
  msgid ""
1250
  "Disable timers for clicks and impressions and enable a alert window for "
1251
  "clicktracking."
@@ -1253,7 +1233,7 @@ msgstr ""
1253
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1254
  "за проследяване на кликове."
1255
 
1256
- #: adrotate.php:966
1257
  msgid "Temporarily disable encryption on the redirect url."
1258
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1259
 
@@ -1294,109 +1274,108 @@ msgid "The last few days"
1294
  msgstr "Последни няколко дни"
1295
 
1296
  #: dashboard/adrotate-info.php:132
1297
- msgid "You are using"
1298
- msgstr "Използвате"
 
 
 
 
1299
 
1300
- #: dashboard/adrotate-info.php:138
 
 
 
 
1301
  msgid "AdRotate News and Developer Blog"
1302
  msgstr "AdRotate блог за новини и разработка"
1303
 
1304
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1305
  msgid "Buy AdRotate Professional"
1306
  msgstr "Купете AdRotate Professional"
1307
 
1308
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1309
  msgid "Singe License"
1310
  msgstr "Singe лиценз"
1311
 
1312
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1313
  msgid "For one WordPress installation."
1314
  msgstr "За една инсталация на WordPress."
1315
 
1316
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-info.php:167
1317
- #: dashboard/adrotate-info.php:168 dashboard/adrotate-info.php:169
1318
- #: dashboard/adrotate-info.php:170 dashboard/adrotate-pro.php:80
1319
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1320
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1321
  msgid "Buy now"
1322
  msgstr "Купи сега"
1323
 
1324
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:81
1325
  msgid "Duo License"
1326
  msgstr "Duo лиценз"
1327
 
1328
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:81
1329
  msgid "For two WordPress installations."
1330
  msgstr "За две Wordpress инсталации."
1331
 
1332
- #: dashboard/adrotate-info.php:168 dashboard/adrotate-pro.php:82
1333
  msgid "Multi License"
1334
  msgstr "Multi лиценз"
1335
 
1336
- #: dashboard/adrotate-info.php:168 dashboard/adrotate-pro.php:82
1337
  msgid " For up to five WordPress installations."
1338
  msgstr " За до 5 Wordpress инсталации."
1339
 
1340
- #: dashboard/adrotate-info.php:169 dashboard/adrotate-pro.php:83
 
 
 
 
 
 
 
 
1341
  msgid "Network License"
1342
  msgstr "Network лиценз"
1343
 
1344
- #: dashboard/adrotate-info.php:169 dashboard/adrotate-pro.php:83
1345
  msgid "Set up your own advertising network on a WordPress Multisite."
1346
  msgstr "Направете своя собствена рекламна мрежа чрез WordPress мултисайт."
1347
 
1348
- #: dashboard/adrotate-info.php:170 dashboard/adrotate-pro.php:84
1349
- msgid "Developer License"
1350
- msgstr "Developer лиценз"
1351
-
1352
- #: dashboard/adrotate-info.php:170 dashboard/adrotate-pro.php:84
1353
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1354
- msgstr ""
1355
- "Актвирайте AdRotate на неограничен брой Wordpress инсталации и/или мрежи."
1356
-
1357
- #: dashboard/adrotate-info.php:171 dashboard/adrotate-pro.php:85
1358
  msgid "Compare licenses"
1359
  msgstr "Сравнение на лицензи"
1360
 
1361
- #: dashboard/adrotate-info.php:171 dashboard/adrotate-pro.php:85
1362
  msgid "Not sure which license is for you? Compare them..."
1363
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
1364
 
1365
- #: dashboard/adrotate-info.php:171 dashboard/adrotate-pro.php:85
1366
  msgid "All Licenses"
1367
  msgstr "Всички лицензи"
1368
 
1369
- #: dashboard/adrotate-info.php:175
1370
- msgid "Get more features with AdRotate Pro"
1371
- msgstr "Получете по-голяма функционалност с AdRotate Pro"
1372
-
1373
- #: dashboard/adrotate-info.php:178
1374
- msgid ""
1375
- "Benefit from extra features to reinforce your income with advertising "
1376
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1377
- "Pro offers on top of the trusted features included in the free version."
1378
- msgstr ""
1379
- "Възползвайте се от допълнителните функции, като рекламни кампании, за да "
1380
- "подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
1381
- "функции, които предлага AdRotate Pro спрямо безплатната версия."
1382
-
1383
- #: dashboard/adrotate-info.php:179
1384
- msgid "or go to the"
1385
- msgstr "или отиди"
1386
-
1387
- #: dashboard/adrotate-info.php:183
1388
- msgid "Support AdRotate"
1389
- msgstr "Подкрепете AdRotate"
1390
-
1391
- #: dashboard/adrotate-info.php:186
1392
- msgid "Your gift will ensure the continued development of AdRotate!"
1393
- msgstr "Вашето дарение ще подкрепи развитието на AdRotate!"
1394
-
1395
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:43
1396
  msgid "AdRotate is brought to you by"
1397
  msgstr "AdRotate достига до Вас, благодарение на"
1398
 
1399
- #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:47
1400
  msgid ""
1401
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1402
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1407,11 +1386,11 @@ msgstr ""
1407
  "искате сайта Ви да бъде мигриран? Посетете страницата ми за повече "
1408
  "информация!"
1409
 
1410
- #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:47
1411
  msgid "Find out more"
1412
  msgstr "Научете повече"
1413
 
1414
- #: dashboard/adrotate-info.php:197
1415
  msgid "Follow"
1416
  msgstr "Последвай"
1417
 
@@ -1489,6 +1468,11 @@ msgstr ""
1489
  "Ще разберете кога изтичат обявите, какви грешки са възникнали и кога "
1490
  "рекламодателите добавят нови реклами."
1491
 
 
 
 
 
 
1492
  #: dashboard/publisher/adrotate-ads-edit.php:46
1493
  msgid "The AdCode cannot be empty!"
1494
  msgstr "AdCode не може да бъде празен!"
@@ -1539,48 +1523,48 @@ msgstr "Тази реклама изтича след по-малко от 7 д
1539
  msgid "This ad has been disabled and does not rotate on your site!"
1540
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1541
 
1542
- #: dashboard/publisher/adrotate-ads-edit.php:100
1543
  msgid "New Advert"
1544
  msgstr "Нова реклама"
1545
 
1546
- #: dashboard/publisher/adrotate-ads-edit.php:102
1547
  msgid "Edit Advert"
1548
  msgstr "Редакция на реклама"
1549
 
1550
- #: dashboard/publisher/adrotate-ads-edit.php:105
1551
  #: dashboard/publisher/adrotate-groups-edit.php:48
1552
  msgid "These are required."
1553
  msgstr "Тези са задължителни."
1554
 
1555
- #: dashboard/publisher/adrotate-ads-edit.php:109
1556
  msgid "Title:"
1557
  msgstr "Заглавие:"
1558
 
1559
- #: dashboard/publisher/adrotate-ads-edit.php:115
1560
  msgid "AdCode:"
1561
  msgstr "AdCode:"
1562
 
1563
- #: dashboard/publisher/adrotate-ads-edit.php:120
1564
  msgid ""
1565
  "Copy your ad tag/code in this field if you have received ready to go adverts."
1566
  msgstr ""
1567
  "Копирайте своя рекламен етикет/код в това поле ако сте получили готова "
1568
  "реклама."
1569
 
1570
- #: dashboard/publisher/adrotate-ads-edit.php:120
1571
  msgid "Advertising and affiliate networks often use these."
1572
  msgstr "Реклманите и партньорските мрежи често използват това."
1573
 
1574
- #: dashboard/publisher/adrotate-ads-edit.php:121
1575
  msgid "Basic Examples:"
1576
  msgstr "Основни примери:"
1577
 
1578
- #: dashboard/publisher/adrotate-ads-edit.php:126
1579
- #: dashboard/publisher/adrotate-groups-edit.php:321
1580
  msgid "Options:"
1581
  msgstr "Настройки:"
1582
 
1583
- #: dashboard/publisher/adrotate-ads-edit.php:128
1584
  msgid ""
1585
  "Place the cursor where you want to add a tag and click to add it to your "
1586
  "AdCode."
@@ -1588,49 +1572,49 @@ msgstr ""
1588
  "Поставете курсора там, където искате да добавите етикет и кликете, за да го "
1589
  "добавите към кода на рекламата."
1590
 
1591
- #: dashboard/publisher/adrotate-ads-edit.php:132
1592
  msgid "Activate:"
1593
  msgstr "Активиране:"
1594
 
1595
- #: dashboard/publisher/adrotate-ads-edit.php:136
1596
  msgid "Yes, this ad will be used"
1597
  msgstr "Да, тази реклама ще се използва"
1598
 
1599
- #: dashboard/publisher/adrotate-ads-edit.php:137
1600
  msgid "No, do not show this ad anywhere"
1601
  msgstr "Не, не показвай тази реклама никъде"
1602
 
1603
- #: dashboard/publisher/adrotate-ads-edit.php:144
1604
  #: dashboard/publisher/adrotate-ads-main.php:108
1605
  #: dashboard/publisher/adrotate-groups-edit.php:76
1606
  #: dashboard/publisher/adrotate-groups-main.php:87
1607
  msgid "Get more features with AdRotate Pro."
1608
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1609
 
1610
- #: dashboard/publisher/adrotate-ads-edit.php:147
1611
- #: dashboard/publisher/adrotate-ads-edit.php:180
1612
- #: dashboard/publisher/adrotate-ads-edit.php:316
1613
- #: dashboard/publisher/adrotate-ads-edit.php:441
1614
- #: dashboard/publisher/adrotate-ads-edit.php:484
1615
- msgid "Save Advert"
1616
- msgstr "Запиши рекламата"
1617
-
1618
  #: dashboard/publisher/adrotate-ads-edit.php:148
1619
  #: dashboard/publisher/adrotate-ads-edit.php:181
1620
  #: dashboard/publisher/adrotate-ads-edit.php:317
1621
  #: dashboard/publisher/adrotate-ads-edit.php:442
1622
  #: dashboard/publisher/adrotate-ads-edit.php:485
 
 
 
 
 
 
 
 
1623
  #: dashboard/publisher/adrotate-groups-edit.php:182
1624
- #: dashboard/publisher/adrotate-groups-edit.php:309
1625
- #: dashboard/publisher/adrotate-groups-edit.php:391
1626
  msgid "Cancel"
1627
  msgstr "Отказ"
1628
 
1629
- #: dashboard/publisher/adrotate-ads-edit.php:152
1630
  msgid "Preview"
1631
  msgstr "Преглед"
1632
 
1633
- #: dashboard/publisher/adrotate-ads-edit.php:158
1634
  msgid ""
1635
  "Note: While this preview is an accurate one, it might look different then it "
1636
  "does on the website."
@@ -1638,23 +1622,23 @@ msgstr ""
1638
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1639
  "изглежда по-различно, когато се показва на страницата Ви."
1640
 
1641
- #: dashboard/publisher/adrotate-ads-edit.php:159
1642
  msgid ""
1643
  "This is because of CSS differences. Your themes CSS file is not active here!"
1644
  msgstr ""
1645
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1646
 
1647
- #: dashboard/publisher/adrotate-ads-edit.php:166
1648
- #: dashboard/publisher/adrotate-ads-edit.php:302
1649
  #: dashboard/publisher/adrotate-groups-edit.php:167
1650
- #: dashboard/publisher/adrotate-groups-edit.php:294
1651
  msgid "Usage"
1652
  msgstr "Употреба"
1653
 
1654
- #: dashboard/publisher/adrotate-ads-edit.php:167
1655
- #: dashboard/publisher/adrotate-ads-edit.php:303
1656
  #: dashboard/publisher/adrotate-groups-edit.php:168
1657
- #: dashboard/publisher/adrotate-groups-edit.php:295
1658
  msgid ""
1659
  "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1660
  "where you want the advert to show up."
@@ -1663,38 +1647,38 @@ msgstr ""
1663
  "използвате във файловете на темата си, за да показвате рекламни карета "
1664
  "където са ви необходими."
1665
 
1666
- #: dashboard/publisher/adrotate-ads-edit.php:171
1667
- #: dashboard/publisher/adrotate-ads-edit.php:307
1668
  #: dashboard/publisher/adrotate-groups-edit.php:172
1669
- #: dashboard/publisher/adrotate-groups-edit.php:299
1670
  msgid "In a post or page:"
1671
  msgstr "И страница или публикация:"
1672
 
1673
- #: dashboard/publisher/adrotate-ads-edit.php:173
1674
- #: dashboard/publisher/adrotate-ads-edit.php:309
1675
  #: dashboard/publisher/adrotate-groups-edit.php:174
1676
- #: dashboard/publisher/adrotate-groups-edit.php:301
1677
  msgid "Directly in a theme:"
1678
  msgstr "Директно в темата:"
1679
 
1680
- #: dashboard/publisher/adrotate-ads-edit.php:184
1681
  #: dashboard/publisher/adrotate-groups-edit.php:185
1682
  msgid "Advanced"
1683
  msgstr "Разширени"
1684
 
1685
- #: dashboard/publisher/adrotate-ads-edit.php:185
1686
  msgid "Everything below is optional."
1687
  msgstr "Всичко по-долу е по желание."
1688
 
1689
- #: dashboard/publisher/adrotate-ads-edit.php:190
1690
  msgid "Clicktracking:"
1691
  msgstr "Проследяване на кликовете:"
1692
 
1693
- #: dashboard/publisher/adrotate-ads-edit.php:192
1694
  msgid "Enable click tracking for this advert."
1695
  msgstr "Активиране на проследяването на кликове за тази реклама."
1696
 
1697
- #: dashboard/publisher/adrotate-ads-edit.php:193
1698
  msgid ""
1699
  "Note: Clicktracking does generally not work for Javascript adverts such as "
1700
  "those provided by Google AdSense."
@@ -1702,15 +1686,15 @@ msgstr ""
1702
  "Забележка: Проследяването на кликове не е съвместимо с Javascript реклами, "
1703
  "като напр. Google AdSense."
1704
 
1705
- #: dashboard/publisher/adrotate-ads-edit.php:194
1706
  msgid "Place the target URL in your adcode - Similar to code example 1."
1707
  msgstr "Поставете URL адрес в adcode - както е показано в пример 1."
1708
 
1709
- #: dashboard/publisher/adrotate-ads-edit.php:199
1710
  msgid "Target URL:"
1711
  msgstr "Целеви URL:"
1712
 
1713
- #: dashboard/publisher/adrotate-ads-edit.php:202
1714
  msgid ""
1715
  "This field is no longer required. You can place the URL directly in the "
1716
  "adcode (above) instead of %link%."
@@ -1718,15 +1702,15 @@ msgstr ""
1718
  "Това поле вече не е необходимо. Можете да поставите URL адреса директно в "
1719
  "полето adcore (по-горе), вместо %link%."
1720
 
1721
- #: dashboard/publisher/adrotate-ads-edit.php:207
1722
  msgid "Responsive:"
1723
  msgstr "Responsive:"
1724
 
1725
- #: dashboard/publisher/adrotate-ads-edit.php:209
1726
  msgid "Enable responsive support for this advert."
1727
  msgstr "Активиране на responsive дизайн за тази реклама."
1728
 
1729
- #: dashboard/publisher/adrotate-ads-edit.php:210
1730
  msgid ""
1731
  "Upload your images to the banner folder and make sure the filename is in the "
1732
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1736,7 +1720,7 @@ msgstr ""
1736
  "правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
1737
  "картинки е строго препоръчителен."
1738
 
1739
- #: dashboard/publisher/adrotate-ads-edit.php:212
1740
  msgid ""
1741
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1742
  "for different viewports. Requires jQuery."
@@ -1744,35 +1728,35 @@ msgstr ""
1744
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
1745
  "реклама в различни резолюции на екрана. Изисква jQuery."
1746
 
1747
- #: dashboard/publisher/adrotate-ads-edit.php:216
1748
  msgid "Banner image:"
1749
  msgstr "Картинка на банера:"
1750
 
1751
- #: dashboard/publisher/adrotate-ads-edit.php:219
1752
  msgid "Media:"
1753
  msgstr "Медия:"
1754
 
1755
- #: dashboard/publisher/adrotate-ads-edit.php:219
1756
  msgid "Select Banner"
1757
  msgstr "Избор на банер"
1758
 
1759
- #: dashboard/publisher/adrotate-ads-edit.php:221
1760
  msgid "- OR -"
1761
  msgstr "- ИЛИ -"
1762
 
1763
- #: dashboard/publisher/adrotate-ads-edit.php:223
1764
  msgid "Banner folder:"
1765
  msgstr "Папка на банера:"
1766
 
1767
- #: dashboard/publisher/adrotate-ads-edit.php:224
1768
  msgid "No image selected"
1769
  msgstr "Не е избрана картинка"
1770
 
1771
- #: dashboard/publisher/adrotate-ads-edit.php:228
1772
  msgid "Use %image% in the code. Accepted files are:"
1773
  msgstr "Използвайте %image% в кода. Допустимите файлове са:"
1774
 
1775
- #: dashboard/publisher/adrotate-ads-edit.php:228
1776
  msgid ""
1777
  "Use either the text field or the dropdown. If the textfield has content that "
1778
  "field has priority."
@@ -1780,68 +1764,68 @@ msgstr ""
1780
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1781
  "попълнено, то ще бъде с преоритет."
1782
 
1783
- #: dashboard/publisher/adrotate-ads-edit.php:232
1784
  msgid "Weight:"
1785
  msgstr "Тежест:"
1786
 
1787
- #: dashboard/publisher/adrotate-ads-edit.php:232
1788
  msgid "AdRotate Pro only"
1789
  msgstr "Само AdRotate Pro"
1790
 
1791
- #: dashboard/publisher/adrotate-ads-edit.php:235
1792
  msgid "Barely visible"
1793
  msgstr "Почти видимо"
1794
 
1795
- #: dashboard/publisher/adrotate-ads-edit.php:236
1796
  msgid "Less than average"
1797
  msgstr "По-малко от нормалното"
1798
 
1799
- #: dashboard/publisher/adrotate-ads-edit.php:237
1800
  msgid "Normal coverage"
1801
  msgstr "Нормално покритие"
1802
 
1803
- #: dashboard/publisher/adrotate-ads-edit.php:238
1804
  msgid "More than average"
1805
  msgstr "Повече от нормалното"
1806
 
1807
- #: dashboard/publisher/adrotate-ads-edit.php:239
1808
  msgid "Best visibility"
1809
  msgstr "Най-добра видимост"
1810
 
1811
- #: dashboard/publisher/adrotate-ads-edit.php:244
1812
- #: dashboard/publisher/adrotate-groups-edit.php:198
1813
  msgid "Sortorder:"
1814
  msgstr "Сортиране:"
1815
 
1816
- #: dashboard/publisher/adrotate-ads-edit.php:246
1817
- #: dashboard/publisher/adrotate-groups-edit.php:200
1818
  msgid "For administrative purposes set a sortorder."
1819
  msgstr "За административни цели задайте критерий за сортиране."
1820
 
1821
- #: dashboard/publisher/adrotate-ads-edit.php:246
1822
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1823
  msgstr ""
1824
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1825
  "на рекламата по подразбиране."
1826
 
1827
- #: dashboard/publisher/adrotate-ads-edit.php:251
1828
  msgid ""
1829
  "With AdRotate Pro you can also set a weight to give adverts more or less "
1830
  "attention."
1831
  msgstr "С AdRotate Pro можете да задавате тежест при показване на рекламите."
1832
 
1833
- #: dashboard/publisher/adrotate-ads-edit.php:251
1834
- #: dashboard/publisher/adrotate-ads-edit.php:300
1835
- #: dashboard/publisher/adrotate-ads-edit.php:398
1836
- #: dashboard/publisher/adrotate-groups-edit.php:204
1837
  msgid "Upgrade today"
1838
  msgstr "Надградете днес"
1839
 
1840
- #: dashboard/publisher/adrotate-ads-edit.php:253
1841
  msgid "Geo Location in AdRotate Pro"
1842
  msgstr "Геолокация с AdRotate Pro"
1843
 
1844
- #: dashboard/publisher/adrotate-ads-edit.php:254
1845
  msgid ""
1846
  "This works if you assign the advert to a group and enable that group to use "
1847
  "Geo Targeting."
@@ -1849,20 +1833,20 @@ msgstr ""
1849
  "Това работи ако закачите рекламата към група и включите таргетирането по "
1850
  "местоположение за тази група."
1851
 
1852
- #: dashboard/publisher/adrotate-ads-edit.php:258
1853
  msgid "Cities/States:"
1854
  msgstr "Градове/Щати:"
1855
 
1856
- #: dashboard/publisher/adrotate-ads-edit.php:261
1857
- #: dashboard/publisher/adrotate-ads-edit.php:294
1858
  msgid "Usage:"
1859
  msgstr "Употреба:"
1860
 
1861
- #: dashboard/publisher/adrotate-ads-edit.php:262
1862
  msgid "A comma separated list of cities and/or states"
1863
  msgstr "Списък с градове и/или щати, разделен със запетая"
1864
 
1865
- #: dashboard/publisher/adrotate-ads-edit.php:262
1866
  msgid ""
1867
  "AdRotate does not check the validity of names so make sure you spell them "
1868
  "correctly!"
@@ -1870,62 +1854,62 @@ msgstr ""
1870
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1871
  "правилно!"
1872
 
1873
- #: dashboard/publisher/adrotate-ads-edit.php:266
1874
  msgid "Countries:"
1875
  msgstr "Държави:"
1876
 
1877
- #: dashboard/publisher/adrotate-ads-edit.php:295
1878
  msgid "Select the countries you want the adverts to show in."
1879
  msgstr "Изберете страните, в които искате да се показват рекламите."
1880
 
1881
- #: dashboard/publisher/adrotate-ads-edit.php:295
1882
  msgid "Cities take priority and will be filtered first."
1883
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1884
 
1885
- #: dashboard/publisher/adrotate-ads-edit.php:300
1886
  msgid "Target your audience with Geo Location in AdRotate Pro"
1887
  msgstr ""
1888
  "Насочете рекламите си към правилната аудитория с услугата за местоположение "
1889
  "в AdRotate Pro"
1890
 
1891
- #: dashboard/publisher/adrotate-ads-edit.php:320
1892
  msgid "Schedule"
1893
  msgstr "График"
1894
 
1895
- #: dashboard/publisher/adrotate-ads-edit.php:321
1896
  msgid "From when to when is the advert visible?"
1897
  msgstr "От кога до кога да бъде видима тази обява?"
1898
 
1899
- #: dashboard/publisher/adrotate-ads-edit.php:325
1900
  msgid "Start date (day/month/year):"
1901
  msgstr "Начална дата (ден/месец/година):"
1902
 
1903
- #: dashboard/publisher/adrotate-ads-edit.php:346
1904
  msgid "End date (day/month/year):"
1905
  msgstr "Крайна дата (ден/месец/година):"
1906
 
1907
- #: dashboard/publisher/adrotate-ads-edit.php:369
1908
  msgid "Start time (hh:mm):"
1909
  msgstr "Начален час (hh:mm):"
1910
 
1911
- #: dashboard/publisher/adrotate-ads-edit.php:376
1912
  msgid "End time (hh:mm):"
1913
  msgstr "Краен час (hh:mm):"
1914
 
1915
- #: dashboard/publisher/adrotate-ads-edit.php:386
1916
  msgid "Maximum Clicks:"
1917
  msgstr "Максимален брой кликове:"
1918
 
1919
- #: dashboard/publisher/adrotate-ads-edit.php:387
1920
- #: dashboard/publisher/adrotate-ads-edit.php:389
1921
  msgid "Leave empty or 0 to skip this."
1922
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1923
 
1924
- #: dashboard/publisher/adrotate-ads-edit.php:388
1925
  msgid "Maximum Impressions:"
1926
  msgstr "Максимален брой импресии:"
1927
 
1928
- #: dashboard/publisher/adrotate-ads-edit.php:394
1929
  msgid ""
1930
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1931
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1935,7 +1919,7 @@ msgstr ""
1935
  "или краен час след обяд, прибавете 12 часа. Напр. 2PM е 14:00 часа. 6AM e "
1936
  "18:00 часа. "
1937
 
1938
- #: dashboard/publisher/adrotate-ads-edit.php:394
1939
  msgid ""
1940
  "The maximum clicks and impressions are measured over the set schedule only. "
1941
  "Every schedule can have it's own limit!"
@@ -1943,108 +1927,106 @@ msgstr ""
1943
  "Максималния брой кликове и импресии се измерва в рамките на зададеното "
1944
  "време. Всеки график може да има собствен лимит!"
1945
 
1946
- #: dashboard/publisher/adrotate-ads-edit.php:398
1947
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1948
  msgstr "Създайте множество графици за всяка реклама с AdRotate Pro."
1949
 
1950
- #: dashboard/publisher/adrotate-ads-edit.php:400
1951
  msgid "Choose Multiple Schedules in AdRotate Pro"
1952
  msgstr "Изберете множество графици в AdRotate Pro"
1953
 
1954
- #: dashboard/publisher/adrotate-ads-edit.php:401
1955
  msgid "You can add, edit or delete schedules from the"
1956
  msgstr "Можете да триете, добавяте и редактирате графици от"
1957
 
1958
- #: dashboard/publisher/adrotate-ads-edit.php:401
1959
  msgid "dashboard. Save your advert first!"
1960
  msgstr "таблото. Първо запазете рекламата си!"
1961
 
1962
- #: dashboard/publisher/adrotate-ads-edit.php:408
1963
  msgid "From / Until"
1964
  msgstr "От / До"
1965
 
1966
- #: dashboard/publisher/adrotate-ads-edit.php:410
1967
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1968
  #: dashboard/publisher/adrotate-ads-main.php:45
1969
  #: dashboard/publisher/adrotate-ads-report.php:35
1970
- #: dashboard/publisher/adrotate-groups-edit.php:342
1971
  #: dashboard/publisher/adrotate-groups-main.php:37
1972
  #: dashboard/publisher/adrotate-groups-report.php:41
1973
- #: dashboard/server/adrotate-active.php:25
1974
- #: dashboard/server/adrotate-error.php:26
1975
  msgid "Clicks"
1976
  msgstr "Кликове"
1977
 
1978
- #: dashboard/publisher/adrotate-ads-edit.php:411
1979
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1980
  #: dashboard/publisher/adrotate-ads-report.php:34
1981
- #: dashboard/publisher/adrotate-groups-edit.php:341
1982
  #: dashboard/publisher/adrotate-groups-main.php:35
1983
  #: dashboard/publisher/adrotate-groups-report.php:40
1984
  msgid "Impressions"
1985
  msgstr "Импресии"
1986
 
1987
- #: dashboard/publisher/adrotate-ads-edit.php:420
1988
  msgid "impressions per day"
1989
  msgstr "импресии на ден"
1990
 
1991
- #: dashboard/publisher/adrotate-ads-edit.php:436
1992
  msgid "In use by this advert."
1993
  msgstr "Използва се с тази реклама."
1994
 
1995
- #: dashboard/publisher/adrotate-ads-edit.php:447
1996
  msgid "Select Groups"
1997
  msgstr "Избор на групи"
1998
 
1999
- #: dashboard/publisher/adrotate-ads-edit.php:448
2000
  msgid "Optionally select the group(s) this ad belongs to."
2001
  msgstr "По желание - изберете групата(ите) към които принадлежи рекламата."
2002
 
2003
- #: dashboard/publisher/adrotate-ads-edit.php:453
2004
  msgid "ID - Name"
2005
  msgstr "ID - Име"
2006
 
2007
- #: dashboard/publisher/adrotate-ads-edit.php:454
2008
  msgid "Ads in group"
2009
  msgstr "Реклами в група"
2010
 
2011
- #: dashboard/publisher/adrotate-ads-edit.php:463
2012
  #: dashboard/publisher/adrotate-groups-main.php:58
2013
  msgid "Default"
2014
  msgstr "По подразбиране"
2015
 
2016
- #: dashboard/publisher/adrotate-ads-edit.php:464
2017
  #: dashboard/publisher/adrotate-groups-main.php:59
2018
  msgid "Dynamic"
2019
  msgstr "Динамично"
2020
 
2021
- #: dashboard/publisher/adrotate-ads-edit.php:464
2022
  #: dashboard/publisher/adrotate-groups-main.php:59
2023
  msgid "second rotation"
2024
  msgstr "второ завъртане"
2025
 
2026
- #: dashboard/publisher/adrotate-ads-edit.php:465
2027
  #: dashboard/publisher/adrotate-groups-main.php:60
2028
  msgid "Block"
2029
  msgstr "Блок"
2030
 
2031
- #: dashboard/publisher/adrotate-ads-edit.php:465
2032
  #: dashboard/publisher/adrotate-groups-main.php:60
2033
  msgid "grid"
2034
  msgstr "решетка"
2035
 
2036
- #: dashboard/publisher/adrotate-ads-edit.php:466
2037
- #: dashboard/publisher/adrotate-groups-edit.php:206
2038
  #: dashboard/publisher/adrotate-groups-main.php:61
2039
  msgid "Post Injection"
2040
  msgstr "Вмъкване в публикации"
2041
 
2042
- #: dashboard/publisher/adrotate-ads-edit.php:467
2043
  #: dashboard/publisher/adrotate-groups-main.php:62
2044
  msgid "Geolocation"
2045
  msgstr "Геолокация"
2046
 
2047
- #: dashboard/publisher/adrotate-ads-edit.php:473
2048
  #: dashboard/publisher/adrotate-groups-edit.php:62
2049
  #: dashboard/publisher/adrotate-groups-main.php:69
2050
  msgid "Mode"
@@ -2067,15 +2049,12 @@ msgstr "Нулиране на статистиката"
2067
  #: dashboard/publisher/adrotate-ads-main-disabled.php:36
2068
  #: dashboard/publisher/adrotate-ads-main-error.php:40
2069
  #: dashboard/publisher/adrotate-ads-main.php:40
2070
- #: dashboard/server/adrotate-active.php:20
2071
  msgid "Start / End"
2072
  msgstr "Начало / Край"
2073
 
2074
  #: dashboard/publisher/adrotate-ads-main-disabled.php:37
2075
  #: dashboard/publisher/adrotate-ads-main-error.php:41
2076
  #: dashboard/publisher/adrotate-ads-main.php:41
2077
- #: dashboard/server/adrotate-active.php:21
2078
- #: dashboard/server/adrotate-error.php:22
2079
  msgid "Title"
2080
  msgstr "Заглавие"
2081
 
@@ -2083,8 +2062,6 @@ msgstr "Заглавие"
2083
  #: dashboard/publisher/adrotate-ads-main.php:47
2084
  #: dashboard/publisher/adrotate-ads-report.php:38
2085
  #: dashboard/publisher/adrotate-groups-report.php:44
2086
- #: dashboard/server/adrotate-active.php:27
2087
- #: dashboard/server/adrotate-error.php:28
2088
  msgid "CTR"
2089
  msgstr "CTR"
2090
 
@@ -2141,7 +2118,7 @@ msgid "For 7 days"
2141
  msgstr "За 7 дни"
2142
 
2143
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2144
- #: dashboard/publisher/adrotate-groups-edit.php:384
2145
  msgid "Configuration errors."
2146
  msgstr "Грешки при конфигурирането."
2147
 
@@ -2154,15 +2131,11 @@ msgid "Export to XML"
2154
  msgstr "Експорт в XML"
2155
 
2156
  #: dashboard/publisher/adrotate-ads-main.php:42
2157
- #: dashboard/publisher/adrotate-groups-edit.php:343
2158
- #: dashboard/server/adrotate-active.php:22
2159
- #: dashboard/server/adrotate-error.php:23
2160
  msgid "Weight"
2161
  msgstr "Тежест"
2162
 
2163
  #: dashboard/publisher/adrotate-ads-main.php:43
2164
- #: dashboard/server/adrotate-active.php:23
2165
- #: dashboard/server/adrotate-error.php:24
2166
  msgid "Shown"
2167
  msgstr "Показана"
2168
 
@@ -2170,10 +2143,6 @@ msgstr "Показана"
2170
  #: dashboard/publisher/adrotate-ads-main.php:46
2171
  #: dashboard/publisher/adrotate-groups-main.php:36
2172
  #: dashboard/publisher/adrotate-groups-main.php:38
2173
- #: dashboard/server/adrotate-active.php:24
2174
- #: dashboard/server/adrotate-active.php:26
2175
- #: dashboard/server/adrotate-error.php:25
2176
- #: dashboard/server/adrotate-error.php:27
2177
  msgid "Today"
2178
  msgstr "Днес"
2179
 
@@ -2323,8 +2292,8 @@ msgstr ""
2323
  "страницата. По подразбиране: 6."
2324
 
2325
  #: dashboard/publisher/adrotate-groups-edit.php:181
2326
- #: dashboard/publisher/adrotate-groups-edit.php:308
2327
- #: dashboard/publisher/adrotate-groups-edit.php:390
2328
  msgid "Save Group"
2329
  msgstr "Запис на групата"
2330
 
@@ -2344,154 +2313,180 @@ msgstr "Прозрачна зона около рекламата, в пиксе
2344
  msgid "Set to 0 to disable."
2345
  msgstr "Въведете 0 за деактивация."
2346
 
2347
- #: dashboard/publisher/adrotate-groups-edit.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2348
  msgid "Leave empty or 0 to skip this. Will default to group id."
2349
  msgstr ""
2350
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
2351
  "на групата."
2352
 
2353
- #: dashboard/publisher/adrotate-groups-edit.php:204
2354
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2355
  msgstr ""
2356
  "Задайте резервна група и използвайте услуга за местоположение с AdRotate Pro"
2357
 
2358
- #: dashboard/publisher/adrotate-groups-edit.php:207
2359
  msgid "Insert ads to the begin or end of a post/page."
2360
  msgstr "Вмъкване на реклами в началото или в края на публикация/страница."
2361
 
2362
- #: dashboard/publisher/adrotate-groups-edit.php:210
2363
  msgid "Include ads in categories?"
2364
  msgstr "Включване на реклами в категориите?"
2365
 
2366
- #: dashboard/publisher/adrotate-groups-edit.php:214
2367
- #: dashboard/publisher/adrotate-groups-edit.php:255
2368
  msgid "Disabled"
2369
  msgstr "Изключено"
2370
 
2371
- #: dashboard/publisher/adrotate-groups-edit.php:215
2372
- #: dashboard/publisher/adrotate-groups-edit.php:256
2373
  msgid "Before content"
2374
  msgstr "Преди съдържанието"
2375
 
2376
- #: dashboard/publisher/adrotate-groups-edit.php:216
2377
- #: dashboard/publisher/adrotate-groups-edit.php:257
2378
  msgid "After content"
2379
  msgstr "След съдържанието"
2380
 
2381
- #: dashboard/publisher/adrotate-groups-edit.php:217
2382
- #: dashboard/publisher/adrotate-groups-edit.php:258
2383
  msgid "Before and after content"
2384
  msgstr "Преди и след съдържанието"
2385
 
2386
- #: dashboard/publisher/adrotate-groups-edit.php:218
2387
- #: dashboard/publisher/adrotate-groups-edit.php:259
2388
  msgid "After..."
2389
  msgstr "След..."
2390
 
2391
- #: dashboard/publisher/adrotate-groups-edit.php:224
2392
- #: dashboard/publisher/adrotate-groups-edit.php:265
2393
  msgid "the first paragraph"
2394
  msgstr "първия параграф"
2395
 
2396
- #: dashboard/publisher/adrotate-groups-edit.php:225
2397
- #: dashboard/publisher/adrotate-groups-edit.php:266
2398
  msgid "the 2nd paragraph"
2399
  msgstr "2-рия параграф"
2400
 
2401
- #: dashboard/publisher/adrotate-groups-edit.php:226
2402
- #: dashboard/publisher/adrotate-groups-edit.php:267
2403
  msgid "the 3rd paragraph"
2404
  msgstr "3-тия параграф"
2405
 
2406
- #: dashboard/publisher/adrotate-groups-edit.php:227
2407
- #: dashboard/publisher/adrotate-groups-edit.php:268
2408
  msgid "the 4th paragraph"
2409
  msgstr "4-тия параграф"
2410
 
2411
- #: dashboard/publisher/adrotate-groups-edit.php:229
2412
- #: dashboard/publisher/adrotate-groups-edit.php:270
2413
  msgid "every 2nd paragraph"
2414
  msgstr "всеки 2-ри параграф"
2415
 
2416
- #: dashboard/publisher/adrotate-groups-edit.php:230
2417
- #: dashboard/publisher/adrotate-groups-edit.php:271
2418
  msgid "every 3rd paragraph"
2419
  msgstr "всеки 3-ти параграф"
2420
 
2421
- #: dashboard/publisher/adrotate-groups-edit.php:231
2422
- #: dashboard/publisher/adrotate-groups-edit.php:272
2423
  msgid "every 4th paragraph"
2424
  msgstr "всеки 4-ти параграф"
2425
 
2426
- #: dashboard/publisher/adrotate-groups-edit.php:232
2427
- #: dashboard/publisher/adrotate-groups-edit.php:273
2428
  msgid "every 5th paragraph"
2429
  msgstr "всеки 5-ти параграф"
2430
 
2431
- #: dashboard/publisher/adrotate-groups-edit.php:233
2432
- #: dashboard/publisher/adrotate-groups-edit.php:274
2433
  msgid "every 6th paragraph"
2434
  msgstr "всеки 6-ти параграф"
2435
 
2436
- #: dashboard/publisher/adrotate-groups-edit.php:234
2437
- #: dashboard/publisher/adrotate-groups-edit.php:275
2438
  msgid "every 7th paragraph"
2439
  msgstr "всеки 7-ми параграф"
2440
 
2441
- #: dashboard/publisher/adrotate-groups-edit.php:235
2442
- #: dashboard/publisher/adrotate-groups-edit.php:276
2443
  msgid "every 8th paragraph"
2444
  msgstr "всеки 8-ми параграф"
2445
 
2446
- #: dashboard/publisher/adrotate-groups-edit.php:241
2447
  msgid "Which categories?"
2448
  msgstr "Кои категории?"
2449
 
2450
- #: dashboard/publisher/adrotate-groups-edit.php:246
2451
  msgid "Click the categories posts you want the adverts to show in."
2452
  msgstr "Изберете категориите, на които искате да се показват рекламите."
2453
 
2454
- #: dashboard/publisher/adrotate-groups-edit.php:251
2455
  msgid "Include ads in pages?"
2456
  msgstr "Включване на реклами в страниците?"
2457
 
2458
- #: dashboard/publisher/adrotate-groups-edit.php:282
2459
  msgid "Which pages?"
2460
  msgstr "Кои страници?"
2461
 
2462
- #: dashboard/publisher/adrotate-groups-edit.php:287
2463
  msgid "Click the pages you want the adverts to show in."
2464
  msgstr "Изберете страниците, на които искате да се показват рекламите."
2465
 
2466
- #: dashboard/publisher/adrotate-groups-edit.php:312
2467
  msgid "Wrapper code"
2468
  msgstr "Код за обвивката"
2469
 
2470
- #: dashboard/publisher/adrotate-groups-edit.php:313
2471
  msgid "Wraps around each ad."
2472
  msgstr "Обвивка около всяка реклама."
2473
 
2474
- #: dashboard/publisher/adrotate-groups-edit.php:317
2475
  msgid "Before ad"
2476
  msgstr "Преди реклама"
2477
 
2478
- #: dashboard/publisher/adrotate-groups-edit.php:322
2479
  msgid "HTML/JavaScript allowed, use with care!"
2480
  msgstr "HTML/JavaScript са позволени, използвайте внимателно!"
2481
 
2482
- #: dashboard/publisher/adrotate-groups-edit.php:326
2483
  msgid "After ad"
2484
  msgstr "След реклама"
2485
 
2486
- #: dashboard/publisher/adrotate-groups-edit.php:335
2487
  msgid "Select Ads"
2488
  msgstr "Избор на реклами"
2489
 
2490
- #: dashboard/publisher/adrotate-groups-edit.php:344
2491
  msgid "Visible until"
2492
  msgstr "Да се вижда до"
2493
 
2494
- #: dashboard/publisher/adrotate-groups-edit.php:377
2495
  msgid "No ads created!"
2496
  msgstr "Няма създадени реклами!"
2497
 
@@ -2523,125 +2518,153 @@ msgstr "Няма създадени групи!"
2523
  msgid "Statistics for group"
2524
  msgstr "Статистика за групи"
2525
 
2526
- #: dashboard/server/adrotate-active.php:12
2527
- msgid "Adverts received from server"
2528
- msgstr "Реклами получени от сървър"
2529
 
2530
- #: dashboard/server/adrotate-active.php:13
2531
- msgid ""
2532
- "These adverts are circulating in the pool of active adverts, served from "
2533
- "AdRotate server."
2534
- msgstr ""
2535
- "Тези реклами циркулират в басейна с активни реклами, предоставен от сървъра "
2536
- "на AdRotate."
2537
 
2538
- #: dashboard/server/adrotate-active.php:19
2539
- msgid "Added / Updated"
2540
- msgstr "Добавени / Качени"
2541
 
2542
- #: dashboard/server/adrotate-active.php:74
2543
- #: dashboard/server/adrotate-error.php:76
2544
- msgid "No ads received yet!"
2545
- msgstr "Все още няма получени реклами!"
2546
 
2547
- #: dashboard/server/adrotate-error.php:12
2548
- msgid "Erroneous ads from server"
2549
- msgstr "Реклами от сървъра с проблеми"
2550
 
2551
- #: dashboard/server/adrotate-error.php:13
2552
- msgid "Adverts served from AdRotate server but having some issues."
2553
- msgstr "Реклами с проблеми, предоставени от сървъра на AdBlock."
2554
 
2555
- #: dashboard/server/adrotate-error.php:19
2556
- msgid "Updated"
2557
- msgstr "Обновен"
2558
 
2559
- #: dashboard/server/adrotate-error.php:20
2560
- msgid "Show from"
2561
- msgstr "Покажи от"
2562
 
2563
- #: dashboard/server/adrotate-error.php:21
2564
- msgid "Show until"
2565
- msgstr "Покажи до"
 
 
 
2566
 
2567
- #: dashboard/server/adrotate-settings.php:15
2568
- msgid "AdRotate Server Settings"
2569
- msgstr "Настройки на сървъра на AdRotate"
2570
 
2571
- #: dashboard/server/adrotate-settings.php:21
2572
- msgid ""
2573
- "Link this website to an AdRotate server so your adverts and stats are "
2574
- "synchronised regularly."
2575
- msgstr ""
2576
- "Свържете този сайт със сървър на AdRotate, за да може рекламите и "
2577
- "статистиката Ви да бъдат редовно синхронизирани."
2578
 
2579
- #: dashboard/server/adrotate-settings.php:24
2580
- msgid "Status"
2581
- msgstr "Статус"
2582
 
2583
- #: dashboard/server/adrotate-settings.php:27
2584
- msgid "Linked - Adverts can be synced."
2585
- msgstr "Свързани - Рекламите могат да се синхронизират."
2586
 
2587
- #: dashboard/server/adrotate-settings.php:27
2588
- msgid "Not linked - No adverts will be synced."
2589
- msgstr "Не е свързан - рекламите няма да се синхронизират."
2590
 
2591
- #: dashboard/server/adrotate-settings.php:40
2592
- msgid "Server Key"
2593
- msgstr "Ключ за сървъра"
2594
 
2595
- #: dashboard/server/adrotate-settings.php:41
2596
- msgid ""
2597
- "You can get your server key from your AdRotate Server installation or the "
2598
- "AdRollr website."
2599
- msgstr ""
2600
- "Можете да получите свой Ключ за сървър от инсталацията на AdRotate Server "
2601
- "или от сайта на AdRollr."
2602
 
2603
- #: dashboard/server/adrotate-settings.php:41
2604
- msgid ""
2605
- "You should not share your key with anyone you do not trust. Treat this key "
2606
- "as a password!"
2607
- msgstr ""
2608
- "Не трябва да споделяте ключа си с никой. Приемайте този ключ като парола!"
2609
 
2610
- #: dashboard/server/adrotate-settings.php:44
2611
- msgid "Make this site a puppet"
2612
- msgstr "Направете този сайт марионетка"
2613
 
2614
- #: dashboard/server/adrotate-settings.php:46
2615
- msgid "Have AdRotate use AdRotate Server adverts exclusively."
2616
- msgstr "Накарайте AdRotate да използва ексклузивни реклами от AdRotate Server."
2617
 
2618
- #: dashboard/server/adrotate-settings.php:46
2619
- msgid ""
2620
- "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this "
2621
- "installation of AdRotate a puppet for your AdRotate Server."
2622
- msgstr ""
2623
- "Включването на тази опция ще ИЗКЛЮЧИ ЦЯЛОТО ЛОКАЛНО УПРАВЛЕНИЕ и ще направи "
2624
- "тази инсталация на AdRotate подвласна на вашия AdRotate Server."
2625
 
2626
- #: dashboard/server/adrotate-settings.php:50
2627
- msgid "Hide Server Details"
2628
- msgstr "Скриване на детайли за сървъра"
2629
 
2630
- #: dashboard/server/adrotate-settings.php:52
2631
- msgid ""
2632
- "If you have installed AdRotate Pro for a client or in a Multisite network "
2633
- "and want to hide the server details from your users or client."
2634
- msgstr ""
2635
- "Ако сте инсталирали AdRotate Pro за клиент или в Мултисайт режим и искате да "
2636
- "скриете детайлите за сървъра от клиентите или потребителите."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2637
 
2638
- #: dashboard/server/adrotate-settings.php:60
2639
- msgid "Link to server"
2640
- msgstr "Свързване със сървър"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2641
 
2642
- #: dashboard/server/adrotate-settings.php:62
2643
- msgid "Unlink from server"
2644
- msgstr "Прекъсване на връзката със сървъра"
2645
 
2646
  #~ msgid "Block of Ads (Obsolete)"
2647
  #~ msgstr "Блок с реклами (Извън употреба)"
@@ -2704,10 +2727,6 @@ msgstr "Прекъсване на връзката със сървъра"
2704
  #~ msgid "Enter the target URL for your advert here."
2705
  #~ msgstr "Въведете URL адреса за вашата реклама тук:"
2706
 
2707
- #, fuzzy
2708
- #~ msgid "Clean Trackerdata next run:"
2709
- #~ msgstr "Изчистване на Trackerdata при следващо стартиране:"
2710
-
2711
  #~ msgid "Buy"
2712
  #~ msgstr "Купи"
2713
 
@@ -2722,9 +2741,6 @@ msgstr "Прекъсване на връзката със сървъра"
2722
  #~ msgid "Check out the"
2723
  #~ msgstr "Прегледайте"
2724
 
2725
- #~ msgid "manuals"
2726
- #~ msgstr "ръководства"
2727
-
2728
  #~ msgid "and have the most popular features explained."
2729
  #~ msgstr "за да видите обяснения на най-популярните функции."
2730
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
+ #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
38
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
39
  "си."
40
 
41
+ #: adrotate-output.php:749
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
46
 
47
+ #: adrotate-output.php:750
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
+ #: adrotate-output.php:768
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
56
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
57
  "геолокацията или не съществува!"
58
 
59
+ #: adrotate-output.php:770
60
  msgid ""
61
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "restrictions!"
63
  msgstr ""
64
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
65
 
66
+ #: adrotate-output.php:777 adrotate-output.php:779
67
  msgid ""
68
  "Either there are no banners, they are disabled or none qualified for this "
69
  "location!"
70
  msgstr ""
71
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
72
 
73
+ #: adrotate-output.php:785
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
+ #: adrotate-output.php:791
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
+ #: adrotate-output.php:796
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
+ #: adrotate-output.php:802
86
  msgid ""
87
  "There was an error locating the database tables for AdRotate. Please "
88
  "deactivate and re-activate AdRotate from the plugin page!!"
90
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
91
  "изключете и включете наново AdRotate от страницата с плъгините!!"
92
 
93
+ #: adrotate-output.php:802
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
+ #: adrotate-output.php:808
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
+ #: adrotate-output.php:834
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
+ #: adrotate-output.php:834
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
+ #: adrotate-output.php:836
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
+ #: adrotate-output.php:836
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
+ #: adrotate-output.php:838
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
+ #: adrotate-output.php:838
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
+ #: adrotate-output.php:840
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
+ #: adrotate-output.php:840
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
+ #: adrotate-output.php:840
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
+ #: adrotate-output.php:840
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
+ #: adrotate-output.php:853
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
+ #: adrotate-output.php:855
146
  msgid ""
147
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
148
  "to the <strong>PRO</strong> version"
150
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
151
  "до <strong>PRO</strong> версията"
152
 
153
+ #: adrotate-output.php:856
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
+ #: adrotate-output.php:856
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
+ #: adrotate-output.php:896
163
+ msgid ""
164
+ "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
165
+ "Pro is in this menu. Check out the"
166
+ msgstr ""
167
+
168
+ #: adrotate-output.php:896
169
+ msgid "manuals"
170
+ msgstr "ръководства"
171
+
172
+ #: adrotate-output.php:896 adrotate-output.php:973
173
+ #: dashboard/publisher/adrotate-ads-edit.php:229
174
+ msgid "and"
175
+ msgstr "и"
176
+
177
+ #: adrotate-output.php:896
178
+ msgid "forums"
179
+ msgstr ""
180
+
181
+ #: adrotate-output.php:932
182
  msgid "Useful Links"
183
  msgstr "Полезни връзки"
184
 
185
+ #: adrotate-output.php:933
186
  msgid "Useful links to learn more about AdRotate"
187
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
188
 
189
+ #: adrotate-output.php:935
190
+ msgid "AdRotate Page"
191
+ msgstr ""
192
 
193
+ #: adrotate-output.php:936
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Започнете от нулата с AdRotate Pro"
196
 
197
+ #: adrotate-output.php:937
198
+ msgid "AdRotate manuals"
199
+ msgstr ""
200
 
201
+ #: adrotate-output.php:938
202
  msgid "AdRotate Support Forum"
203
  msgstr "Форум за поддръжка на AdRotate"
204
 
205
+ #: adrotate-output.php:939
206
  msgid "WordPress.org Forum"
207
  msgstr "WordPress.org форум"
208
 
209
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  msgid "Help AdRotate Grow"
211
  msgstr "Помогнете за развитието на AdRotate"
212
 
213
+ #: adrotate-output.php:966
214
  msgid "Brought to you by"
215
  msgstr "Достига до Вас благодарение на"
216
 
217
+ #: adrotate-output.php:973
218
  msgid ""
219
  "A lot of users only think to review AdRotate when something goes wrong while "
220
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
223
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
224
  "това да остане незабелязано."
225
 
226
+ #: adrotate-output.php:973
227
  msgid "If you find AdRotate useful please leave your honest"
228
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
229
 
230
+ #: adrotate-output.php:973
231
  msgid "rating"
232
  msgstr "оценка"
233
 
234
+ #: adrotate-output.php:973
 
 
 
 
235
  msgid "review"
236
  msgstr "мнение"
237
 
238
+ #: adrotate-output.php:973
239
  msgid "on WordPress.org to help AdRotate grow in a positive way"
240
  msgstr "на WordPress.org, за да се развива AdRotate"
241
 
242
+ #: adrotate-output.php:976
243
  msgid ""
244
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
245
  "out more about what I can do for you!"
247
  "Мястото, където да се консултирате и/или да поръчате разработка за "
248
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
249
 
250
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
251
  msgid "Visit the"
252
  msgstr "Посетете"
253
 
254
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
255
  msgid "website"
256
  msgstr "уебсайт"
257
 
258
+ #: adrotate-output.php:1006
259
  msgid "Available in AdRotate Pro"
260
  msgstr "Налично в AdRotate Pro"
261
 
262
+ #: adrotate-output.php:1006
263
  msgid "More information..."
264
  msgstr "Повече информация..."
265
 
266
+ #: adrotate-output.php:1007
267
  msgid "This feature is available in AdRotate Pro"
268
  msgstr "Тази функционалност е налична в AdRotate Pro"
269
 
270
+ #: adrotate-output.php:1007
271
  msgid "Learn more"
272
  msgstr "Повече информация"
273
 
274
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
275
+ #: dashboard/publisher/adrotate-ads-edit.php:352
276
  msgid "January"
277
  msgstr "Януари"
278
 
279
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
280
+ #: dashboard/publisher/adrotate-ads-edit.php:353
281
  msgid "February"
282
  msgstr "Февруари"
283
 
284
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
285
+ #: dashboard/publisher/adrotate-ads-edit.php:354
286
  msgid "March"
287
  msgstr "Март"
288
 
289
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
290
+ #: dashboard/publisher/adrotate-ads-edit.php:355
291
  msgid "April"
292
  msgstr "Април"
293
 
294
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
295
+ #: dashboard/publisher/adrotate-ads-edit.php:356
296
  msgid "May"
297
  msgstr "Май"
298
 
299
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
300
+ #: dashboard/publisher/adrotate-ads-edit.php:357
301
  msgid "June"
302
  msgstr "Юни"
303
 
304
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
305
+ #: dashboard/publisher/adrotate-ads-edit.php:358
306
  msgid "July"
307
  msgstr "Юли"
308
 
309
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
310
+ #: dashboard/publisher/adrotate-ads-edit.php:359
311
  msgid "August"
312
  msgstr "Август"
313
 
314
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
315
+ #: dashboard/publisher/adrotate-ads-edit.php:360
316
  msgid "September"
317
  msgstr "Септември"
318
 
319
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
320
+ #: dashboard/publisher/adrotate-ads-edit.php:361
321
  msgid "October"
322
  msgstr "Октомври"
323
 
324
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
325
+ #: dashboard/publisher/adrotate-ads-edit.php:362
326
  msgid "November"
327
  msgstr "Ноември"
328
 
329
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
330
+ #: dashboard/publisher/adrotate-ads-edit.php:363
331
  msgid "December"
332
  msgstr "Декември"
333
 
347
  msgid "No data to show!"
348
  msgstr "Няма информация!"
349
 
350
+ #: adrotate-widget.php:116
351
  msgid "Title (optional):"
352
  msgstr "Заглавие (не е задължително):"
353
 
354
+ #: adrotate-widget.php:119
355
  msgid "HTML will be stripped out."
356
  msgstr "HTML тагове не се поддържат."
357
 
358
+ #: adrotate-widget.php:122
359
  msgid "Description (optional):"
360
  msgstr "Описание (не е задължително):"
361
 
362
+ #: adrotate-widget.php:125
363
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
364
  msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
365
 
366
+ #: adrotate-widget.php:128
367
  msgid "Type:"
368
  msgstr "Тип:"
369
 
370
+ #: adrotate-widget.php:130
371
  msgid "Single Ad - Use Ad ID"
372
  msgstr "Единична реклама - Използване на ID на рекламата"
373
 
374
+ #: adrotate-widget.php:131
375
  msgid "Group of Ads - Use group ID"
376
  msgstr "Група реклами - Използване на ID на групата"
377
 
378
+ #: adrotate-widget.php:134
379
  msgid "Choose what you want to use this widget for"
380
  msgstr "Изберете за какво иската да използвате тази джаджа"
381
 
382
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
383
  msgid "ID:"
384
  msgstr "ID:"
385
 
386
+ #: adrotate-widget.php:140
387
  msgid "Fill in the ID of the type you want to display!"
388
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
389
 
390
+ #: adrotate.php:108
391
  msgid "General Info"
392
  msgstr "Обща информация"
393
 
394
+ #: adrotate.php:109
395
  msgid "AdRotate Pro"
396
  msgstr "AdRotate Pro"
397
 
399
  msgid "Manage Ads"
400
  msgstr "Управление на реклами"
401
 
402
+ #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
403
  msgid "Manage Groups"
404
  msgstr "Управление на групи"
405
 
406
+ #: adrotate.php:112 adrotate.php:441
407
+ #: dashboard/publisher/adrotate-ads-edit.php:402
408
  msgid "Manage Schedules"
409
  msgstr "Управление на графици"
410
 
411
+ #: adrotate.php:113
412
  msgid "Manage Media"
413
  msgstr "Управление на Медия"
414
 
415
+ #: adrotate.php:114
416
  msgid "Settings"
417
  msgstr "Настройки"
418
 
419
+ #: adrotate.php:137
420
  msgid "AdRotate Info"
421
  msgstr "AdRotate Info"
422
 
423
+ #: adrotate.php:158
424
  msgid "AdRotate Professional"
425
  msgstr "AdRotate Professional"
426
 
427
+ #: adrotate.php:201
428
  msgid "Ad Management"
429
  msgstr "Управление на реклами"
430
 
431
+ #: adrotate.php:204
432
  msgid "Ad created"
433
  msgstr "Рекламата е създадена"
434
 
435
+ #: adrotate.php:206
436
  msgid "Ad updated"
437
  msgstr "Рекламата е обновена"
438
 
439
+ #: adrotate.php:208
440
  msgid "Ad(s) deleted"
441
  msgstr "Успешно изтриване"
442
 
443
+ #: adrotate.php:210
444
  msgid "Ad(s) statistics reset"
445
  msgstr "Статистиката е нулирана"
446
 
447
+ #: adrotate.php:212
448
  msgid "Ad(s) renewed"
449
  msgstr "Успешно подновяване"
450
 
451
+ #: adrotate.php:214
452
  msgid "Ad(s) deactivated"
453
  msgstr "Успешно деактивиране"
454
 
455
+ #: adrotate.php:216
456
  msgid "Ad(s) activated"
457
  msgstr "Успешно активиране"
458
 
459
+ #: adrotate.php:218
460
  msgid ""
461
  "The ad was saved but has an issue which might prevent it from working "
462
  "properly. Review the yellow marked ad."
464
  "Рекламата е запазена, но има проблеми, които могат да ѝ попречат да работи "
465
  "нормално. Прегледайте рекламата маркирана в жълто."
466
 
467
+ #: adrotate.php:220
468
  msgid "Export created"
469
  msgstr "Експорта е завършен"
470
 
471
+ #: adrotate.php:224
472
  msgid "Action prohibited"
473
  msgstr "Забранено действие"
474
 
475
+ #: adrotate.php:226 adrotate.php:374
476
  msgid "No data found in selected time period"
477
  msgstr "Не е намерена информация за избрания период"
478
 
479
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
480
  msgid "Manage"
481
  msgstr "Управление"
482
 
483
+ #: adrotate.php:285 adrotate.php:381 adrotate.php:437
484
  msgid "Add New"
485
  msgstr "Добавяне"
486
 
487
+ #: adrotate.php:363
488
  msgid "Group Management"
489
  msgstr "Управление на групи"
490
 
491
+ #: adrotate.php:366
492
  msgid "Group created"
493
  msgstr "Групата е създадена"
494
 
495
+ #: adrotate.php:368
496
  msgid "Group updated"
497
  msgstr "Групата е обновена"
498
 
499
+ #: adrotate.php:370
500
  msgid "Group deleted"
501
  msgstr "Групата е изтрита"
502
 
503
+ #: adrotate.php:372
504
  msgid "Group including it's Ads deleted"
505
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
506
 
507
+ #: adrotate.php:432
508
  msgid "Schedule Management available in AdRotate Pro"
509
  msgstr "Управление с графици е налично в AdRotate Pro"
510
 
511
+ #: adrotate.php:442
512
  msgid ""
513
  "Schedule management and multiple schedules per advert is available in "
514
  "AdRotate Pro."
516
  "Управлението на графици и множество графици за една реклама са налични в "
517
  "AdRotate Pro."
518
 
519
+ #: adrotate.php:442 adrotate.php:529
520
+ #: dashboard/publisher/adrotate-ads-edit.php:145
521
  #: dashboard/publisher/adrotate-ads-main.php:108
522
  #: dashboard/publisher/adrotate-groups-edit.php:76
523
  #: dashboard/publisher/adrotate-groups-main.php:87
524
  msgid "More information"
525
  msgstr "Повече информация"
526
 
527
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
528
  #: dashboard/publisher/adrotate-ads-main-error.php:19
529
  #: dashboard/publisher/adrotate-ads-main.php:20
530
  #: dashboard/publisher/adrotate-groups-main.php:20
531
  msgid "Bulk Actions"
532
  msgstr "Масови действия"
533
 
534
+ #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
535
  #: dashboard/publisher/adrotate-ads-main-error.php:29
536
  #: dashboard/publisher/adrotate-ads-main.php:30
537
  #: dashboard/publisher/adrotate-groups-main.php:24
538
  msgid "Go"
539
  msgstr "Напред"
540
 
541
+ #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
542
  #: dashboard/publisher/adrotate-ads-main-disabled.php:35
543
  #: dashboard/publisher/adrotate-ads-main-error.php:39
544
  #: dashboard/publisher/adrotate-ads-main.php:39
545
  #: dashboard/publisher/adrotate-groups-main.php:32
 
 
546
  msgid "ID"
547
  msgstr "ID"
548
 
549
+ #: adrotate.php:460
550
  msgid "Start"
551
  msgstr "Начало"
552
 
553
+ #: adrotate.php:460
554
  msgid "End"
555
  msgstr "Край"
556
 
557
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
558
  #: dashboard/publisher/adrotate-groups-main.php:34
559
  msgid "Ads"
560
  msgstr "Реклами"
561
 
562
+ #: adrotate.php:463
563
  msgid "Max Clicks"
564
  msgstr "Максимум кликове"
565
 
566
+ #: adrotate.php:464
567
  msgid "Max Impressions"
568
  msgstr "Максимум импресии"
569
 
570
+ #: adrotate.php:494
571
  msgid "No schedules created yet!"
572
  msgstr "Все още няма създадени графици!"
573
 
574
+ #: adrotate.php:499
575
  msgid "Easily manage your schedules from here with AdRotate Pro."
576
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
577
 
578
+ #: adrotate.php:499 adrotate.php:562
579
  msgid "Upgrade today!"
580
  msgstr "Надградете днес!"
581
 
582
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
583
  #: dashboard/publisher/adrotate-ads-main-error.php:74
584
+ #: dashboard/publisher/adrotate-groups-edit.php:399
585
  msgid "Expires soon."
586
  msgstr "Изтича скоро."
587
 
588
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
589
+ #: dashboard/publisher/adrotate-groups-edit.php:400
590
  msgid "Has expired."
591
  msgstr "Изтекла."
592
 
593
+ #: adrotate.php:527
594
  msgid "Media Management available in AdRotate Pro"
595
  msgstr "Управление на медия е налично в AdRotate Pro"
596
 
597
+ #: adrotate.php:529
598
  msgid ""
599
  "Upload images to the AdRotate Pro banners folder from here. This is "
600
  "especially useful if you use responsive adverts with multiple images."
602
  "Качете картинки в папката за банери на AdRotate Pro от тук. Това е особено "
603
  "полезно, ако използвате responsive реклами с няколко картинки."
604
 
605
+ #: adrotate.php:529
606
  msgid "Media uploading and management is available in AdRotate Pro."
607
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
608
 
609
+ #: adrotate.php:531
610
  msgid "Upload new banner image"
611
  msgstr "Качване на нова картинка на банера"
612
 
613
+ #: adrotate.php:532
614
  msgid "Accepted files are:"
615
  msgstr "Приемат се следните файлове:"
616
 
617
+ #: adrotate.php:532
618
  msgid "Maximum size is 512Kb."
619
  msgstr "Максималния размер е 512Kb."
620
 
621
+ #: adrotate.php:532
622
  msgid "Important:"
623
  msgstr "Важно:"
624
 
625
+ #: adrotate.php:532
626
  msgid ""
627
  "Make sure your file has no spaces or special characters in the name. Replace "
628
  "spaces with a - or _."
630
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
631
  "интервалите с - или _."
632
 
633
+ #: adrotate.php:534
634
  msgid ""
635
  "For responsive adverts make sure the filename is in the following format; "
636
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
639
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
640
  "е строго препоръчителен."
641
 
642
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
643
  msgid ""
644
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
645
  "filename instead of \".full\" for the various viewports."
648
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
649
  "файловете, вместо \".full\"."
650
 
651
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
652
+ #: dashboard/publisher/adrotate-groups-edit.php:334
653
+ #: dashboard/publisher/adrotate-groups-edit.php:343
654
  msgid "Example:"
655
  msgstr "Пример:"
656
 
657
+ #: adrotate.php:536
658
  msgid ""
659
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
660
  "for different viewports."
662
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
663
  "реклама в различни резолюции на екрана."
664
 
665
+ #: adrotate.php:540
666
  msgid "Upload image"
667
  msgstr "Качването на картинка"
668
 
669
+ #: adrotate.php:543
670
  msgid "Available banner images in"
671
  msgstr "Налични картинки за банери в"
672
 
673
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
674
  msgid "Name"
675
  msgstr "Име"
676
 
677
+ #: adrotate.php:549
678
  msgid "Actions"
679
  msgstr "Действия"
680
 
681
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
682
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
683
  #: dashboard/publisher/adrotate-ads-main-error.php:21
684
  #: dashboard/publisher/adrotate-ads-main.php:22
685
  msgid "Delete"
686
  msgstr "Изтриване"
687
 
688
+ #: adrotate.php:562
689
  msgid ""
690
  "Make sure the banner images are not in use by adverts when you delete them!"
691
  msgstr ""
692
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
693
  "изтриете!"
694
 
695
+ #: adrotate.php:562
696
  msgid "Manage your banner folder from here with AdRotate Pro."
697
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
698
 
699
+ #: adrotate.php:606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
700
  msgid "AdRotate Settings"
701
  msgstr "AdRotate Настройки"
702
 
703
+ #: adrotate.php:609
704
  msgid "Settings saved"
705
  msgstr "Настройките са запазени"
706
 
707
+ #: adrotate.php:611
708
  msgid "Database optimized"
709
  msgstr "Базата данни е оптимизирана"
710
 
711
+ #: adrotate.php:613
712
  msgid "Database repaired"
713
  msgstr "Базата данни е поправена"
714
 
715
+ #: adrotate.php:615
716
  msgid "Ads evaluated and statuses have been corrected where required"
717
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
718
 
719
+ #: adrotate.php:617
720
  msgid "Empty database records removed"
721
  msgstr "Празните записи в базата данни са премахнати"
722
 
723
+ #: adrotate.php:619
724
  msgid "Database can only be optimized or cleaned once every hour"
725
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
726
 
727
+ #: adrotate.php:627
728
  msgid "Access Rights"
729
  msgstr "Права на достъп"
730
 
731
+ #: adrotate.php:628
732
  msgid "Who has access to what?"
733
  msgstr "Кой до какво има достъп?"
734
 
735
+ #: adrotate.php:631
736
  msgid "Manage/Add/Edit adverts"
737
  msgstr "Управление/Добавяне/Редакция на обяви"
738
 
739
+ #: adrotate.php:635
740
  msgid "Role to see and add/edit ads."
741
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
742
 
743
+ #: adrotate.php:639
744
  msgid "Delete/Reset adverts"
745
  msgstr "Изтриване/Нулиране на реклами"
746
 
747
+ #: adrotate.php:643
748
  msgid "Role to delete ads and reset stats."
749
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
750
 
751
+ #: adrotate.php:647
752
  msgid "Manage/Add/Edit groups"
753
  msgstr "Управление/Добавяне/Редакция на групи"
754
 
755
+ #: adrotate.php:651
756
  msgid "Role to see and add/edit groups."
757
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
758
 
759
+ #: adrotate.php:655
760
  msgid "Delete groups"
761
  msgstr "Изтриване на групи"
762
 
763
+ #: adrotate.php:659
764
  msgid "Role to delete groups."
765
  msgstr "Роля за изтриване на групи."
766
 
767
+ #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
768
+ #: adrotate.php:876
769
  msgid "Update Options"
770
  msgstr "Опции за обновяване"
771
 
772
+ #: adrotate.php:691
773
  msgid "Statistics"
774
  msgstr "Статистики"
775
 
776
+ #: adrotate.php:694
777
  msgid "Enable stats"
778
  msgstr "Включване на статистиката"
779
 
780
+ #: adrotate.php:696
781
  msgid "Track clicks and impressions."
782
  msgstr "Проследяване на кликове и импресии."
783
 
784
+ #: adrotate.php:696
785
  msgid "Disabling this also disables click and impression limits on schedules."
786
  msgstr ""
787
  "Ако деактивирате тази опция, ще бъдат деактивирани и лимитите за кликове и "
788
  "импресии на графици."
789
 
790
+ #: adrotate.php:700
791
  msgid "Impressions timer"
792
  msgstr "Таймер за импресии"
793
 
794
+ #: adrotate.php:702 adrotate.php:709
795
  msgid "Seconds."
796
  msgstr "Секудни."
797
 
798
+ #: adrotate.php:703
799
  msgid "Default: 60."
800
  msgstr "По подразбиране: 60."
801
 
802
+ #: adrotate.php:703
803
+ msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
804
  msgstr ""
 
 
805
 
806
+ #: adrotate.php:707
807
  msgid "Clicks timer"
808
  msgstr "Таймер за кликове"
809
 
810
+ #: adrotate.php:710
811
  msgid "Default: 86400."
812
  msgstr "По подразбиране: 86400."
813
 
814
+ #: adrotate.php:710
815
  msgid ""
816
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
817
  msgstr ""
818
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
819
  "(24 часа)."
820
 
821
+ #: adrotate.php:715
822
  msgid "Bot filter"
823
  msgstr "Филтър на ботове"
824
 
825
+ #: adrotate.php:718
826
  msgid "User-Agent Filter"
827
  msgstr "Филтър за агенти"
828
 
829
+ #: adrotate.php:721
830
  msgid ""
831
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
832
  "prevent impressions and clicks counted on them."
834
  "Списък с ключови думи, за разделител използвайте запетая. Филтриране на "
835
  "импресиите и кликовете от ботове/роботи/агенти."
836
 
837
+ #: adrotate.php:722
838
  msgid ""
839
  "Keep in mind that this might give false positives. The word 'google' also "
840
  "matches 'googlebot', but not vice-versa. So be careful!"
842
  "Имайте в предвид, че това може да даде фалшиви резултати. Думата 'google' ще "
843
  "включи и 'googlebot', но не и обратното. Бъдете внимателни!"
844
 
845
+ #: adrotate.php:722
846
  msgid "Keep your list up-to-date"
847
  msgstr "Поддържайте списъка актуален"
848
 
849
+ #: adrotate.php:723
850
  msgid ""
851
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
852
  "other characters are stripped out."
854
  "Използвайте само думи с букви и цифри, тире и долно тире. Всички останали "
855
  "знаци са забранени."
856
 
857
+ #: adrotate.php:724
858
  msgid ""
859
  "Additionally to the list specified here, empty User-Agents are blocked as "
860
  "well."
861
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
862
 
863
+ #: adrotate.php:724
864
  msgid "Learn more about"
865
  msgstr "Научете повече за"
866
 
867
+ #: adrotate.php:724
868
  msgid "user-agents"
869
  msgstr "агенти"
870
 
871
+ #: adrotate.php:733
872
  msgid "Miscellaneous"
873
  msgstr "Разни"
874
 
875
+ #: adrotate.php:736
876
  msgid "Widget alignment"
877
  msgstr "Подравняване на джаджата"
878
 
879
+ #: adrotate.php:737
880
  msgid ""
881
  "Check this box if your widgets do not align in your themes sidebar. (Does "
882
  "not always help!)"
884
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
885
  "темата Ви. (Не винаги помага)"
886
 
887
+ #: adrotate.php:740
888
  msgid "Widget padding"
889
  msgstr "Padding за джаджата"
890
 
891
+ #: adrotate.php:741
892
  msgid ""
893
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
894
  "not always work!)"
896
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
897
  "джаджата. (Не винаги работи!)"
898
 
899
+ #: adrotate.php:746 adrotate.php:757
900
  msgid "NOTICE:"
901
  msgstr "ЗАБЕЛЕЖКА:"
902
 
903
+ #: adrotate.php:747
904
  msgid ""
905
  "You have enabled W3 Total Caching support but not defined the security hash. "
906
  "You need to add the following line to your wp-config.php near the bottom or "
912
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
913
  "включена в W3 Total Cache."
914
 
915
+ #: adrotate.php:751
916
  msgid "W3 Total Caching"
917
  msgstr "W3 Total Caching"
918
 
919
+ #: adrotate.php:752
920
  msgid "Check this box if you use W3 Total Caching on your site."
921
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
922
 
923
+ #: adrotate.php:758
924
  msgid ""
925
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
926
  "this function will not work. WP Super Cache has discontinued support for "
930
  "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
931
  "динамично съдържание."
932
 
933
+ #: adrotate.php:762
934
  msgid "WP Super Cache"
935
  msgstr "WP Super Cache"
936
 
937
+ #: adrotate.php:763
938
  msgid "Check this box if you use WP Super Cache on your site."
939
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
940
 
941
+ #: adrotate.php:768
942
  msgid ""
943
  "It may take a while for the ad to start rotating. The caching plugin needs "
944
  "to refresh the cache. This can take up to a week if not done manually."
947
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
948
  "седмица, ако не го направите ръчно."
949
 
950
+ #: adrotate.php:768
951
  msgid ""
952
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
953
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
956
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
957
  "сами."
958
 
959
+ #: adrotate.php:772
960
+ msgid "Javascript"
961
+ msgstr ""
962
 
963
+ #: adrotate.php:775
964
  msgid "Load jQuery"
965
  msgstr "Зареди jQuery"
966
 
967
+ #: adrotate.php:776
968
  msgid ""
969
  "jQuery is required for all Javascript features below. Enable this if your "
970
  "theme does not load jQuery already."
972
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
973
  "темата ви вече не го е заредила."
974
 
975
+ #: adrotate.php:779
976
  msgid "Load in footer?"
977
  msgstr "Зареди във футера?"
978
 
979
+ #: adrotate.php:780
980
  msgid ""
981
  "Enable if you want to load the above libraries in the footer. Your theme "
982
  "needs to call wp_footer() for this to work."
984
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
985
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
986
 
987
+ #: adrotate.php:788
988
  msgid "Maintenance"
989
  msgstr "Поддръжка"
990
 
991
+ #: adrotate.php:789
992
  msgid ""
993
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
994
  "They only apply to your ads/groups and stats. Not to other settings or other "
1002
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1003
  "отговаря."
1004
 
1005
+ #: adrotate.php:804 adrotate.php:806
1006
  msgid "Optimize Database"
1007
  msgstr "Оптимизиране на базата данни"
1008
 
1009
+ #: adrotate.php:806
1010
  msgid "You are about to optimize the AdRotate database."
1011
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1012
 
1013
+ #: adrotate.php:806
1014
  msgid "Did you make a backup of your database?"
1015
  msgstr "Направихте ли резервно копие на своята база данни?"
1016
 
1017
+ #: adrotate.php:806
1018
  msgid ""
1019
  "This may take a moment and may cause your website to respond slow "
1020
  "temporarily!"
1022
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1023
  "момент!"
1024
 
1025
+ #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1026
  #: dashboard/publisher/adrotate-groups-main.php:24
1027
  msgid "OK to continue, CANCEL to stop."
1028
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1029
 
1030
+ #: adrotate.php:807
1031
  msgid "Cleans up overhead data in the AdRotate tables."
1032
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1033
 
1034
+ #: adrotate.php:808
1035
  msgid ""
1036
  "Overhead data is accumulated garbage resulting from many changes you've "
1037
  "made. This can vary from nothing to hundreds of KiB of data."
1039
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1040
  "които правите. Те могар да варират от 0 до хиляди KB."
1041
 
1042
+ #: adrotate.php:812 adrotate.php:814
1043
  msgid "Clean-up Database"
1044
  msgstr "Почистване на базата данни"
1045
 
1046
+ #: adrotate.php:814
1047
  msgid ""
1048
  "You are about to clean up your database. This may delete expired schedules "
1049
  "and older statistics."
1051
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1052
  "и стари статистики."
1053
 
1054
+ #: adrotate.php:814
1055
  msgid "Are you sure you want to continue?"
1056
  msgstr "Сигурни ли сте, че искате да продължите?"
1057
 
1058
+ #: adrotate.php:814 adrotate.php:822
1059
  msgid "This might take a while and may slow down your site during this action!"
1060
  msgstr ""
1061
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1062
  "изпълнението му!"
1063
 
1064
+ #: adrotate.php:815
1065
  msgid "Delete stats older than 356 days (Optional)."
1066
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1067
 
1068
+ #: adrotate.php:816
1069
  msgid ""
1070
  "AdRotate creates empty records when you start making ads or groups. In rare "
1071
  "occasions these records are faulty."
1073
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1074
  "група. В редки случай тези записи са дефектни."
1075
 
1076
+ #: adrotate.php:816
1077
  msgid ""
1078
  "If you made an ad or group that does not save when you make it use this "
1079
  "button to delete those empty records."
1081
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1082
  "този бутон, за да изтриете празните полета."
1083
 
1084
+ #: adrotate.php:816
1085
  msgid ""
1086
  "Additionally you can clean up old statistics. This will improve the speed of "
1087
  "your site."
1089
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1090
  "скоростта на сайта Ви."
1091
 
1092
+ #: adrotate.php:820
1093
  msgid "Re-evaluate Ads"
1094
  msgstr "Преоценка на реклами"
1095
 
1096
+ #: adrotate.php:822
1097
  msgid "Re-evaluate all ads"
1098
  msgstr "Преоценка на всички реклами"
1099
 
1100
+ #: adrotate.php:822
1101
  msgid "You are about to check all ads for errors."
1102
  msgstr "На път сте да проверите всички реклами за грешки."
1103
 
1104
+ #: adrotate.php:823
1105
  msgid ""
1106
  "This will apply all evaluation rules to all ads to see if any error slipped "
1107
  "in. Normally you should not need this feature."
1109
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1110
  "нужда от тази функция."
1111
 
1112
+ #: adrotate.php:827
1113
  msgid ""
1114
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1115
  "becomes unusable in any way or by any means in whichever way I will not take "
1126
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1127
  "тези бутони е безсмислено."
1128
 
1129
+ #: adrotate.php:835
1130
  msgid "Troubleshooting"
1131
  msgstr "Отстраняване на проблеми"
1132
 
1133
+ #: adrotate.php:838
1134
  msgid "Current version:"
1135
  msgstr "Текуща версия:"
1136
 
1137
+ #: adrotate.php:839
1138
  msgid "Previous version:"
1139
  msgstr "Предишна версия:"
1140
 
1141
+ #: adrotate.php:842
1142
  msgid "Current database version:"
1143
  msgstr "Текуща верския на базата данни:"
1144
 
1145
+ #: adrotate.php:843
1146
  msgid "Previous database version:"
1147
  msgstr "Предишна версия на базата данни:"
1148
 
1149
+ #: adrotate.php:846
1150
  #, fuzzy
1151
  msgid "Ad evaluation next run:"
1152
  msgstr "Оценка на рекламата:"
1153
 
1154
+ #: adrotate.php:847 adrotate.php:851
1155
  msgid "Not scheduled!"
1156
  msgstr "Не е планирано!"
1157
 
1158
+ #: adrotate.php:850
1159
+ #, fuzzy
1160
+ msgid "Clean Trackerdata next run:"
1161
+ msgstr "Изчистване на Trackerdata при следващо стартиране:"
1162
+
1163
+ #: adrotate.php:854
1164
  msgid "Current status of adverts"
1165
  msgstr "Настоящ статус на рекламите"
1166
 
1167
+ #: adrotate.php:855
1168
  msgid "Normal"
1169
  msgstr "Нормално"
1170
 
1171
+ #: adrotate.php:855
1172
  msgid "Error"
1173
  msgstr "Грешка"
1174
 
1175
+ #: adrotate.php:855
1176
  msgid "Expired"
1177
  msgstr "Изтекло"
1178
 
1179
+ #: adrotate.php:855
1180
  msgid "Expires Soon"
1181
  msgstr "Изтича скоро"
1182
 
1183
+ #: adrotate.php:855
1184
  msgid "Unknown Status"
1185
  msgstr "Неизвестен статус"
1186
 
1187
+ #: adrotate.php:858
1188
  msgid ""
1189
  "NOTE: The below options are not meant for normal use and are only there for "
1190
  "developers to review saved settings or how ads are selected. These can be "
1197
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1198
  "ИЗКЛЮЧЕНИ!!"
1199
 
1200
+ #: adrotate.php:862
1201
  msgid "Developer Debug"
1202
  msgstr "Developer Debug"
1203
 
1204
+ #: adrotate.php:864
1205
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1206
  msgstr ""
1207
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1208
  "изглед."
1209
 
1210
+ #: adrotate.php:865
1211
  msgid "Show all settings, dashboard routines and related values."
1212
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1213
 
1214
+ #: adrotate.php:866
1215
  msgid "Show array of all userroles and capabilities."
1216
  msgstr "Покажи масив с всички потребителски роли и възможности."
1217
 
1218
+ #: adrotate.php:867
1219
  msgid "Review saved advertisers! Visible to advertisers."
1220
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1221
 
1222
+ #: adrotate.php:868
1223
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1224
  msgstr ""
1225
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1226
  "автори."
1227
 
1228
+ #: adrotate.php:869
1229
  msgid ""
1230
  "Disable timers for clicks and impressions and enable a alert window for "
1231
  "clicktracking."
1233
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1234
  "за проследяване на кликове."
1235
 
1236
+ #: adrotate.php:870
1237
  msgid "Temporarily disable encryption on the redirect url."
1238
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1239
 
1274
  msgstr "Последни няколко дни"
1275
 
1276
  #: dashboard/adrotate-info.php:132
1277
+ msgid "Support AdRotate"
1278
+ msgstr "Подкрепете AdRotate"
1279
+
1280
+ #: dashboard/adrotate-info.php:139
1281
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1282
+ msgstr ""
1283
 
1284
+ #: dashboard/adrotate-info.php:139
1285
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1286
+ msgstr ""
1287
+
1288
+ #: dashboard/adrotate-info.php:148
1289
  msgid "AdRotate News and Developer Blog"
1290
  msgstr "AdRotate блог за новини и разработка"
1291
 
1292
+ #: dashboard/adrotate-info.php:168
1293
+ msgid "Get more features with AdRotate Pro"
1294
+ msgstr "Получете по-голяма функционалност с AdRotate Pro"
1295
+
1296
+ #: dashboard/adrotate-info.php:171
1297
+ msgid ""
1298
+ "Benefit from extra features to reinforce your income with advertising "
1299
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1300
+ "Pro offers on top of the trusted features included in the free version."
1301
+ msgstr ""
1302
+ "Възползвайте се от допълнителните функции, като рекламни кампании, за да "
1303
+ "подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
1304
+ "функции, които предлага AdRotate Pro спрямо безплатната версия."
1305
+
1306
+ #: dashboard/adrotate-info.php:171
1307
+ msgid "Want to know more about"
1308
+ msgstr ""
1309
+
1310
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1311
  msgid "Buy AdRotate Professional"
1312
  msgstr "Купете AdRotate Professional"
1313
 
1314
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1315
  msgid "Singe License"
1316
  msgstr "Singe лиценз"
1317
 
1318
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1319
  msgid "For one WordPress installation."
1320
  msgstr "За една инсталация на WordPress."
1321
 
1322
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1323
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1324
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1325
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1326
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1327
  msgid "Buy now"
1328
  msgstr "Купи сега"
1329
 
1330
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1331
  msgid "Duo License"
1332
  msgstr "Duo лиценз"
1333
 
1334
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1335
  msgid "For two WordPress installations."
1336
  msgstr "За две Wordpress инсталации."
1337
 
1338
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1339
  msgid "Multi License"
1340
  msgstr "Multi лиценз"
1341
 
1342
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1343
  msgid " For up to five WordPress installations."
1344
  msgstr " За до 5 Wordpress инсталации."
1345
 
1346
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1347
+ msgid "Developer License"
1348
+ msgstr "Developer лиценз"
1349
+
1350
+ #: dashboard/adrotate-info.php:182
1351
+ msgid "Unlimited WordPress installations and/or networks."
1352
+ msgstr ""
1353
+
1354
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1355
  msgid "Network License"
1356
  msgstr "Network лиценз"
1357
 
1358
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1359
  msgid "Set up your own advertising network on a WordPress Multisite."
1360
  msgstr "Направете своя собствена рекламна мрежа чрез WordPress мултисайт."
1361
 
1362
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
 
 
 
 
 
 
 
 
 
1363
  msgid "Compare licenses"
1364
  msgstr "Сравнение на лицензи"
1365
 
1366
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1367
  msgid "Not sure which license is for you? Compare them..."
1368
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
1369
 
1370
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1371
  msgid "All Licenses"
1372
  msgstr "Всички лицензи"
1373
 
1374
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1375
  msgid "AdRotate is brought to you by"
1376
  msgstr "AdRotate достига до Вас, благодарение на"
1377
 
1378
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1379
  msgid ""
1380
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1381
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1386
  "искате сайта Ви да бъде мигриран? Посетете страницата ми за повече "
1387
  "информация!"
1388
 
1389
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1390
  msgid "Find out more"
1391
  msgstr "Научете повече"
1392
 
1393
+ #: dashboard/adrotate-info.php:194
1394
  msgid "Follow"
1395
  msgstr "Последвай"
1396
 
1468
  "Ще разберете кога изтичат обявите, какви грешки са възникнали и кога "
1469
  "рекламодателите добавят нови реклами."
1470
 
1471
+ #: dashboard/adrotate-pro.php:83
1472
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1473
+ msgstr ""
1474
+ "Актвирайте AdRotate на неограничен брой Wordpress инсталации и/или мрежи."
1475
+
1476
  #: dashboard/publisher/adrotate-ads-edit.php:46
1477
  msgid "The AdCode cannot be empty!"
1478
  msgstr "AdCode не може да бъде празен!"
1523
  msgid "This ad has been disabled and does not rotate on your site!"
1524
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1525
 
1526
+ #: dashboard/publisher/adrotate-ads-edit.php:101
1527
  msgid "New Advert"
1528
  msgstr "Нова реклама"
1529
 
1530
+ #: dashboard/publisher/adrotate-ads-edit.php:103
1531
  msgid "Edit Advert"
1532
  msgstr "Редакция на реклама"
1533
 
1534
+ #: dashboard/publisher/adrotate-ads-edit.php:106
1535
  #: dashboard/publisher/adrotate-groups-edit.php:48
1536
  msgid "These are required."
1537
  msgstr "Тези са задължителни."
1538
 
1539
+ #: dashboard/publisher/adrotate-ads-edit.php:110
1540
  msgid "Title:"
1541
  msgstr "Заглавие:"
1542
 
1543
+ #: dashboard/publisher/adrotate-ads-edit.php:116
1544
  msgid "AdCode:"
1545
  msgstr "AdCode:"
1546
 
1547
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1548
  msgid ""
1549
  "Copy your ad tag/code in this field if you have received ready to go adverts."
1550
  msgstr ""
1551
  "Копирайте своя рекламен етикет/код в това поле ако сте получили готова "
1552
  "реклама."
1553
 
1554
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1555
  msgid "Advertising and affiliate networks often use these."
1556
  msgstr "Реклманите и партньорските мрежи често използват това."
1557
 
1558
+ #: dashboard/publisher/adrotate-ads-edit.php:122
1559
  msgid "Basic Examples:"
1560
  msgstr "Основни примери:"
1561
 
1562
+ #: dashboard/publisher/adrotate-ads-edit.php:127
1563
+ #: dashboard/publisher/adrotate-groups-edit.php:335
1564
  msgid "Options:"
1565
  msgstr "Настройки:"
1566
 
1567
+ #: dashboard/publisher/adrotate-ads-edit.php:129
1568
  msgid ""
1569
  "Place the cursor where you want to add a tag and click to add it to your "
1570
  "AdCode."
1572
  "Поставете курсора там, където искате да добавите етикет и кликете, за да го "
1573
  "добавите към кода на рекламата."
1574
 
1575
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1576
  msgid "Activate:"
1577
  msgstr "Активиране:"
1578
 
1579
+ #: dashboard/publisher/adrotate-ads-edit.php:137
1580
  msgid "Yes, this ad will be used"
1581
  msgstr "Да, тази реклама ще се използва"
1582
 
1583
+ #: dashboard/publisher/adrotate-ads-edit.php:138
1584
  msgid "No, do not show this ad anywhere"
1585
  msgstr "Не, не показвай тази реклама никъде"
1586
 
1587
+ #: dashboard/publisher/adrotate-ads-edit.php:145
1588
  #: dashboard/publisher/adrotate-ads-main.php:108
1589
  #: dashboard/publisher/adrotate-groups-edit.php:76
1590
  #: dashboard/publisher/adrotate-groups-main.php:87
1591
  msgid "Get more features with AdRotate Pro."
1592
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1593
 
 
 
 
 
 
 
 
 
1594
  #: dashboard/publisher/adrotate-ads-edit.php:148
1595
  #: dashboard/publisher/adrotate-ads-edit.php:181
1596
  #: dashboard/publisher/adrotate-ads-edit.php:317
1597
  #: dashboard/publisher/adrotate-ads-edit.php:442
1598
  #: dashboard/publisher/adrotate-ads-edit.php:485
1599
+ msgid "Save Advert"
1600
+ msgstr "Запиши рекламата"
1601
+
1602
+ #: dashboard/publisher/adrotate-ads-edit.php:149
1603
+ #: dashboard/publisher/adrotate-ads-edit.php:182
1604
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1605
+ #: dashboard/publisher/adrotate-ads-edit.php:443
1606
+ #: dashboard/publisher/adrotate-ads-edit.php:486
1607
  #: dashboard/publisher/adrotate-groups-edit.php:182
1608
+ #: dashboard/publisher/adrotate-groups-edit.php:323
1609
+ #: dashboard/publisher/adrotate-groups-edit.php:405
1610
  msgid "Cancel"
1611
  msgstr "Отказ"
1612
 
1613
+ #: dashboard/publisher/adrotate-ads-edit.php:153
1614
  msgid "Preview"
1615
  msgstr "Преглед"
1616
 
1617
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1618
  msgid ""
1619
  "Note: While this preview is an accurate one, it might look different then it "
1620
  "does on the website."
1622
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1623
  "изглежда по-различно, когато се показва на страницата Ви."
1624
 
1625
+ #: dashboard/publisher/adrotate-ads-edit.php:160
1626
  msgid ""
1627
  "This is because of CSS differences. Your themes CSS file is not active here!"
1628
  msgstr ""
1629
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1630
 
1631
+ #: dashboard/publisher/adrotate-ads-edit.php:167
1632
+ #: dashboard/publisher/adrotate-ads-edit.php:303
1633
  #: dashboard/publisher/adrotate-groups-edit.php:167
1634
+ #: dashboard/publisher/adrotate-groups-edit.php:308
1635
  msgid "Usage"
1636
  msgstr "Употреба"
1637
 
1638
+ #: dashboard/publisher/adrotate-ads-edit.php:168
1639
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1640
  #: dashboard/publisher/adrotate-groups-edit.php:168
1641
+ #: dashboard/publisher/adrotate-groups-edit.php:309
1642
  msgid ""
1643
  "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1644
  "where you want the advert to show up."
1647
  "използвате във файловете на темата си, за да показвате рекламни карета "
1648
  "където са ви необходими."
1649
 
1650
+ #: dashboard/publisher/adrotate-ads-edit.php:172
1651
+ #: dashboard/publisher/adrotate-ads-edit.php:308
1652
  #: dashboard/publisher/adrotate-groups-edit.php:172
1653
+ #: dashboard/publisher/adrotate-groups-edit.php:313
1654
  msgid "In a post or page:"
1655
  msgstr "И страница или публикация:"
1656
 
1657
+ #: dashboard/publisher/adrotate-ads-edit.php:174
1658
+ #: dashboard/publisher/adrotate-ads-edit.php:310
1659
  #: dashboard/publisher/adrotate-groups-edit.php:174
1660
+ #: dashboard/publisher/adrotate-groups-edit.php:315
1661
  msgid "Directly in a theme:"
1662
  msgstr "Директно в темата:"
1663
 
1664
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1665
  #: dashboard/publisher/adrotate-groups-edit.php:185
1666
  msgid "Advanced"
1667
  msgstr "Разширени"
1668
 
1669
+ #: dashboard/publisher/adrotate-ads-edit.php:186
1670
  msgid "Everything below is optional."
1671
  msgstr "Всичко по-долу е по желание."
1672
 
1673
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1674
  msgid "Clicktracking:"
1675
  msgstr "Проследяване на кликовете:"
1676
 
1677
+ #: dashboard/publisher/adrotate-ads-edit.php:193
1678
  msgid "Enable click tracking for this advert."
1679
  msgstr "Активиране на проследяването на кликове за тази реклама."
1680
 
1681
+ #: dashboard/publisher/adrotate-ads-edit.php:194
1682
  msgid ""
1683
  "Note: Clicktracking does generally not work for Javascript adverts such as "
1684
  "those provided by Google AdSense."
1686
  "Забележка: Проследяването на кликове не е съвместимо с Javascript реклами, "
1687
  "като напр. Google AdSense."
1688
 
1689
+ #: dashboard/publisher/adrotate-ads-edit.php:195
1690
  msgid "Place the target URL in your adcode - Similar to code example 1."
1691
  msgstr "Поставете URL адрес в adcode - както е показано в пример 1."
1692
 
1693
+ #: dashboard/publisher/adrotate-ads-edit.php:200
1694
  msgid "Target URL:"
1695
  msgstr "Целеви URL:"
1696
 
1697
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1698
  msgid ""
1699
  "This field is no longer required. You can place the URL directly in the "
1700
  "adcode (above) instead of %link%."
1702
  "Това поле вече не е необходимо. Можете да поставите URL адреса директно в "
1703
  "полето adcore (по-горе), вместо %link%."
1704
 
1705
+ #: dashboard/publisher/adrotate-ads-edit.php:208
1706
  msgid "Responsive:"
1707
  msgstr "Responsive:"
1708
 
1709
+ #: dashboard/publisher/adrotate-ads-edit.php:210
1710
  msgid "Enable responsive support for this advert."
1711
  msgstr "Активиране на responsive дизайн за тази реклама."
1712
 
1713
+ #: dashboard/publisher/adrotate-ads-edit.php:211
1714
  msgid ""
1715
  "Upload your images to the banner folder and make sure the filename is in the "
1716
  "following format; \"imagename.full.ext\". A full set of sized images is "
1720
  "правилния формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
1721
  "картинки е строго препоръчителен."
1722
 
1723
+ #: dashboard/publisher/adrotate-ads-edit.php:213
1724
  msgid ""
1725
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1726
  "for different viewports. Requires jQuery."
1728
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
1729
  "реклама в различни резолюции на екрана. Изисква jQuery."
1730
 
1731
+ #: dashboard/publisher/adrotate-ads-edit.php:217
1732
  msgid "Banner image:"
1733
  msgstr "Картинка на банера:"
1734
 
1735
+ #: dashboard/publisher/adrotate-ads-edit.php:220
1736
  msgid "Media:"
1737
  msgstr "Медия:"
1738
 
1739
+ #: dashboard/publisher/adrotate-ads-edit.php:220
1740
  msgid "Select Banner"
1741
  msgstr "Избор на банер"
1742
 
1743
+ #: dashboard/publisher/adrotate-ads-edit.php:222
1744
  msgid "- OR -"
1745
  msgstr "- ИЛИ -"
1746
 
1747
+ #: dashboard/publisher/adrotate-ads-edit.php:224
1748
  msgid "Banner folder:"
1749
  msgstr "Папка на банера:"
1750
 
1751
+ #: dashboard/publisher/adrotate-ads-edit.php:225
1752
  msgid "No image selected"
1753
  msgstr "Не е избрана картинка"
1754
 
1755
+ #: dashboard/publisher/adrotate-ads-edit.php:229
1756
  msgid "Use %image% in the code. Accepted files are:"
1757
  msgstr "Използвайте %image% в кода. Допустимите файлове са:"
1758
 
1759
+ #: dashboard/publisher/adrotate-ads-edit.php:229
1760
  msgid ""
1761
  "Use either the text field or the dropdown. If the textfield has content that "
1762
  "field has priority."
1764
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1765
  "попълнено, то ще бъде с преоритет."
1766
 
1767
+ #: dashboard/publisher/adrotate-ads-edit.php:233
1768
  msgid "Weight:"
1769
  msgstr "Тежест:"
1770
 
1771
+ #: dashboard/publisher/adrotate-ads-edit.php:233
1772
  msgid "AdRotate Pro only"
1773
  msgstr "Само AdRotate Pro"
1774
 
1775
+ #: dashboard/publisher/adrotate-ads-edit.php:236
1776
  msgid "Barely visible"
1777
  msgstr "Почти видимо"
1778
 
1779
+ #: dashboard/publisher/adrotate-ads-edit.php:237
1780
  msgid "Less than average"
1781
  msgstr "По-малко от нормалното"
1782
 
1783
+ #: dashboard/publisher/adrotate-ads-edit.php:238
1784
  msgid "Normal coverage"
1785
  msgstr "Нормално покритие"
1786
 
1787
+ #: dashboard/publisher/adrotate-ads-edit.php:239
1788
  msgid "More than average"
1789
  msgstr "Повече от нормалното"
1790
 
1791
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1792
  msgid "Best visibility"
1793
  msgstr "Най-добра видимост"
1794
 
1795
+ #: dashboard/publisher/adrotate-ads-edit.php:245
1796
+ #: dashboard/publisher/adrotate-groups-edit.php:212
1797
  msgid "Sortorder:"
1798
  msgstr "Сортиране:"
1799
 
1800
+ #: dashboard/publisher/adrotate-ads-edit.php:247
1801
+ #: dashboard/publisher/adrotate-groups-edit.php:214
1802
  msgid "For administrative purposes set a sortorder."
1803
  msgstr "За административни цели задайте критерий за сортиране."
1804
 
1805
+ #: dashboard/publisher/adrotate-ads-edit.php:247
1806
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1807
  msgstr ""
1808
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1809
  "на рекламата по подразбиране."
1810
 
1811
+ #: dashboard/publisher/adrotate-ads-edit.php:252
1812
  msgid ""
1813
  "With AdRotate Pro you can also set a weight to give adverts more or less "
1814
  "attention."
1815
  msgstr "С AdRotate Pro можете да задавате тежест при показване на рекламите."
1816
 
1817
+ #: dashboard/publisher/adrotate-ads-edit.php:252
1818
+ #: dashboard/publisher/adrotate-ads-edit.php:301
1819
+ #: dashboard/publisher/adrotate-ads-edit.php:399
1820
+ #: dashboard/publisher/adrotate-groups-edit.php:218
1821
  msgid "Upgrade today"
1822
  msgstr "Надградете днес"
1823
 
1824
+ #: dashboard/publisher/adrotate-ads-edit.php:254
1825
  msgid "Geo Location in AdRotate Pro"
1826
  msgstr "Геолокация с AdRotate Pro"
1827
 
1828
+ #: dashboard/publisher/adrotate-ads-edit.php:255
1829
  msgid ""
1830
  "This works if you assign the advert to a group and enable that group to use "
1831
  "Geo Targeting."
1833
  "Това работи ако закачите рекламата към група и включите таргетирането по "
1834
  "местоположение за тази група."
1835
 
1836
+ #: dashboard/publisher/adrotate-ads-edit.php:259
1837
  msgid "Cities/States:"
1838
  msgstr "Градове/Щати:"
1839
 
1840
+ #: dashboard/publisher/adrotate-ads-edit.php:262
1841
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1842
  msgid "Usage:"
1843
  msgstr "Употреба:"
1844
 
1845
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1846
  msgid "A comma separated list of cities and/or states"
1847
  msgstr "Списък с градове и/или щати, разделен със запетая"
1848
 
1849
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1850
  msgid ""
1851
  "AdRotate does not check the validity of names so make sure you spell them "
1852
  "correctly!"
1854
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1855
  "правилно!"
1856
 
1857
+ #: dashboard/publisher/adrotate-ads-edit.php:267
1858
  msgid "Countries:"
1859
  msgstr "Държави:"
1860
 
1861
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1862
  msgid "Select the countries you want the adverts to show in."
1863
  msgstr "Изберете страните, в които искате да се показват рекламите."
1864
 
1865
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1866
  msgid "Cities take priority and will be filtered first."
1867
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1868
 
1869
+ #: dashboard/publisher/adrotate-ads-edit.php:301
1870
  msgid "Target your audience with Geo Location in AdRotate Pro"
1871
  msgstr ""
1872
  "Насочете рекламите си към правилната аудитория с услугата за местоположение "
1873
  "в AdRotate Pro"
1874
 
1875
+ #: dashboard/publisher/adrotate-ads-edit.php:321
1876
  msgid "Schedule"
1877
  msgstr "График"
1878
 
1879
+ #: dashboard/publisher/adrotate-ads-edit.php:322
1880
  msgid "From when to when is the advert visible?"
1881
  msgstr "От кога до кога да бъде видима тази обява?"
1882
 
1883
+ #: dashboard/publisher/adrotate-ads-edit.php:326
1884
  msgid "Start date (day/month/year):"
1885
  msgstr "Начална дата (ден/месец/година):"
1886
 
1887
+ #: dashboard/publisher/adrotate-ads-edit.php:347
1888
  msgid "End date (day/month/year):"
1889
  msgstr "Крайна дата (ден/месец/година):"
1890
 
1891
+ #: dashboard/publisher/adrotate-ads-edit.php:370
1892
  msgid "Start time (hh:mm):"
1893
  msgstr "Начален час (hh:mm):"
1894
 
1895
+ #: dashboard/publisher/adrotate-ads-edit.php:377
1896
  msgid "End time (hh:mm):"
1897
  msgstr "Краен час (hh:mm):"
1898
 
1899
+ #: dashboard/publisher/adrotate-ads-edit.php:387
1900
  msgid "Maximum Clicks:"
1901
  msgstr "Максимален брой кликове:"
1902
 
1903
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1904
+ #: dashboard/publisher/adrotate-ads-edit.php:390
1905
  msgid "Leave empty or 0 to skip this."
1906
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1907
 
1908
+ #: dashboard/publisher/adrotate-ads-edit.php:389
1909
  msgid "Maximum Impressions:"
1910
  msgstr "Максимален брой импресии:"
1911
 
1912
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1913
  msgid ""
1914
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1915
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1919
  "или краен час след обяд, прибавете 12 часа. Напр. 2PM е 14:00 часа. 6AM e "
1920
  "18:00 часа. "
1921
 
1922
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1923
  msgid ""
1924
  "The maximum clicks and impressions are measured over the set schedule only. "
1925
  "Every schedule can have it's own limit!"
1927
  "Максималния брой кликове и импресии се измерва в рамките на зададеното "
1928
  "време. Всеки график може да има собствен лимит!"
1929
 
1930
+ #: dashboard/publisher/adrotate-ads-edit.php:399
1931
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1932
  msgstr "Създайте множество графици за всяка реклама с AdRotate Pro."
1933
 
1934
+ #: dashboard/publisher/adrotate-ads-edit.php:401
1935
  msgid "Choose Multiple Schedules in AdRotate Pro"
1936
  msgstr "Изберете множество графици в AdRotate Pro"
1937
 
1938
+ #: dashboard/publisher/adrotate-ads-edit.php:402
1939
  msgid "You can add, edit or delete schedules from the"
1940
  msgstr "Можете да триете, добавяте и редактирате графици от"
1941
 
1942
+ #: dashboard/publisher/adrotate-ads-edit.php:402
1943
  msgid "dashboard. Save your advert first!"
1944
  msgstr "таблото. Първо запазете рекламата си!"
1945
 
1946
+ #: dashboard/publisher/adrotate-ads-edit.php:409
1947
  msgid "From / Until"
1948
  msgstr "От / До"
1949
 
1950
+ #: dashboard/publisher/adrotate-ads-edit.php:411
1951
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1952
  #: dashboard/publisher/adrotate-ads-main.php:45
1953
  #: dashboard/publisher/adrotate-ads-report.php:35
1954
+ #: dashboard/publisher/adrotate-groups-edit.php:356
1955
  #: dashboard/publisher/adrotate-groups-main.php:37
1956
  #: dashboard/publisher/adrotate-groups-report.php:41
 
 
1957
  msgid "Clicks"
1958
  msgstr "Кликове"
1959
 
1960
+ #: dashboard/publisher/adrotate-ads-edit.php:412
1961
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1962
  #: dashboard/publisher/adrotate-ads-report.php:34
1963
+ #: dashboard/publisher/adrotate-groups-edit.php:355
1964
  #: dashboard/publisher/adrotate-groups-main.php:35
1965
  #: dashboard/publisher/adrotate-groups-report.php:40
1966
  msgid "Impressions"
1967
  msgstr "Импресии"
1968
 
1969
+ #: dashboard/publisher/adrotate-ads-edit.php:421
1970
  msgid "impressions per day"
1971
  msgstr "импресии на ден"
1972
 
1973
+ #: dashboard/publisher/adrotate-ads-edit.php:437
1974
  msgid "In use by this advert."
1975
  msgstr "Използва се с тази реклама."
1976
 
1977
+ #: dashboard/publisher/adrotate-ads-edit.php:448
1978
  msgid "Select Groups"
1979
  msgstr "Избор на групи"
1980
 
1981
+ #: dashboard/publisher/adrotate-ads-edit.php:449
1982
  msgid "Optionally select the group(s) this ad belongs to."
1983
  msgstr "По желание - изберете групата(ите) към които принадлежи рекламата."
1984
 
1985
+ #: dashboard/publisher/adrotate-ads-edit.php:454
1986
  msgid "ID - Name"
1987
  msgstr "ID - Име"
1988
 
1989
+ #: dashboard/publisher/adrotate-ads-edit.php:455
1990
  msgid "Ads in group"
1991
  msgstr "Реклами в група"
1992
 
1993
+ #: dashboard/publisher/adrotate-ads-edit.php:464
1994
  #: dashboard/publisher/adrotate-groups-main.php:58
1995
  msgid "Default"
1996
  msgstr "По подразбиране"
1997
 
1998
+ #: dashboard/publisher/adrotate-ads-edit.php:465
1999
  #: dashboard/publisher/adrotate-groups-main.php:59
2000
  msgid "Dynamic"
2001
  msgstr "Динамично"
2002
 
2003
+ #: dashboard/publisher/adrotate-ads-edit.php:465
2004
  #: dashboard/publisher/adrotate-groups-main.php:59
2005
  msgid "second rotation"
2006
  msgstr "второ завъртане"
2007
 
2008
+ #: dashboard/publisher/adrotate-ads-edit.php:466
2009
  #: dashboard/publisher/adrotate-groups-main.php:60
2010
  msgid "Block"
2011
  msgstr "Блок"
2012
 
2013
+ #: dashboard/publisher/adrotate-ads-edit.php:466
2014
  #: dashboard/publisher/adrotate-groups-main.php:60
2015
  msgid "grid"
2016
  msgstr "решетка"
2017
 
2018
+ #: dashboard/publisher/adrotate-ads-edit.php:467
2019
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2020
  #: dashboard/publisher/adrotate-groups-main.php:61
2021
  msgid "Post Injection"
2022
  msgstr "Вмъкване в публикации"
2023
 
2024
+ #: dashboard/publisher/adrotate-ads-edit.php:468
2025
  #: dashboard/publisher/adrotate-groups-main.php:62
2026
  msgid "Geolocation"
2027
  msgstr "Геолокация"
2028
 
2029
+ #: dashboard/publisher/adrotate-ads-edit.php:474
2030
  #: dashboard/publisher/adrotate-groups-edit.php:62
2031
  #: dashboard/publisher/adrotate-groups-main.php:69
2032
  msgid "Mode"
2049
  #: dashboard/publisher/adrotate-ads-main-disabled.php:36
2050
  #: dashboard/publisher/adrotate-ads-main-error.php:40
2051
  #: dashboard/publisher/adrotate-ads-main.php:40
 
2052
  msgid "Start / End"
2053
  msgstr "Начало / Край"
2054
 
2055
  #: dashboard/publisher/adrotate-ads-main-disabled.php:37
2056
  #: dashboard/publisher/adrotate-ads-main-error.php:41
2057
  #: dashboard/publisher/adrotate-ads-main.php:41
 
 
2058
  msgid "Title"
2059
  msgstr "Заглавие"
2060
 
2062
  #: dashboard/publisher/adrotate-ads-main.php:47
2063
  #: dashboard/publisher/adrotate-ads-report.php:38
2064
  #: dashboard/publisher/adrotate-groups-report.php:44
 
 
2065
  msgid "CTR"
2066
  msgstr "CTR"
2067
 
2118
  msgstr "За 7 дни"
2119
 
2120
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2121
+ #: dashboard/publisher/adrotate-groups-edit.php:398
2122
  msgid "Configuration errors."
2123
  msgstr "Грешки при конфигурирането."
2124
 
2131
  msgstr "Експорт в XML"
2132
 
2133
  #: dashboard/publisher/adrotate-ads-main.php:42
2134
+ #: dashboard/publisher/adrotate-groups-edit.php:357
 
 
2135
  msgid "Weight"
2136
  msgstr "Тежест"
2137
 
2138
  #: dashboard/publisher/adrotate-ads-main.php:43
 
 
2139
  msgid "Shown"
2140
  msgstr "Показана"
2141
 
2143
  #: dashboard/publisher/adrotate-ads-main.php:46
2144
  #: dashboard/publisher/adrotate-groups-main.php:36
2145
  #: dashboard/publisher/adrotate-groups-main.php:38
 
 
 
 
2146
  msgid "Today"
2147
  msgstr "Днес"
2148
 
2292
  "страницата. По подразбиране: 6."
2293
 
2294
  #: dashboard/publisher/adrotate-groups-edit.php:181
2295
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2296
+ #: dashboard/publisher/adrotate-groups-edit.php:404
2297
  msgid "Save Group"
2298
  msgstr "Запис на групата"
2299
 
2313
  msgid "Set to 0 to disable."
2314
  msgstr "Въведете 0 за деактивация."
2315
 
2316
+ #: dashboard/publisher/adrotate-groups-edit.php:198
2317
+ msgid "Align the group"
2318
+ msgstr ""
2319
+
2320
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2321
+ msgid "None (Default)"
2322
+ msgstr ""
2323
+
2324
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2325
+ msgid "Left"
2326
+ msgstr ""
2327
+
2328
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2329
+ msgid "Right"
2330
+ msgstr ""
2331
+
2332
+ #: dashboard/publisher/adrotate-groups-edit.php:204
2333
+ msgid "Center"
2334
+ msgstr ""
2335
+
2336
+ #: dashboard/publisher/adrotate-groups-edit.php:208
2337
+ msgid ""
2338
+ "Align the group in your post or page. Using 'center' may affect your margin "
2339
+ "setting. Not every theme supports this feature."
2340
+ msgstr ""
2341
+
2342
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2343
  msgid "Leave empty or 0 to skip this. Will default to group id."
2344
  msgstr ""
2345
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
2346
  "на групата."
2347
 
2348
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2349
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2350
  msgstr ""
2351
  "Задайте резервна група и използвайте услуга за местоположение с AdRotate Pro"
2352
 
2353
+ #: dashboard/publisher/adrotate-groups-edit.php:221
2354
  msgid "Insert ads to the begin or end of a post/page."
2355
  msgstr "Вмъкване на реклами в началото или в края на публикация/страница."
2356
 
2357
+ #: dashboard/publisher/adrotate-groups-edit.php:224
2358
  msgid "Include ads in categories?"
2359
  msgstr "Включване на реклами в категориите?"
2360
 
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:228
2362
+ #: dashboard/publisher/adrotate-groups-edit.php:269
2363
  msgid "Disabled"
2364
  msgstr "Изключено"
2365
 
2366
+ #: dashboard/publisher/adrotate-groups-edit.php:229
2367
+ #: dashboard/publisher/adrotate-groups-edit.php:270
2368
  msgid "Before content"
2369
  msgstr "Преди съдържанието"
2370
 
2371
+ #: dashboard/publisher/adrotate-groups-edit.php:230
2372
+ #: dashboard/publisher/adrotate-groups-edit.php:271
2373
  msgid "After content"
2374
  msgstr "След съдържанието"
2375
 
2376
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2377
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2378
  msgid "Before and after content"
2379
  msgstr "Преди и след съдържанието"
2380
 
2381
+ #: dashboard/publisher/adrotate-groups-edit.php:232
2382
+ #: dashboard/publisher/adrotate-groups-edit.php:273
2383
  msgid "After..."
2384
  msgstr "След..."
2385
 
2386
+ #: dashboard/publisher/adrotate-groups-edit.php:238
2387
+ #: dashboard/publisher/adrotate-groups-edit.php:279
2388
  msgid "the first paragraph"
2389
  msgstr "първия параграф"
2390
 
2391
+ #: dashboard/publisher/adrotate-groups-edit.php:239
2392
+ #: dashboard/publisher/adrotate-groups-edit.php:280
2393
  msgid "the 2nd paragraph"
2394
  msgstr "2-рия параграф"
2395
 
2396
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2397
+ #: dashboard/publisher/adrotate-groups-edit.php:281
2398
  msgid "the 3rd paragraph"
2399
  msgstr "3-тия параграф"
2400
 
2401
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2402
+ #: dashboard/publisher/adrotate-groups-edit.php:282
2403
  msgid "the 4th paragraph"
2404
  msgstr "4-тия параграф"
2405
 
2406
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2407
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2408
  msgid "every 2nd paragraph"
2409
  msgstr "всеки 2-ри параграф"
2410
 
2411
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2412
+ #: dashboard/publisher/adrotate-groups-edit.php:285
2413
  msgid "every 3rd paragraph"
2414
  msgstr "всеки 3-ти параграф"
2415
 
2416
+ #: dashboard/publisher/adrotate-groups-edit.php:245
2417
+ #: dashboard/publisher/adrotate-groups-edit.php:286
2418
  msgid "every 4th paragraph"
2419
  msgstr "всеки 4-ти параграф"
2420
 
2421
+ #: dashboard/publisher/adrotate-groups-edit.php:246
2422
+ #: dashboard/publisher/adrotate-groups-edit.php:287
2423
  msgid "every 5th paragraph"
2424
  msgstr "всеки 5-ти параграф"
2425
 
2426
+ #: dashboard/publisher/adrotate-groups-edit.php:247
2427
+ #: dashboard/publisher/adrotate-groups-edit.php:288
2428
  msgid "every 6th paragraph"
2429
  msgstr "всеки 6-ти параграф"
2430
 
2431
+ #: dashboard/publisher/adrotate-groups-edit.php:248
2432
+ #: dashboard/publisher/adrotate-groups-edit.php:289
2433
  msgid "every 7th paragraph"
2434
  msgstr "всеки 7-ми параграф"
2435
 
2436
+ #: dashboard/publisher/adrotate-groups-edit.php:249
2437
+ #: dashboard/publisher/adrotate-groups-edit.php:290
2438
  msgid "every 8th paragraph"
2439
  msgstr "всеки 8-ми параграф"
2440
 
2441
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2442
  msgid "Which categories?"
2443
  msgstr "Кои категории?"
2444
 
2445
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2446
  msgid "Click the categories posts you want the adverts to show in."
2447
  msgstr "Изберете категориите, на които искате да се показват рекламите."
2448
 
2449
+ #: dashboard/publisher/adrotate-groups-edit.php:265
2450
  msgid "Include ads in pages?"
2451
  msgstr "Включване на реклами в страниците?"
2452
 
2453
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2454
  msgid "Which pages?"
2455
  msgstr "Кои страници?"
2456
 
2457
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2458
  msgid "Click the pages you want the adverts to show in."
2459
  msgstr "Изберете страниците, на които искате да се показват рекламите."
2460
 
2461
+ #: dashboard/publisher/adrotate-groups-edit.php:326
2462
  msgid "Wrapper code"
2463
  msgstr "Код за обвивката"
2464
 
2465
+ #: dashboard/publisher/adrotate-groups-edit.php:327
2466
  msgid "Wraps around each ad."
2467
  msgstr "Обвивка около всяка реклама."
2468
 
2469
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2470
  msgid "Before ad"
2471
  msgstr "Преди реклама"
2472
 
2473
+ #: dashboard/publisher/adrotate-groups-edit.php:336
2474
  msgid "HTML/JavaScript allowed, use with care!"
2475
  msgstr "HTML/JavaScript са позволени, използвайте внимателно!"
2476
 
2477
+ #: dashboard/publisher/adrotate-groups-edit.php:340
2478
  msgid "After ad"
2479
  msgstr "След реклама"
2480
 
2481
+ #: dashboard/publisher/adrotate-groups-edit.php:349
2482
  msgid "Select Ads"
2483
  msgstr "Избор на реклами"
2484
 
2485
+ #: dashboard/publisher/adrotate-groups-edit.php:358
2486
  msgid "Visible until"
2487
  msgstr "Да се вижда до"
2488
 
2489
+ #: dashboard/publisher/adrotate-groups-edit.php:391
2490
  msgid "No ads created!"
2491
  msgstr "Няма създадени реклами!"
2492
 
2518
  msgid "Statistics for group"
2519
  msgstr "Статистика за групи"
2520
 
2521
+ #~ msgid "AdRotate Website"
2522
+ #~ msgstr "Уебсайт на AdRotate"
 
2523
 
2524
+ #~ msgid "AdRotate Knowledge base and manuals"
2525
+ #~ msgstr "AdRotate помощна информация и упътвания"
 
 
 
 
 
2526
 
2527
+ #~ msgid "AdRotate Website."
2528
+ #~ msgstr "Уебсайт на AdRotate."
 
2529
 
2530
+ #~ msgid "AdRotate Getting Started."
2531
+ #~ msgstr "Започнете от нулата с AdRotate."
 
 
2532
 
2533
+ #~ msgid "AdRotate Knoweledge base and manuals."
2534
+ #~ msgstr "AdRotate помощна информация и упътвания."
 
2535
 
2536
+ #~ msgid "AdRotate Website Forum."
2537
+ #~ msgstr "Форум на сайта на AdRotate."
 
2538
 
2539
+ #~ msgid "WordPress.org Forum."
2540
+ #~ msgstr "WordPress.org форум."
 
2541
 
2542
+ #~ msgid "AdRotate Server"
2543
+ #~ msgstr "AdRotate Сървър"
 
2544
 
2545
+ #~ msgid ""
2546
+ #~ "AdRotate server is currently in development and these menus are not "
2547
+ #~ "functional yet."
2548
+ #~ msgstr ""
2549
+ #~ "AdRotate Server все още се разработва и тези менюта не функционират в "
2550
+ #~ "момента."
2551
 
2552
+ #~ msgid "Overview"
2553
+ #~ msgstr "Преглед"
 
2554
 
2555
+ #~ msgid ""
2556
+ #~ "This number may not be empty, be lower than 60 or exceed 3600 (1 hour)."
2557
+ #~ msgstr ""
2558
+ #~ "Полето не може да остава празно, да съдържа стойност под 60 или над 3600 "
2559
+ #~ "(1 час)."
 
 
2560
 
2561
+ #~ msgid "Javascript Libraries"
2562
+ #~ msgstr "Javascript библиотеки"
 
2563
 
2564
+ #~ msgid "You are using"
2565
+ #~ msgstr "Използвате"
 
2566
 
2567
+ #~ msgid "or go to the"
2568
+ #~ msgstr "или отиди"
 
2569
 
2570
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2571
+ #~ msgstr "Вашето дарение ще подкрепи развитието на AdRotate!"
 
2572
 
2573
+ #~ msgid "Adverts received from server"
2574
+ #~ msgstr "Реклами получени от сървър"
 
 
 
 
 
2575
 
2576
+ #~ msgid ""
2577
+ #~ "These adverts are circulating in the pool of active adverts, served from "
2578
+ #~ "AdRotate server."
2579
+ #~ msgstr ""
2580
+ #~ "Тези реклами циркулират в басейна с активни реклами, предоставен от "
2581
+ #~ "сървъра на AdRotate."
2582
 
2583
+ #~ msgid "Added / Updated"
2584
+ #~ msgstr "Добавени / Качени"
 
2585
 
2586
+ #~ msgid "No ads received yet!"
2587
+ #~ msgstr "Все още няма получени реклами!"
 
2588
 
2589
+ #~ msgid "Erroneous ads from server"
2590
+ #~ msgstr "Реклами от сървъра с проблеми"
 
 
 
 
 
2591
 
2592
+ #~ msgid "Adverts served from AdRotate server but having some issues."
2593
+ #~ msgstr "Реклами с проблеми, предоставени от сървъра на AdBlock."
 
2594
 
2595
+ #~ msgid "Updated"
2596
+ #~ msgstr "Обновен"
2597
+
2598
+ #~ msgid "Show from"
2599
+ #~ msgstr "Покажи от"
2600
+
2601
+ #~ msgid "Show until"
2602
+ #~ msgstr "Покажи до"
2603
+
2604
+ #~ msgid "AdRotate Server Settings"
2605
+ #~ msgstr "Настройки на сървъра на AdRotate"
2606
+
2607
+ #~ msgid ""
2608
+ #~ "Link this website to an AdRotate server so your adverts and stats are "
2609
+ #~ "synchronised regularly."
2610
+ #~ msgstr ""
2611
+ #~ "Свържете този сайт със сървър на AdRotate, за да може рекламите и "
2612
+ #~ "статистиката Ви да бъдат редовно синхронизирани."
2613
+
2614
+ #~ msgid "Status"
2615
+ #~ msgstr "Статус"
2616
+
2617
+ #~ msgid "Linked - Adverts can be synced."
2618
+ #~ msgstr "Свързани - Рекламите могат да се синхронизират."
2619
+
2620
+ #~ msgid "Not linked - No adverts will be synced."
2621
+ #~ msgstr "Не е свързан - рекламите няма да се синхронизират."
2622
+
2623
+ #~ msgid "Server Key"
2624
+ #~ msgstr "Ключ за сървъра"
2625
+
2626
+ #~ msgid ""
2627
+ #~ "You can get your server key from your AdRotate Server installation or the "
2628
+ #~ "AdRollr website."
2629
+ #~ msgstr ""
2630
+ #~ "Можете да получите свой Ключ за сървър от инсталацията на AdRotate Server "
2631
+ #~ "или от сайта на AdRollr."
2632
+
2633
+ #~ msgid ""
2634
+ #~ "You should not share your key with anyone you do not trust. Treat this "
2635
+ #~ "key as a password!"
2636
+ #~ msgstr ""
2637
+ #~ "Не трябва да споделяте ключа си с никой. Приемайте този ключ като парола!"
2638
+
2639
+ #~ msgid "Make this site a puppet"
2640
+ #~ msgstr "Направете този сайт марионетка"
2641
 
2642
+ #~ msgid "Have AdRotate use AdRotate Server adverts exclusively."
2643
+ #~ msgstr ""
2644
+ #~ "Накарайте AdRotate да използва ексклузивни реклами от AdRotate Server."
2645
+
2646
+ #~ msgid ""
2647
+ #~ "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make "
2648
+ #~ "this installation of AdRotate a puppet for your AdRotate Server."
2649
+ #~ msgstr ""
2650
+ #~ "Включването на тази опция ще ИЗКЛЮЧИ ЦЯЛОТО ЛОКАЛНО УПРАВЛЕНИЕ и ще "
2651
+ #~ "направи тази инсталация на AdRotate подвласна на вашия AdRotate Server."
2652
+
2653
+ #~ msgid "Hide Server Details"
2654
+ #~ msgstr "Скриване на детайли за сървъра"
2655
+
2656
+ #~ msgid ""
2657
+ #~ "If you have installed AdRotate Pro for a client or in a Multisite network "
2658
+ #~ "and want to hide the server details from your users or client."
2659
+ #~ msgstr ""
2660
+ #~ "Ако сте инсталирали AdRotate Pro за клиент или в Мултисайт режим и искате "
2661
+ #~ "да скриете детайлите за сървъра от клиентите или потребителите."
2662
+
2663
+ #~ msgid "Link to server"
2664
+ #~ msgstr "Свързване със сървър"
2665
 
2666
+ #~ msgid "Unlink from server"
2667
+ #~ msgstr "Прекъсване на връзката със сървъра"
 
2668
 
2669
  #~ msgid "Block of Ads (Obsolete)"
2670
  #~ msgstr "Блок с реклами (Извън употреба)"
2727
  #~ msgid "Enter the target URL for your advert here."
2728
  #~ msgstr "Въведете URL адреса за вашата реклама тук:"
2729
 
 
 
 
 
2730
  #~ msgid "Buy"
2731
  #~ msgstr "Купи"
2732
 
2741
  #~ msgid "Check out the"
2742
  #~ msgstr "Прегледайте"
2743
 
 
 
 
2744
  #~ msgid "and have the most popular features explained."
2745
  #~ msgstr "за да видите обяснения на най-популярните функции."
2746
 
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-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+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"
@@ -14,23 +14,23 @@ msgstr ""
14
  "X-Poedit-KeywordsList: __;_e;_\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.7.3\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:811
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:814
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-output.php:759
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
- #: adrotate-output.php:760
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:761
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:762
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
- #: adrotate-output.php:780
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:782
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:789 adrotate-output.php:791
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:797
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
- #: adrotate-output.php:803
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
- #: adrotate-output.php:808
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
- #: adrotate-output.php:814
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,182 +97,159 @@ msgstr ""
97
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
98
  "προσθέτων!!"
99
 
100
- #: adrotate-output.php:814
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
- #: adrotate-output.php:820
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
- #: adrotate-output.php:846
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
- #: adrotate-output.php:846
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
- #: adrotate-output.php:848
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
- #: adrotate-output.php:848
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
- #: adrotate-output.php:850
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
- #: adrotate-output.php:850
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
- #: adrotate-output.php:852
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
- #: adrotate-output.php:852
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
- #: adrotate-output.php:852
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
- #: adrotate-output.php:852
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
- #: adrotate-output.php:864
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
- #: adrotate-output.php:866
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:867
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
- #: adrotate-output.php:867
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
- #: adrotate-output.php:889
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
171
  "Pro is in this menu. Check out the"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:889
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
- #: adrotate-output.php:889 adrotate-output.php:985
179
  #: dashboard/publisher/adrotate-ads-edit.php:229
180
  msgid "and"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:889
184
  msgid "forums"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:925
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
- #: adrotate-output.php:926 adrotate-output.php:954
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:928
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
- #: adrotate-output.php:929
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
- #: adrotate-output.php:930
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
- #: adrotate-output.php:931
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
- #: adrotate-output.php:932
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
- #: adrotate-output.php:956
221
- #, fuzzy
222
- msgid "AdRotate Website."
223
- msgstr "Κατάστημα του AdRotate"
224
-
225
- #: adrotate-output.php:957
226
- #, fuzzy
227
- msgid "AdRotate Getting Started."
228
- msgstr "Ρυθμίσεις AdRotate"
229
-
230
- #: adrotate-output.php:958
231
- msgid "AdRotate Knoweledge base and manuals."
232
- msgstr ""
233
-
234
- #: adrotate-output.php:959
235
- #, fuzzy
236
- msgid "AdRotate Website Forum."
237
- msgstr "Κατάστημα του AdRotate"
238
-
239
- #: adrotate-output.php:960
240
- msgid "WordPress.org Forum."
241
- msgstr ""
242
-
243
- #: adrotate-output.php:977
244
  #, fuzzy
245
  msgid "Help AdRotate Grow"
246
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
247
 
248
- #: adrotate-output.php:978
249
  msgid "Brought to you by"
250
  msgstr "Σας προσφέρεται από"
251
 
252
- #: adrotate-output.php:985
253
  msgid ""
254
  "A lot of users only think to review AdRotate when something goes wrong while "
255
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
256
  msgstr ""
257
 
258
- #: adrotate-output.php:985
259
  msgid "If you find AdRotate useful please leave your honest"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:985
263
  msgid "rating"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:985
267
  #, fuzzy
268
  msgid "review"
269
  msgstr "Αξιολογήστε και σχολιάστε"
270
 
271
- #: adrotate-output.php:985
272
  msgid "on WordPress.org to help AdRotate grow in a positive way"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:988
276
  msgid ""
277
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
278
  "out more about what I can do for you!"
@@ -280,28 +257,28 @@ msgstr ""
280
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
281
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
282
 
283
- #: adrotate-output.php:988
284
  msgid "Visit the"
285
  msgstr "Επισκεφθείτε το"
286
 
287
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
288
  msgid "website"
289
  msgstr "ιστοσελίδα"
290
 
291
- #: adrotate-output.php:1018
292
  msgid "Available in AdRotate Pro"
293
  msgstr "Διαθέσιμο στο AdRotate Pro"
294
 
295
- #: adrotate-output.php:1018
296
  #, fuzzy
297
  msgid "More information..."
298
  msgstr "Περισσότερες πληροφορίες"
299
 
300
- #: adrotate-output.php:1019
301
  msgid "This feature is available in AdRotate Pro"
302
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
303
 
304
- #: adrotate-output.php:1019
305
  #, fuzzy
306
  msgid "Learn more"
307
  msgstr "Μάθετε περισσότερα σχετικά"
@@ -382,45 +359,45 @@ msgstr "Επόμενο"
382
  msgid "No data to show!"
383
  msgstr "Δεν υπάρχουν δεδομένα."
384
 
385
- #: adrotate-widget.php:114
386
  msgid "Title (optional):"
387
  msgstr "Τίτλος (προαιρετικό):"
388
 
389
- #: adrotate-widget.php:117
390
  msgid "HTML will be stripped out."
391
  msgstr "Το HTML θα αφαιρεθεί."
392
 
393
- #: adrotate-widget.php:120
394
  msgid "Description (optional):"
395
  msgstr "Περιγραφή (προαιρετικό):"
396
 
397
- #: adrotate-widget.php:123
398
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
399
  msgstr ""
400
  "Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
401
  "αφαιρεθεί.)"
402
 
403
- #: adrotate-widget.php:126
404
  msgid "Type:"
405
  msgstr "Τύπος:"
406
 
407
- #: adrotate-widget.php:128
408
  msgid "Single Ad - Use Ad ID"
409
  msgstr "Μονή Διαφήμιση - Δώστε Κωδ. Διαφ."
410
 
411
- #: adrotate-widget.php:129
412
  msgid "Group of Ads - Use group ID"
413
  msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
414
 
415
- #: adrotate-widget.php:132
416
  msgid "Choose what you want to use this widget for"
417
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
418
 
419
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
420
  msgid "ID:"
421
  msgstr "Κωδ:"
422
 
423
- #: adrotate-widget.php:138
424
  msgid "Fill in the ID of the type you want to display!"
425
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
426
 
@@ -917,7 +894,7 @@ msgstr ""
917
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
918
  "απορίπτονται επίσης."
919
 
920
- #: adrotate.php:724 dashboard/adrotate-info.php:175
921
  msgid "Learn more about"
922
  msgstr "Μάθετε περισσότερα σχετικά"
923
 
@@ -1335,110 +1312,109 @@ msgid "The last few days"
1335
  msgstr "Οι τελευταίες ημέρες"
1336
 
1337
  #: dashboard/adrotate-info.php:132
1338
- msgid "You are using"
1339
- msgstr "Χρησιμοποιείτε το"
 
 
 
 
 
 
 
 
1340
 
1341
- #: dashboard/adrotate-info.php:138
1342
  msgid "AdRotate News and Developer Blog"
1343
  msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
1344
 
1345
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1346
  #, fuzzy
1347
  msgid "Buy AdRotate Professional"
1348
  msgstr "AdRotate Pro"
1349
 
1350
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1351
  msgid "Singe License"
1352
  msgstr ""
1353
 
1354
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1355
  msgid "For one WordPress installation."
1356
  msgstr ""
1357
 
1358
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1359
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1360
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1361
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1362
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1363
  #, fuzzy
1364
  msgid "Buy now"
1365
  msgstr "Λάβετε μέτρα τώρα"
1366
 
1367
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1368
  msgid "Duo License"
1369
  msgstr ""
1370
 
1371
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1372
  msgid "For two WordPress installations."
1373
  msgstr ""
1374
 
1375
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1376
  msgid "Multi License"
1377
  msgstr ""
1378
 
1379
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1380
  msgid " For up to five WordPress installations."
1381
  msgstr ""
1382
 
1383
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1384
  #, fuzzy
1385
  msgid "Developer License"
1386
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1387
 
1388
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1389
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1390
  msgstr ""
1391
 
1392
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1393
  msgid "Network License"
1394
  msgstr ""
1395
 
1396
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1397
  msgid "Set up your own advertising network on a WordPress Multisite."
1398
  msgstr ""
1399
 
1400
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1401
  msgid "Compare licenses"
1402
  msgstr ""
1403
 
1404
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1405
  msgid "Not sure which license is for you? Compare them..."
1406
  msgstr ""
1407
 
1408
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1409
  msgid "All Licenses"
1410
  msgstr ""
1411
 
1412
- #: dashboard/adrotate-info.php:171
1413
- #, fuzzy
1414
- msgid "Get more features with AdRotate Pro"
1415
- msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1416
-
1417
- #: dashboard/adrotate-info.php:174
1418
- msgid ""
1419
- "Benefit from extra features to reinforce your income with advertising "
1420
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1421
- "Pro offers on top of the trusted features included in the free version."
1422
- msgstr ""
1423
-
1424
- #: dashboard/adrotate-info.php:175
1425
- #, fuzzy
1426
- msgid "or go to the"
1427
- msgstr "Go"
1428
-
1429
- #: dashboard/adrotate-info.php:179
1430
- msgid "Support AdRotate"
1431
- msgstr "Υποστηρίξτε το AdRotate"
1432
-
1433
- #: dashboard/adrotate-info.php:182
1434
- msgid "Your gift will ensure the continued development of AdRotate!"
1435
- msgstr "Το δώρο σας θα εξασφαλίσει την συνέχεια της ανάπτυξης του AdRotate!"
1436
-
1437
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1438
  msgid "AdRotate is brought to you by"
1439
  msgstr "Το AdRotate έρχεται από την "
1440
 
1441
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1442
  msgid ""
1443
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1444
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1449,11 +1425,11 @@ msgstr ""
1449
  "μετακινήσετε την ιστοσελίδα σας, επισκεφθείτε τον ιστοτόπο μας για "
1450
  "πληροφορίες!"
1451
 
1452
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1453
  msgid "Find out more"
1454
  msgstr "Μάθετε περισσότερα"
1455
 
1456
- #: dashboard/adrotate-info.php:193
1457
  msgid "Follow"
1458
  msgstr ""
1459
 
@@ -1514,6 +1490,10 @@ msgid ""
1514
  "miss an expiration date again."
1515
  msgstr ""
1516
 
 
 
 
 
1517
  #: dashboard/publisher/adrotate-ads-edit.php:46
1518
  msgid "The AdCode cannot be empty!"
1519
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
@@ -2591,6 +2571,28 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2591
  msgid "Statistics for group"
2592
  msgstr "Στατιστικά για την ομάδα"
2593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2594
  #, fuzzy
2595
  #~ msgid "AdRotate Server"
2596
  #~ msgstr "AdRotate Pro"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
14
  "X-Poedit-KeywordsList: __;_e;_\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 1.7.5\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:807
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:810
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-output.php:747
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
+ #: adrotate-output.php:748
34
  msgid ""
35
  "WordPress was unable to verify the authenticity of the url you have clicked. "
36
  "Verify if the url used is valid or log in via your browser."
39
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
40
  "browser σας."
41
 
42
+ #: adrotate-output.php:749
43
  msgid ""
44
  "If you have received the url you want to visit via email, you are being "
45
  "tricked!"
47
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
48
  "ξεγέλασαν!"
49
 
50
+ #: adrotate-output.php:750
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
+ #: adrotate-output.php:768
55
  msgid ""
56
  "Error, Ad is not available at this time due to schedule/geolocation "
57
  "restrictions or does not exist!"
59
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
60
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
61
 
62
+ #: adrotate-output.php:770
63
  msgid ""
64
  "Error, Ad is not available at this time due to schedule/geolocation "
65
  "restrictions!"
67
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
68
  "χρονικών περιορισμών."
69
 
70
+ #: adrotate-output.php:777 adrotate-output.php:779
71
  msgid ""
72
  "Either there are no banners, they are disabled or none qualified for this "
73
  "location!"
75
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
76
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
77
 
78
+ #: adrotate-output.php:785
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
+ #: adrotate-output.php:791
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
+ #: adrotate-output.php:796
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
+ #: adrotate-output.php:802
92
  msgid ""
93
  "There was an error locating the database tables for AdRotate. Please "
94
  "deactivate and re-activate AdRotate from the plugin page!!"
97
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
98
  "προσθέτων!!"
99
 
100
+ #: adrotate-output.php:802
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
+ #: adrotate-output.php:808
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
+ #: adrotate-output.php:834
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
+ #: adrotate-output.php:834
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
+ #: adrotate-output.php:836
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
+ #: adrotate-output.php:836
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
+ #: adrotate-output.php:838
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
+ #: adrotate-output.php:838
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
+ #: adrotate-output.php:840
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
+ #: adrotate-output.php:840
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
+ #: adrotate-output.php:840
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
+ #: adrotate-output.php:840
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
+ #: adrotate-output.php:853
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
+ #: adrotate-output.php:855
154
  msgid ""
155
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
156
  "to the <strong>PRO</strong> version"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:856
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:856
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
+ #: adrotate-output.php:896
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
171
  "Pro is in this menu. Check out the"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:896
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
+ #: adrotate-output.php:896 adrotate-output.php:973
179
  #: dashboard/publisher/adrotate-ads-edit.php:229
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:896
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:932
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
+ #: adrotate-output.php:933
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:935
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:936
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
+ #: adrotate-output.php:937
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
+ #: adrotate-output.php:938
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
+ #: adrotate-output.php:939
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  #, fuzzy
222
  msgid "Help AdRotate Grow"
223
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
224
 
225
+ #: adrotate-output.php:966
226
  msgid "Brought to you by"
227
  msgstr "Σας προσφέρεται από"
228
 
229
+ #: adrotate-output.php:973
230
  msgid ""
231
  "A lot of users only think to review AdRotate when something goes wrong while "
232
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:973
236
  msgid "If you find AdRotate useful please leave your honest"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:973
240
  msgid "rating"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:973
244
  #, fuzzy
245
  msgid "review"
246
  msgstr "Αξιολογήστε και σχολιάστε"
247
 
248
+ #: adrotate-output.php:973
249
  msgid "on WordPress.org to help AdRotate grow in a positive way"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:976
253
  msgid ""
254
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
255
  "out more about what I can do for you!"
257
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
258
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
259
 
260
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
261
  msgid "Visit the"
262
  msgstr "Επισκεφθείτε το"
263
 
264
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
265
  msgid "website"
266
  msgstr "ιστοσελίδα"
267
 
268
+ #: adrotate-output.php:1006
269
  msgid "Available in AdRotate Pro"
270
  msgstr "Διαθέσιμο στο AdRotate Pro"
271
 
272
+ #: adrotate-output.php:1006
273
  #, fuzzy
274
  msgid "More information..."
275
  msgstr "Περισσότερες πληροφορίες"
276
 
277
+ #: adrotate-output.php:1007
278
  msgid "This feature is available in AdRotate Pro"
279
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
280
 
281
+ #: adrotate-output.php:1007
282
  #, fuzzy
283
  msgid "Learn more"
284
  msgstr "Μάθετε περισσότερα σχετικά"
359
  msgid "No data to show!"
360
  msgstr "Δεν υπάρχουν δεδομένα."
361
 
362
+ #: adrotate-widget.php:116
363
  msgid "Title (optional):"
364
  msgstr "Τίτλος (προαιρετικό):"
365
 
366
+ #: adrotate-widget.php:119
367
  msgid "HTML will be stripped out."
368
  msgstr "Το HTML θα αφαιρεθεί."
369
 
370
+ #: adrotate-widget.php:122
371
  msgid "Description (optional):"
372
  msgstr "Περιγραφή (προαιρετικό):"
373
 
374
+ #: adrotate-widget.php:125
375
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
376
  msgstr ""
377
  "Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
378
  "αφαιρεθεί.)"
379
 
380
+ #: adrotate-widget.php:128
381
  msgid "Type:"
382
  msgstr "Τύπος:"
383
 
384
+ #: adrotate-widget.php:130
385
  msgid "Single Ad - Use Ad ID"
386
  msgstr "Μονή Διαφήμιση - Δώστε Κωδ. Διαφ."
387
 
388
+ #: adrotate-widget.php:131
389
  msgid "Group of Ads - Use group ID"
390
  msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
391
 
392
+ #: adrotate-widget.php:134
393
  msgid "Choose what you want to use this widget for"
394
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
395
 
396
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
397
  msgid "ID:"
398
  msgstr "Κωδ:"
399
 
400
+ #: adrotate-widget.php:140
401
  msgid "Fill in the ID of the type you want to display!"
402
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
403
 
894
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
895
  "απορίπτονται επίσης."
896
 
897
+ #: adrotate.php:724
898
  msgid "Learn more about"
899
  msgstr "Μάθετε περισσότερα σχετικά"
900
 
1312
  msgstr "Οι τελευταίες ημέρες"
1313
 
1314
  #: dashboard/adrotate-info.php:132
1315
+ msgid "Support AdRotate"
1316
+ msgstr "Υποστηρίξτε το AdRotate"
1317
+
1318
+ #: dashboard/adrotate-info.php:139
1319
+ 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
1327
  msgid "AdRotate News and Developer Blog"
1328
  msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
1329
 
1330
+ #: dashboard/adrotate-info.php:168
1331
+ #, fuzzy
1332
+ msgid "Get more features with AdRotate Pro"
1333
+ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1334
+
1335
+ #: dashboard/adrotate-info.php:171
1336
+ msgid ""
1337
+ "Benefit from extra features to reinforce your income with advertising "
1338
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1339
+ "Pro offers on top of the trusted features included in the free version."
1340
+ msgstr ""
1341
+
1342
+ #: dashboard/adrotate-info.php:171
1343
+ msgid "Want to know more about"
1344
+ msgstr ""
1345
+
1346
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1347
  #, fuzzy
1348
  msgid "Buy AdRotate Professional"
1349
  msgstr "AdRotate Pro"
1350
 
1351
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1352
  msgid "Singe License"
1353
  msgstr ""
1354
 
1355
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1356
  msgid "For one WordPress installation."
1357
  msgstr ""
1358
 
1359
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1360
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1361
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1362
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1363
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1364
  #, fuzzy
1365
  msgid "Buy now"
1366
  msgstr "Λάβετε μέτρα τώρα"
1367
 
1368
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1369
  msgid "Duo License"
1370
  msgstr ""
1371
 
1372
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1373
  msgid "For two WordPress installations."
1374
  msgstr ""
1375
 
1376
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1377
  msgid "Multi License"
1378
  msgstr ""
1379
 
1380
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1381
  msgid " For up to five WordPress installations."
1382
  msgstr ""
1383
 
1384
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1385
  #, fuzzy
1386
  msgid "Developer License"
1387
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1388
 
1389
+ #: dashboard/adrotate-info.php:182
1390
+ msgid "Unlimited WordPress installations and/or networks."
1391
  msgstr ""
1392
 
1393
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1394
  msgid "Network License"
1395
  msgstr ""
1396
 
1397
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1398
  msgid "Set up your own advertising network on a WordPress Multisite."
1399
  msgstr ""
1400
 
1401
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1402
  msgid "Compare licenses"
1403
  msgstr ""
1404
 
1405
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1406
  msgid "Not sure which license is for you? Compare them..."
1407
  msgstr ""
1408
 
1409
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1410
  msgid "All Licenses"
1411
  msgstr ""
1412
 
1413
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1414
  msgid "AdRotate is brought to you by"
1415
  msgstr "Το AdRotate έρχεται από την "
1416
 
1417
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1418
  msgid ""
1419
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1420
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1425
  "μετακινήσετε την ιστοσελίδα σας, επισκεφθείτε τον ιστοτόπο μας για "
1426
  "πληροφορίες!"
1427
 
1428
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1429
  msgid "Find out more"
1430
  msgstr "Μάθετε περισσότερα"
1431
 
1432
+ #: dashboard/adrotate-info.php:194
1433
  msgid "Follow"
1434
  msgstr ""
1435
 
1490
  "miss an expiration date again."
1491
  msgstr ""
1492
 
1493
+ #: dashboard/adrotate-pro.php:83
1494
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1495
+ msgstr ""
1496
+
1497
  #: dashboard/publisher/adrotate-ads-edit.php:46
1498
  msgid "The AdCode cannot be empty!"
1499
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
2571
  msgid "Statistics for group"
2572
  msgstr "Στατιστικά για την ομάδα"
2573
 
2574
+ #, fuzzy
2575
+ #~ msgid "AdRotate Website."
2576
+ #~ msgstr "Κατάστημα του AdRotate"
2577
+
2578
+ #, fuzzy
2579
+ #~ msgid "AdRotate Getting Started."
2580
+ #~ msgstr "Ρυθμίσεις AdRotate"
2581
+
2582
+ #, fuzzy
2583
+ #~ msgid "AdRotate Website Forum."
2584
+ #~ msgstr "Κατάστημα του AdRotate"
2585
+
2586
+ #~ msgid "You are using"
2587
+ #~ msgstr "Χρησιμοποιείτε το"
2588
+
2589
+ #, fuzzy
2590
+ #~ msgid "or go to the"
2591
+ #~ msgstr "Go"
2592
+
2593
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2594
+ #~ msgstr "Το δώρο σας θα εξασφαλίσει την συνέχεια της ανάπτυξης του AdRotate!"
2595
+
2596
  #, fuzzy
2597
  #~ msgid "AdRotate Server"
2598
  #~ msgstr "AdRotate Pro"
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-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
@@ -13,25 +13,25 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.7.3\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:811
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:814
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:759
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
- #: adrotate-output.php:760
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:761
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:762
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
- #: adrotate-output.php:780
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:782
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:789 adrotate-output.php:791
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:797
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:803
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:808
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:814
99
  #, fuzzy
100
  msgid ""
101
  "There was an error locating the database tables for AdRotate. Please "
@@ -105,196 +105,173 @@ msgstr ""
105
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
106
  "extensions. "
107
 
108
- #: adrotate-output.php:814
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:820
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
- #: adrotate-output.php:846
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
- #: adrotate-output.php:846
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
- #: adrotate-output.php:848
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:848
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
- #: adrotate-output.php:850
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:850
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
- #: adrotate-output.php:852
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
- #: adrotate-output.php:852
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:852
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
- #: adrotate-output.php:852
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:864
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
- #: adrotate-output.php:866
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:867
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
- #: adrotate-output.php:867
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:889
191
  msgid ""
192
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
193
  "Pro is in this menu. Check out the"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:889
197
  msgid "manuals"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:889 adrotate-output.php:985
201
  #: dashboard/publisher/adrotate-ads-edit.php:229
202
  msgid "and"
203
  msgstr ""
204
 
205
- #: adrotate-output.php:889
206
  msgid "forums"
207
  msgstr ""
208
 
209
- #: adrotate-output.php:925
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:926 adrotate-output.php:954
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
- #: adrotate-output.php:928
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
- #: adrotate-output.php:929
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
- #: adrotate-output.php:930
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
- #: adrotate-output.php:931
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
- #: adrotate-output.php:932
238
  msgid "WordPress.org Forum"
239
  msgstr ""
240
 
241
- #: adrotate-output.php:956
242
- #, fuzzy
243
- msgid "AdRotate Website."
244
- msgstr "Magasin AdRotate"
245
-
246
- #: adrotate-output.php:957
247
- #, fuzzy
248
- msgid "AdRotate Getting Started."
249
- msgstr "Paramètres de AdRotate"
250
-
251
- #: adrotate-output.php:958
252
- msgid "AdRotate Knoweledge base and manuals."
253
- msgstr ""
254
-
255
- #: adrotate-output.php:959
256
- #, fuzzy
257
- msgid "AdRotate Website Forum."
258
- msgstr "Magasin AdRotate"
259
-
260
- #: adrotate-output.php:960
261
- msgid "WordPress.org Forum."
262
- msgstr ""
263
-
264
- #: adrotate-output.php:977
265
  #, fuzzy
266
  msgid "Help AdRotate Grow"
267
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
268
 
269
- #: adrotate-output.php:978
270
  #, fuzzy
271
  msgid "Brought to you by"
272
  msgstr "Présenté par"
273
 
274
- #: adrotate-output.php:985
275
  msgid ""
276
  "A lot of users only think to review AdRotate when something goes wrong while "
277
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
278
  msgstr ""
279
 
280
- #: adrotate-output.php:985
281
  msgid "If you find AdRotate useful please leave your honest"
282
  msgstr ""
283
 
284
- #: adrotate-output.php:985
285
  msgid "rating"
286
  msgstr ""
287
 
288
- #: adrotate-output.php:985
289
  #, fuzzy
290
  msgid "review"
291
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
292
 
293
- #: adrotate-output.php:985
294
  msgid "on WordPress.org to help AdRotate grow in a positive way"
295
  msgstr ""
296
 
297
- #: adrotate-output.php:988
298
  #, fuzzy
299
  msgid ""
300
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -303,32 +280,32 @@ msgstr ""
303
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
304
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
305
 
306
- #: adrotate-output.php:988
307
  #, fuzzy
308
  msgid "Visit the"
309
  msgstr "Visitez le"
310
 
311
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
312
  #, fuzzy
313
  msgid "website"
314
  msgstr "site"
315
 
316
- #: adrotate-output.php:1018
317
  #, fuzzy
318
  msgid "Available in AdRotate Pro"
319
  msgstr "Disponible dans Adrotate Pro"
320
 
321
- #: adrotate-output.php:1018
322
  #, fuzzy
323
  msgid "More information..."
324
  msgstr "Plus d'informations..."
325
 
326
- #: adrotate-output.php:1019
327
  #, fuzzy
328
  msgid "This feature is available in AdRotate Pro"
329
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
330
 
331
- #: adrotate-output.php:1019
332
  #, fuzzy
333
  msgid "Learn more"
334
  msgstr "En savoir plus"
@@ -425,54 +402,54 @@ msgstr "Prochain"
425
  msgid "No data to show!"
426
  msgstr "Aucune donnée à montrer!"
427
 
428
- #: adrotate-widget.php:114
429
  #, fuzzy
430
  msgid "Title (optional):"
431
  msgstr "Titre (optionel) :"
432
 
433
- #: adrotate-widget.php:117
434
  #, fuzzy
435
  msgid "HTML will be stripped out."
436
  msgstr "Le code HTML sera retiré."
437
 
438
- #: adrotate-widget.php:120
439
  #, fuzzy
440
  msgid "Description (optional):"
441
  msgstr "Description (optionelle) :"
442
 
443
- #: adrotate-widget.php:123
444
  #, fuzzy
445
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
446
  msgstr ""
447
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
448
  "dépouillé.)"
449
 
450
- #: adrotate-widget.php:126
451
  #, fuzzy
452
  msgid "Type:"
453
  msgstr "Type :"
454
 
455
- #: adrotate-widget.php:128
456
  #, fuzzy
457
  msgid "Single Ad - Use Ad ID"
458
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
459
 
460
- #: adrotate-widget.php:129
461
  #, fuzzy
462
  msgid "Group of Ads - Use group ID"
463
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
464
 
465
- #: adrotate-widget.php:132
466
  #, fuzzy
467
  msgid "Choose what you want to use this widget for"
468
  msgstr "Choisissez le fonction de ce widget"
469
 
470
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
471
  #, fuzzy
472
  msgid "ID:"
473
  msgstr "ID :"
474
 
475
- #: adrotate-widget.php:138
476
  #, fuzzy
477
  msgid "Fill in the ID of the type you want to display!"
478
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
@@ -1027,7 +1004,7 @@ msgstr ""
1027
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
1028
  "bloqués."
1029
 
1030
- #: adrotate.php:724 dashboard/adrotate-info.php:175
1031
  #, fuzzy
1032
  msgid "Learn more about"
1033
  msgstr "En savoir plus sur"
@@ -1523,136 +1500,130 @@ msgstr "Les derniers jours"
1523
 
1524
  #: dashboard/adrotate-info.php:132
1525
  #, fuzzy
1526
- msgid "You are using"
1527
- msgstr "Vous utilisez"
 
 
 
 
1528
 
1529
- #: dashboard/adrotate-info.php:138
 
 
 
 
1530
  #, fuzzy
1531
  msgid "AdRotate News and Developer Blog"
1532
  msgstr "Actus AdRotate et blog du développeur"
1533
 
1534
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1535
  #, fuzzy
1536
  msgid "Buy AdRotate Professional"
1537
  msgstr "Achetez AdRotate Professionel"
1538
 
1539
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1540
  #, fuzzy
1541
  msgid "Singe License"
1542
  msgstr "Licence Unique"
1543
 
1544
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1545
  #, fuzzy
1546
  msgid "For one WordPress installation."
1547
  msgstr "Pour une installation Wordpress."
1548
 
1549
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1550
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1551
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1552
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1553
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1554
  #, fuzzy
1555
  msgid "Buy now"
1556
  msgstr "Achetez AdRotate Professionel"
1557
 
1558
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1559
  #, fuzzy
1560
  msgid "Duo License"
1561
  msgstr "Licence Duo"
1562
 
1563
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1564
  #, fuzzy
1565
  msgid "For two WordPress installations."
1566
  msgstr "Pour deux installations Wordpress."
1567
 
1568
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1569
  #, fuzzy
1570
  msgid "Multi License"
1571
  msgstr "Licence Multiple"
1572
 
1573
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1574
  #, fuzzy
1575
  msgid " For up to five WordPress installations."
1576
  msgstr "Pour un max de cinq installation Wordpress."
1577
 
1578
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1579
  #, fuzzy
1580
  msgid "Developer License"
1581
  msgstr "Licence de Developpeur"
1582
 
1583
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1584
- #, fuzzy
1585
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1586
  msgstr ""
1587
- "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
1588
- "réseaux."
1589
 
1590
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1591
  #, fuzzy
1592
  msgid "Network License"
1593
  msgstr "Licence Réseau"
1594
 
1595
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1596
  #, fuzzy
1597
  msgid "Set up your own advertising network on a WordPress Multisite."
1598
  msgstr ""
1599
  "Mettez en place votre propre réseau de publicité sur une installation "
1600
  "Wordpress Multisite."
1601
 
1602
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1603
  #, fuzzy
1604
  msgid "Compare licenses"
1605
  msgstr "Comparer les licences"
1606
 
1607
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1608
  #, fuzzy
1609
  msgid "Not sure which license is for you? Compare them..."
1610
  msgstr ""
1611
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1612
 
1613
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1614
  #, fuzzy
1615
  msgid "All Licenses"
1616
  msgstr "Toutes les licences"
1617
 
1618
- #: dashboard/adrotate-info.php:171
1619
- #, fuzzy
1620
- msgid "Get more features with AdRotate Pro"
1621
- msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1622
-
1623
- #: dashboard/adrotate-info.php:174
1624
- #, fuzzy
1625
- msgid ""
1626
- "Benefit from extra features to reinforce your income with advertising "
1627
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1628
- "Pro offers on top of the trusted features included in the free version."
1629
- msgstr ""
1630
- "Profitez de fonctionnalités supplémentaires pour renforcer votre revenu avec "
1631
- "des campagnes de publicité. Profitez au maximum de votre site Web avec les "
1632
- "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1633
- "la version gratuite."
1634
-
1635
- #: dashboard/adrotate-info.php:175
1636
- #, fuzzy
1637
- msgid "or go to the"
1638
- msgstr "Aller"
1639
-
1640
- #: dashboard/adrotate-info.php:179
1641
- #, fuzzy
1642
- msgid "Support AdRotate"
1643
- msgstr "Soutenez AdRotate"
1644
-
1645
- #: dashboard/adrotate-info.php:182
1646
- #, fuzzy
1647
- msgid "Your gift will ensure the continued development of AdRotate!"
1648
- msgstr "Votre don permettra d'assurer le développement continu de AdRotate!"
1649
-
1650
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1651
  #, fuzzy
1652
  msgid "AdRotate is brought to you by"
1653
  msgstr "AdRotate est offert par"
1654
 
1655
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1656
  #, fuzzy
1657
  msgid ""
1658
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
@@ -1664,12 +1635,12 @@ msgstr ""
1664
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1665
  "mon site pour tous les détails!"
1666
 
1667
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1668
  #, fuzzy
1669
  msgid "Find out more"
1670
  msgstr "En savoir plus"
1671
 
1672
- #: dashboard/adrotate-info.php:193
1673
  #, fuzzy
1674
  msgid "Follow"
1675
  msgstr "Suivre"
@@ -1754,6 +1725,13 @@ msgstr ""
1754
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1755
  "d'expiration."
1756
 
 
 
 
 
 
 
 
1757
  #: dashboard/publisher/adrotate-ads-edit.php:46
1758
  #, fuzzy
1759
  msgid "The AdCode cannot be empty!"
@@ -2997,6 +2975,30 @@ msgstr "Aucun groupe n'a été créé!"
2997
  msgid "Statistics for group"
2998
  msgstr "Statistiques pour le groupe"
2999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3000
  #, fuzzy
3001
  #~ msgid "AdRotate Server"
3002
  #~ msgstr "Serveur AdRotate"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:807
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:810
25
  #, fuzzy
26
  msgid "Folder not found or not accessible"
27
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
28
 
29
+ #: adrotate-output.php:747
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
+ #: adrotate-output.php:748
35
  #, fuzzy
36
  msgid ""
37
  "WordPress was unable to verify the authenticity of the url you have clicked. "
41
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
42
  "votre navigateur."
43
 
44
+ #: adrotate-output.php:749
45
  #, fuzzy
46
  msgid ""
47
  "If you have received the url you want to visit via email, you are being "
48
  "tricked!"
49
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
50
 
51
+ #: adrotate-output.php:750
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
+ #: adrotate-output.php:768
57
  #, fuzzy
58
  msgid ""
59
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
63
  "horaires/géographiques ou n'existe pas!"
64
 
65
+ #: adrotate-output.php:770
66
  #, fuzzy
67
  msgid ""
68
  "Error, Ad is not available at this time due to schedule/geolocation "
71
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
72
  "horaires/géographiques ou n'existe pas!"
73
 
74
+ #: adrotate-output.php:777 adrotate-output.php:779
75
  #, fuzzy
76
  msgid ""
77
  "Either there are no banners, they are disabled or none qualified for this "
80
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
81
  "cet endroit!"
82
 
83
+ #: adrotate-output.php:785
84
  #, fuzzy
85
  msgid "Error, no Ad ID set! Check your syntax!"
86
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
87
 
88
+ #: adrotate-output.php:791
89
  #, fuzzy
90
  msgid "Error, no group ID set! Check your syntax!"
91
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
92
 
93
+ #: adrotate-output.php:796
94
  #, fuzzy
95
  msgid "Error, group does not exist! Check your syntax!"
96
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
97
 
98
+ #: adrotate-output.php:802
99
  #, fuzzy
100
  msgid ""
101
  "There was an error locating the database tables for AdRotate. Please "
105
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
106
  "extensions. "
107
 
108
+ #: adrotate-output.php:802
109
  #, fuzzy
110
  msgid "If this does not solve the issue please seek support at"
111
  msgstr ""
112
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
113
  "support à"
114
 
115
+ #: adrotate-output.php:808
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
+ #: adrotate-output.php:834
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
+ #: adrotate-output.php:834
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
+ #: adrotate-output.php:836
131
  #, fuzzy
132
  msgid "active ad(s) are about to expire."
133
  msgstr "publicité(s) active(s) sont sur le point d'expirer"
134
 
135
+ #: adrotate-output.php:836
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
+ #: adrotate-output.php:838
141
  #, fuzzy
142
  msgid "active ad(s) with configuration errors."
143
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
144
 
145
+ #: adrotate-output.php:838
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
+ #: adrotate-output.php:840
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
+ #: adrotate-output.php:840
156
  #, fuzzy
157
  msgid "ad(s) are about to expire."
158
  msgstr "publicité(s) sont sur le point d'expirer"
159
 
160
+ #: adrotate-output.php:840
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
+ #: adrotate-output.php:840
166
  #, fuzzy
167
  msgid "Fix this as soon as possible"
168
  msgstr "Résoudre ce soucis dans les meilleurs délais"
169
 
170
+ #: adrotate-output.php:853
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
+ #: adrotate-output.php:855
176
  msgid ""
177
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
178
  "to the <strong>PRO</strong> version"
179
  msgstr ""
180
 
181
+ #: adrotate-output.php:856
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
+ #: adrotate-output.php:856
186
  #, fuzzy
187
  msgid "Thank you for your consideration!"
188
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
189
 
190
+ #: adrotate-output.php:896
191
  msgid ""
192
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
193
  "Pro is in this menu. Check out the"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:896
197
  msgid "manuals"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:896 adrotate-output.php:973
201
  #: dashboard/publisher/adrotate-ads-edit.php:229
202
  msgid "and"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:896
206
  msgid "forums"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:932
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:933
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:935
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
+ #: adrotate-output.php:936
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
+ #: adrotate-output.php:937
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
+ #: adrotate-output.php:938
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
+ #: adrotate-output.php:939
238
  msgid "WordPress.org Forum"
239
  msgstr ""
240
 
241
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  #, fuzzy
243
  msgid "Help AdRotate Grow"
244
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
245
 
246
+ #: adrotate-output.php:966
247
  #, fuzzy
248
  msgid "Brought to you by"
249
  msgstr "Présenté par"
250
 
251
+ #: adrotate-output.php:973
252
  msgid ""
253
  "A lot of users only think to review AdRotate when something goes wrong while "
254
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:973
258
  msgid "If you find AdRotate useful please leave your honest"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:973
262
  msgid "rating"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:973
266
  #, fuzzy
267
  msgid "review"
268
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
269
 
270
+ #: adrotate-output.php:973
271
  msgid "on WordPress.org to help AdRotate grow in a positive way"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:976
275
  #, fuzzy
276
  msgid ""
277
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
280
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
281
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
282
 
283
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
284
  #, fuzzy
285
  msgid "Visit the"
286
  msgstr "Visitez le"
287
 
288
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
289
  #, fuzzy
290
  msgid "website"
291
  msgstr "site"
292
 
293
+ #: adrotate-output.php:1006
294
  #, fuzzy
295
  msgid "Available in AdRotate Pro"
296
  msgstr "Disponible dans Adrotate Pro"
297
 
298
+ #: adrotate-output.php:1006
299
  #, fuzzy
300
  msgid "More information..."
301
  msgstr "Plus d'informations..."
302
 
303
+ #: adrotate-output.php:1007
304
  #, fuzzy
305
  msgid "This feature is available in AdRotate Pro"
306
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
307
 
308
+ #: adrotate-output.php:1007
309
  #, fuzzy
310
  msgid "Learn more"
311
  msgstr "En savoir plus"
402
  msgid "No data to show!"
403
  msgstr "Aucune donnée à montrer!"
404
 
405
+ #: adrotate-widget.php:116
406
  #, fuzzy
407
  msgid "Title (optional):"
408
  msgstr "Titre (optionel) :"
409
 
410
+ #: adrotate-widget.php:119
411
  #, fuzzy
412
  msgid "HTML will be stripped out."
413
  msgstr "Le code HTML sera retiré."
414
 
415
+ #: adrotate-widget.php:122
416
  #, fuzzy
417
  msgid "Description (optional):"
418
  msgstr "Description (optionelle) :"
419
 
420
+ #: adrotate-widget.php:125
421
  #, fuzzy
422
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
423
  msgstr ""
424
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
425
  "dépouillé.)"
426
 
427
+ #: adrotate-widget.php:128
428
  #, fuzzy
429
  msgid "Type:"
430
  msgstr "Type :"
431
 
432
+ #: adrotate-widget.php:130
433
  #, fuzzy
434
  msgid "Single Ad - Use Ad ID"
435
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
436
 
437
+ #: adrotate-widget.php:131
438
  #, fuzzy
439
  msgid "Group of Ads - Use group ID"
440
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
441
 
442
+ #: adrotate-widget.php:134
443
  #, fuzzy
444
  msgid "Choose what you want to use this widget for"
445
  msgstr "Choisissez le fonction de ce widget"
446
 
447
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
448
  #, fuzzy
449
  msgid "ID:"
450
  msgstr "ID :"
451
 
452
+ #: adrotate-widget.php:140
453
  #, fuzzy
454
  msgid "Fill in the ID of the type you want to display!"
455
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
1004
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
1005
  "bloqués."
1006
 
1007
+ #: adrotate.php:724
1008
  #, fuzzy
1009
  msgid "Learn more about"
1010
  msgstr "En savoir plus sur"
1500
 
1501
  #: dashboard/adrotate-info.php:132
1502
  #, fuzzy
1503
+ msgid "Support AdRotate"
1504
+ msgstr "Soutenez AdRotate"
1505
+
1506
+ #: dashboard/adrotate-info.php:139
1507
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1508
+ msgstr ""
1509
 
1510
+ #: dashboard/adrotate-info.php:139
1511
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1512
+ msgstr ""
1513
+
1514
+ #: dashboard/adrotate-info.php:148
1515
  #, fuzzy
1516
  msgid "AdRotate News and Developer Blog"
1517
  msgstr "Actus AdRotate et blog du développeur"
1518
 
1519
+ #: dashboard/adrotate-info.php:168
1520
+ #, fuzzy
1521
+ msgid "Get more features with AdRotate Pro"
1522
+ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1523
+
1524
+ #: dashboard/adrotate-info.php:171
1525
+ #, fuzzy
1526
+ msgid ""
1527
+ "Benefit from extra features to reinforce your income with advertising "
1528
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1529
+ "Pro offers on top of the trusted features included in the free version."
1530
+ msgstr ""
1531
+ "Profitez de fonctionnalités supplémentaires pour renforcer votre revenu avec "
1532
+ "des campagnes de publicité. Profitez au maximum de votre site Web avec les "
1533
+ "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1534
+ "la version gratuite."
1535
+
1536
+ #: dashboard/adrotate-info.php:171
1537
+ msgid "Want to know more about"
1538
+ msgstr ""
1539
+
1540
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1541
  #, fuzzy
1542
  msgid "Buy AdRotate Professional"
1543
  msgstr "Achetez AdRotate Professionel"
1544
 
1545
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1546
  #, fuzzy
1547
  msgid "Singe License"
1548
  msgstr "Licence Unique"
1549
 
1550
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1551
  #, fuzzy
1552
  msgid "For one WordPress installation."
1553
  msgstr "Pour une installation Wordpress."
1554
 
1555
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1556
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1557
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1558
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1559
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1560
  #, fuzzy
1561
  msgid "Buy now"
1562
  msgstr "Achetez AdRotate Professionel"
1563
 
1564
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1565
  #, fuzzy
1566
  msgid "Duo License"
1567
  msgstr "Licence Duo"
1568
 
1569
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1570
  #, fuzzy
1571
  msgid "For two WordPress installations."
1572
  msgstr "Pour deux installations Wordpress."
1573
 
1574
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1575
  #, fuzzy
1576
  msgid "Multi License"
1577
  msgstr "Licence Multiple"
1578
 
1579
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1580
  #, fuzzy
1581
  msgid " For up to five WordPress installations."
1582
  msgstr "Pour un max de cinq installation Wordpress."
1583
 
1584
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1585
  #, fuzzy
1586
  msgid "Developer License"
1587
  msgstr "Licence de Developpeur"
1588
 
1589
+ #: dashboard/adrotate-info.php:182
1590
+ msgid "Unlimited WordPress installations and/or networks."
 
1591
  msgstr ""
 
 
1592
 
1593
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1594
  #, fuzzy
1595
  msgid "Network License"
1596
  msgstr "Licence Réseau"
1597
 
1598
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1599
  #, fuzzy
1600
  msgid "Set up your own advertising network on a WordPress Multisite."
1601
  msgstr ""
1602
  "Mettez en place votre propre réseau de publicité sur une installation "
1603
  "Wordpress Multisite."
1604
 
1605
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1606
  #, fuzzy
1607
  msgid "Compare licenses"
1608
  msgstr "Comparer les licences"
1609
 
1610
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1611
  #, fuzzy
1612
  msgid "Not sure which license is for you? Compare them..."
1613
  msgstr ""
1614
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1615
 
1616
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1617
  #, fuzzy
1618
  msgid "All Licenses"
1619
  msgstr "Toutes les licences"
1620
 
1621
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1622
  #, fuzzy
1623
  msgid "AdRotate is brought to you by"
1624
  msgstr "AdRotate est offert par"
1625
 
1626
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1627
  #, fuzzy
1628
  msgid ""
1629
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1635
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1636
  "mon site pour tous les détails!"
1637
 
1638
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1639
  #, fuzzy
1640
  msgid "Find out more"
1641
  msgstr "En savoir plus"
1642
 
1643
+ #: dashboard/adrotate-info.php:194
1644
  #, fuzzy
1645
  msgid "Follow"
1646
  msgstr "Suivre"
1725
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1726
  "d'expiration."
1727
 
1728
+ #: dashboard/adrotate-pro.php:83
1729
+ #, fuzzy
1730
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1731
+ msgstr ""
1732
+ "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
1733
+ "réseaux."
1734
+
1735
  #: dashboard/publisher/adrotate-ads-edit.php:46
1736
  #, fuzzy
1737
  msgid "The AdCode cannot be empty!"
2975
  msgid "Statistics for group"
2976
  msgstr "Statistiques pour le groupe"
2977
 
2978
+ #, fuzzy
2979
+ #~ msgid "AdRotate Website."
2980
+ #~ msgstr "Magasin AdRotate"
2981
+
2982
+ #, fuzzy
2983
+ #~ msgid "AdRotate Getting Started."
2984
+ #~ msgstr "Paramètres de AdRotate"
2985
+
2986
+ #, fuzzy
2987
+ #~ msgid "AdRotate Website Forum."
2988
+ #~ msgstr "Magasin AdRotate"
2989
+
2990
+ #, fuzzy
2991
+ #~ msgid "You are using"
2992
+ #~ msgstr "Vous utilisez"
2993
+
2994
+ #, fuzzy
2995
+ #~ msgid "or go to the"
2996
+ #~ msgstr "Aller"
2997
+
2998
+ #, fuzzy
2999
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
3000
+ #~ msgstr "Votre don permettra d'assurer le développement continu de AdRotate!"
3001
+
3002
  #, fuzzy
3003
  #~ msgid "AdRotate Server"
3004
  #~ msgstr "Serveur AdRotate"
language/adrotate-es_ES.mo CHANGED
Binary file
language/adrotate-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+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"
@@ -13,23 +13,23 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.7.3\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:811
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
- #: adrotate-functions.php:814
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
- #: adrotate-output.php:759
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
- #: adrotate-output.php:760
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:761
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:762
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
- #: adrotate-output.php:780
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:782
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:789 adrotate-output.php:791
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:797
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:803
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:808
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:814
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,182 +93,159 @@ msgstr ""
93
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
94
  "desactivar y volver a activar el plugin AdRotate de la página!"
95
 
96
- #: adrotate-output.php:814
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:820
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
- #: adrotate-output.php:846
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
- #: adrotate-output.php:846
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
- #: adrotate-output.php:848
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:848
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
- #: adrotate-output.php:850
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
- #: adrotate-output.php:850
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
- #: adrotate-output.php:852
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
- #: adrotate-output.php:852
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
- #: adrotate-output.php:852
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
- #: adrotate-output.php:852
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
- #: adrotate-output.php:864
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
- #: adrotate-output.php:866
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:867
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
- #: adrotate-output.php:867
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:889
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
167
  "Pro is in this menu. Check out the"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:889
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
- #: adrotate-output.php:889 adrotate-output.php:985
175
  #: dashboard/publisher/adrotate-ads-edit.php:229
176
  msgid "and"
177
  msgstr ""
178
 
179
- #: adrotate-output.php:889
180
  msgid "forums"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:925
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
- #: adrotate-output.php:926 adrotate-output.php:954
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:928
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
- #: adrotate-output.php:929
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
- #: adrotate-output.php:930
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
- #: adrotate-output.php:931
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
- #: adrotate-output.php:932
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:956
217
- #, fuzzy
218
- msgid "AdRotate Website."
219
- msgstr "Tienda AdRotate"
220
-
221
- #: adrotate-output.php:957
222
- #, fuzzy
223
- msgid "AdRotate Getting Started."
224
- msgstr "Ajustes AdRotate"
225
-
226
- #: adrotate-output.php:958
227
- msgid "AdRotate Knoweledge base and manuals."
228
- msgstr ""
229
-
230
- #: adrotate-output.php:959
231
- #, fuzzy
232
- msgid "AdRotate Website Forum."
233
- msgstr "Tienda AdRotate"
234
-
235
- #: adrotate-output.php:960
236
- msgid "WordPress.org Forum."
237
- msgstr ""
238
-
239
- #: adrotate-output.php:977
240
  #, fuzzy
241
  msgid "Help AdRotate Grow"
242
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
243
 
244
- #: adrotate-output.php:978
245
  msgid "Brought to you by"
246
  msgstr "Presentado por"
247
 
248
- #: adrotate-output.php:985
249
  msgid ""
250
  "A lot of users only think to review AdRotate when something goes wrong while "
251
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
252
  msgstr ""
253
 
254
- #: adrotate-output.php:985
255
  msgid "If you find AdRotate useful please leave your honest"
256
  msgstr ""
257
 
258
- #: adrotate-output.php:985
259
  msgid "rating"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:985
263
  #, fuzzy
264
  msgid "review"
265
  msgstr "Revise el anuncio aquí:"
266
 
267
- #: adrotate-output.php:985
268
  msgid "on WordPress.org to help AdRotate grow in a positive way"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:988
272
  msgid ""
273
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
274
  "out more about what I can do for you!"
@@ -276,27 +253,27 @@ msgstr ""
276
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
277
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
278
 
279
- #: adrotate-output.php:988
280
  msgid "Visit the"
281
  msgstr "Visite la"
282
 
283
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
284
  msgid "website"
285
  msgstr "página web"
286
 
287
- #: adrotate-output.php:1018
288
  msgid "Available in AdRotate Pro"
289
  msgstr "Disponible en AdRotate Pro"
290
 
291
- #: adrotate-output.php:1018
292
  msgid "More information..."
293
  msgstr "Más información..."
294
 
295
- #: adrotate-output.php:1019
296
  msgid "This feature is available in AdRotate Pro"
297
  msgstr "Esta función está disponible en AdRotate Pro"
298
 
299
- #: adrotate-output.php:1019
300
  msgid "Learn more"
301
  msgstr "Aprender más"
302
 
@@ -376,44 +353,44 @@ msgstr "Siguiente"
376
  msgid "No data to show!"
377
  msgstr "No hay datos para mostrar!"
378
 
379
- #: adrotate-widget.php:114
380
  msgid "Title (optional):"
381
  msgstr "Título (opcional):"
382
 
383
- #: adrotate-widget.php:117
384
  msgid "HTML will be stripped out."
385
  msgstr "El HTML será eliminado"
386
 
387
- #: adrotate-widget.php:120
388
  msgid "Description (optional):"
389
  msgstr "Descripción (opcional):"
390
 
391
- #: adrotate-widget.php:123
392
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
393
  msgstr ""
394
  "¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
395
 
396
- #: adrotate-widget.php:126
397
  msgid "Type:"
398
  msgstr "Tipo:"
399
 
400
- #: adrotate-widget.php:128
401
  msgid "Single Ad - Use Ad ID"
402
  msgstr "Anuncio Individual - Utilizar ID de Anuncio"
403
 
404
- #: adrotate-widget.php:129
405
  msgid "Group of Ads - Use group ID"
406
  msgstr "Grupo de Anuncios - Utilizar ID de grupo"
407
 
408
- #: adrotate-widget.php:132
409
  msgid "Choose what you want to use this widget for"
410
  msgstr "Elija lo que desea utilizar en este widget para"
411
 
412
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
413
  msgid "ID:"
414
  msgstr "ID:"
415
 
416
- #: adrotate-widget.php:138
417
  msgid "Fill in the ID of the type you want to display!"
418
  msgstr "Rellene con el ID del tipo que desea mostrar!"
419
 
@@ -921,7 +898,7 @@ msgstr ""
921
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
922
  "bloqueados."
923
 
924
- #: adrotate.php:724 dashboard/adrotate-info.php:175
925
  msgid "Learn more about"
926
  msgstr "Más información sobre"
927
 
@@ -1338,110 +1315,110 @@ msgid "The last few days"
1338
  msgstr "Los últimos días"
1339
 
1340
  #: dashboard/adrotate-info.php:132
1341
- msgid "You are using"
1342
- msgstr "Está utilizando"
 
 
 
 
 
 
 
 
1343
 
1344
- #: dashboard/adrotate-info.php:138
1345
  msgid "AdRotate News and Developer Blog"
1346
  msgstr "Noticias y Blog del Desarrollador de AdRotate "
1347
 
1348
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1349
  msgid "Buy AdRotate Professional"
1350
  msgstr "Comprar AdRotate Profesional"
1351
 
1352
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1353
  msgid "Singe License"
1354
  msgstr "Singe Licencia"
1355
 
1356
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1357
  msgid "For one WordPress installation."
1358
  msgstr "Para una instalación de WordPress."
1359
 
1360
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1361
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1362
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1363
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1364
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1365
  #, fuzzy
1366
  msgid "Buy now"
1367
  msgstr "Comprar"
1368
 
1369
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1370
  msgid "Duo License"
1371
  msgstr "Duo Licencia"
1372
 
1373
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1374
  msgid "For two WordPress installations."
1375
  msgstr "Para dos instalaciónes de WordPress."
1376
 
1377
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1378
  msgid "Multi License"
1379
  msgstr "Multi Licencia"
1380
 
1381
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1382
  msgid " For up to five WordPress installations."
1383
  msgstr "Para un máximo de cinco instalaciones de WordPress."
1384
 
1385
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1386
  msgid "Developer License"
1387
  msgstr "Developer Licencia"
1388
 
1389
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1390
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1391
- msgstr "Activar AdRotate en ilimitadas instalaciones de WordPress y/o redes."
1392
 
1393
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1394
  msgid "Network License"
1395
  msgstr "Network Licencia"
1396
 
1397
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1398
  msgid "Set up your own advertising network on a WordPress Multisite."
1399
  msgstr "Configure su propia red de publicidad en un WordPress Multisite."
1400
 
1401
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1402
  msgid "Compare licenses"
1403
  msgstr "Comparar licencias"
1404
 
1405
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1406
  msgid "Not sure which license is for you? Compare them..."
1407
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
1408
 
1409
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1410
  msgid "All Licenses"
1411
  msgstr "Todas las licencias"
1412
 
1413
- #: dashboard/adrotate-info.php:171
1414
- msgid "Get more features with AdRotate Pro"
1415
- msgstr "Obtenga más funciones con AdRotate Pro"
1416
-
1417
- #: dashboard/adrotate-info.php:174
1418
- msgid ""
1419
- "Benefit from extra features to reinforce your income with advertising "
1420
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1421
- "Pro offers on top of the trusted features included in the free version."
1422
- msgstr ""
1423
- "Benefíciese de las características adicionales para reforzar sus ingresos "
1424
- "con campañas de publicidad. Obtenga el máximo partido de su sitio web con "
1425
- "las potentes herramientas que AdRotate Pro le ofrece, además de las "
1426
- "funcionalidades más que fiables incluidas en la versión gratuita."
1427
-
1428
- #: dashboard/adrotate-info.php:175
1429
- msgid "or go to the"
1430
- msgstr "o ir a la"
1431
-
1432
- #: dashboard/adrotate-info.php:179
1433
- msgid "Support AdRotate"
1434
- msgstr "Apoye a AdRotate"
1435
-
1436
- #: dashboard/adrotate-info.php:182
1437
- msgid "Your gift will ensure the continued development of AdRotate!"
1438
- msgstr "Su donación asegurará el continuo desarrollo de AdRotate!"
1439
-
1440
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1441
  msgid "AdRotate is brought to you by"
1442
  msgstr "AdRotate es ofrecido por"
1443
 
1444
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1445
  msgid ""
1446
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1447
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1452,11 +1429,11 @@ msgstr ""
1452
  "(Theme) o si necesita trasladar/migrar su sitio completamente. Visite mi "
1453
  "página web para más detalles!"
1454
 
1455
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1456
  msgid "Find out more"
1457
  msgstr "Para saber más"
1458
 
1459
- #: dashboard/adrotate-info.php:193
1460
  msgid "Follow"
1461
  msgstr "Continuar"
1462
 
@@ -1536,6 +1513,10 @@ msgstr ""
1536
  "los anunciantes crean nuevos anuncios. Que no se te pase más ninguna fecha "
1537
  "de expiración de tus anuncios."
1538
 
 
 
 
 
1539
  #: dashboard/publisher/adrotate-ads-edit.php:46
1540
  msgid "The AdCode cannot be empty!"
1541
  msgstr "El AdCode no puede estar vacío!"
@@ -2602,6 +2583,27 @@ msgstr "No hay grupos creados!"
2602
  msgid "Statistics for group"
2603
  msgstr "Estadisticas por Grupo"
2604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2605
  #~ msgid "AdRotate Server"
2606
  #~ msgstr "Servidor AdRotate"
2607
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
9
  "Language: es_ES\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
+ #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
37
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
38
  "Verificar si la url utilizada es válida o acceder a través del navegador."
39
 
40
+ #: adrotate-output.php:749
41
  msgid ""
42
  "If you have received the url you want to visit via email, you are being "
43
  "tricked!"
45
  "Si usted ha recibido la url que desea visitar a través del correo "
46
  "electrónico, es posible que le esten engañando!"
47
 
48
+ #: adrotate-output.php:750
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
+ #: adrotate-output.php:768
53
  msgid ""
54
  "Error, Ad is not available at this time due to schedule/geolocation "
55
  "restrictions or does not exist!"
57
  "ERROR: El anuncio no está disponible en este momento debido a las "
58
  "restricciones de programa, de geolocalización o no existe!"
59
 
60
+ #: adrotate-output.php:770
61
  msgid ""
62
  "Error, Ad is not available at this time due to schedule/geolocation "
63
  "restrictions!"
65
  "ERROR: El anuncio no está disponible en este momento debido a las "
66
  "restricciones restricciones de programa o geolocalización!"
67
 
68
+ #: adrotate-output.php:777 adrotate-output.php:779
69
  msgid ""
70
  "Either there are no banners, they are disabled or none qualified for this "
71
  "location!"
73
  "O bien no hay banners, estan desactivados o no estan programados para esta "
74
  "ubicación!"
75
 
76
+ #: adrotate-output.php:785
77
  msgid "Error, no Ad ID set! Check your syntax!"
78
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
79
 
80
+ #: adrotate-output.php:791
81
  msgid "Error, no group ID set! Check your syntax!"
82
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
83
 
84
+ #: adrotate-output.php:796
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
87
 
88
+ #: adrotate-output.php:802
89
  msgid ""
90
  "There was an error locating the database tables for AdRotate. Please "
91
  "deactivate and re-activate AdRotate from the plugin page!!"
93
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
94
  "desactivar y volver a activar el plugin AdRotate de la página!"
95
 
96
+ #: adrotate-output.php:802
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
99
 
100
+ #: adrotate-output.php:808
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
+ #: adrotate-output.php:834
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
+ #: adrotate-output.php:834
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
+ #: adrotate-output.php:836
113
  msgid "active ad(s) are about to expire."
114
  msgstr "anuncio(s) activo(s) están a punto de caducar."
115
 
116
+ #: adrotate-output.php:836
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
+ #: adrotate-output.php:838
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
+ #: adrotate-output.php:838
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
+ #: adrotate-output.php:840
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
+ #: adrotate-output.php:840
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
+ #: adrotate-output.php:840
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
+ #: adrotate-output.php:840
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
+ #: adrotate-output.php:853
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
+ #: adrotate-output.php:855
150
  msgid ""
151
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
152
  "to the <strong>PRO</strong> version"
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:856
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:856
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Esta notificación se le envía desde su página web"
163
 
164
+ #: adrotate-output.php:896
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
167
  "Pro is in this menu. Check out the"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:896
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
+ #: adrotate-output.php:896 adrotate-output.php:973
175
  #: dashboard/publisher/adrotate-ads-edit.php:229
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:896
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:932
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
+ #: adrotate-output.php:933
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:935
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:936
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
+ #: adrotate-output.php:937
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
+ #: adrotate-output.php:938
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
+ #: adrotate-output.php:939
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
220
 
221
+ #: adrotate-output.php:966
222
  msgid "Brought to you by"
223
  msgstr "Presentado por"
224
 
225
+ #: adrotate-output.php:973
226
  msgid ""
227
  "A lot of users only think to review AdRotate when something goes wrong while "
228
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:973
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:973
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:973
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Revise el anuncio aquí:"
243
 
244
+ #: adrotate-output.php:973
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:976
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
253
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
254
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
255
 
256
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Visite la"
259
 
260
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "página web"
263
 
264
+ #: adrotate-output.php:1006
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Disponible en AdRotate Pro"
267
 
268
+ #: adrotate-output.php:1006
269
  msgid "More information..."
270
  msgstr "Más información..."
271
 
272
+ #: adrotate-output.php:1007
273
  msgid "This feature is available in AdRotate Pro"
274
  msgstr "Esta función está disponible en AdRotate Pro"
275
 
276
+ #: adrotate-output.php:1007
277
  msgid "Learn more"
278
  msgstr "Aprender más"
279
 
353
  msgid "No data to show!"
354
  msgstr "No hay datos para mostrar!"
355
 
356
+ #: adrotate-widget.php:116
357
  msgid "Title (optional):"
358
  msgstr "Título (opcional):"
359
 
360
+ #: adrotate-widget.php:119
361
  msgid "HTML will be stripped out."
362
  msgstr "El HTML será eliminado"
363
 
364
+ #: adrotate-widget.php:122
365
  msgid "Description (optional):"
366
  msgstr "Descripción (opcional):"
367
 
368
+ #: adrotate-widget.php:125
369
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
370
  msgstr ""
371
  "¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
372
 
373
+ #: adrotate-widget.php:128
374
  msgid "Type:"
375
  msgstr "Tipo:"
376
 
377
+ #: adrotate-widget.php:130
378
  msgid "Single Ad - Use Ad ID"
379
  msgstr "Anuncio Individual - Utilizar ID de Anuncio"
380
 
381
+ #: adrotate-widget.php:131
382
  msgid "Group of Ads - Use group ID"
383
  msgstr "Grupo de Anuncios - Utilizar ID de grupo"
384
 
385
+ #: adrotate-widget.php:134
386
  msgid "Choose what you want to use this widget for"
387
  msgstr "Elija lo que desea utilizar en este widget para"
388
 
389
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
390
  msgid "ID:"
391
  msgstr "ID:"
392
 
393
+ #: adrotate-widget.php:140
394
  msgid "Fill in the ID of the type you want to display!"
395
  msgstr "Rellene con el ID del tipo que desea mostrar!"
396
 
898
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
899
  "bloqueados."
900
 
901
+ #: adrotate.php:724
902
  msgid "Learn more about"
903
  msgstr "Más información sobre"
904
 
1315
  msgstr "Los últimos días"
1316
 
1317
  #: dashboard/adrotate-info.php:132
1318
+ msgid "Support AdRotate"
1319
+ msgstr "Apoye a AdRotate"
1320
+
1321
+ #: dashboard/adrotate-info.php:139
1322
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1323
+ msgstr ""
1324
+
1325
+ #: dashboard/adrotate-info.php:139
1326
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1327
+ msgstr ""
1328
 
1329
+ #: dashboard/adrotate-info.php:148
1330
  msgid "AdRotate News and Developer Blog"
1331
  msgstr "Noticias y Blog del Desarrollador de AdRotate "
1332
 
1333
+ #: dashboard/adrotate-info.php:168
1334
+ msgid "Get more features with AdRotate Pro"
1335
+ msgstr "Obtenga más funciones con AdRotate Pro"
1336
+
1337
+ #: dashboard/adrotate-info.php:171
1338
+ msgid ""
1339
+ "Benefit from extra features to reinforce your income with advertising "
1340
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1341
+ "Pro offers on top of the trusted features included in the free version."
1342
+ msgstr ""
1343
+ "Benefíciese de las características adicionales para reforzar sus ingresos "
1344
+ "con campañas de publicidad. Obtenga el máximo partido de su sitio web con "
1345
+ "las potentes herramientas que AdRotate Pro le ofrece, además de las "
1346
+ "funcionalidades más que fiables incluidas en la versión gratuita."
1347
+
1348
+ #: dashboard/adrotate-info.php:171
1349
+ msgid "Want to know more about"
1350
+ msgstr ""
1351
+
1352
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1353
  msgid "Buy AdRotate Professional"
1354
  msgstr "Comprar AdRotate Profesional"
1355
 
1356
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1357
  msgid "Singe License"
1358
  msgstr "Singe Licencia"
1359
 
1360
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1361
  msgid "For one WordPress installation."
1362
  msgstr "Para una instalación de WordPress."
1363
 
1364
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1365
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1366
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1367
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1368
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1369
  #, fuzzy
1370
  msgid "Buy now"
1371
  msgstr "Comprar"
1372
 
1373
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1374
  msgid "Duo License"
1375
  msgstr "Duo Licencia"
1376
 
1377
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1378
  msgid "For two WordPress installations."
1379
  msgstr "Para dos instalaciónes de WordPress."
1380
 
1381
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1382
  msgid "Multi License"
1383
  msgstr "Multi Licencia"
1384
 
1385
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1386
  msgid " For up to five WordPress installations."
1387
  msgstr "Para un máximo de cinco instalaciones de WordPress."
1388
 
1389
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1390
  msgid "Developer License"
1391
  msgstr "Developer Licencia"
1392
 
1393
+ #: dashboard/adrotate-info.php:182
1394
+ msgid "Unlimited WordPress installations and/or networks."
1395
+ msgstr ""
1396
 
1397
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1398
  msgid "Network License"
1399
  msgstr "Network Licencia"
1400
 
1401
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1402
  msgid "Set up your own advertising network on a WordPress Multisite."
1403
  msgstr "Configure su propia red de publicidad en un WordPress Multisite."
1404
 
1405
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1406
  msgid "Compare licenses"
1407
  msgstr "Comparar licencias"
1408
 
1409
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1410
  msgid "Not sure which license is for you? Compare them..."
1411
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
1412
 
1413
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1414
  msgid "All Licenses"
1415
  msgstr "Todas las licencias"
1416
 
1417
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1418
  msgid "AdRotate is brought to you by"
1419
  msgstr "AdRotate es ofrecido por"
1420
 
1421
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1422
  msgid ""
1423
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1424
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1429
  "(Theme) o si necesita trasladar/migrar su sitio completamente. Visite mi "
1430
  "página web para más detalles!"
1431
 
1432
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1433
  msgid "Find out more"
1434
  msgstr "Para saber más"
1435
 
1436
+ #: dashboard/adrotate-info.php:194
1437
  msgid "Follow"
1438
  msgstr "Continuar"
1439
 
1513
  "los anunciantes crean nuevos anuncios. Que no se te pase más ninguna fecha "
1514
  "de expiración de tus anuncios."
1515
 
1516
+ #: dashboard/adrotate-pro.php:83
1517
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1518
+ msgstr "Activar AdRotate en ilimitadas instalaciones de WordPress y/o redes."
1519
+
1520
  #: dashboard/publisher/adrotate-ads-edit.php:46
1521
  msgid "The AdCode cannot be empty!"
1522
  msgstr "El AdCode no puede estar vacío!"
2583
  msgid "Statistics for group"
2584
  msgstr "Estadisticas por Grupo"
2585
 
2586
+ #, fuzzy
2587
+ #~ msgid "AdRotate Website."
2588
+ #~ msgstr "Tienda AdRotate"
2589
+
2590
+ #, fuzzy
2591
+ #~ msgid "AdRotate Getting Started."
2592
+ #~ msgstr "Ajustes AdRotate"
2593
+
2594
+ #, fuzzy
2595
+ #~ msgid "AdRotate Website Forum."
2596
+ #~ msgstr "Tienda AdRotate"
2597
+
2598
+ #~ msgid "You are using"
2599
+ #~ msgstr "Está utilizando"
2600
+
2601
+ #~ msgid "or go to the"
2602
+ #~ msgstr "o ir a la"
2603
+
2604
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2605
+ #~ msgstr "Su donación asegurará el continuo desarrollo de AdRotate!"
2606
+
2607
  #~ msgid "AdRotate Server"
2608
  #~ msgstr "Servidor AdRotate"
2609
 
language/adrotate-fr_FR.mo CHANGED
Binary file
language/adrotate-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-11-30 00:39+0100\n"
6
- "PO-Revision-Date: 2014-11-30 00:39+0100\n"
7
- "Last-Translator: Arnan de Gans <adegans@meandmymac.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: en_US\n"
10
  "MIME-Version: 1.0\n"
@@ -13,23 +13,23 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.6.9\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:718
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:721
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:741
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
- #: adrotate-output.php:742
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:743
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:744
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
- #: adrotate-output.php:762
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:764
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:771 adrotate-output.php:773
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:779
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:785
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:790
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:796
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,112 +93,155 @@ msgstr ""
93
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
94
  "extensions. "
95
 
96
- #: adrotate-output.php:796
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:802
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:848
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:849
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
- #: adrotate-output.php:849
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
- #: adrotate-output.php:907
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  #, fuzzy
167
  msgid "Help AdRotate Grow"
168
  msgstr "AdRotate Pro"
169
 
170
- #: adrotate-output.php:908
171
  msgid "Brought to you by"
172
  msgstr "Présenté par"
173
 
174
- #: adrotate-output.php:915
175
  msgid ""
176
  "A lot of users only think to review AdRotate when something goes wrong while "
177
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
178
  msgstr ""
179
 
180
- #: adrotate-output.php:915
181
  msgid "If you find AdRotate useful please leave your honest"
182
  msgstr ""
183
 
184
- #: adrotate-output.php:915
185
  msgid "rating"
186
  msgstr ""
187
 
188
- #: adrotate-output.php:915 dashboard/publisher/adrotate-ads-edit.php:241
189
- msgid "and"
190
- msgstr ""
191
-
192
- #: adrotate-output.php:915
193
  #, fuzzy
194
  msgid "review"
195
  msgstr "En avant-première"
196
 
197
- #: adrotate-output.php:915
198
  msgid "on WordPress.org to help AdRotate grow in a positive way"
199
  msgstr ""
200
 
201
- #: adrotate-output.php:918
202
  msgid ""
203
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
204
  "out more about what I can do for you!"
@@ -206,87 +249,87 @@ msgstr ""
206
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
207
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
208
 
209
- #: adrotate-output.php:918
210
  msgid "Visit the"
211
  msgstr "Visitez le"
212
 
213
- #: adrotate-output.php:918 dashboard/adrotate-info.php:172
214
  msgid "website"
215
  msgstr "site"
216
 
217
- #: adrotate-output.php:948
218
  msgid "Available in AdRotate Pro"
219
  msgstr "Disponible dans Adrotate Pro"
220
 
221
- #: adrotate-output.php:948
222
  msgid "More information..."
223
  msgstr "Plus d'informations..."
224
 
225
- #: adrotate-output.php:949
226
  msgid "This feature is available in AdRotate Pro"
227
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
228
 
229
- #: adrotate-output.php:949
230
  msgid "Learn more"
231
  msgstr "En savoir plus"
232
 
233
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:347
234
- #: dashboard/publisher/adrotate-ads-edit.php:368
235
  msgid "January"
236
  msgstr "Janvier"
237
 
238
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:348
239
- #: dashboard/publisher/adrotate-ads-edit.php:369
240
  msgid "February"
241
  msgstr "Février"
242
 
243
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:349
244
- #: dashboard/publisher/adrotate-ads-edit.php:370
245
  msgid "March"
246
  msgstr "Mars"
247
 
248
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:350
249
- #: dashboard/publisher/adrotate-ads-edit.php:371
250
  msgid "April"
251
  msgstr "Avril"
252
 
253
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:351
254
- #: dashboard/publisher/adrotate-ads-edit.php:372
255
  msgid "May"
256
  msgstr "Mai"
257
 
258
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:352
259
- #: dashboard/publisher/adrotate-ads-edit.php:373
260
  msgid "June"
261
  msgstr "Juin"
262
 
263
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:353
264
- #: dashboard/publisher/adrotate-ads-edit.php:374
265
  msgid "July"
266
  msgstr "Juillet"
267
 
268
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:354
269
- #: dashboard/publisher/adrotate-ads-edit.php:375
270
  msgid "August"
271
  msgstr "Août"
272
 
273
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:355
274
- #: dashboard/publisher/adrotate-ads-edit.php:376
275
  msgid "September"
276
  msgstr "Septembre"
277
 
278
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:356
279
- #: dashboard/publisher/adrotate-ads-edit.php:377
280
  msgid "October"
281
  msgstr "Octobre"
282
 
283
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:357
284
- #: dashboard/publisher/adrotate-ads-edit.php:378
285
  msgid "November"
286
  msgstr "Novembre"
287
 
288
- #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:358
289
- #: dashboard/publisher/adrotate-ads-edit.php:379
290
  msgid "December"
291
  msgstr "Décembre"
292
 
@@ -306,124 +349,120 @@ msgstr "Prochain"
306
  msgid "No data to show!"
307
  msgstr "Aucune donnée à montrer!"
308
 
309
- #: adrotate-widget.php:107
310
  msgid "Title (optional):"
311
  msgstr "Titre (optionel) :"
312
 
313
- #: adrotate-widget.php:110
314
  msgid "HTML will be stripped out."
315
  msgstr "Le code HTML sera retiré."
316
 
317
- #: adrotate-widget.php:113
318
  msgid "Description (optional):"
319
  msgstr "Description (optionelle) :"
320
 
321
- #: adrotate-widget.php:116
322
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
323
  msgstr ""
324
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
325
  "dépouillé.)"
326
 
327
- #: adrotate-widget.php:119
328
  msgid "Type:"
329
  msgstr "Type :"
330
 
331
- #: adrotate-widget.php:121
332
  msgid "Single Ad - Use Ad ID"
333
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
334
 
335
- #: adrotate-widget.php:122
336
  msgid "Group of Ads - Use group ID"
337
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
338
 
339
- #: adrotate-widget.php:123
340
- msgid "Block of Ads (Obsolete)"
341
- msgstr "Bloc de publicité (obsolète)"
342
-
343
- #: adrotate-widget.php:126
344
  msgid "Choose what you want to use this widget for"
345
  msgstr "Choisissez le fonction de ce widget"
346
 
347
- #: adrotate-widget.php:129 dashboard/publisher/adrotate-groups-edit.php:52
348
  msgid "ID:"
349
  msgstr "ID :"
350
 
351
- #: adrotate-widget.php:132
352
  msgid "Fill in the ID of the type you want to display!"
353
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
354
 
355
- #: adrotate.php:102
356
  msgid "General Info"
357
  msgstr "Informations générales"
358
 
359
- #: adrotate.php:103 dashboard/adrotate-info.php:161
360
  msgid "AdRotate Pro"
361
  msgstr "AdRotate Pro"
362
 
363
- #: adrotate.php:105
364
  msgid "Manage Ads"
365
  msgstr "Gérer les pubs"
366
 
367
- #: adrotate.php:107 dashboard/publisher/adrotate-groups-main.php:12
368
  msgid "Manage Groups"
369
  msgstr "Gérer les groupes"
370
 
371
- #: adrotate.php:109 adrotate.php:431
372
- #: dashboard/publisher/adrotate-ads-edit.php:418
373
  #, fuzzy
374
  msgid "Manage Schedules"
375
  msgstr "Gérer les pubs"
376
 
377
- #: adrotate.php:110
378
  #, fuzzy
379
  msgid "Manage Media"
380
  msgstr "Gérer les pubs"
381
 
382
- #: adrotate.php:113 adrotate.php:598
383
  msgid "Settings"
384
  msgstr "Paramètres"
385
 
386
- #: adrotate.php:127
387
  msgid "AdRotate Info"
388
  msgstr "Informations sur Adrotate"
389
 
390
- #: adrotate.php:148
391
  msgid "AdRotate Professional"
392
  msgstr "AdRotate professionel"
393
 
394
- #: adrotate.php:191
395
  msgid "Ad Management"
396
  msgstr "Gestion des pubs"
397
 
398
- #: adrotate.php:194
399
  msgid "Ad created"
400
  msgstr "Publicité créée"
401
 
402
- #: adrotate.php:196
403
  msgid "Ad updated"
404
  msgstr "Publicité mise à jour"
405
 
406
- #: adrotate.php:198
407
  msgid "Ad(s) deleted"
408
  msgstr "Publicité(s) supprimée(s)"
409
 
410
- #: adrotate.php:200
411
  msgid "Ad(s) statistics reset"
412
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
413
 
414
- #: adrotate.php:202
415
  msgid "Ad(s) renewed"
416
  msgstr "publicité(s) renouvellée(s)"
417
 
418
- #: adrotate.php:204
419
  msgid "Ad(s) deactivated"
420
  msgstr "Publicité(s) désactivée(s)"
421
 
422
- #: adrotate.php:206
423
  msgid "Ad(s) activated"
424
  msgstr "Publicité(s) activée(s)"
425
 
426
- #: adrotate.php:208
427
  msgid ""
428
  "The ad was saved but has an issue which might prevent it from working "
429
  "properly. Review the yellow marked ad."
@@ -431,182 +470,180 @@ msgstr ""
431
  "La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
432
  "fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
433
 
434
- #: adrotate.php:210
435
  #, fuzzy
436
  msgid "Export created"
437
  msgstr "Publicité créée"
438
 
439
- #: adrotate.php:214
440
  msgid "Action prohibited"
441
  msgstr "Action interdite"
442
 
443
- #: adrotate.php:216 adrotate.php:364
444
  msgid "No data found in selected time period"
445
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
446
 
447
- #: adrotate.php:274 adrotate.php:370 adrotate.php:426
448
  msgid "Manage"
449
  msgstr "Gérer"
450
 
451
- #: adrotate.php:275 adrotate.php:371 adrotate.php:427
452
  msgid "Add New"
453
  msgstr "Ajouter"
454
 
455
- #: adrotate.php:353
456
  msgid "Group Management"
457
  msgstr "Gérer les groupes"
458
 
459
- #: adrotate.php:356
460
  msgid "Group created"
461
  msgstr "Groupe créé"
462
 
463
- #: adrotate.php:358
464
  msgid "Group updated"
465
  msgstr "Groupe mis à jour"
466
 
467
- #: adrotate.php:360
468
  msgid "Group deleted"
469
  msgstr "Groupe supprimé"
470
 
471
- #: adrotate.php:362
472
  msgid "Group including it's Ads deleted"
473
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
474
 
475
- #: adrotate.php:422
476
  #, fuzzy
477
  msgid "Schedule Management available in AdRotate Pro"
478
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
479
 
480
- #: adrotate.php:432
481
  #, fuzzy
482
  msgid ""
483
  "Schedule management and multiple schedules per advert is available in "
484
  "AdRotate Pro."
485
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
486
 
487
- #: adrotate.php:432 adrotate.php:519
488
- #: dashboard/publisher/adrotate-ads-edit.php:149
489
  #: dashboard/publisher/adrotate-ads-main.php:108
490
  #: dashboard/publisher/adrotate-groups-edit.php:76
491
  #: dashboard/publisher/adrotate-groups-main.php:87
492
  msgid "More information"
493
  msgstr "Plus d'information"
494
 
495
- #: adrotate.php:439 dashboard/publisher/adrotate-ads-main-disabled.php:20
496
  #: dashboard/publisher/adrotate-ads-main-error.php:19
497
  #: dashboard/publisher/adrotate-ads-main.php:20
498
  #: dashboard/publisher/adrotate-groups-main.php:20
499
  msgid "Bulk Actions"
500
  msgstr "Actions en vrac"
501
 
502
- #: adrotate.php:440 dashboard/publisher/adrotate-ads-main-disabled.php:25
503
  #: dashboard/publisher/adrotate-ads-main-error.php:29
504
  #: dashboard/publisher/adrotate-ads-main.php:30
505
  #: dashboard/publisher/adrotate-groups-main.php:24
506
  msgid "Go"
507
  msgstr "Aller"
508
 
509
- #: adrotate.php:449 dashboard/publisher/adrotate-ads-edit.php:424
510
  #: dashboard/publisher/adrotate-ads-main-disabled.php:35
511
  #: dashboard/publisher/adrotate-ads-main-error.php:39
512
  #: dashboard/publisher/adrotate-ads-main.php:39
513
  #: dashboard/publisher/adrotate-groups-main.php:32
514
- #: dashboard/server/adrotate-active.php:18
515
- #: dashboard/server/adrotate-error.php:18
516
  msgid "ID"
517
  msgstr "ID"
518
 
519
- #: adrotate.php:450
520
  #, fuzzy
521
  msgid "Start"
522
  msgstr "Début / Fin"
523
 
524
- #: adrotate.php:450
525
  msgid "End"
526
  msgstr ""
527
 
528
- #: adrotate.php:451 dashboard/publisher/adrotate-ads-edit.php:491
529
  #: dashboard/publisher/adrotate-groups-main.php:34
530
  msgid "Ads"
531
  msgstr "Pubs"
532
 
533
- #: adrotate.php:453
534
  #, fuzzy
535
  msgid "Max Clicks"
536
  msgstr "Nombre de clicks max :"
537
 
538
- #: adrotate.php:454
539
  #, fuzzy
540
  msgid "Max Impressions"
541
  msgstr "Nombre max de vues :"
542
 
543
- #: adrotate.php:484
544
  #, fuzzy
545
  msgid "No schedules created yet!"
546
  msgstr "Aucune pub n'a encore été créé!"
547
 
548
- #: adrotate.php:489
549
  #, fuzzy
550
  msgid "Easily manage your schedules from here with AdRotate Pro."
551
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
552
 
553
- #: adrotate.php:489 adrotate.php:552
554
  #, fuzzy
555
  msgid "Upgrade today!"
556
  msgstr "Mettre à jour aujourd'hui"
557
 
558
- #: adrotate.php:492 dashboard/publisher/adrotate-ads-edit.php:454
559
  #: dashboard/publisher/adrotate-ads-main-error.php:74
560
- #: dashboard/publisher/adrotate-groups-edit.php:373
561
  msgid "Expires soon."
562
  msgstr "Expire bientôt."
563
 
564
- #: adrotate.php:493 dashboard/publisher/adrotate-ads-main-error.php:75
565
- #: dashboard/publisher/adrotate-groups-edit.php:374
566
  msgid "Has expired."
567
  msgstr "A expiré."
568
 
569
- #: adrotate.php:517
570
  #, fuzzy
571
  msgid "Media Management available in AdRotate Pro"
572
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
573
 
574
- #: adrotate.php:519
575
  msgid ""
576
  "Upload images to the AdRotate Pro banners folder from here. This is "
577
  "especially useful if you use responsive adverts with multiple images."
578
  msgstr ""
579
 
580
- #: adrotate.php:519
581
  #, fuzzy
582
  msgid "Media uploading and management is available in AdRotate Pro."
583
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
584
 
585
- #: adrotate.php:521
586
  #, fuzzy
587
  msgid "Upload new banner image"
588
  msgstr "Image :"
589
 
590
- #: adrotate.php:522
591
  #, fuzzy
592
  msgid "Accepted files are:"
593
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
594
 
595
- #: adrotate.php:522
596
  msgid "Maximum size is 512Kb."
597
  msgstr ""
598
 
599
- #: adrotate.php:522
600
  msgid "Important:"
601
  msgstr ""
602
 
603
- #: adrotate.php:522
604
  msgid ""
605
  "Make sure your file has no spaces or special characters in the name. Replace "
606
  "spaces with a - or _."
607
  msgstr ""
608
 
609
- #: adrotate.php:524
610
  #, fuzzy
611
  msgid ""
612
  "For responsive adverts make sure the filename is in the following format; "
@@ -617,7 +654,7 @@ msgstr ""
617
  "complet d'images de tailles différentes est recommendé si vous avez un site "
618
  "fluide."
619
 
620
- #: adrotate.php:525 dashboard/publisher/adrotate-ads-edit.php:224
621
  msgid ""
622
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
623
  "filename instead of \".full\" for the various viewports."
@@ -626,13 +663,13 @@ msgstr ""
626
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
627
  "tailles d'écran."
628
 
629
- #: adrotate.php:526 dashboard/publisher/adrotate-ads-edit.php:225
630
- #: dashboard/publisher/adrotate-groups-edit.php:308
631
- #: dashboard/publisher/adrotate-groups-edit.php:317
632
  msgid "Example:"
633
  msgstr "Exemple :"
634
 
635
- #: adrotate.php:526
636
  #, fuzzy
637
  msgid ""
638
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -641,189 +678,172 @@ msgstr ""
641
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
642
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
643
 
644
- #: adrotate.php:530
645
  msgid "Upload image"
646
  msgstr ""
647
 
648
- #: adrotate.php:533
649
  msgid "Available banner images in"
650
  msgstr ""
651
 
652
- #: adrotate.php:538 dashboard/publisher/adrotate-groups-main.php:33
653
  msgid "Name"
654
  msgstr "Nom"
655
 
656
- #: adrotate.php:539
657
  #, fuzzy
658
  msgid "Actions"
659
  msgstr "Actions en vrac"
660
 
661
- #: adrotate.php:544 adrotate.php:545 adrotate.php:546 adrotate.php:547
662
- #: adrotate.php:548 dashboard/publisher/adrotate-ads-main-disabled.php:22
663
  #: dashboard/publisher/adrotate-ads-main-error.php:21
664
  #: dashboard/publisher/adrotate-ads-main.php:22
665
  msgid "Delete"
666
  msgstr "Effacer"
667
 
668
- #: adrotate.php:552
669
  msgid ""
670
  "Make sure the banner images are not in use by adverts when you delete them!"
671
  msgstr ""
672
 
673
- #: adrotate.php:552
674
  #, fuzzy
675
  msgid "Manage your banner folder from here with AdRotate Pro."
676
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
677
 
678
- #: adrotate.php:585
679
- msgid "AdRotate Server"
680
- msgstr "Serveur AdRotate"
681
-
682
- #: adrotate.php:593
683
- msgid ""
684
- "AdRotate server is currently in development and these menus are not "
685
- "functional yet."
686
- msgstr ""
687
- "AdRotate Server est actuellement en développement et ces menus ne sont pas "
688
- "encore fonctionels."
689
-
690
- #: adrotate.php:597
691
- msgid "Overview"
692
- msgstr "Vue d'ensemble"
693
-
694
- #: adrotate.php:692
695
  msgid "AdRotate Settings"
696
  msgstr "Paramètres de AdRotate"
697
 
698
- #: adrotate.php:695
699
  msgid "Settings saved"
700
  msgstr "Paramètres sauvegardés"
701
 
702
- #: adrotate.php:697
703
  msgid "Database optimized"
704
  msgstr "Base de données optimisée"
705
 
706
- #: adrotate.php:699
707
  msgid "Database repaired"
708
  msgstr "Base de données réparée"
709
 
710
- #: adrotate.php:701
711
  msgid "Ads evaluated and statuses have been corrected where required"
712
  msgstr ""
713
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
714
 
715
- #: adrotate.php:703
716
  msgid "Empty database records removed"
717
  msgstr "Les registres vides de la base de données ont été supprimés"
718
 
719
- #: adrotate.php:705
720
  msgid "Database can only be optimized or cleaned once every hour"
721
  msgstr ""
722
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
723
 
724
- #: adrotate.php:713
725
  msgid "Access Rights"
726
  msgstr "Droits d'Accès"
727
 
728
- #: adrotate.php:714
729
  msgid "Who has access to what?"
730
  msgstr "Qui a accès à quoi?"
731
 
732
- #: adrotate.php:717
733
  msgid "Manage/Add/Edit adverts"
734
  msgstr "Gérer/Ajouter/Modifier les publicités"
735
 
736
- #: adrotate.php:721
737
  msgid "Role to see and add/edit ads."
738
  msgstr "Rôle pour voir et gérer/modifier les publicités."
739
 
740
- #: adrotate.php:725
741
  msgid "Delete/Reset adverts"
742
  msgstr "Supprimer/Mettre à zéro les publicités"
743
 
744
- #: adrotate.php:729
745
  msgid "Role to delete ads and reset stats."
746
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
747
 
748
- #: adrotate.php:733
749
  msgid "Manage/Add/Edit groups"
750
  msgstr "Gérer/Ajouter/Modifier les groupes"
751
 
752
- #: adrotate.php:737
753
  msgid "Role to see and add/edit groups."
754
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
755
 
756
- #: adrotate.php:741
757
  msgid "Delete groups"
758
  msgstr "Effacer les groups"
759
 
760
- #: adrotate.php:745
761
  msgid "Role to delete groups."
762
  msgstr "Rôle pour supprimer les groupes."
763
 
764
- #: adrotate.php:766 adrotate.php:816 adrotate.php:875 adrotate.php:922
765
- #: adrotate.php:962
766
  msgid "Update Options"
767
  msgstr "Mettre à jour les options"
768
 
769
- #: adrotate.php:777
770
  msgid "Statistics"
771
  msgstr "Statistiques"
772
 
773
- #: adrotate.php:780
774
  msgid "Enable stats"
775
  msgstr "Statistiques activés"
776
 
777
- #: adrotate.php:782
778
  msgid "Track clicks and impressions."
779
  msgstr "Suivi des clicks et des impressions."
780
 
781
- #: adrotate.php:782
782
  #, fuzzy
783
  msgid "Disabling this also disables click and impression limits on schedules."
784
  msgstr ""
785
  "La désactivation de cette fonction désactive aussi la limitation des clics "
786
  "et des impressions sujet du calendrier, et désactive les délais."
787
 
788
- #: adrotate.php:786
789
  msgid "Impressions timer"
790
  msgstr "Minuterie de impressions"
791
 
792
- #: adrotate.php:788 adrotate.php:795
793
  msgid "Seconds."
794
  msgstr "Secondes."
795
 
796
- #: adrotate.php:789
797
- #, fuzzy
798
- msgid "Default: 60. Set to 0 to disable this timer."
799
- msgstr "Valeur par défaut : 10. Mettre à 0 pour désactiver la minuterie."
800
 
801
- #: adrotate.php:789
802
- msgid "This number may not be empty, negative or exceed 3600 (1 hour)."
803
- msgstr "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
804
 
805
- #: adrotate.php:793
806
  msgid "Clicks timer"
807
  msgstr "Interval de clicks"
808
 
809
- #: adrotate.php:796
810
- msgid "Default: 86400. Set to 0 to disable this timer."
811
- msgstr "Valeur par défaut: 86400. Mettre à 0 pour désaciver la minuterie."
812
 
813
- #: adrotate.php:796
814
- msgid "This number may not be empty, negative or exceed 86400 (24 hours)."
 
815
  msgstr ""
816
- "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 heures)."
817
 
818
- #: adrotate.php:801
819
  msgid "Bot filter"
820
  msgstr "Filtre de robots"
821
 
822
- #: adrotate.php:804
823
  msgid "User-Agent Filter"
824
  msgstr "Filtrage par User-Agent"
825
 
826
- #: adrotate.php:807
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 +851,7 @@ msgstr ""
831
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
832
  "impressions et le clics fait par les robots/crawlers/user-agents."
833
 
834
- #: adrotate.php:808
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 +859,11 @@ msgstr ""
839
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
840
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
841
 
842
- #: adrotate.php:808
843
  msgid "Keep your list up-to-date"
844
  msgstr "Gardez votre liste à jour"
845
 
846
- #: adrotate.php:809
847
  msgid ""
848
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
849
  "other characters are stripped out."
@@ -851,7 +871,7 @@ msgstr ""
851
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
852
  "sont aussi permis. Tous les autres caractères seront supprimés. "
853
 
854
- #: adrotate.php:810
855
  msgid ""
856
  "Additionally to the list specified here, empty User-Agents are blocked as "
857
  "well."
@@ -859,23 +879,23 @@ msgstr ""
859
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
860
  "bloqués."
861
 
862
- #: adrotate.php:810 dashboard/adrotate-info.php:172
863
  msgid "Learn more about"
864
  msgstr "En savoir plus sur"
865
 
866
- #: adrotate.php:810
867
  msgid "user-agents"
868
  msgstr "user-agents"
869
 
870
- #: adrotate.php:819
871
  msgid "Miscellaneous"
872
  msgstr "Divers"
873
 
874
- #: adrotate.php:822
875
  msgid "Widget alignment"
876
  msgstr "Alignement du Widget"
877
 
878
- #: adrotate.php:823
879
  msgid ""
880
  "Check this box if your widgets do not align in your themes sidebar. (Does "
881
  "not always help!)"
@@ -883,11 +903,11 @@ msgstr ""
883
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
884
  "votre thème. Cette fonction peux ne pas régler le soucis!"
885
 
886
- #: adrotate.php:826
887
  msgid "Widget padding"
888
  msgstr "Marge interne du Widget"
889
 
890
- #: adrotate.php:827
891
  msgid ""
892
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
893
  "not always work!)"
@@ -895,11 +915,11 @@ msgstr ""
895
  "Activez cette option pour supprimer la marge (espace vide) autour des "
896
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
897
 
898
- #: adrotate.php:832 adrotate.php:843
899
  msgid "NOTICE:"
900
  msgstr ""
901
 
902
- #: adrotate.php:833
903
  msgid ""
904
  "You have enabled W3 Total Caching support but not defined the security hash. "
905
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -911,15 +931,15 @@ msgstr ""
911
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
912
  "fonction \"late init\" doit être activée dans W3 Total Cache."
913
 
914
- #: adrotate.php:837
915
  msgid "W3 Total Caching"
916
  msgstr "W3 Total Caching"
917
 
918
- #: adrotate.php:838
919
  msgid "Check this box if you use W3 Total Caching on your site."
920
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
921
 
922
- #: adrotate.php:844
923
  msgid ""
924
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
925
  "this function will not work. WP Super Cache has discontinued support for "
@@ -929,15 +949,15 @@ msgstr ""
929
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
930
  "support pour le contenu dynamique."
931
 
932
- #: adrotate.php:848
933
  msgid "WP Super Cache"
934
  msgstr "WP Super Cache"
935
 
936
- #: adrotate.php:849
937
  msgid "Check this box if you use WP Super Cache on your site."
938
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
939
 
940
- #: adrotate.php:854
941
  msgid ""
942
  "It may take a while for the ad to start rotating. The caching plugin needs "
943
  "to refresh the cache. This can take up to a week if not done manually."
@@ -947,7 +967,7 @@ msgstr ""
947
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
948
  "pas fait manuellement."
949
 
950
- #: adrotate.php:854
951
  msgid ""
952
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
953
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -956,15 +976,15 @@ msgstr ""
956
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
957
  "PHP dans le code d'exclusion vous-même."
958
 
959
- #: adrotate.php:858
960
- msgid "Javascript Libraries"
961
- msgstr "Librairies Javascript"
962
 
963
- #: adrotate.php:861
964
  msgid "Load jQuery"
965
  msgstr "Utilisez jQuery"
966
 
967
- #: adrotate.php:862
968
  msgid ""
969
  "jQuery is required for all Javascript features below. Enable this if your "
970
  "theme does not load jQuery already."
@@ -972,23 +992,11 @@ msgstr ""
972
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
973
  "le si votre thème ne charge pas jQuery directement."
974
 
975
- #: adrotate.php:865
976
- msgid "Load jQuery Clicktracking"
977
- msgstr "Charger le clicktracking (nombre de clicks) de jQuery"
978
-
979
- #: adrotate.php:866
980
- msgid ""
981
- "Required for jQuery Clicktracking. When disabled AdRotate falls back on "
982
- "Redirect Tracking."
983
- msgstr ""
984
- "Requis pour le suivi des clics par jQuery. Quand cette option est "
985
- "désactivée, AdRotate utilise le suivi par redirection."
986
-
987
- #: adrotate.php:869
988
  msgid "Load in footer?"
989
  msgstr "Chargement dans le pied de page?"
990
 
991
- #: adrotate.php:870
992
  msgid ""
993
  "Enable if you want to load the above libraries in the footer. Your theme "
994
  "needs to call wp_footer() for this to work."
@@ -996,11 +1004,11 @@ msgstr ""
996
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
997
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
998
 
999
- #: adrotate.php:878
1000
  msgid "Maintenance"
1001
  msgstr "Maintenance"
1002
 
1003
- #: adrotate.php:879
1004
  msgid ""
1005
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1006
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1014,19 +1022,19 @@ msgstr ""
1014
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1015
  "de données est lente ou ne réponds pas."
1016
 
1017
- #: adrotate.php:894 adrotate.php:896
1018
  msgid "Optimize Database"
1019
  msgstr "Optimiser la base de données"
1020
 
1021
- #: adrotate.php:896
1022
  msgid "You are about to optimize the AdRotate database."
1023
  msgstr "Vous allez optimiser la base de données de Adrotate."
1024
 
1025
- #: adrotate.php:896
1026
  msgid "Did you make a backup of your database?"
1027
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1028
 
1029
- #: adrotate.php:896
1030
  msgid ""
1031
  "This may take a moment and may cause your website to respond slow "
1032
  "temporarily!"
@@ -1034,16 +1042,16 @@ msgstr ""
1034
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1035
  "temporaire!"
1036
 
1037
- #: adrotate.php:896 adrotate.php:904 adrotate.php:912
1038
  #: dashboard/publisher/adrotate-groups-main.php:24
1039
  msgid "OK to continue, CANCEL to stop."
1040
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1041
 
1042
- #: adrotate.php:897
1043
  msgid "Cleans up overhead data in the AdRotate tables."
1044
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1045
 
1046
- #: adrotate.php:898
1047
  msgid ""
1048
  "Overhead data is accumulated garbage resulting from many changes you've "
1049
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1052,11 +1060,11 @@ msgstr ""
1052
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1053
  "KB de données."
1054
 
1055
- #: adrotate.php:902 adrotate.php:904
1056
  msgid "Clean-up Database"
1057
  msgstr "Nettoyer la base de données"
1058
 
1059
- #: adrotate.php:904
1060
  msgid ""
1061
  "You are about to clean up your database. This may delete expired schedules "
1062
  "and older statistics."
@@ -1064,21 +1072,21 @@ msgstr ""
1064
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1065
  "supprimer des calendriers périmés et des vieilles statistiques.."
1066
 
1067
- #: adrotate.php:904
1068
  msgid "Are you sure you want to continue?"
1069
  msgstr "Etes-vous certains de vouloir continuer?"
1070
 
1071
- #: adrotate.php:904 adrotate.php:912
1072
  msgid "This might take a while and may slow down your site during this action!"
1073
  msgstr ""
1074
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1075
  "interval!"
1076
 
1077
- #: adrotate.php:905
1078
  msgid "Delete stats older than 356 days (Optional)."
1079
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1080
 
1081
- #: adrotate.php:906
1082
  msgid ""
1083
  "AdRotate creates empty records when you start making ads or groups. In rare "
1084
  "occasions these records are faulty."
@@ -1086,7 +1094,7 @@ msgstr ""
1086
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1087
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1088
 
1089
- #: adrotate.php:906
1090
  msgid ""
1091
  "If you made an ad or group that does not save when you make it use this "
1092
  "button to delete those empty records."
@@ -1095,7 +1103,7 @@ msgstr ""
1095
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1096
  "registres vides."
1097
 
1098
- #: adrotate.php:906
1099
  msgid ""
1100
  "Additionally you can clean up old statistics. This will improve the speed of "
1101
  "your site."
@@ -1103,19 +1111,19 @@ msgstr ""
1103
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1104
  "d'améliorer la vitesse de votre site."
1105
 
1106
- #: adrotate.php:910
1107
  msgid "Re-evaluate Ads"
1108
  msgstr "Re-évaluer les publicités"
1109
 
1110
- #: adrotate.php:912
1111
  msgid "Re-evaluate all ads"
1112
  msgstr "Re-évaluer toutes les publicités"
1113
 
1114
- #: adrotate.php:912
1115
  msgid "You are about to check all ads for errors."
1116
  msgstr "Vous allez véifier l'état de toutes les publicités."
1117
 
1118
- #: adrotate.php:913
1119
  msgid ""
1120
  "This will apply all evaluation rules to all ads to see if any error slipped "
1121
  "in. Normally you should not need this feature."
@@ -1124,7 +1132,7 @@ msgstr ""
1124
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1125
  "fonctionalité."
1126
 
1127
- #: adrotate.php:917
1128
  msgid ""
1129
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1130
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1141,59 +1149,63 @@ msgstr ""
1141
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1142
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1143
 
1144
- #: adrotate.php:925
1145
  msgid "Troubleshooting"
1146
  msgstr "Diagnostic de dépannage"
1147
 
1148
- #: adrotate.php:928
1149
  msgid "Current version:"
1150
  msgstr "Version actuelle :"
1151
 
1152
- #: adrotate.php:929
1153
  msgid "Previous version:"
1154
  msgstr "Version antérieure :"
1155
 
1156
- #: adrotate.php:932
1157
  msgid "Current database version:"
1158
  msgstr "Version actuelle de la base de données :"
1159
 
1160
- #: adrotate.php:933
1161
  msgid "Previous database version:"
1162
  msgstr "Version antérieure de la base de données :"
1163
 
1164
- #: adrotate.php:936
1165
  msgid "Ad evaluation next run:"
1166
  msgstr ""
1167
 
1168
- #: adrotate.php:937
1169
  msgid "Not scheduled!"
1170
  msgstr "Pas planifié!"
1171
 
1172
- #: adrotate.php:940
 
 
 
 
1173
  msgid "Current status of adverts"
1174
  msgstr "Etat actuel des publicités"
1175
 
1176
- #: adrotate.php:941
1177
  msgid "Normal"
1178
  msgstr "Normal"
1179
 
1180
- #: adrotate.php:941
1181
  msgid "Error"
1182
  msgstr "Erreur"
1183
 
1184
- #: adrotate.php:941
1185
  msgid "Expired"
1186
  msgstr "Expiré"
1187
 
1188
- #: adrotate.php:941
1189
  msgid "Expires Soon"
1190
  msgstr "Expire bientôt"
1191
 
1192
- #: adrotate.php:941
1193
  msgid "Unknown Status"
1194
  msgstr "Statut Inconnu"
1195
 
1196
- #: adrotate.php:944
1197
  msgid ""
1198
  "NOTE: The below options are not meant for normal use and are only there for "
1199
  "developers to review saved settings or how ads are selected. These can be "
@@ -1206,37 +1218,37 @@ msgstr ""
1206
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1207
  "une utilisation normale, ils ne doivent pas être activés!"
1208
 
1209
- #: adrotate.php:948
1210
  msgid "Developer Debug"
1211
  msgstr "Debuggage de développeur"
1212
 
1213
- #: adrotate.php:950
1214
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1215
  msgstr ""
1216
  "Dépannage des publicités. Si cette option est activée, les données seront "
1217
  "placées sur le site."
1218
 
1219
- #: adrotate.php:951
1220
  msgid "Show all settings, dashboard routines and related values."
1221
  msgstr ""
1222
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1223
  "connexes."
1224
 
1225
- #: adrotate.php:952
1226
  msgid "Show array of all userroles and capabilities."
1227
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1228
 
1229
- #: adrotate.php:953
1230
  msgid "Review saved advertisers! Visible to advertisers."
1231
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1232
 
1233
- #: adrotate.php:954
1234
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1235
  msgstr ""
1236
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1237
  "Visible uniquement aux annonceurs."
1238
 
1239
- #: adrotate.php:955
1240
  msgid ""
1241
  "Disable timers for clicks and impressions and enable a alert window for "
1242
  "clicktracking."
@@ -1244,7 +1256,7 @@ msgstr ""
1244
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1245
  "fenêtre d'alerte pour le suivi des clicks."
1246
 
1247
- #: adrotate.php:956
1248
  msgid "Temporarily disable encryption on the redirect url."
1249
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1250
 
@@ -1285,45 +1297,20 @@ msgid "The last few days"
1285
  msgstr "Les derniers jours"
1286
 
1287
  #: dashboard/adrotate-info.php:132
1288
- msgid "You are using"
1289
- msgstr "Vous utilisez"
1290
-
1291
- #: dashboard/adrotate-info.php:138
1292
- msgid "AdRotate News and Developer Blog"
1293
- msgstr "Actus AdRotate et blog du développeur"
1294
-
1295
- #: dashboard/adrotate-info.php:158
1296
- msgid "AdRotate Store"
1297
- msgstr "Magasin AdRotate"
1298
-
1299
- #: dashboard/adrotate-info.php:161
1300
- msgid "Get more features! Get AdRotate Pro."
1301
- msgstr "Besoin de plus de fonctionalités? Achetez AdRotate Pro. "
1302
-
1303
- #: dashboard/adrotate-info.php:161 dashboard/adrotate-info.php:162
1304
- #: dashboard/adrotate-info.php:163
1305
- msgid "More info"
1306
- msgstr "Plus d'infos"
1307
-
1308
- #: dashboard/adrotate-info.php:162
1309
- msgid "Get help with installations"
1310
- msgstr "Obtenez de l'aide pour les installations"
1311
-
1312
- #: dashboard/adrotate-info.php:162
1313
- msgid "Not sure how to set up AdRotate? Get me to do it!"
1314
- msgstr "Vous ne savez pas comment configurer AdRotate? Embauchez-moi!"
1315
 
1316
- #: dashboard/adrotate-info.php:163
1317
- msgid "Premium Support"
1318
- msgstr "Support Premium"
1319
 
1320
- #: dashboard/adrotate-info.php:163
1321
- msgid "Stuck with AdRotate? I'll help!"
1322
- msgstr "Bloqué avec AdRotate? Je peux vous aider!"
1323
 
1324
- #: dashboard/adrotate-info.php:164
1325
- msgid "Visit store to see all services and products"
1326
- msgstr "Aller au magasin pour voir tous les services et tous les produits"
1327
 
1328
  #: dashboard/adrotate-info.php:168
1329
  msgid "Get more features with AdRotate Pro"
@@ -1340,23 +1327,82 @@ msgstr ""
1340
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1341
  "la version gratuite."
1342
 
1343
- #: dashboard/adrotate-info.php:172
1344
- msgid "or go to the"
1345
- msgstr "ou allez au"
1346
 
1347
- #: dashboard/adrotate-info.php:176
1348
- msgid "Support AdRotate"
1349
- msgstr "Soutenez AdRotate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1350
 
1351
- #: dashboard/adrotate-info.php:179
1352
- msgid "Your gift will ensure the continued development of AdRotate!"
1353
- msgstr "Votre don permettra d'assurer le développement continu de AdRotate!"
 
 
 
 
 
 
 
 
 
1354
 
1355
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:43
1356
  msgid "AdRotate is brought to you by"
1357
  msgstr "AdRotate est offert par"
1358
 
1359
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:47
1360
  msgid ""
1361
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1362
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1367,11 +1413,11 @@ msgstr ""
1367
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1368
  "mon site pour tous les détails!"
1369
 
1370
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:47
1371
  msgid "Find out more"
1372
  msgstr "En savoir plus"
1373
 
1374
- #: dashboard/adrotate-info.php:190
1375
  msgid "Follow"
1376
  msgstr "Suivre"
1377
 
@@ -1451,73 +1497,12 @@ msgstr ""
1451
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1452
  "d'expiration."
1453
 
1454
- #: dashboard/adrotate-pro.php:76
1455
- msgid "Buy AdRotate Professional"
1456
- msgstr "Achetez AdRotate Professionel"
1457
-
1458
- #: dashboard/adrotate-pro.php:80
1459
- msgid "Singe License"
1460
- msgstr "Licence Unique"
1461
-
1462
- #: dashboard/adrotate-pro.php:80
1463
- msgid "For one WordPress installation."
1464
- msgstr "Pour une installation Wordpress."
1465
-
1466
- #: dashboard/adrotate-pro.php:80 dashboard/adrotate-pro.php:81
1467
- #: dashboard/adrotate-pro.php:82 dashboard/adrotate-pro.php:83
1468
- #: dashboard/adrotate-pro.php:84
1469
- msgid "Buy now"
1470
- msgstr ""
1471
-
1472
- #: dashboard/adrotate-pro.php:81
1473
- msgid "Duo License"
1474
- msgstr "Licence Duo"
1475
-
1476
- #: dashboard/adrotate-pro.php:81
1477
- msgid "For two WordPress installations."
1478
- msgstr "Pour deux installations Wordpress."
1479
-
1480
- #: dashboard/adrotate-pro.php:82
1481
- msgid "Multi License"
1482
- msgstr "Licence Multiple"
1483
-
1484
- #: dashboard/adrotate-pro.php:82
1485
- msgid " For up to five WordPress installations."
1486
- msgstr "Pour un max de cinq installation Wordpress."
1487
-
1488
- #: dashboard/adrotate-pro.php:83
1489
- msgid "Network License"
1490
- msgstr "Licence Réseau"
1491
-
1492
  #: dashboard/adrotate-pro.php:83
1493
- msgid "Set up your own advertising network on a WordPress Multisite."
1494
- msgstr ""
1495
- "Mettez en place votre propre réseau de publicité sur une installation "
1496
- "Wordpress Multisite."
1497
-
1498
- #: dashboard/adrotate-pro.php:84
1499
- msgid "Developer License"
1500
- msgstr "Licence de Developpeur"
1501
-
1502
- #: dashboard/adrotate-pro.php:84
1503
  msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1504
  msgstr ""
1505
  "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
1506
  "réseaux."
1507
 
1508
- #: dashboard/adrotate-pro.php:85
1509
- msgid "Compare licenses"
1510
- msgstr "Comparer les licences"
1511
-
1512
- #: dashboard/adrotate-pro.php:85
1513
- msgid "Not sure which license is for you? Compare them..."
1514
- msgstr ""
1515
- "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1516
-
1517
- #: dashboard/adrotate-pro.php:85
1518
- msgid "All Licenses"
1519
- msgstr "Toutes les licences"
1520
-
1521
  #: dashboard/publisher/adrotate-ads-edit.php:46
1522
  msgid "The AdCode cannot be empty!"
1523
  msgstr "Le code de la publicité ne peut être vide!"
@@ -1544,21 +1529,10 @@ msgstr ""
1544
  "publicité!"
1545
 
1546
  #: dashboard/publisher/adrotate-ads-edit.php:58
1547
- msgid ""
1548
- "jQuery clicktracking is enabled but no valid link was found in the adcode!"
1549
  msgstr ""
1550
- "Le suivi des clicks par jQuery est activé, mais aucun lien valide n'a été "
1551
- "retrouvé dans le adcode!"
1552
 
1553
- #: dashboard/publisher/adrotate-ads-edit.php:61
1554
- msgid ""
1555
- "Redirect clicktracking is enabled but the %link% tag was not found in the "
1556
- "adcode!"
1557
- msgstr ""
1558
- "La redirection pour le suivi des clics est activée mais la balise %link% n'a "
1559
- "pas été trouvée dans le adcode!"
1560
-
1561
- #: dashboard/publisher/adrotate-ads-edit.php:67
1562
  msgid ""
1563
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1564
  "the ad!"
@@ -1566,63 +1540,63 @@ msgstr ""
1566
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1567
  "essayez d'enregistrer votre publicité à nouveau!"
1568
 
1569
- #: dashboard/publisher/adrotate-ads-edit.php:70
1570
  msgid "This ad is expired and currently not shown on your website!"
1571
  msgstr ""
1572
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1573
 
1574
- #: dashboard/publisher/adrotate-ads-edit.php:73
1575
  msgid "The ad will expire in less than 2 days!"
1576
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1577
 
1578
- #: dashboard/publisher/adrotate-ads-edit.php:76
1579
  msgid "This ad will expire in less than 7 days!"
1580
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1581
 
1582
- #: dashboard/publisher/adrotate-ads-edit.php:79
1583
  msgid "This ad has been disabled and does not rotate on your site!"
1584
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1585
 
1586
- #: dashboard/publisher/adrotate-ads-edit.php:104
1587
  msgid "New Advert"
1588
  msgstr "Nouvelle pub"
1589
 
1590
- #: dashboard/publisher/adrotate-ads-edit.php:106
1591
  msgid "Edit Advert"
1592
  msgstr "Modifier la pub"
1593
 
1594
- #: dashboard/publisher/adrotate-ads-edit.php:109
1595
  #: dashboard/publisher/adrotate-groups-edit.php:48
1596
  msgid "These are required."
1597
  msgstr "Ces données sont requises."
1598
 
1599
- #: dashboard/publisher/adrotate-ads-edit.php:113
1600
  msgid "Title:"
1601
  msgstr "Titre :"
1602
 
1603
- #: dashboard/publisher/adrotate-ads-edit.php:119
1604
  msgid "AdCode:"
1605
  msgstr "Code :"
1606
 
1607
- #: dashboard/publisher/adrotate-ads-edit.php:124
1608
  msgid ""
1609
  "Copy your ad tag/code in this field if you have received ready to go adverts."
1610
  msgstr ""
1611
 
1612
- #: dashboard/publisher/adrotate-ads-edit.php:124
1613
  msgid "Advertising and affiliate networks often use these."
1614
  msgstr ""
1615
 
1616
- #: dashboard/publisher/adrotate-ads-edit.php:125
1617
  msgid "Basic Examples:"
1618
  msgstr "Exemples de base :"
1619
 
1620
- #: dashboard/publisher/adrotate-ads-edit.php:131
1621
- #: dashboard/publisher/adrotate-groups-edit.php:309
1622
  msgid "Options:"
1623
  msgstr "Options :"
1624
 
1625
- #: dashboard/publisher/adrotate-ads-edit.php:133
1626
  msgid ""
1627
  "Place the cursor where you want to add a tag and click to add it to your "
1628
  "AdCode."
@@ -1630,49 +1604,49 @@ msgstr ""
1630
  "Placez votre curseur à l'emplacement où vous voulez ajouter une balise et "
1631
  "cliquer pour l'ajouter à votre AdCode."
1632
 
1633
- #: dashboard/publisher/adrotate-ads-edit.php:137
1634
  msgid "Activate:"
1635
  msgstr "Activer"
1636
 
1637
- #: dashboard/publisher/adrotate-ads-edit.php:141
1638
  msgid "Yes, this ad will be used"
1639
  msgstr "Oui, cette publicité sera utilisée"
1640
 
1641
- #: dashboard/publisher/adrotate-ads-edit.php:142
1642
  msgid "No, do not show this ad anywhere"
1643
  msgstr "Non, cette publicité ne sera pas utilisée"
1644
 
1645
- #: dashboard/publisher/adrotate-ads-edit.php:149
1646
  #: dashboard/publisher/adrotate-ads-main.php:108
1647
  #: dashboard/publisher/adrotate-groups-edit.php:76
1648
  #: dashboard/publisher/adrotate-groups-main.php:87
1649
  msgid "Get more features with AdRotate Pro."
1650
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1651
 
1652
- #: dashboard/publisher/adrotate-ads-edit.php:152
1653
- #: dashboard/publisher/adrotate-ads-edit.php:189
1654
- #: dashboard/publisher/adrotate-ads-edit.php:333
1655
- #: dashboard/publisher/adrotate-ads-edit.php:458
1656
- #: dashboard/publisher/adrotate-ads-edit.php:501
1657
  msgid "Save Advert"
1658
  msgstr "Sauvegarder la pub"
1659
 
1660
- #: dashboard/publisher/adrotate-ads-edit.php:153
1661
- #: dashboard/publisher/adrotate-ads-edit.php:190
1662
- #: dashboard/publisher/adrotate-ads-edit.php:334
1663
- #: dashboard/publisher/adrotate-ads-edit.php:459
1664
- #: dashboard/publisher/adrotate-ads-edit.php:502
1665
- #: dashboard/publisher/adrotate-groups-edit.php:170
1666
- #: dashboard/publisher/adrotate-groups-edit.php:297
1667
- #: dashboard/publisher/adrotate-groups-edit.php:379
1668
  msgid "Cancel"
1669
  msgstr "Annuller"
1670
 
1671
- #: dashboard/publisher/adrotate-ads-edit.php:157
1672
  msgid "Preview"
1673
  msgstr "En avant-première"
1674
 
1675
- #: dashboard/publisher/adrotate-ads-edit.php:163
1676
  msgid ""
1677
  "Note: While this preview is an accurate one, it might look different then it "
1678
  "does on the website."
@@ -1680,24 +1654,24 @@ msgstr ""
1680
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1681
  "différente sur le site."
1682
 
1683
- #: dashboard/publisher/adrotate-ads-edit.php:164
1684
  msgid ""
1685
  "This is because of CSS differences. Your themes CSS file is not active here!"
1686
  msgstr ""
1687
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1688
  "pas actif ici!"
1689
 
1690
- #: dashboard/publisher/adrotate-ads-edit.php:171
1691
- #: dashboard/publisher/adrotate-ads-edit.php:315
1692
- #: dashboard/publisher/adrotate-groups-edit.php:155
1693
- #: dashboard/publisher/adrotate-groups-edit.php:282
1694
  msgid "Usage"
1695
  msgstr "Usage"
1696
 
1697
- #: dashboard/publisher/adrotate-ads-edit.php:172
1698
- #: dashboard/publisher/adrotate-ads-edit.php:316
1699
- #: dashboard/publisher/adrotate-groups-edit.php:156
1700
- #: dashboard/publisher/adrotate-groups-edit.php:283
1701
  msgid ""
1702
  "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1703
  "where you want the advert to show up."
@@ -1705,43 +1679,38 @@ msgstr ""
1705
  "Copiez le shortcode dans un article ou une page. Le code PHP doit être dans "
1706
  "un fichier du thème si vus voulez que cette publicité soit affichée."
1707
 
1708
- #: dashboard/publisher/adrotate-ads-edit.php:176
1709
- #: dashboard/publisher/adrotate-ads-edit.php:320
1710
- #: dashboard/publisher/adrotate-groups-edit.php:160
1711
- #: dashboard/publisher/adrotate-groups-edit.php:287
1712
  msgid "In a post or page:"
1713
  msgstr "Dans un article ou une page :"
1714
 
1715
- #: dashboard/publisher/adrotate-ads-edit.php:178
1716
- #: dashboard/publisher/adrotate-ads-edit.php:322
1717
- #: dashboard/publisher/adrotate-groups-edit.php:162
1718
- #: dashboard/publisher/adrotate-groups-edit.php:289
1719
  msgid "Directly in a theme:"
1720
  msgstr "Directement dans un thème :"
1721
 
1722
- #: dashboard/publisher/adrotate-ads-edit.php:182
1723
- #: dashboard/publisher/adrotate-ads-edit.php:326
1724
- msgid "Email or Remote page:"
1725
- msgstr "Email ou page distante :"
1726
-
1727
- #: dashboard/publisher/adrotate-ads-edit.php:193
1728
- #: dashboard/publisher/adrotate-groups-edit.php:173
1729
  msgid "Advanced"
1730
  msgstr "Avancé"
1731
 
1732
- #: dashboard/publisher/adrotate-ads-edit.php:194
1733
  msgid "Everything below is optional."
1734
  msgstr "Tous les paramètres ci-dessous sont optionels."
1735
 
1736
- #: dashboard/publisher/adrotate-ads-edit.php:199
1737
  msgid "Clicktracking:"
1738
  msgstr "Clicktracking :"
1739
 
1740
- #: dashboard/publisher/adrotate-ads-edit.php:201
1741
  msgid "Enable click tracking for this advert."
1742
  msgstr "Activer le suivi des clicks pour cette publicité."
1743
 
1744
- #: dashboard/publisher/adrotate-ads-edit.php:202
1745
  msgid ""
1746
  "Note: Clicktracking does generally not work for Javascript adverts such as "
1747
  "those provided by Google AdSense."
@@ -1749,36 +1718,29 @@ msgstr ""
1749
  "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
1750
  "publicités en Javascript telles que celles fournies par Google AdSense."
1751
 
1752
- #: dashboard/publisher/adrotate-ads-edit.php:204
1753
- msgid "Place the target URL in your adcode and enable clicktracking."
1754
- msgstr ""
1755
- "Insérez l'URL cible dans votre code de pub pour activer le suivi des clicks."
1756
-
1757
- #: dashboard/publisher/adrotate-ads-edit.php:206
1758
- msgid ""
1759
- "Place the target URL in the field below, use %link% in the adcode instead of "
1760
- "the target URL and enable clicktracking."
1761
  msgstr ""
1762
- "Insérez le URL cible dans le champ ci-dessous, puis utilisez %link% dans le "
1763
- "code au lieux du lien cicle, et activez le suivi des clics."
1764
 
1765
- #: dashboard/publisher/adrotate-ads-edit.php:212
1766
  msgid "Target URL:"
1767
  msgstr "URL Cible :"
1768
 
1769
- #: dashboard/publisher/adrotate-ads-edit.php:215
1770
- msgid "Enter the target URL for your advert here."
1771
- msgstr "Insérer l'URL cible de votre publicité ici."
 
 
1772
 
1773
- #: dashboard/publisher/adrotate-ads-edit.php:220
1774
  msgid "Responsive:"
1775
  msgstr "Responsive :"
1776
 
1777
- #: dashboard/publisher/adrotate-ads-edit.php:222
1778
  msgid "Enable responsive support for this advert."
1779
  msgstr "Activer le support réactif pour cette publicité."
1780
 
1781
- #: dashboard/publisher/adrotate-ads-edit.php:223
1782
  msgid ""
1783
  "Upload your images to the banner folder and make sure the filename is in the "
1784
  "following format; \"imagename.full.ext\". A full set of sized images is "
@@ -1789,7 +1751,7 @@ msgstr ""
1789
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1790
  "fluide."
1791
 
1792
- #: dashboard/publisher/adrotate-ads-edit.php:225
1793
  msgid ""
1794
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1795
  "for different viewports. Requires jQuery."
@@ -1797,35 +1759,35 @@ msgstr ""
1797
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
1798
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
1799
 
1800
- #: dashboard/publisher/adrotate-ads-edit.php:229
1801
  msgid "Banner image:"
1802
  msgstr "Image :"
1803
 
1804
- #: dashboard/publisher/adrotate-ads-edit.php:232
1805
  msgid "Media:"
1806
  msgstr "Médias :"
1807
 
1808
- #: dashboard/publisher/adrotate-ads-edit.php:232
1809
  msgid "Select Banner"
1810
  msgstr "Choisir l'image"
1811
 
1812
- #: dashboard/publisher/adrotate-ads-edit.php:234
1813
  msgid "- OR -"
1814
  msgstr "- OU -"
1815
 
1816
- #: dashboard/publisher/adrotate-ads-edit.php:236
1817
  msgid "Banner folder:"
1818
  msgstr "Dossier de bannières :"
1819
 
1820
- #: dashboard/publisher/adrotate-ads-edit.php:237
1821
  msgid "No image selected"
1822
  msgstr "Aucune image sélectionnée"
1823
 
1824
- #: dashboard/publisher/adrotate-ads-edit.php:241
1825
  msgid "Use %image% in the code. Accepted files are:"
1826
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
1827
 
1828
- #: dashboard/publisher/adrotate-ads-edit.php:241
1829
  msgid ""
1830
  "Use either the text field or the dropdown. If the textfield has content that "
1831
  "field has priority."
@@ -1833,53 +1795,53 @@ msgstr ""
1833
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1834
  "valeur, ce champ a la priorité."
1835
 
1836
- #: dashboard/publisher/adrotate-ads-edit.php:245
1837
  #, fuzzy
1838
  msgid "Weight:"
1839
  msgstr "Importance"
1840
 
1841
- #: dashboard/publisher/adrotate-ads-edit.php:245
1842
  #, fuzzy
1843
  msgid "AdRotate Pro only"
1844
  msgstr "AdRotate Pro"
1845
 
1846
- #: dashboard/publisher/adrotate-ads-edit.php:248
1847
  msgid "Barely visible"
1848
  msgstr ""
1849
 
1850
- #: dashboard/publisher/adrotate-ads-edit.php:249
1851
  msgid "Less than average"
1852
  msgstr ""
1853
 
1854
- #: dashboard/publisher/adrotate-ads-edit.php:250
1855
  msgid "Normal coverage"
1856
  msgstr ""
1857
 
1858
- #: dashboard/publisher/adrotate-ads-edit.php:251
1859
  msgid "More than average"
1860
  msgstr ""
1861
 
1862
- #: dashboard/publisher/adrotate-ads-edit.php:252
1863
  msgid "Best visibility"
1864
  msgstr ""
1865
 
1866
- #: dashboard/publisher/adrotate-ads-edit.php:257
1867
- #: dashboard/publisher/adrotate-groups-edit.php:186
1868
  msgid "Sortorder:"
1869
  msgstr "Ordre de tri :"
1870
 
1871
- #: dashboard/publisher/adrotate-ads-edit.php:259
1872
- #: dashboard/publisher/adrotate-groups-edit.php:188
1873
  msgid "For administrative purposes set a sortorder."
1874
  msgstr "Pour des raisons administratives définir un ordre de tri."
1875
 
1876
- #: dashboard/publisher/adrotate-ads-edit.php:259
1877
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1878
  msgstr ""
1879
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1880
  "de l'ID de la publicité."
1881
 
1882
- #: dashboard/publisher/adrotate-ads-edit.php:264
1883
  msgid ""
1884
  "With AdRotate Pro you can also set a weight to give adverts more or less "
1885
  "attention."
@@ -1887,99 +1849,99 @@ msgstr ""
1887
  "Avec AdRotate Pro, vous pouvez aussi mettre un poids pour donner à vos "
1888
  "publicités plus ou moins d'importance."
1889
 
1890
- #: dashboard/publisher/adrotate-ads-edit.php:264
1891
- #: dashboard/publisher/adrotate-ads-edit.php:313
1892
- #: dashboard/publisher/adrotate-ads-edit.php:415
1893
- #: dashboard/publisher/adrotate-groups-edit.php:192
1894
  msgid "Upgrade today"
1895
  msgstr "Mettre à jour aujourd'hui"
1896
 
1897
- #: dashboard/publisher/adrotate-ads-edit.php:266
1898
  #, fuzzy
1899
  msgid "Geo Location in AdRotate Pro"
1900
  msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
1901
 
1902
- #: dashboard/publisher/adrotate-ads-edit.php:267
1903
  msgid ""
1904
  "This works if you assign the advert to a group and enable that group to use "
1905
  "Geo Targeting."
1906
  msgstr ""
1907
 
1908
- #: dashboard/publisher/adrotate-ads-edit.php:271
1909
  msgid "Cities/States:"
1910
  msgstr ""
1911
 
1912
- #: dashboard/publisher/adrotate-ads-edit.php:274
1913
- #: dashboard/publisher/adrotate-ads-edit.php:307
1914
  #, fuzzy
1915
  msgid "Usage:"
1916
  msgstr "Usage"
1917
 
1918
- #: dashboard/publisher/adrotate-ads-edit.php:275
1919
  msgid "A comma separated list of cities and/or states"
1920
  msgstr ""
1921
 
1922
- #: dashboard/publisher/adrotate-ads-edit.php:275
1923
  msgid ""
1924
  "AdRotate does not check the validity of names so make sure you spell them "
1925
  "correctly!"
1926
  msgstr ""
1927
 
1928
- #: dashboard/publisher/adrotate-ads-edit.php:279
1929
  msgid "Countries:"
1930
  msgstr ""
1931
 
1932
- #: dashboard/publisher/adrotate-ads-edit.php:308
1933
  #, fuzzy
1934
  msgid "Select the countries you want the adverts to show in."
1935
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1936
 
1937
- #: dashboard/publisher/adrotate-ads-edit.php:308
1938
  msgid "Cities take priority and will be filtered first."
1939
  msgstr ""
1940
 
1941
- #: dashboard/publisher/adrotate-ads-edit.php:313
1942
  msgid "Target your audience with Geo Location in AdRotate Pro"
1943
  msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
1944
 
1945
- #: dashboard/publisher/adrotate-ads-edit.php:337
1946
  msgid "Schedule"
1947
  msgstr "Planning"
1948
 
1949
- #: dashboard/publisher/adrotate-ads-edit.php:338
1950
  msgid "From when to when is the advert visible?"
1951
  msgstr "Quel est l'interval de dates pendant lequel la publicité est visible?"
1952
 
1953
- #: dashboard/publisher/adrotate-ads-edit.php:342
1954
  msgid "Start date (day/month/year):"
1955
  msgstr "Date de début (jour/mois/année) :"
1956
 
1957
- #: dashboard/publisher/adrotate-ads-edit.php:363
1958
  msgid "End date (day/month/year):"
1959
  msgstr "Date de fin (jour/mois/année) :"
1960
 
1961
- #: dashboard/publisher/adrotate-ads-edit.php:386
1962
  msgid "Start time (hh:mm):"
1963
  msgstr "Début (hh:mm) :"
1964
 
1965
- #: dashboard/publisher/adrotate-ads-edit.php:393
1966
  msgid "End time (hh:mm):"
1967
  msgstr "Fin (hh:mm) :"
1968
 
1969
- #: dashboard/publisher/adrotate-ads-edit.php:403
1970
  msgid "Maximum Clicks:"
1971
  msgstr "Nombre de clicks max :"
1972
 
1973
- #: dashboard/publisher/adrotate-ads-edit.php:404
1974
- #: dashboard/publisher/adrotate-ads-edit.php:406
1975
  msgid "Leave empty or 0 to skip this."
1976
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1977
 
1978
- #: dashboard/publisher/adrotate-ads-edit.php:405
1979
  msgid "Maximum Impressions:"
1980
  msgstr "Nombre max de vues :"
1981
 
1982
- #: dashboard/publisher/adrotate-ads-edit.php:411
1983
  msgid ""
1984
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1985
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1990,7 +1952,7 @@ msgstr ""
1990
  "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
1991
  "6:00). "
1992
 
1993
- #: dashboard/publisher/adrotate-ads-edit.php:411
1994
  msgid ""
1995
  "The maximum clicks and impressions are measured over the set schedule only. "
1996
  "Every schedule can have it's own limit!"
@@ -1999,110 +1961,108 @@ msgstr ""
1999
  "question uniquement. Tous les calendriers peuvent avoir leurs propres "
2000
  "limites!"
2001
 
2002
- #: dashboard/publisher/adrotate-ads-edit.php:415
2003
  msgid "Create multiple schedules for each advert with AdRotate Pro."
2004
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2005
 
2006
- #: dashboard/publisher/adrotate-ads-edit.php:417
2007
  #, fuzzy
2008
  msgid "Choose Multiple Schedules in AdRotate Pro"
2009
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2010
 
2011
- #: dashboard/publisher/adrotate-ads-edit.php:418
2012
  msgid "You can add, edit or delete schedules from the"
2013
  msgstr ""
2014
 
2015
- #: dashboard/publisher/adrotate-ads-edit.php:418
2016
  msgid "dashboard. Save your advert first!"
2017
  msgstr ""
2018
 
2019
- #: dashboard/publisher/adrotate-ads-edit.php:425
2020
  msgid "From / Until"
2021
  msgstr ""
2022
 
2023
- #: dashboard/publisher/adrotate-ads-edit.php:427
2024
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
2025
  #: dashboard/publisher/adrotate-ads-main.php:45
2026
  #: dashboard/publisher/adrotate-ads-report.php:35
2027
- #: dashboard/publisher/adrotate-groups-edit.php:330
2028
  #: dashboard/publisher/adrotate-groups-main.php:37
2029
  #: dashboard/publisher/adrotate-groups-report.php:41
2030
- #: dashboard/server/adrotate-active.php:25
2031
- #: dashboard/server/adrotate-error.php:26
2032
  msgid "Clicks"
2033
  msgstr "Clicks"
2034
 
2035
- #: dashboard/publisher/adrotate-ads-edit.php:428
2036
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
2037
  #: dashboard/publisher/adrotate-ads-report.php:34
2038
- #: dashboard/publisher/adrotate-groups-edit.php:329
2039
  #: dashboard/publisher/adrotate-groups-main.php:35
2040
  #: dashboard/publisher/adrotate-groups-report.php:40
2041
  msgid "Impressions"
2042
  msgstr "Vues"
2043
 
2044
- #: dashboard/publisher/adrotate-ads-edit.php:437
2045
  #, fuzzy
2046
  msgid "impressions per day"
2047
  msgstr "Vues aujourd'hui"
2048
 
2049
- #: dashboard/publisher/adrotate-ads-edit.php:453
2050
  msgid "In use by this advert."
2051
  msgstr ""
2052
 
2053
- #: dashboard/publisher/adrotate-ads-edit.php:464
2054
  msgid "Select Groups"
2055
  msgstr "Choisir groupes"
2056
 
2057
- #: dashboard/publisher/adrotate-ads-edit.php:465
2058
  msgid "Optionally select the group(s) this ad belongs to."
2059
  msgstr "Choisir le groupe auquel cette publicité va être rattachée (optionel)"
2060
 
2061
- #: dashboard/publisher/adrotate-ads-edit.php:470
2062
  msgid "ID - Name"
2063
  msgstr "ID - Nom"
2064
 
2065
- #: dashboard/publisher/adrotate-ads-edit.php:471
2066
  msgid "Ads in group"
2067
  msgstr "Pubs dans le groupe"
2068
 
2069
- #: dashboard/publisher/adrotate-ads-edit.php:480
2070
  #: dashboard/publisher/adrotate-groups-main.php:58
2071
  msgid "Default"
2072
  msgstr "Par défaut"
2073
 
2074
- #: dashboard/publisher/adrotate-ads-edit.php:481
2075
  #: dashboard/publisher/adrotate-groups-main.php:59
2076
  msgid "Dynamic"
2077
  msgstr "Dynamique"
2078
 
2079
- #: dashboard/publisher/adrotate-ads-edit.php:481
2080
  #: dashboard/publisher/adrotate-groups-main.php:59
2081
  msgid "second rotation"
2082
  msgstr "deuxième rotation"
2083
 
2084
- #: dashboard/publisher/adrotate-ads-edit.php:482
2085
  #: dashboard/publisher/adrotate-groups-main.php:60
2086
  msgid "Block"
2087
  msgstr "Bloc"
2088
 
2089
- #: dashboard/publisher/adrotate-ads-edit.php:482
2090
  #: dashboard/publisher/adrotate-groups-main.php:60
2091
  msgid "grid"
2092
  msgstr "grille"
2093
 
2094
- #: dashboard/publisher/adrotate-ads-edit.php:483
2095
- #: dashboard/publisher/adrotate-groups-edit.php:194
2096
  #: dashboard/publisher/adrotate-groups-main.php:61
2097
  msgid "Post Injection"
2098
  msgstr "Injection dans l'article"
2099
 
2100
- #: dashboard/publisher/adrotate-ads-edit.php:484
2101
  #: dashboard/publisher/adrotate-groups-main.php:62
2102
  msgid "Geolocation"
2103
  msgstr "Géolocalisation"
2104
 
2105
- #: dashboard/publisher/adrotate-ads-edit.php:490
2106
  #: dashboard/publisher/adrotate-groups-edit.php:62
2107
  #: dashboard/publisher/adrotate-groups-main.php:69
2108
  msgid "Mode"
@@ -2125,15 +2085,12 @@ msgstr "Mettre à zéro les statistiques"
2125
  #: dashboard/publisher/adrotate-ads-main-disabled.php:36
2126
  #: dashboard/publisher/adrotate-ads-main-error.php:40
2127
  #: dashboard/publisher/adrotate-ads-main.php:40
2128
- #: dashboard/server/adrotate-active.php:20
2129
  msgid "Start / End"
2130
  msgstr "Début / Fin"
2131
 
2132
  #: dashboard/publisher/adrotate-ads-main-disabled.php:37
2133
  #: dashboard/publisher/adrotate-ads-main-error.php:41
2134
  #: dashboard/publisher/adrotate-ads-main.php:41
2135
- #: dashboard/server/adrotate-active.php:21
2136
- #: dashboard/server/adrotate-error.php:22
2137
  msgid "Title"
2138
  msgstr "Titre"
2139
 
@@ -2141,8 +2098,6 @@ msgstr "Titre"
2141
  #: dashboard/publisher/adrotate-ads-main.php:47
2142
  #: dashboard/publisher/adrotate-ads-report.php:38
2143
  #: dashboard/publisher/adrotate-groups-report.php:44
2144
- #: dashboard/server/adrotate-active.php:27
2145
- #: dashboard/server/adrotate-error.php:28
2146
  msgid "CTR"
2147
  msgstr "CTR"
2148
 
@@ -2200,7 +2155,7 @@ msgid "For 7 days"
2200
  msgstr "Pour 7 jours"
2201
 
2202
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2203
- #: dashboard/publisher/adrotate-groups-edit.php:372
2204
  msgid "Configuration errors."
2205
  msgstr "Erreurs de configuration."
2206
 
@@ -2213,15 +2168,11 @@ msgid "Export to XML"
2213
  msgstr ""
2214
 
2215
  #: dashboard/publisher/adrotate-ads-main.php:42
2216
- #: dashboard/publisher/adrotate-groups-edit.php:331
2217
- #: dashboard/server/adrotate-active.php:22
2218
- #: dashboard/server/adrotate-error.php:23
2219
  msgid "Weight"
2220
  msgstr "Importance"
2221
 
2222
  #: dashboard/publisher/adrotate-ads-main.php:43
2223
- #: dashboard/server/adrotate-active.php:23
2224
- #: dashboard/server/adrotate-error.php:24
2225
  msgid "Shown"
2226
  msgstr "Montré"
2227
 
@@ -2229,10 +2180,6 @@ msgstr "Montré"
2229
  #: dashboard/publisher/adrotate-ads-main.php:46
2230
  #: dashboard/publisher/adrotate-groups-main.php:36
2231
  #: dashboard/publisher/adrotate-groups-main.php:38
2232
- #: dashboard/server/adrotate-active.php:24
2233
- #: dashboard/server/adrotate-active.php:26
2234
- #: dashboard/server/adrotate-error.php:25
2235
- #: dashboard/server/adrotate-error.php:27
2236
  msgid "Today"
2237
  msgstr "Aujourd'hui"
2238
 
@@ -2310,7 +2257,7 @@ msgstr ""
2310
  "activer cette options dans les réglages de AdRotate."
2311
 
2312
  #: dashboard/publisher/adrotate-groups-edit.php:78
2313
- #: dashboard/publisher/adrotate-groups-edit.php:123
2314
  msgid "Dynamic and Block Mode"
2315
  msgstr "Mode Dynamique et en Bloc"
2316
 
@@ -2322,19 +2269,19 @@ msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
2322
  msgid "Block shape and border"
2323
  msgstr "Dimensions et bordure du bloc"
2324
 
2325
- #: dashboard/publisher/adrotate-groups-edit.php:98
2326
  msgid "rows"
2327
  msgstr "lignes"
2328
 
2329
- #: dashboard/publisher/adrotate-groups-edit.php:111
2330
  msgid "columns"
2331
  msgstr "colonnes"
2332
 
2333
- #: dashboard/publisher/adrotate-groups-edit.php:114
2334
  msgid "Block Mode"
2335
  msgstr "Mode en Bloc"
2336
 
2337
- #: dashboard/publisher/adrotate-groups-edit.php:114
2338
  msgid ""
2339
  "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2340
  "showing a maximum of 6 ads. Default: 2x2."
@@ -2342,221 +2289,244 @@ msgstr ""
2342
  "Créer une grille pour vos publicités. Choisissez 3 et 2 créera une grille "
2343
  "avec 2 colonnes montrant un maximum de 6 publicités. Valeur par défaut : 2x2."
2344
 
2345
- #: dashboard/publisher/adrotate-groups-edit.php:118
2346
  msgid "Advert Width and Height"
2347
  msgstr "Dimensions des publicités"
2348
 
2349
- #: dashboard/publisher/adrotate-groups-edit.php:120
2350
  msgid "pixel(s) wide"
2351
  msgstr "largeur en pixels"
2352
 
2353
- #: dashboard/publisher/adrotate-groups-edit.php:120
2354
  msgid "pixel(s) high."
2355
  msgstr "hauteur en pixels"
2356
 
2357
- #: dashboard/publisher/adrotate-groups-edit.php:123
2358
  msgid ""
2359
- "Define the maximum size of the ads in pixels minus margin. Size can be "
2360
- "'auto' (Not recommended). Default: 125/125."
2361
  msgstr ""
2362
- "Definir les dimensions par défaut des pubs en pixel, sans compter les "
2363
- "marges. Si vous mettez 'auto', les dimensions seront automatiques (cici "
2364
- "n'est pas recommendé). Valeur par défaut : 125/125. "
2365
 
2366
- #: dashboard/publisher/adrotate-groups-edit.php:127
2367
  msgid "Automated refresh"
2368
  msgstr "Rafraîchissement automatique"
2369
 
2370
- #: dashboard/publisher/adrotate-groups-edit.php:146
2371
  msgid "seconds."
2372
  msgstr "secondes."
2373
 
2374
- #: dashboard/publisher/adrotate-groups-edit.php:149
2375
  msgid "Dynamic Mode"
2376
  msgstr "Mode dynamique"
2377
 
2378
- #: dashboard/publisher/adrotate-groups-edit.php:149
2379
  msgid ""
2380
  "Load a new advert in this interval without reloading the page. Default: 6."
2381
  msgstr ""
2382
  "Chargez une nouvelle publicité sans recharger le page après cette "
2383
  "intervalle. La valeur par défaut est : 6."
2384
 
2385
- #: dashboard/publisher/adrotate-groups-edit.php:169
2386
- #: dashboard/publisher/adrotate-groups-edit.php:296
2387
- #: dashboard/publisher/adrotate-groups-edit.php:378
2388
  msgid "Save Group"
2389
  msgstr "Sauvegarder groupe"
2390
 
2391
- #: dashboard/publisher/adrotate-groups-edit.php:177
2392
  msgid "Advert Margin"
2393
  msgstr "Marges autour de la pub"
2394
 
2395
- #: dashboard/publisher/adrotate-groups-edit.php:179
2396
  msgid "pixel(s)"
2397
  msgstr "pixel(s)"
2398
 
2399
- #: dashboard/publisher/adrotate-groups-edit.php:182
2400
  msgid "A transparent area outside the advert in pixels. Default: 0."
2401
  msgstr ""
2402
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
2403
  "défaut : 0."
2404
 
2405
- #: dashboard/publisher/adrotate-groups-edit.php:182
2406
  msgid "Set to 0 to disable."
2407
  msgstr "Mettre 0 pour désactiver."
2408
 
2409
- #: dashboard/publisher/adrotate-groups-edit.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2410
  msgid "Leave empty or 0 to skip this. Will default to group id."
2411
  msgstr ""
2412
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2413
  "défaut de l'identifiant du groupe."
2414
 
2415
- #: dashboard/publisher/adrotate-groups-edit.php:192
2416
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2417
  msgstr ""
2418
  "Mettre en place un groupe de secours, et utiliser la localisation "
2419
  "géographique dans AdRotate Pro"
2420
 
2421
- #: dashboard/publisher/adrotate-groups-edit.php:195
2422
  msgid "Insert ads to the begin or end of a post/page."
2423
  msgstr "Insérer des publicités au début ou à la fin de l'article/page."
2424
 
2425
- #: dashboard/publisher/adrotate-groups-edit.php:198
2426
  msgid "Include ads in categories?"
2427
  msgstr "Intégrer les publicités dans les catégories?"
2428
 
2429
- #: dashboard/publisher/adrotate-groups-edit.php:202
2430
- #: dashboard/publisher/adrotate-groups-edit.php:243
2431
  msgid "Disabled"
2432
  msgstr "Désactivé"
2433
 
2434
- #: dashboard/publisher/adrotate-groups-edit.php:203
2435
- #: dashboard/publisher/adrotate-groups-edit.php:244
2436
  msgid "Before content"
2437
  msgstr "Avant le contenu"
2438
 
2439
- #: dashboard/publisher/adrotate-groups-edit.php:204
2440
- #: dashboard/publisher/adrotate-groups-edit.php:245
2441
  msgid "After content"
2442
  msgstr "Après le contenu"
2443
 
2444
- #: dashboard/publisher/adrotate-groups-edit.php:205
2445
- #: dashboard/publisher/adrotate-groups-edit.php:246
2446
  msgid "Before and after content"
2447
  msgstr "Avant et après le contenu"
2448
 
2449
- #: dashboard/publisher/adrotate-groups-edit.php:206
2450
- #: dashboard/publisher/adrotate-groups-edit.php:247
2451
  msgid "After..."
2452
  msgstr "Après..."
2453
 
2454
- #: dashboard/publisher/adrotate-groups-edit.php:212
2455
- #: dashboard/publisher/adrotate-groups-edit.php:253
2456
  msgid "the first paragraph"
2457
  msgstr "le premier parapgraphe"
2458
 
2459
- #: dashboard/publisher/adrotate-groups-edit.php:213
2460
- #: dashboard/publisher/adrotate-groups-edit.php:254
2461
  msgid "the 2nd paragraph"
2462
  msgstr "le second paragraphe"
2463
 
2464
- #: dashboard/publisher/adrotate-groups-edit.php:214
2465
- #: dashboard/publisher/adrotate-groups-edit.php:255
2466
  msgid "the 3rd paragraph"
2467
  msgstr "le troisième paragraphe"
2468
 
2469
- #: dashboard/publisher/adrotate-groups-edit.php:215
2470
- #: dashboard/publisher/adrotate-groups-edit.php:256
2471
  msgid "the 4th paragraph"
2472
  msgstr "le quatrième paragraphe"
2473
 
2474
- #: dashboard/publisher/adrotate-groups-edit.php:217
2475
- #: dashboard/publisher/adrotate-groups-edit.php:258
2476
  msgid "every 2nd paragraph"
2477
  msgstr "chaque second paragraphe"
2478
 
2479
- #: dashboard/publisher/adrotate-groups-edit.php:218
2480
- #: dashboard/publisher/adrotate-groups-edit.php:259
2481
  msgid "every 3rd paragraph"
2482
  msgstr "chaque 3ème paragraphe"
2483
 
2484
- #: dashboard/publisher/adrotate-groups-edit.php:219
2485
- #: dashboard/publisher/adrotate-groups-edit.php:260
2486
  msgid "every 4th paragraph"
2487
  msgstr "chaque 4ème paragraphe"
2488
 
2489
- #: dashboard/publisher/adrotate-groups-edit.php:220
2490
- #: dashboard/publisher/adrotate-groups-edit.php:261
2491
  msgid "every 5th paragraph"
2492
  msgstr "chaque 5ème paragraphe"
2493
 
2494
- #: dashboard/publisher/adrotate-groups-edit.php:221
2495
- #: dashboard/publisher/adrotate-groups-edit.php:262
2496
  msgid "every 6th paragraph"
2497
  msgstr "chaque 6ème paragraphe"
2498
 
2499
- #: dashboard/publisher/adrotate-groups-edit.php:222
2500
- #: dashboard/publisher/adrotate-groups-edit.php:263
2501
  msgid "every 7th paragraph"
2502
  msgstr "chaque 7ème paragraphe"
2503
 
2504
- #: dashboard/publisher/adrotate-groups-edit.php:223
2505
- #: dashboard/publisher/adrotate-groups-edit.php:264
2506
  msgid "every 8th paragraph"
2507
  msgstr "chaque 8ème paragraphe"
2508
 
2509
- #: dashboard/publisher/adrotate-groups-edit.php:229
2510
  msgid "Which categories?"
2511
  msgstr "Quelles catégories?"
2512
 
2513
- #: dashboard/publisher/adrotate-groups-edit.php:234
2514
  msgid "Click the categories posts you want the adverts to show in."
2515
  msgstr ""
2516
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2517
  "pulicités."
2518
 
2519
- #: dashboard/publisher/adrotate-groups-edit.php:239
2520
  msgid "Include ads in pages?"
2521
  msgstr "Intégrer les publicités dans les pages?"
2522
 
2523
- #: dashboard/publisher/adrotate-groups-edit.php:270
2524
  msgid "Which pages?"
2525
  msgstr "Quelles pages?"
2526
 
2527
- #: dashboard/publisher/adrotate-groups-edit.php:275
2528
  msgid "Click the pages you want the adverts to show in."
2529
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2530
 
2531
- #: dashboard/publisher/adrotate-groups-edit.php:300
2532
  msgid "Wrapper code"
2533
  msgstr "Code enveloppant"
2534
 
2535
- #: dashboard/publisher/adrotate-groups-edit.php:301
2536
  msgid "Wraps around each ad."
2537
  msgstr "Code qui enveloppe chaque publicité."
2538
 
2539
- #: dashboard/publisher/adrotate-groups-edit.php:305
2540
  msgid "Before ad"
2541
  msgstr "Avant la pub"
2542
 
2543
- #: dashboard/publisher/adrotate-groups-edit.php:310
2544
  msgid "HTML/JavaScript allowed, use with care!"
2545
  msgstr "HTML/Javascript est authorisé, utiliser avec précaution!"
2546
 
2547
- #: dashboard/publisher/adrotate-groups-edit.php:314
2548
  msgid "After ad"
2549
  msgstr "Après la pub"
2550
 
2551
- #: dashboard/publisher/adrotate-groups-edit.php:323
2552
  msgid "Select Ads"
2553
  msgstr "Choisir les pubs"
2554
 
2555
- #: dashboard/publisher/adrotate-groups-edit.php:332
2556
  msgid "Visible until"
2557
  msgstr "Visible jusqu'à"
2558
 
2559
- #: dashboard/publisher/adrotate-groups-edit.php:365
2560
  msgid "No ads created!"
2561
  msgstr "Aucune pub créée!"
2562
 
@@ -2588,128 +2558,220 @@ msgstr "Aucun groupe n'a été créé!"
2588
  msgid "Statistics for group"
2589
  msgstr "Statistiques pour le groupe"
2590
 
2591
- #: dashboard/server/adrotate-active.php:12
2592
- msgid "Adverts received from server"
2593
- msgstr "Publicités reçues du serveur"
2594
 
2595
- #: dashboard/server/adrotate-active.php:13
2596
- msgid ""
2597
- "These adverts are circulating in the pool of active adverts, served from "
2598
- "AdRotate server."
2599
- msgstr ""
2600
- "Ces publicités sont en circulation dans la séléction de publicités actives "
2601
- "servies par AdRotate server."
 
 
2602
 
2603
- #: dashboard/server/adrotate-active.php:19
2604
- msgid "Added / Updated"
2605
- msgstr "Ajouté / Mis à jour"
2606
 
2607
- #: dashboard/server/adrotate-active.php:74
2608
- #: dashboard/server/adrotate-error.php:76
2609
- msgid "No ads received yet!"
2610
- msgstr "Aucune publicité n'a été reçue pour le moment!"
2611
 
2612
- #: dashboard/server/adrotate-error.php:12
2613
- msgid "Erroneous ads from server"
2614
- msgstr "Publicités erronées parvenues du serveur"
2615
 
2616
- #: dashboard/server/adrotate-error.php:13
2617
- msgid "Adverts served from AdRotate server but having some issues."
2618
- msgstr "Publicités provenant du serveur AdRotate mais qui ont des soucis."
2619
 
2620
- #: dashboard/server/adrotate-error.php:19
2621
- msgid "Updated"
2622
- msgstr "Mis à jour"
 
2623
 
2624
- #: dashboard/server/adrotate-error.php:20
2625
- msgid "Show from"
2626
- msgstr "Montrer de "
2627
 
2628
- #: dashboard/server/adrotate-error.php:21
2629
- msgid "Show until"
2630
- msgstr "Montrer jusqu'à"
2631
 
2632
- #: dashboard/server/adrotate-settings.php:15
2633
- msgid "AdRotate Server Settings"
2634
- msgstr "Paramètres du serveur AdRotate"
 
 
 
2635
 
2636
- #: dashboard/server/adrotate-settings.php:21
2637
- msgid ""
2638
- "Link this website to an AdRotate server so your adverts and stats are "
2639
- "synchronised regularly."
2640
- msgstr ""
2641
- "Lier ce site web à un serveur Adrotate pour que vos publicités et vos "
2642
- "statistiques soient synchronisées regulièrement."
2643
 
2644
- #: dashboard/server/adrotate-settings.php:24
2645
- msgid "Status"
2646
- msgstr "Statut"
2647
 
2648
- #: dashboard/server/adrotate-settings.php:27
2649
- msgid "Linked - Adverts can be synced."
2650
- msgstr "Lié - Les publicités peuvent être synchronisées"
2651
 
2652
- #: dashboard/server/adrotate-settings.php:27
2653
- msgid "Not linked - No adverts will be synced."
2654
- msgstr "Pas lié - Aucune publicité ne sera synchronisée"
2655
 
2656
- #: dashboard/server/adrotate-settings.php:40
2657
- msgid "Server Key"
2658
- msgstr "Clé Serveur"
2659
 
2660
- #: dashboard/server/adrotate-settings.php:41
2661
- msgid ""
2662
- "You can get your server key from your AdRotate Server installation or the "
2663
- "AdRollr website."
2664
- msgstr ""
2665
- "Vous pouvez recevoir votre clé de serveur de votre installation AdRotate "
2666
- "Server ou du site AdRollr."
2667
 
2668
- #: dashboard/server/adrotate-settings.php:41
2669
- msgid ""
2670
- "You should not share your key with anyone you do not trust. Treat this key "
2671
- "as a password!"
2672
- msgstr ""
2673
- "Vous ne devez pas partager votre clé. Traitez cette clé comme un mot de "
2674
- "passe!"
2675
 
2676
- #: dashboard/server/adrotate-settings.php:44
2677
- msgid "Make this site a puppet"
2678
- msgstr "Rendre ce site une \"cellule\""
2679
 
2680
- #: dashboard/server/adrotate-settings.php:46
2681
- msgid "Have AdRotate use AdRotate Server adverts exclusively."
2682
- msgstr "Utilisez les publicités provenant de AdRotate Server uniquement."
2683
 
2684
- #: dashboard/server/adrotate-settings.php:46
2685
- msgid ""
2686
- "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make this "
2687
- "installation of AdRotate a puppet for your AdRotate Server."
2688
- msgstr ""
2689
- "L'activation de cette fonction permet de désactiver toute la gestion locale "
2690
- "et de rendre cette installation de AdRotate une cellule de votre serveur "
2691
- "AdRotate. "
2692
 
2693
- #: dashboard/server/adrotate-settings.php:50
2694
- msgid "Hide Server Details"
2695
- msgstr "Cacher les détails du serveur"
2696
 
2697
- #: dashboard/server/adrotate-settings.php:52
2698
- msgid ""
2699
- "If you have installed AdRotate Pro for a client or in a Multisite network "
2700
- "and want to hide the server details from your users or client."
2701
- msgstr ""
2702
- "Si vous avez installé AdRotate Pro pour un client ou dans une installation "
2703
- "réseau et vous voulez cacher les détails du serveur de vos utilisateurs ou "
2704
- "client. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2705
 
2706
- #: dashboard/server/adrotate-settings.php:60
2707
- msgid "Link to server"
2708
- msgstr "Lier au serveur"
2709
 
2710
- #: dashboard/server/adrotate-settings.php:62
2711
- msgid "Unlink from server"
2712
- msgstr "Dissocier du serveur"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2713
 
2714
  #~ msgid "Useful links"
2715
  #~ msgstr "Liens utiles"
@@ -2717,9 +2779,6 @@ msgstr "Dissocier du serveur"
2717
  #~ msgid "Check out the"
2718
  #~ msgstr "Vérifier le/la"
2719
 
2720
- #~ msgid "manuals"
2721
- #~ msgstr "manuels"
2722
-
2723
  #~ msgid "and have the most popular features explained."
2724
  #~ msgstr ""
2725
  #~ "et recevez plus d'informations sur les fonctionalités les plus utilisées."
@@ -2739,9 +2798,6 @@ msgstr "Dissocier du serveur"
2739
  #~ msgid "Required for Dynamic Groups to rotate ads."
2740
  #~ msgstr "Requis pour les groupes Dynamiques."
2741
 
2742
- #~ msgid "Clean Trackerdata next run:"
2743
- #~ msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2744
-
2745
  #~ msgid "Buy"
2746
  #~ msgstr "Acheter"
2747
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
+ "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: en_US\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
27
 
28
+ #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
+ #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
38
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
39
  "votre navigateur."
40
 
41
+ #: adrotate-output.php:749
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
46
 
47
+ #: adrotate-output.php:750
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
+ #: adrotate-output.php:768
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
56
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
57
  "horaires/géographiques ou n'existe pas!"
58
 
59
+ #: adrotate-output.php:770
60
  msgid ""
61
  "Error, Ad is not available at this time due to schedule/geolocation "
62
  "restrictions!"
64
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
65
  "horaires/géographiques!"
66
 
67
+ #: adrotate-output.php:777 adrotate-output.php:779
68
  msgid ""
69
  "Either there are no banners, they are disabled or none qualified for this "
70
  "location!"
72
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
73
  "cet endroit!"
74
 
75
+ #: adrotate-output.php:785
76
  msgid "Error, no Ad ID set! Check your syntax!"
77
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
78
 
79
+ #: adrotate-output.php:791
80
  msgid "Error, no group ID set! Check your syntax!"
81
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
82
 
83
+ #: adrotate-output.php:796
84
  msgid "Error, group does not exist! Check your syntax!"
85
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
86
 
87
+ #: adrotate-output.php:802
88
  msgid ""
89
  "There was an error locating the database tables for AdRotate. Please "
90
  "deactivate and re-activate AdRotate from the plugin page!!"
93
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
94
  "extensions. "
95
 
96
+ #: adrotate-output.php:802
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr ""
99
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
100
  "support à"
101
 
102
+ #: adrotate-output.php:808
103
  msgid "An unknown error occured."
104
  msgstr "Une erreur inconnue s'est produite."
105
 
106
+ #: adrotate-output.php:834
107
  msgid "active ad(s) expired."
108
  msgstr "publicité(s) active(s) ont expirée(s)."
109
 
110
+ #: adrotate-output.php:834
111
  msgid "Take action now"
112
  msgstr "Agir maintenant"
113
 
114
+ #: adrotate-output.php:836
115
  msgid "active ad(s) are about to expire."
116
  msgstr "publicité(s) active(s) sont sur le point d'expirer"
117
 
118
+ #: adrotate-output.php:836
119
  msgid "Check it out"
120
  msgstr "Vérifier-le"
121
 
122
+ #: adrotate-output.php:838
123
  msgid "active ad(s) with configuration errors."
124
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
125
 
126
+ #: adrotate-output.php:838
127
  msgid "Solve this"
128
  msgstr "Résoudre"
129
 
130
+ #: adrotate-output.php:840
131
  msgid "ad(s) expired."
132
  msgstr "publicité(s) expirée(s)"
133
 
134
+ #: adrotate-output.php:840
135
  msgid "ad(s) are about to expire."
136
  msgstr "publicité(s) sont sur le point d'expirer"
137
 
138
+ #: adrotate-output.php:840
139
  msgid "ad(s) with configuration errors."
140
  msgstr "publicité(s) avec des erreurs de configuration."
141
 
142
+ #: adrotate-output.php:840
143
  msgid "Fix this as soon as possible"
144
  msgstr "Résoudre ce soucis dans les meilleurs délais"
145
 
146
+ #: adrotate-output.php:853
147
  #, fuzzy
148
  msgid "Learn More"
149
  msgstr "En savoir plus"
150
 
151
+ #: adrotate-output.php:855
152
  msgid ""
153
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
154
  "to the <strong>PRO</strong> version"
155
  msgstr ""
156
 
157
+ #: adrotate-output.php:856
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
+ #: adrotate-output.php:856
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:896
166
+ msgid ""
167
+ "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
168
+ "Pro is in this menu. Check out the"
169
+ msgstr ""
170
+
171
+ #: adrotate-output.php:896
172
+ msgid "manuals"
173
+ msgstr "manuels"
174
+
175
+ #: adrotate-output.php:896 adrotate-output.php:973
176
+ #: dashboard/publisher/adrotate-ads-edit.php:229
177
+ msgid "and"
178
+ msgstr ""
179
+
180
+ #: adrotate-output.php:896
181
+ msgid "forums"
182
+ msgstr ""
183
+
184
+ #: adrotate-output.php:932
185
+ msgid "Useful Links"
186
+ msgstr ""
187
+
188
+ #: adrotate-output.php:933
189
+ msgid "Useful links to learn more about AdRotate"
190
+ msgstr ""
191
+
192
+ #: adrotate-output.php:935
193
+ msgid "AdRotate Page"
194
+ msgstr ""
195
+
196
+ #: adrotate-output.php:936
197
+ msgid "Getting Started With AdRotate"
198
+ msgstr ""
199
+
200
+ #: adrotate-output.php:937
201
+ msgid "AdRotate manuals"
202
+ msgstr ""
203
+
204
+ #: adrotate-output.php:938
205
+ msgid "AdRotate Support Forum"
206
+ msgstr ""
207
+
208
+ #: adrotate-output.php:939
209
+ msgid "WordPress.org Forum"
210
+ msgstr ""
211
+
212
+ #: adrotate-output.php:965
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "AdRotate Pro"
216
 
217
+ #: adrotate-output.php:966
218
  msgid "Brought to you by"
219
  msgstr "Présenté par"
220
 
221
+ #: adrotate-output.php:973
222
  msgid ""
223
  "A lot of users only think to review AdRotate when something goes wrong while "
224
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:973
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:973
232
  msgid "rating"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:973
 
 
 
 
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "En avant-première"
239
 
240
+ #: adrotate-output.php:973
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:976
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
249
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
250
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
251
 
252
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Visitez le"
255
 
256
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "site"
259
 
260
+ #: adrotate-output.php:1006
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Disponible dans Adrotate Pro"
263
 
264
+ #: adrotate-output.php:1006
265
  msgid "More information..."
266
  msgstr "Plus d'informations..."
267
 
268
+ #: adrotate-output.php:1007
269
  msgid "This feature is available in AdRotate Pro"
270
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
271
 
272
+ #: adrotate-output.php:1007
273
  msgid "Learn more"
274
  msgstr "En savoir plus"
275
 
276
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:331
277
+ #: dashboard/publisher/adrotate-ads-edit.php:352
278
  msgid "January"
279
  msgstr "Janvier"
280
 
281
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:332
282
+ #: dashboard/publisher/adrotate-ads-edit.php:353
283
  msgid "February"
284
  msgstr "Février"
285
 
286
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:333
287
+ #: dashboard/publisher/adrotate-ads-edit.php:354
288
  msgid "March"
289
  msgstr "Mars"
290
 
291
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:334
292
+ #: dashboard/publisher/adrotate-ads-edit.php:355
293
  msgid "April"
294
  msgstr "Avril"
295
 
296
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:335
297
+ #: dashboard/publisher/adrotate-ads-edit.php:356
298
  msgid "May"
299
  msgstr "Mai"
300
 
301
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:336
302
+ #: dashboard/publisher/adrotate-ads-edit.php:357
303
  msgid "June"
304
  msgstr "Juin"
305
 
306
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:337
307
+ #: dashboard/publisher/adrotate-ads-edit.php:358
308
  msgid "July"
309
  msgstr "Juillet"
310
 
311
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:338
312
+ #: dashboard/publisher/adrotate-ads-edit.php:359
313
  msgid "August"
314
  msgstr "Août"
315
 
316
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:339
317
+ #: dashboard/publisher/adrotate-ads-edit.php:360
318
  msgid "September"
319
  msgstr "Septembre"
320
 
321
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:340
322
+ #: dashboard/publisher/adrotate-ads-edit.php:361
323
  msgid "October"
324
  msgstr "Octobre"
325
 
326
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:341
327
+ #: dashboard/publisher/adrotate-ads-edit.php:362
328
  msgid "November"
329
  msgstr "Novembre"
330
 
331
+ #: adrotate-statistics.php:217 dashboard/publisher/adrotate-ads-edit.php:342
332
+ #: dashboard/publisher/adrotate-ads-edit.php:363
333
  msgid "December"
334
  msgstr "Décembre"
335
 
349
  msgid "No data to show!"
350
  msgstr "Aucune donnée à montrer!"
351
 
352
+ #: adrotate-widget.php:116
353
  msgid "Title (optional):"
354
  msgstr "Titre (optionel) :"
355
 
356
+ #: adrotate-widget.php:119
357
  msgid "HTML will be stripped out."
358
  msgstr "Le code HTML sera retiré."
359
 
360
+ #: adrotate-widget.php:122
361
  msgid "Description (optional):"
362
  msgstr "Description (optionelle) :"
363
 
364
+ #: adrotate-widget.php:125
365
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
366
  msgstr ""
367
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
368
  "dépouillé.)"
369
 
370
+ #: adrotate-widget.php:128
371
  msgid "Type:"
372
  msgstr "Type :"
373
 
374
+ #: adrotate-widget.php:130
375
  msgid "Single Ad - Use Ad ID"
376
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
377
 
378
+ #: adrotate-widget.php:131
379
  msgid "Group of Ads - Use group ID"
380
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
381
 
382
+ #: adrotate-widget.php:134
 
 
 
 
383
  msgid "Choose what you want to use this widget for"
384
  msgstr "Choisissez le fonction de ce widget"
385
 
386
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
387
  msgid "ID:"
388
  msgstr "ID :"
389
 
390
+ #: adrotate-widget.php:140
391
  msgid "Fill in the ID of the type you want to display!"
392
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
393
 
394
+ #: adrotate.php:108
395
  msgid "General Info"
396
  msgstr "Informations générales"
397
 
398
+ #: adrotate.php:109
399
  msgid "AdRotate Pro"
400
  msgstr "AdRotate Pro"
401
 
402
+ #: adrotate.php:110
403
  msgid "Manage Ads"
404
  msgstr "Gérer les pubs"
405
 
406
+ #: adrotate.php:111 dashboard/publisher/adrotate-groups-main.php:12
407
  msgid "Manage Groups"
408
  msgstr "Gérer les groupes"
409
 
410
+ #: adrotate.php:112 adrotate.php:441
411
+ #: dashboard/publisher/adrotate-ads-edit.php:402
412
  #, fuzzy
413
  msgid "Manage Schedules"
414
  msgstr "Gérer les pubs"
415
 
416
+ #: adrotate.php:113
417
  #, fuzzy
418
  msgid "Manage Media"
419
  msgstr "Gérer les pubs"
420
 
421
+ #: adrotate.php:114
422
  msgid "Settings"
423
  msgstr "Paramètres"
424
 
425
+ #: adrotate.php:137
426
  msgid "AdRotate Info"
427
  msgstr "Informations sur Adrotate"
428
 
429
+ #: adrotate.php:158
430
  msgid "AdRotate Professional"
431
  msgstr "AdRotate professionel"
432
 
433
+ #: adrotate.php:201
434
  msgid "Ad Management"
435
  msgstr "Gestion des pubs"
436
 
437
+ #: adrotate.php:204
438
  msgid "Ad created"
439
  msgstr "Publicité créée"
440
 
441
+ #: adrotate.php:206
442
  msgid "Ad updated"
443
  msgstr "Publicité mise à jour"
444
 
445
+ #: adrotate.php:208
446
  msgid "Ad(s) deleted"
447
  msgstr "Publicité(s) supprimée(s)"
448
 
449
+ #: adrotate.php:210
450
  msgid "Ad(s) statistics reset"
451
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
452
 
453
+ #: adrotate.php:212
454
  msgid "Ad(s) renewed"
455
  msgstr "publicité(s) renouvellée(s)"
456
 
457
+ #: adrotate.php:214
458
  msgid "Ad(s) deactivated"
459
  msgstr "Publicité(s) désactivée(s)"
460
 
461
+ #: adrotate.php:216
462
  msgid "Ad(s) activated"
463
  msgstr "Publicité(s) activée(s)"
464
 
465
+ #: adrotate.php:218
466
  msgid ""
467
  "The ad was saved but has an issue which might prevent it from working "
468
  "properly. Review the yellow marked ad."
470
  "La publicité a éré sauvegardée mais a un soucis qui pourrait l'empêcher de "
471
  "fonctionner correctement. Veuillez vérifier la publicité marquée en jaune."
472
 
473
+ #: adrotate.php:220
474
  #, fuzzy
475
  msgid "Export created"
476
  msgstr "Publicité créée"
477
 
478
+ #: adrotate.php:224
479
  msgid "Action prohibited"
480
  msgstr "Action interdite"
481
 
482
+ #: adrotate.php:226 adrotate.php:374
483
  msgid "No data found in selected time period"
484
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
485
 
486
+ #: adrotate.php:284 adrotate.php:380 adrotate.php:436
487
  msgid "Manage"
488
  msgstr "Gérer"
489
 
490
+ #: adrotate.php:285 adrotate.php:381 adrotate.php:437
491
  msgid "Add New"
492
  msgstr "Ajouter"
493
 
494
+ #: adrotate.php:363
495
  msgid "Group Management"
496
  msgstr "Gérer les groupes"
497
 
498
+ #: adrotate.php:366
499
  msgid "Group created"
500
  msgstr "Groupe créé"
501
 
502
+ #: adrotate.php:368
503
  msgid "Group updated"
504
  msgstr "Groupe mis à jour"
505
 
506
+ #: adrotate.php:370
507
  msgid "Group deleted"
508
  msgstr "Groupe supprimé"
509
 
510
+ #: adrotate.php:372
511
  msgid "Group including it's Ads deleted"
512
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
513
 
514
+ #: adrotate.php:432
515
  #, fuzzy
516
  msgid "Schedule Management available in AdRotate Pro"
517
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
518
 
519
+ #: adrotate.php:442
520
  #, fuzzy
521
  msgid ""
522
  "Schedule management and multiple schedules per advert is available in "
523
  "AdRotate Pro."
524
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
525
 
526
+ #: adrotate.php:442 adrotate.php:529
527
+ #: dashboard/publisher/adrotate-ads-edit.php:145
528
  #: dashboard/publisher/adrotate-ads-main.php:108
529
  #: dashboard/publisher/adrotate-groups-edit.php:76
530
  #: dashboard/publisher/adrotate-groups-main.php:87
531
  msgid "More information"
532
  msgstr "Plus d'information"
533
 
534
+ #: adrotate.php:449 dashboard/publisher/adrotate-ads-main-disabled.php:20
535
  #: dashboard/publisher/adrotate-ads-main-error.php:19
536
  #: dashboard/publisher/adrotate-ads-main.php:20
537
  #: dashboard/publisher/adrotate-groups-main.php:20
538
  msgid "Bulk Actions"
539
  msgstr "Actions en vrac"
540
 
541
+ #: adrotate.php:450 dashboard/publisher/adrotate-ads-main-disabled.php:25
542
  #: dashboard/publisher/adrotate-ads-main-error.php:29
543
  #: dashboard/publisher/adrotate-ads-main.php:30
544
  #: dashboard/publisher/adrotate-groups-main.php:24
545
  msgid "Go"
546
  msgstr "Aller"
547
 
548
+ #: adrotate.php:459 dashboard/publisher/adrotate-ads-edit.php:408
549
  #: dashboard/publisher/adrotate-ads-main-disabled.php:35
550
  #: dashboard/publisher/adrotate-ads-main-error.php:39
551
  #: dashboard/publisher/adrotate-ads-main.php:39
552
  #: dashboard/publisher/adrotate-groups-main.php:32
 
 
553
  msgid "ID"
554
  msgstr "ID"
555
 
556
+ #: adrotate.php:460
557
  #, fuzzy
558
  msgid "Start"
559
  msgstr "Début / Fin"
560
 
561
+ #: adrotate.php:460
562
  msgid "End"
563
  msgstr ""
564
 
565
+ #: adrotate.php:461 dashboard/publisher/adrotate-ads-edit.php:475
566
  #: dashboard/publisher/adrotate-groups-main.php:34
567
  msgid "Ads"
568
  msgstr "Pubs"
569
 
570
+ #: adrotate.php:463
571
  #, fuzzy
572
  msgid "Max Clicks"
573
  msgstr "Nombre de clicks max :"
574
 
575
+ #: adrotate.php:464
576
  #, fuzzy
577
  msgid "Max Impressions"
578
  msgstr "Nombre max de vues :"
579
 
580
+ #: adrotate.php:494
581
  #, fuzzy
582
  msgid "No schedules created yet!"
583
  msgstr "Aucune pub n'a encore été créé!"
584
 
585
+ #: adrotate.php:499
586
  #, fuzzy
587
  msgid "Easily manage your schedules from here with AdRotate Pro."
588
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
589
 
590
+ #: adrotate.php:499 adrotate.php:562
591
  #, fuzzy
592
  msgid "Upgrade today!"
593
  msgstr "Mettre à jour aujourd'hui"
594
 
595
+ #: adrotate.php:502 dashboard/publisher/adrotate-ads-edit.php:438
596
  #: dashboard/publisher/adrotate-ads-main-error.php:74
597
+ #: dashboard/publisher/adrotate-groups-edit.php:399
598
  msgid "Expires soon."
599
  msgstr "Expire bientôt."
600
 
601
+ #: adrotate.php:503 dashboard/publisher/adrotate-ads-main-error.php:75
602
+ #: dashboard/publisher/adrotate-groups-edit.php:400
603
  msgid "Has expired."
604
  msgstr "A expiré."
605
 
606
+ #: adrotate.php:527
607
  #, fuzzy
608
  msgid "Media Management available in AdRotate Pro"
609
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
610
 
611
+ #: adrotate.php:529
612
  msgid ""
613
  "Upload images to the AdRotate Pro banners folder from here. This is "
614
  "especially useful if you use responsive adverts with multiple images."
615
  msgstr ""
616
 
617
+ #: adrotate.php:529
618
  #, fuzzy
619
  msgid "Media uploading and management is available in AdRotate Pro."
620
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
621
 
622
+ #: adrotate.php:531
623
  #, fuzzy
624
  msgid "Upload new banner image"
625
  msgstr "Image :"
626
 
627
+ #: adrotate.php:532
628
  #, fuzzy
629
  msgid "Accepted files are:"
630
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
631
 
632
+ #: adrotate.php:532
633
  msgid "Maximum size is 512Kb."
634
  msgstr ""
635
 
636
+ #: adrotate.php:532
637
  msgid "Important:"
638
  msgstr ""
639
 
640
+ #: adrotate.php:532
641
  msgid ""
642
  "Make sure your file has no spaces or special characters in the name. Replace "
643
  "spaces with a - or _."
644
  msgstr ""
645
 
646
+ #: adrotate.php:534
647
  #, fuzzy
648
  msgid ""
649
  "For responsive adverts make sure the filename is in the following format; "
654
  "complet d'images de tailles différentes est recommendé si vous avez un site "
655
  "fluide."
656
 
657
+ #: adrotate.php:535 dashboard/publisher/adrotate-ads-edit.php:212
658
  msgid ""
659
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
660
  "filename instead of \".full\" for the various viewports."
663
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
664
  "tailles d'écran."
665
 
666
+ #: adrotate.php:536 dashboard/publisher/adrotate-ads-edit.php:213
667
+ #: dashboard/publisher/adrotate-groups-edit.php:334
668
+ #: dashboard/publisher/adrotate-groups-edit.php:343
669
  msgid "Example:"
670
  msgstr "Exemple :"
671
 
672
+ #: adrotate.php:536
673
  #, fuzzy
674
  msgid ""
675
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
678
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
679
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
680
 
681
+ #: adrotate.php:540
682
  msgid "Upload image"
683
  msgstr ""
684
 
685
+ #: adrotate.php:543
686
  msgid "Available banner images in"
687
  msgstr ""
688
 
689
+ #: adrotate.php:548 dashboard/publisher/adrotate-groups-main.php:33
690
  msgid "Name"
691
  msgstr "Nom"
692
 
693
+ #: adrotate.php:549
694
  #, fuzzy
695
  msgid "Actions"
696
  msgstr "Actions en vrac"
697
 
698
+ #: adrotate.php:554 adrotate.php:555 adrotate.php:556 adrotate.php:557
699
+ #: adrotate.php:558 dashboard/publisher/adrotate-ads-main-disabled.php:22
700
  #: dashboard/publisher/adrotate-ads-main-error.php:21
701
  #: dashboard/publisher/adrotate-ads-main.php:22
702
  msgid "Delete"
703
  msgstr "Effacer"
704
 
705
+ #: adrotate.php:562
706
  msgid ""
707
  "Make sure the banner images are not in use by adverts when you delete them!"
708
  msgstr ""
709
 
710
+ #: adrotate.php:562
711
  #, fuzzy
712
  msgid "Manage your banner folder from here with AdRotate Pro."
713
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
714
 
715
+ #: adrotate.php:606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
716
  msgid "AdRotate Settings"
717
  msgstr "Paramètres de AdRotate"
718
 
719
+ #: adrotate.php:609
720
  msgid "Settings saved"
721
  msgstr "Paramètres sauvegardés"
722
 
723
+ #: adrotate.php:611
724
  msgid "Database optimized"
725
  msgstr "Base de données optimisée"
726
 
727
+ #: adrotate.php:613
728
  msgid "Database repaired"
729
  msgstr "Base de données réparée"
730
 
731
+ #: adrotate.php:615
732
  msgid "Ads evaluated and statuses have been corrected where required"
733
  msgstr ""
734
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
735
 
736
+ #: adrotate.php:617
737
  msgid "Empty database records removed"
738
  msgstr "Les registres vides de la base de données ont été supprimés"
739
 
740
+ #: adrotate.php:619
741
  msgid "Database can only be optimized or cleaned once every hour"
742
  msgstr ""
743
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
744
 
745
+ #: adrotate.php:627
746
  msgid "Access Rights"
747
  msgstr "Droits d'Accès"
748
 
749
+ #: adrotate.php:628
750
  msgid "Who has access to what?"
751
  msgstr "Qui a accès à quoi?"
752
 
753
+ #: adrotate.php:631
754
  msgid "Manage/Add/Edit adverts"
755
  msgstr "Gérer/Ajouter/Modifier les publicités"
756
 
757
+ #: adrotate.php:635
758
  msgid "Role to see and add/edit ads."
759
  msgstr "Rôle pour voir et gérer/modifier les publicités."
760
 
761
+ #: adrotate.php:639
762
  msgid "Delete/Reset adverts"
763
  msgstr "Supprimer/Mettre à zéro les publicités"
764
 
765
+ #: adrotate.php:643
766
  msgid "Role to delete ads and reset stats."
767
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
768
 
769
+ #: adrotate.php:647
770
  msgid "Manage/Add/Edit groups"
771
  msgstr "Gérer/Ajouter/Modifier les groupes"
772
 
773
+ #: adrotate.php:651
774
  msgid "Role to see and add/edit groups."
775
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
776
 
777
+ #: adrotate.php:655
778
  msgid "Delete groups"
779
  msgstr "Effacer les groups"
780
 
781
+ #: adrotate.php:659
782
  msgid "Role to delete groups."
783
  msgstr "Rôle pour supprimer les groupes."
784
 
785
+ #: adrotate.php:680 adrotate.php:730 adrotate.php:785 adrotate.php:832
786
+ #: adrotate.php:876
787
  msgid "Update Options"
788
  msgstr "Mettre à jour les options"
789
 
790
+ #: adrotate.php:691
791
  msgid "Statistics"
792
  msgstr "Statistiques"
793
 
794
+ #: adrotate.php:694
795
  msgid "Enable stats"
796
  msgstr "Statistiques activés"
797
 
798
+ #: adrotate.php:696
799
  msgid "Track clicks and impressions."
800
  msgstr "Suivi des clicks et des impressions."
801
 
802
+ #: adrotate.php:696
803
  #, fuzzy
804
  msgid "Disabling this also disables click and impression limits on schedules."
805
  msgstr ""
806
  "La désactivation de cette fonction désactive aussi la limitation des clics "
807
  "et des impressions sujet du calendrier, et désactive les délais."
808
 
809
+ #: adrotate.php:700
810
  msgid "Impressions timer"
811
  msgstr "Minuterie de impressions"
812
 
813
+ #: adrotate.php:702 adrotate.php:709
814
  msgid "Seconds."
815
  msgstr "Secondes."
816
 
817
+ #: adrotate.php:703
818
+ msgid "Default: 60."
819
+ msgstr ""
 
820
 
821
+ #: adrotate.php:703
822
+ msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
823
+ msgstr ""
824
 
825
+ #: adrotate.php:707
826
  msgid "Clicks timer"
827
  msgstr "Interval de clicks"
828
 
829
+ #: adrotate.php:710
830
+ msgid "Default: 86400."
831
+ msgstr ""
832
 
833
+ #: adrotate.php:710
834
+ msgid ""
835
+ "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
836
  msgstr ""
 
837
 
838
+ #: adrotate.php:715
839
  msgid "Bot filter"
840
  msgstr "Filtre de robots"
841
 
842
+ #: adrotate.php:718
843
  msgid "User-Agent Filter"
844
  msgstr "Filtrage par User-Agent"
845
 
846
+ #: adrotate.php:721
847
  msgid ""
848
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents. To "
849
  "prevent impressions and clicks counted on them."
851
  "Filtrage par une liste de mots-clés séparés de virgules pour éviter les "
852
  "impressions et le clics fait par les robots/crawlers/user-agents."
853
 
854
+ #: adrotate.php:722
855
  msgid ""
856
  "Keep in mind that this might give false positives. The word 'google' also "
857
  "matches 'googlebot', but not vice-versa. So be careful!"
859
  "Gardez à l'esprit que cela peut donner des faux positifs. Le mot «Google» "
860
  "correspond également à «Googlebot», mais pas vice-versa. Soyez donc prudents!"
861
 
862
+ #: adrotate.php:722
863
  msgid "Keep your list up-to-date"
864
  msgstr "Gardez votre liste à jour"
865
 
866
+ #: adrotate.php:723
867
  msgid ""
868
  "Use only words with alphanumeric characters, [ - _ ] are allowed too. All "
869
  "other characters are stripped out."
871
  "Utilisez uniquement des mots avec des caractères alphanumériques, [ - _ ] "
872
  "sont aussi permis. Tous les autres caractères seront supprimés. "
873
 
874
+ #: adrotate.php:724
875
  msgid ""
876
  "Additionally to the list specified here, empty User-Agents are blocked as "
877
  "well."
879
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
880
  "bloqués."
881
 
882
+ #: adrotate.php:724
883
  msgid "Learn more about"
884
  msgstr "En savoir plus sur"
885
 
886
+ #: adrotate.php:724
887
  msgid "user-agents"
888
  msgstr "user-agents"
889
 
890
+ #: adrotate.php:733
891
  msgid "Miscellaneous"
892
  msgstr "Divers"
893
 
894
+ #: adrotate.php:736
895
  msgid "Widget alignment"
896
  msgstr "Alignement du Widget"
897
 
898
+ #: adrotate.php:737
899
  msgid ""
900
  "Check this box if your widgets do not align in your themes sidebar. (Does "
901
  "not always help!)"
903
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
904
  "votre thème. Cette fonction peux ne pas régler le soucis!"
905
 
906
+ #: adrotate.php:740
907
  msgid "Widget padding"
908
  msgstr "Marge interne du Widget"
909
 
910
+ #: adrotate.php:741
911
  msgid ""
912
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
913
  "not always work!)"
915
  "Activez cette option pour supprimer la marge (espace vide) autour des "
916
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
917
 
918
+ #: adrotate.php:746 adrotate.php:757
919
  msgid "NOTICE:"
920
  msgstr ""
921
 
922
+ #: adrotate.php:747
923
  msgid ""
924
  "You have enabled W3 Total Caching support but not defined the security hash. "
925
  "You need to add the following line to your wp-config.php near the bottom or "
931
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
932
  "fonction \"late init\" doit être activée dans W3 Total Cache."
933
 
934
+ #: adrotate.php:751
935
  msgid "W3 Total Caching"
936
  msgstr "W3 Total Caching"
937
 
938
+ #: adrotate.php:752
939
  msgid "Check this box if you use W3 Total Caching on your site."
940
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
941
 
942
+ #: adrotate.php:758
943
  msgid ""
944
  "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
945
  "this function will not work. WP Super Cache has discontinued support for "
949
  "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
950
  "support pour le contenu dynamique."
951
 
952
+ #: adrotate.php:762
953
  msgid "WP Super Cache"
954
  msgstr "WP Super Cache"
955
 
956
+ #: adrotate.php:763
957
  msgid "Check this box if you use WP Super Cache on your site."
958
  msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
959
 
960
+ #: adrotate.php:768
961
  msgid ""
962
  "It may take a while for the ad to start rotating. The caching plugin needs "
963
  "to refresh the cache. This can take up to a week if not done manually."
967
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
968
  "pas fait manuellement."
969
 
970
+ #: adrotate.php:768
971
  msgid ""
972
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
973
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
976
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
977
  "PHP dans le code d'exclusion vous-même."
978
 
979
+ #: adrotate.php:772
980
+ msgid "Javascript"
981
+ msgstr ""
982
 
983
+ #: adrotate.php:775
984
  msgid "Load jQuery"
985
  msgstr "Utilisez jQuery"
986
 
987
+ #: adrotate.php:776
988
  msgid ""
989
  "jQuery is required for all Javascript features below. Enable this if your "
990
  "theme does not load jQuery already."
992
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
993
  "le si votre thème ne charge pas jQuery directement."
994
 
995
+ #: adrotate.php:779
 
 
 
 
 
 
 
 
 
 
 
 
996
  msgid "Load in footer?"
997
  msgstr "Chargement dans le pied de page?"
998
 
999
+ #: adrotate.php:780
1000
  msgid ""
1001
  "Enable if you want to load the above libraries in the footer. Your theme "
1002
  "needs to call wp_footer() for this to work."
1004
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1005
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1006
 
1007
+ #: adrotate.php:788
1008
  msgid "Maintenance"
1009
  msgstr "Maintenance"
1010
 
1011
+ #: adrotate.php:789
1012
  msgid ""
1013
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1014
  "They only apply to your ads/groups and stats. Not to other settings or other "
1022
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1023
  "de données est lente ou ne réponds pas."
1024
 
1025
+ #: adrotate.php:804 adrotate.php:806
1026
  msgid "Optimize Database"
1027
  msgstr "Optimiser la base de données"
1028
 
1029
+ #: adrotate.php:806
1030
  msgid "You are about to optimize the AdRotate database."
1031
  msgstr "Vous allez optimiser la base de données de Adrotate."
1032
 
1033
+ #: adrotate.php:806
1034
  msgid "Did you make a backup of your database?"
1035
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1036
 
1037
+ #: adrotate.php:806
1038
  msgid ""
1039
  "This may take a moment and may cause your website to respond slow "
1040
  "temporarily!"
1042
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1043
  "temporaire!"
1044
 
1045
+ #: adrotate.php:806 adrotate.php:814 adrotate.php:822
1046
  #: dashboard/publisher/adrotate-groups-main.php:24
1047
  msgid "OK to continue, CANCEL to stop."
1048
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1049
 
1050
+ #: adrotate.php:807
1051
  msgid "Cleans up overhead data in the AdRotate tables."
1052
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1053
 
1054
+ #: adrotate.php:808
1055
  msgid ""
1056
  "Overhead data is accumulated garbage resulting from many changes you've "
1057
  "made. This can vary from nothing to hundreds of KiB of data."
1060
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1061
  "KB de données."
1062
 
1063
+ #: adrotate.php:812 adrotate.php:814
1064
  msgid "Clean-up Database"
1065
  msgstr "Nettoyer la base de données"
1066
 
1067
+ #: adrotate.php:814
1068
  msgid ""
1069
  "You are about to clean up your database. This may delete expired schedules "
1070
  "and older statistics."
1072
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1073
  "supprimer des calendriers périmés et des vieilles statistiques.."
1074
 
1075
+ #: adrotate.php:814
1076
  msgid "Are you sure you want to continue?"
1077
  msgstr "Etes-vous certains de vouloir continuer?"
1078
 
1079
+ #: adrotate.php:814 adrotate.php:822
1080
  msgid "This might take a while and may slow down your site during this action!"
1081
  msgstr ""
1082
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1083
  "interval!"
1084
 
1085
+ #: adrotate.php:815
1086
  msgid "Delete stats older than 356 days (Optional)."
1087
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1088
 
1089
+ #: adrotate.php:816
1090
  msgid ""
1091
  "AdRotate creates empty records when you start making ads or groups. In rare "
1092
  "occasions these records are faulty."
1094
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1095
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1096
 
1097
+ #: adrotate.php:816
1098
  msgid ""
1099
  "If you made an ad or group that does not save when you make it use this "
1100
  "button to delete those empty records."
1103
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1104
  "registres vides."
1105
 
1106
+ #: adrotate.php:816
1107
  msgid ""
1108
  "Additionally you can clean up old statistics. This will improve the speed of "
1109
  "your site."
1111
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1112
  "d'améliorer la vitesse de votre site."
1113
 
1114
+ #: adrotate.php:820
1115
  msgid "Re-evaluate Ads"
1116
  msgstr "Re-évaluer les publicités"
1117
 
1118
+ #: adrotate.php:822
1119
  msgid "Re-evaluate all ads"
1120
  msgstr "Re-évaluer toutes les publicités"
1121
 
1122
+ #: adrotate.php:822
1123
  msgid "You are about to check all ads for errors."
1124
  msgstr "Vous allez véifier l'état de toutes les publicités."
1125
 
1126
+ #: adrotate.php:823
1127
  msgid ""
1128
  "This will apply all evaluation rules to all ads to see if any error slipped "
1129
  "in. Normally you should not need this feature."
1132
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1133
  "fonctionalité."
1134
 
1135
+ #: adrotate.php:827
1136
  msgid ""
1137
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1138
  "becomes unusable in any way or by any means in whichever way I will not take "
1149
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1150
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1151
 
1152
+ #: adrotate.php:835
1153
  msgid "Troubleshooting"
1154
  msgstr "Diagnostic de dépannage"
1155
 
1156
+ #: adrotate.php:838
1157
  msgid "Current version:"
1158
  msgstr "Version actuelle :"
1159
 
1160
+ #: adrotate.php:839
1161
  msgid "Previous version:"
1162
  msgstr "Version antérieure :"
1163
 
1164
+ #: adrotate.php:842
1165
  msgid "Current database version:"
1166
  msgstr "Version actuelle de la base de données :"
1167
 
1168
+ #: adrotate.php:843
1169
  msgid "Previous database version:"
1170
  msgstr "Version antérieure de la base de données :"
1171
 
1172
+ #: adrotate.php:846
1173
  msgid "Ad evaluation next run:"
1174
  msgstr ""
1175
 
1176
+ #: adrotate.php:847 adrotate.php:851
1177
  msgid "Not scheduled!"
1178
  msgstr "Pas planifié!"
1179
 
1180
+ #: adrotate.php:850
1181
+ msgid "Clean Trackerdata next run:"
1182
+ msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
1183
+
1184
+ #: adrotate.php:854
1185
  msgid "Current status of adverts"
1186
  msgstr "Etat actuel des publicités"
1187
 
1188
+ #: adrotate.php:855
1189
  msgid "Normal"
1190
  msgstr "Normal"
1191
 
1192
+ #: adrotate.php:855
1193
  msgid "Error"
1194
  msgstr "Erreur"
1195
 
1196
+ #: adrotate.php:855
1197
  msgid "Expired"
1198
  msgstr "Expiré"
1199
 
1200
+ #: adrotate.php:855
1201
  msgid "Expires Soon"
1202
  msgstr "Expire bientôt"
1203
 
1204
+ #: adrotate.php:855
1205
  msgid "Unknown Status"
1206
  msgstr "Statut Inconnu"
1207
 
1208
+ #: adrotate.php:858
1209
  msgid ""
1210
  "NOTE: The below options are not meant for normal use and are only there for "
1211
  "developers to review saved settings or how ads are selected. These can be "
1218
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1219
  "une utilisation normale, ils ne doivent pas être activés!"
1220
 
1221
+ #: adrotate.php:862
1222
  msgid "Developer Debug"
1223
  msgstr "Debuggage de développeur"
1224
 
1225
+ #: adrotate.php:864
1226
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1227
  msgstr ""
1228
  "Dépannage des publicités. Si cette option est activée, les données seront "
1229
  "placées sur le site."
1230
 
1231
+ #: adrotate.php:865
1232
  msgid "Show all settings, dashboard routines and related values."
1233
  msgstr ""
1234
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1235
  "connexes."
1236
 
1237
+ #: adrotate.php:866
1238
  msgid "Show array of all userroles and capabilities."
1239
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1240
 
1241
+ #: adrotate.php:867
1242
  msgid "Review saved advertisers! Visible to advertisers."
1243
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1244
 
1245
+ #: adrotate.php:868
1246
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1247
  msgstr ""
1248
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1249
  "Visible uniquement aux annonceurs."
1250
 
1251
+ #: adrotate.php:869
1252
  msgid ""
1253
  "Disable timers for clicks and impressions and enable a alert window for "
1254
  "clicktracking."
1256
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1257
  "fenêtre d'alerte pour le suivi des clicks."
1258
 
1259
+ #: adrotate.php:870
1260
  msgid "Temporarily disable encryption on the redirect url."
1261
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1262
 
1297
  msgstr "Les derniers jours"
1298
 
1299
  #: dashboard/adrotate-info.php:132
1300
+ msgid "Support AdRotate"
1301
+ msgstr "Soutenez AdRotate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1302
 
1303
+ #: dashboard/adrotate-info.php:139
1304
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1305
+ msgstr ""
1306
 
1307
+ #: dashboard/adrotate-info.php:139
1308
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1309
+ msgstr ""
1310
 
1311
+ #: dashboard/adrotate-info.php:148
1312
+ msgid "AdRotate News and Developer Blog"
1313
+ msgstr "Actus AdRotate et blog du développeur"
1314
 
1315
  #: dashboard/adrotate-info.php:168
1316
  msgid "Get more features with AdRotate Pro"
1327
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1328
  "la version gratuite."
1329
 
1330
+ #: dashboard/adrotate-info.php:171
1331
+ msgid "Want to know more about"
1332
+ msgstr ""
1333
 
1334
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1335
+ msgid "Buy AdRotate Professional"
1336
+ msgstr "Achetez AdRotate Professionel"
1337
+
1338
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1339
+ msgid "Singe License"
1340
+ msgstr "Licence Unique"
1341
+
1342
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1343
+ msgid "For one WordPress installation."
1344
+ msgstr "Pour une installation Wordpress."
1345
+
1346
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1347
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1348
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1349
+ #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1350
+ #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1351
+ msgid "Buy now"
1352
+ msgstr ""
1353
+
1354
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1355
+ msgid "Duo License"
1356
+ msgstr "Licence Duo"
1357
+
1358
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1359
+ msgid "For two WordPress installations."
1360
+ msgstr "Pour deux installations Wordpress."
1361
+
1362
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1363
+ msgid "Multi License"
1364
+ msgstr "Licence Multiple"
1365
+
1366
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1367
+ msgid " For up to five WordPress installations."
1368
+ msgstr "Pour un max de cinq installation Wordpress."
1369
+
1370
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1371
+ msgid "Developer License"
1372
+ msgstr "Licence de Developpeur"
1373
+
1374
+ #: dashboard/adrotate-info.php:182
1375
+ msgid "Unlimited WordPress installations and/or networks."
1376
+ msgstr ""
1377
+
1378
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1379
+ msgid "Network License"
1380
+ msgstr "Licence Réseau"
1381
+
1382
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1383
+ msgid "Set up your own advertising network on a WordPress Multisite."
1384
+ msgstr ""
1385
+ "Mettez en place votre propre réseau de publicité sur une installation "
1386
+ "Wordpress Multisite."
1387
 
1388
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1389
+ msgid "Compare licenses"
1390
+ msgstr "Comparer les licences"
1391
+
1392
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1393
+ msgid "Not sure which license is for you? Compare them..."
1394
+ msgstr ""
1395
+ "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1396
+
1397
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1398
+ msgid "All Licenses"
1399
+ msgstr "Toutes les licences"
1400
 
1401
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1402
  msgid "AdRotate is brought to you by"
1403
  msgstr "AdRotate est offert par"
1404
 
1405
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1406
  msgid ""
1407
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1408
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1413
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1414
  "mon site pour tous les détails!"
1415
 
1416
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1417
  msgid "Find out more"
1418
  msgstr "En savoir plus"
1419
 
1420
+ #: dashboard/adrotate-info.php:194
1421
  msgid "Follow"
1422
  msgstr "Suivre"
1423
 
1497
  "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1498
  "d'expiration."
1499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1500
  #: dashboard/adrotate-pro.php:83
 
 
 
 
 
 
 
 
 
 
1501
  msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1502
  msgstr ""
1503
  "Activez AdRotate dans un nombre illimité d'installations Wordpress et/ou "
1504
  "réseaux."
1505
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1506
  #: dashboard/publisher/adrotate-ads-edit.php:46
1507
  msgid "The AdCode cannot be empty!"
1508
  msgstr "Le code de la publicité ne peut être vide!"
1529
  "publicité!"
1530
 
1531
  #: dashboard/publisher/adrotate-ads-edit.php:58
1532
+ msgid "Clicktracking is enabled but no valid link was found in the adcode!"
 
1533
  msgstr ""
 
 
1534
 
1535
+ #: dashboard/publisher/adrotate-ads-edit.php:63
 
 
 
 
 
 
 
 
1536
  msgid ""
1537
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1538
  "the ad!"
1540
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1541
  "essayez d'enregistrer votre publicité à nouveau!"
1542
 
1543
+ #: dashboard/publisher/adrotate-ads-edit.php:66
1544
  msgid "This ad is expired and currently not shown on your website!"
1545
  msgstr ""
1546
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1547
 
1548
+ #: dashboard/publisher/adrotate-ads-edit.php:69
1549
  msgid "The ad will expire in less than 2 days!"
1550
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1551
 
1552
+ #: dashboard/publisher/adrotate-ads-edit.php:72
1553
  msgid "This ad will expire in less than 7 days!"
1554
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1555
 
1556
+ #: dashboard/publisher/adrotate-ads-edit.php:75
1557
  msgid "This ad has been disabled and does not rotate on your site!"
1558
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1559
 
1560
+ #: dashboard/publisher/adrotate-ads-edit.php:101
1561
  msgid "New Advert"
1562
  msgstr "Nouvelle pub"
1563
 
1564
+ #: dashboard/publisher/adrotate-ads-edit.php:103
1565
  msgid "Edit Advert"
1566
  msgstr "Modifier la pub"
1567
 
1568
+ #: dashboard/publisher/adrotate-ads-edit.php:106
1569
  #: dashboard/publisher/adrotate-groups-edit.php:48
1570
  msgid "These are required."
1571
  msgstr "Ces données sont requises."
1572
 
1573
+ #: dashboard/publisher/adrotate-ads-edit.php:110
1574
  msgid "Title:"
1575
  msgstr "Titre :"
1576
 
1577
+ #: dashboard/publisher/adrotate-ads-edit.php:116
1578
  msgid "AdCode:"
1579
  msgstr "Code :"
1580
 
1581
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1582
  msgid ""
1583
  "Copy your ad tag/code in this field if you have received ready to go adverts."
1584
  msgstr ""
1585
 
1586
+ #: dashboard/publisher/adrotate-ads-edit.php:121
1587
  msgid "Advertising and affiliate networks often use these."
1588
  msgstr ""
1589
 
1590
+ #: dashboard/publisher/adrotate-ads-edit.php:122
1591
  msgid "Basic Examples:"
1592
  msgstr "Exemples de base :"
1593
 
1594
+ #: dashboard/publisher/adrotate-ads-edit.php:127
1595
+ #: dashboard/publisher/adrotate-groups-edit.php:335
1596
  msgid "Options:"
1597
  msgstr "Options :"
1598
 
1599
+ #: dashboard/publisher/adrotate-ads-edit.php:129
1600
  msgid ""
1601
  "Place the cursor where you want to add a tag and click to add it to your "
1602
  "AdCode."
1604
  "Placez votre curseur à l'emplacement où vous voulez ajouter une balise et "
1605
  "cliquer pour l'ajouter à votre AdCode."
1606
 
1607
+ #: dashboard/publisher/adrotate-ads-edit.php:133
1608
  msgid "Activate:"
1609
  msgstr "Activer"
1610
 
1611
+ #: dashboard/publisher/adrotate-ads-edit.php:137
1612
  msgid "Yes, this ad will be used"
1613
  msgstr "Oui, cette publicité sera utilisée"
1614
 
1615
+ #: dashboard/publisher/adrotate-ads-edit.php:138
1616
  msgid "No, do not show this ad anywhere"
1617
  msgstr "Non, cette publicité ne sera pas utilisée"
1618
 
1619
+ #: dashboard/publisher/adrotate-ads-edit.php:145
1620
  #: dashboard/publisher/adrotate-ads-main.php:108
1621
  #: dashboard/publisher/adrotate-groups-edit.php:76
1622
  #: dashboard/publisher/adrotate-groups-main.php:87
1623
  msgid "Get more features with AdRotate Pro."
1624
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1625
 
1626
+ #: dashboard/publisher/adrotate-ads-edit.php:148
1627
+ #: dashboard/publisher/adrotate-ads-edit.php:181
1628
+ #: dashboard/publisher/adrotate-ads-edit.php:317
1629
+ #: dashboard/publisher/adrotate-ads-edit.php:442
1630
+ #: dashboard/publisher/adrotate-ads-edit.php:485
1631
  msgid "Save Advert"
1632
  msgstr "Sauvegarder la pub"
1633
 
1634
+ #: dashboard/publisher/adrotate-ads-edit.php:149
1635
+ #: dashboard/publisher/adrotate-ads-edit.php:182
1636
+ #: dashboard/publisher/adrotate-ads-edit.php:318
1637
+ #: dashboard/publisher/adrotate-ads-edit.php:443
1638
+ #: dashboard/publisher/adrotate-ads-edit.php:486
1639
+ #: dashboard/publisher/adrotate-groups-edit.php:182
1640
+ #: dashboard/publisher/adrotate-groups-edit.php:323
1641
+ #: dashboard/publisher/adrotate-groups-edit.php:405
1642
  msgid "Cancel"
1643
  msgstr "Annuller"
1644
 
1645
+ #: dashboard/publisher/adrotate-ads-edit.php:153
1646
  msgid "Preview"
1647
  msgstr "En avant-première"
1648
 
1649
+ #: dashboard/publisher/adrotate-ads-edit.php:159
1650
  msgid ""
1651
  "Note: While this preview is an accurate one, it might look different then it "
1652
  "does on the website."
1654
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1655
  "différente sur le site."
1656
 
1657
+ #: dashboard/publisher/adrotate-ads-edit.php:160
1658
  msgid ""
1659
  "This is because of CSS differences. Your themes CSS file is not active here!"
1660
  msgstr ""
1661
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1662
  "pas actif ici!"
1663
 
1664
+ #: dashboard/publisher/adrotate-ads-edit.php:167
1665
+ #: dashboard/publisher/adrotate-ads-edit.php:303
1666
+ #: dashboard/publisher/adrotate-groups-edit.php:167
1667
+ #: dashboard/publisher/adrotate-groups-edit.php:308
1668
  msgid "Usage"
1669
  msgstr "Usage"
1670
 
1671
+ #: dashboard/publisher/adrotate-ads-edit.php:168
1672
+ #: dashboard/publisher/adrotate-ads-edit.php:304
1673
+ #: dashboard/publisher/adrotate-groups-edit.php:168
1674
+ #: dashboard/publisher/adrotate-groups-edit.php:309
1675
  msgid ""
1676
  "Copy the shortcode in a post or page. The PHP code goes in a theme file "
1677
  "where you want the advert to show up."
1679
  "Copiez le shortcode dans un article ou une page. Le code PHP doit être dans "
1680
  "un fichier du thème si vus voulez que cette publicité soit affichée."
1681
 
1682
+ #: dashboard/publisher/adrotate-ads-edit.php:172
1683
+ #: dashboard/publisher/adrotate-ads-edit.php:308
1684
+ #: dashboard/publisher/adrotate-groups-edit.php:172
1685
+ #: dashboard/publisher/adrotate-groups-edit.php:313
1686
  msgid "In a post or page:"
1687
  msgstr "Dans un article ou une page :"
1688
 
1689
+ #: dashboard/publisher/adrotate-ads-edit.php:174
1690
+ #: dashboard/publisher/adrotate-ads-edit.php:310
1691
+ #: dashboard/publisher/adrotate-groups-edit.php:174
1692
+ #: dashboard/publisher/adrotate-groups-edit.php:315
1693
  msgid "Directly in a theme:"
1694
  msgstr "Directement dans un thème :"
1695
 
1696
+ #: dashboard/publisher/adrotate-ads-edit.php:185
1697
+ #: dashboard/publisher/adrotate-groups-edit.php:185
 
 
 
 
 
1698
  msgid "Advanced"
1699
  msgstr "Avancé"
1700
 
1701
+ #: dashboard/publisher/adrotate-ads-edit.php:186
1702
  msgid "Everything below is optional."
1703
  msgstr "Tous les paramètres ci-dessous sont optionels."
1704
 
1705
+ #: dashboard/publisher/adrotate-ads-edit.php:191
1706
  msgid "Clicktracking:"
1707
  msgstr "Clicktracking :"
1708
 
1709
+ #: dashboard/publisher/adrotate-ads-edit.php:193
1710
  msgid "Enable click tracking for this advert."
1711
  msgstr "Activer le suivi des clicks pour cette publicité."
1712
 
1713
+ #: dashboard/publisher/adrotate-ads-edit.php:194
1714
  msgid ""
1715
  "Note: Clicktracking does generally not work for Javascript adverts such as "
1716
  "those provided by Google AdSense."
1718
  "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
1719
  "publicités en Javascript telles que celles fournies par Google AdSense."
1720
 
1721
+ #: dashboard/publisher/adrotate-ads-edit.php:195
1722
+ msgid "Place the target URL in your adcode - Similar to code example 1."
 
 
 
 
 
 
 
1723
  msgstr ""
 
 
1724
 
1725
+ #: dashboard/publisher/adrotate-ads-edit.php:200
1726
  msgid "Target URL:"
1727
  msgstr "URL Cible :"
1728
 
1729
+ #: dashboard/publisher/adrotate-ads-edit.php:203
1730
+ msgid ""
1731
+ "This field is no longer required. You can place the URL directly in the "
1732
+ "adcode (above) instead of %link%."
1733
+ msgstr ""
1734
 
1735
+ #: dashboard/publisher/adrotate-ads-edit.php:208
1736
  msgid "Responsive:"
1737
  msgstr "Responsive :"
1738
 
1739
+ #: dashboard/publisher/adrotate-ads-edit.php:210
1740
  msgid "Enable responsive support for this advert."
1741
  msgstr "Activer le support réactif pour cette publicité."
1742
 
1743
+ #: dashboard/publisher/adrotate-ads-edit.php:211
1744
  msgid ""
1745
  "Upload your images to the banner folder and make sure the filename is in the "
1746
  "following format; \"imagename.full.ext\". A full set of sized images is "
1751
  "complet d'images de tailles différentes est recommendé si vous avez un site "
1752
  "fluide."
1753
 
1754
+ #: dashboard/publisher/adrotate-ads-edit.php:213
1755
  msgid ""
1756
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
1757
  "for different viewports. Requires jQuery."
1759
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
1760
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
1761
 
1762
+ #: dashboard/publisher/adrotate-ads-edit.php:217
1763
  msgid "Banner image:"
1764
  msgstr "Image :"
1765
 
1766
+ #: dashboard/publisher/adrotate-ads-edit.php:220
1767
  msgid "Media:"
1768
  msgstr "Médias :"
1769
 
1770
+ #: dashboard/publisher/adrotate-ads-edit.php:220
1771
  msgid "Select Banner"
1772
  msgstr "Choisir l'image"
1773
 
1774
+ #: dashboard/publisher/adrotate-ads-edit.php:222
1775
  msgid "- OR -"
1776
  msgstr "- OU -"
1777
 
1778
+ #: dashboard/publisher/adrotate-ads-edit.php:224
1779
  msgid "Banner folder:"
1780
  msgstr "Dossier de bannières :"
1781
 
1782
+ #: dashboard/publisher/adrotate-ads-edit.php:225
1783
  msgid "No image selected"
1784
  msgstr "Aucune image sélectionnée"
1785
 
1786
+ #: dashboard/publisher/adrotate-ads-edit.php:229
1787
  msgid "Use %image% in the code. Accepted files are:"
1788
  msgstr "Utilisez %image% dans le code. Les fichiers acceptés sont :"
1789
 
1790
+ #: dashboard/publisher/adrotate-ads-edit.php:229
1791
  msgid ""
1792
  "Use either the text field or the dropdown. If the textfield has content that "
1793
  "field has priority."
1795
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1796
  "valeur, ce champ a la priorité."
1797
 
1798
+ #: dashboard/publisher/adrotate-ads-edit.php:233
1799
  #, fuzzy
1800
  msgid "Weight:"
1801
  msgstr "Importance"
1802
 
1803
+ #: dashboard/publisher/adrotate-ads-edit.php:233
1804
  #, fuzzy
1805
  msgid "AdRotate Pro only"
1806
  msgstr "AdRotate Pro"
1807
 
1808
+ #: dashboard/publisher/adrotate-ads-edit.php:236
1809
  msgid "Barely visible"
1810
  msgstr ""
1811
 
1812
+ #: dashboard/publisher/adrotate-ads-edit.php:237
1813
  msgid "Less than average"
1814
  msgstr ""
1815
 
1816
+ #: dashboard/publisher/adrotate-ads-edit.php:238
1817
  msgid "Normal coverage"
1818
  msgstr ""
1819
 
1820
+ #: dashboard/publisher/adrotate-ads-edit.php:239
1821
  msgid "More than average"
1822
  msgstr ""
1823
 
1824
+ #: dashboard/publisher/adrotate-ads-edit.php:240
1825
  msgid "Best visibility"
1826
  msgstr ""
1827
 
1828
+ #: dashboard/publisher/adrotate-ads-edit.php:245
1829
+ #: dashboard/publisher/adrotate-groups-edit.php:212
1830
  msgid "Sortorder:"
1831
  msgstr "Ordre de tri :"
1832
 
1833
+ #: dashboard/publisher/adrotate-ads-edit.php:247
1834
+ #: dashboard/publisher/adrotate-groups-edit.php:214
1835
  msgid "For administrative purposes set a sortorder."
1836
  msgstr "Pour des raisons administratives définir un ordre de tri."
1837
 
1838
+ #: dashboard/publisher/adrotate-ads-edit.php:247
1839
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1840
  msgstr ""
1841
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1842
  "de l'ID de la publicité."
1843
 
1844
+ #: dashboard/publisher/adrotate-ads-edit.php:252
1845
  msgid ""
1846
  "With AdRotate Pro you can also set a weight to give adverts more or less "
1847
  "attention."
1849
  "Avec AdRotate Pro, vous pouvez aussi mettre un poids pour donner à vos "
1850
  "publicités plus ou moins d'importance."
1851
 
1852
+ #: dashboard/publisher/adrotate-ads-edit.php:252
1853
+ #: dashboard/publisher/adrotate-ads-edit.php:301
1854
+ #: dashboard/publisher/adrotate-ads-edit.php:399
1855
+ #: dashboard/publisher/adrotate-groups-edit.php:218
1856
  msgid "Upgrade today"
1857
  msgstr "Mettre à jour aujourd'hui"
1858
 
1859
+ #: dashboard/publisher/adrotate-ads-edit.php:254
1860
  #, fuzzy
1861
  msgid "Geo Location in AdRotate Pro"
1862
  msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
1863
 
1864
+ #: dashboard/publisher/adrotate-ads-edit.php:255
1865
  msgid ""
1866
  "This works if you assign the advert to a group and enable that group to use "
1867
  "Geo Targeting."
1868
  msgstr ""
1869
 
1870
+ #: dashboard/publisher/adrotate-ads-edit.php:259
1871
  msgid "Cities/States:"
1872
  msgstr ""
1873
 
1874
+ #: dashboard/publisher/adrotate-ads-edit.php:262
1875
+ #: dashboard/publisher/adrotate-ads-edit.php:295
1876
  #, fuzzy
1877
  msgid "Usage:"
1878
  msgstr "Usage"
1879
 
1880
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1881
  msgid "A comma separated list of cities and/or states"
1882
  msgstr ""
1883
 
1884
+ #: dashboard/publisher/adrotate-ads-edit.php:263
1885
  msgid ""
1886
  "AdRotate does not check the validity of names so make sure you spell them "
1887
  "correctly!"
1888
  msgstr ""
1889
 
1890
+ #: dashboard/publisher/adrotate-ads-edit.php:267
1891
  msgid "Countries:"
1892
  msgstr ""
1893
 
1894
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1895
  #, fuzzy
1896
  msgid "Select the countries you want the adverts to show in."
1897
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1898
 
1899
+ #: dashboard/publisher/adrotate-ads-edit.php:296
1900
  msgid "Cities take priority and will be filtered first."
1901
  msgstr ""
1902
 
1903
+ #: dashboard/publisher/adrotate-ads-edit.php:301
1904
  msgid "Target your audience with Geo Location in AdRotate Pro"
1905
  msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
1906
 
1907
+ #: dashboard/publisher/adrotate-ads-edit.php:321
1908
  msgid "Schedule"
1909
  msgstr "Planning"
1910
 
1911
+ #: dashboard/publisher/adrotate-ads-edit.php:322
1912
  msgid "From when to when is the advert visible?"
1913
  msgstr "Quel est l'interval de dates pendant lequel la publicité est visible?"
1914
 
1915
+ #: dashboard/publisher/adrotate-ads-edit.php:326
1916
  msgid "Start date (day/month/year):"
1917
  msgstr "Date de début (jour/mois/année) :"
1918
 
1919
+ #: dashboard/publisher/adrotate-ads-edit.php:347
1920
  msgid "End date (day/month/year):"
1921
  msgstr "Date de fin (jour/mois/année) :"
1922
 
1923
+ #: dashboard/publisher/adrotate-ads-edit.php:370
1924
  msgid "Start time (hh:mm):"
1925
  msgstr "Début (hh:mm) :"
1926
 
1927
+ #: dashboard/publisher/adrotate-ads-edit.php:377
1928
  msgid "End time (hh:mm):"
1929
  msgstr "Fin (hh:mm) :"
1930
 
1931
+ #: dashboard/publisher/adrotate-ads-edit.php:387
1932
  msgid "Maximum Clicks:"
1933
  msgstr "Nombre de clicks max :"
1934
 
1935
+ #: dashboard/publisher/adrotate-ads-edit.php:388
1936
+ #: dashboard/publisher/adrotate-ads-edit.php:390
1937
  msgid "Leave empty or 0 to skip this."
1938
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1939
 
1940
+ #: dashboard/publisher/adrotate-ads-edit.php:389
1941
  msgid "Maximum Impressions:"
1942
  msgstr "Nombre max de vues :"
1943
 
1944
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1945
  msgid ""
1946
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1947
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1952
  "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
1953
  "6:00). "
1954
 
1955
+ #: dashboard/publisher/adrotate-ads-edit.php:395
1956
  msgid ""
1957
  "The maximum clicks and impressions are measured over the set schedule only. "
1958
  "Every schedule can have it's own limit!"
1961
  "question uniquement. Tous les calendriers peuvent avoir leurs propres "
1962
  "limites!"
1963
 
1964
+ #: dashboard/publisher/adrotate-ads-edit.php:399
1965
  msgid "Create multiple schedules for each advert with AdRotate Pro."
1966
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1967
 
1968
+ #: dashboard/publisher/adrotate-ads-edit.php:401
1969
  #, fuzzy
1970
  msgid "Choose Multiple Schedules in AdRotate Pro"
1971
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
1972
 
1973
+ #: dashboard/publisher/adrotate-ads-edit.php:402
1974
  msgid "You can add, edit or delete schedules from the"
1975
  msgstr ""
1976
 
1977
+ #: dashboard/publisher/adrotate-ads-edit.php:402
1978
  msgid "dashboard. Save your advert first!"
1979
  msgstr ""
1980
 
1981
+ #: dashboard/publisher/adrotate-ads-edit.php:409
1982
  msgid "From / Until"
1983
  msgstr ""
1984
 
1985
+ #: dashboard/publisher/adrotate-ads-edit.php:411
1986
  #: dashboard/publisher/adrotate-ads-main-disabled.php:39
1987
  #: dashboard/publisher/adrotate-ads-main.php:45
1988
  #: dashboard/publisher/adrotate-ads-report.php:35
1989
+ #: dashboard/publisher/adrotate-groups-edit.php:356
1990
  #: dashboard/publisher/adrotate-groups-main.php:37
1991
  #: dashboard/publisher/adrotate-groups-report.php:41
 
 
1992
  msgid "Clicks"
1993
  msgstr "Clicks"
1994
 
1995
+ #: dashboard/publisher/adrotate-ads-edit.php:412
1996
  #: dashboard/publisher/adrotate-ads-main-disabled.php:38
1997
  #: dashboard/publisher/adrotate-ads-report.php:34
1998
+ #: dashboard/publisher/adrotate-groups-edit.php:355
1999
  #: dashboard/publisher/adrotate-groups-main.php:35
2000
  #: dashboard/publisher/adrotate-groups-report.php:40
2001
  msgid "Impressions"
2002
  msgstr "Vues"
2003
 
2004
+ #: dashboard/publisher/adrotate-ads-edit.php:421
2005
  #, fuzzy
2006
  msgid "impressions per day"
2007
  msgstr "Vues aujourd'hui"
2008
 
2009
+ #: dashboard/publisher/adrotate-ads-edit.php:437
2010
  msgid "In use by this advert."
2011
  msgstr ""
2012
 
2013
+ #: dashboard/publisher/adrotate-ads-edit.php:448
2014
  msgid "Select Groups"
2015
  msgstr "Choisir groupes"
2016
 
2017
+ #: dashboard/publisher/adrotate-ads-edit.php:449
2018
  msgid "Optionally select the group(s) this ad belongs to."
2019
  msgstr "Choisir le groupe auquel cette publicité va être rattachée (optionel)"
2020
 
2021
+ #: dashboard/publisher/adrotate-ads-edit.php:454
2022
  msgid "ID - Name"
2023
  msgstr "ID - Nom"
2024
 
2025
+ #: dashboard/publisher/adrotate-ads-edit.php:455
2026
  msgid "Ads in group"
2027
  msgstr "Pubs dans le groupe"
2028
 
2029
+ #: dashboard/publisher/adrotate-ads-edit.php:464
2030
  #: dashboard/publisher/adrotate-groups-main.php:58
2031
  msgid "Default"
2032
  msgstr "Par défaut"
2033
 
2034
+ #: dashboard/publisher/adrotate-ads-edit.php:465
2035
  #: dashboard/publisher/adrotate-groups-main.php:59
2036
  msgid "Dynamic"
2037
  msgstr "Dynamique"
2038
 
2039
+ #: dashboard/publisher/adrotate-ads-edit.php:465
2040
  #: dashboard/publisher/adrotate-groups-main.php:59
2041
  msgid "second rotation"
2042
  msgstr "deuxième rotation"
2043
 
2044
+ #: dashboard/publisher/adrotate-ads-edit.php:466
2045
  #: dashboard/publisher/adrotate-groups-main.php:60
2046
  msgid "Block"
2047
  msgstr "Bloc"
2048
 
2049
+ #: dashboard/publisher/adrotate-ads-edit.php:466
2050
  #: dashboard/publisher/adrotate-groups-main.php:60
2051
  msgid "grid"
2052
  msgstr "grille"
2053
 
2054
+ #: dashboard/publisher/adrotate-ads-edit.php:467
2055
+ #: dashboard/publisher/adrotate-groups-edit.php:220
2056
  #: dashboard/publisher/adrotate-groups-main.php:61
2057
  msgid "Post Injection"
2058
  msgstr "Injection dans l'article"
2059
 
2060
+ #: dashboard/publisher/adrotate-ads-edit.php:468
2061
  #: dashboard/publisher/adrotate-groups-main.php:62
2062
  msgid "Geolocation"
2063
  msgstr "Géolocalisation"
2064
 
2065
+ #: dashboard/publisher/adrotate-ads-edit.php:474
2066
  #: dashboard/publisher/adrotate-groups-edit.php:62
2067
  #: dashboard/publisher/adrotate-groups-main.php:69
2068
  msgid "Mode"
2085
  #: dashboard/publisher/adrotate-ads-main-disabled.php:36
2086
  #: dashboard/publisher/adrotate-ads-main-error.php:40
2087
  #: dashboard/publisher/adrotate-ads-main.php:40
 
2088
  msgid "Start / End"
2089
  msgstr "Début / Fin"
2090
 
2091
  #: dashboard/publisher/adrotate-ads-main-disabled.php:37
2092
  #: dashboard/publisher/adrotate-ads-main-error.php:41
2093
  #: dashboard/publisher/adrotate-ads-main.php:41
 
 
2094
  msgid "Title"
2095
  msgstr "Titre"
2096
 
2098
  #: dashboard/publisher/adrotate-ads-main.php:47
2099
  #: dashboard/publisher/adrotate-ads-report.php:38
2100
  #: dashboard/publisher/adrotate-groups-report.php:44
 
 
2101
  msgid "CTR"
2102
  msgstr "CTR"
2103
 
2155
  msgstr "Pour 7 jours"
2156
 
2157
  #: dashboard/publisher/adrotate-ads-main-error.php:73
2158
+ #: dashboard/publisher/adrotate-groups-edit.php:398
2159
  msgid "Configuration errors."
2160
  msgstr "Erreurs de configuration."
2161
 
2168
  msgstr ""
2169
 
2170
  #: dashboard/publisher/adrotate-ads-main.php:42
2171
+ #: dashboard/publisher/adrotate-groups-edit.php:357
 
 
2172
  msgid "Weight"
2173
  msgstr "Importance"
2174
 
2175
  #: dashboard/publisher/adrotate-ads-main.php:43
 
 
2176
  msgid "Shown"
2177
  msgstr "Montré"
2178
 
2180
  #: dashboard/publisher/adrotate-ads-main.php:46
2181
  #: dashboard/publisher/adrotate-groups-main.php:36
2182
  #: dashboard/publisher/adrotate-groups-main.php:38
 
 
 
 
2183
  msgid "Today"
2184
  msgstr "Aujourd'hui"
2185
 
2257
  "activer cette options dans les réglages de AdRotate."
2258
 
2259
  #: dashboard/publisher/adrotate-groups-edit.php:78
2260
+ #: dashboard/publisher/adrotate-groups-edit.php:135
2261
  msgid "Dynamic and Block Mode"
2262
  msgstr "Mode Dynamique et en Bloc"
2263
 
2269
  msgid "Block shape and border"
2270
  msgstr "Dimensions et bordure du bloc"
2271
 
2272
+ #: dashboard/publisher/adrotate-groups-edit.php:110
2273
  msgid "rows"
2274
  msgstr "lignes"
2275
 
2276
+ #: dashboard/publisher/adrotate-groups-edit.php:123
2277
  msgid "columns"
2278
  msgstr "colonnes"
2279
 
2280
+ #: dashboard/publisher/adrotate-groups-edit.php:126
2281
  msgid "Block Mode"
2282
  msgstr "Mode en Bloc"
2283
 
2284
+ #: dashboard/publisher/adrotate-groups-edit.php:126
2285
  msgid ""
2286
  "Make a grid for your ads. Selecting 3 and 2 makes a grid with 2 columns "
2287
  "showing a maximum of 6 ads. Default: 2x2."
2289
  "Créer une grille pour vos publicités. Choisissez 3 et 2 créera une grille "
2290
  "avec 2 colonnes montrant un maximum de 6 publicités. Valeur par défaut : 2x2."
2291
 
2292
+ #: dashboard/publisher/adrotate-groups-edit.php:130
2293
  msgid "Advert Width and Height"
2294
  msgstr "Dimensions des publicités"
2295
 
2296
+ #: dashboard/publisher/adrotate-groups-edit.php:132
2297
  msgid "pixel(s) wide"
2298
  msgstr "largeur en pixels"
2299
 
2300
+ #: dashboard/publisher/adrotate-groups-edit.php:132
2301
  msgid "pixel(s) high."
2302
  msgstr "hauteur en pixels"
2303
 
2304
+ #: dashboard/publisher/adrotate-groups-edit.php:135
2305
  msgid ""
2306
+ "Define the maximum size of the ads in pixels. Size can be 'auto' (Not "
2307
+ "recommended). Default: 125/125."
2308
  msgstr ""
 
 
 
2309
 
2310
+ #: dashboard/publisher/adrotate-groups-edit.php:139
2311
  msgid "Automated refresh"
2312
  msgstr "Rafraîchissement automatique"
2313
 
2314
+ #: dashboard/publisher/adrotate-groups-edit.php:158
2315
  msgid "seconds."
2316
  msgstr "secondes."
2317
 
2318
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2319
  msgid "Dynamic Mode"
2320
  msgstr "Mode dynamique"
2321
 
2322
+ #: dashboard/publisher/adrotate-groups-edit.php:161
2323
  msgid ""
2324
  "Load a new advert in this interval without reloading the page. Default: 6."
2325
  msgstr ""
2326
  "Chargez une nouvelle publicité sans recharger le page après cette "
2327
  "intervalle. La valeur par défaut est : 6."
2328
 
2329
+ #: dashboard/publisher/adrotate-groups-edit.php:181
2330
+ #: dashboard/publisher/adrotate-groups-edit.php:322
2331
+ #: dashboard/publisher/adrotate-groups-edit.php:404
2332
  msgid "Save Group"
2333
  msgstr "Sauvegarder groupe"
2334
 
2335
+ #: dashboard/publisher/adrotate-groups-edit.php:189
2336
  msgid "Advert Margin"
2337
  msgstr "Marges autour de la pub"
2338
 
2339
+ #: dashboard/publisher/adrotate-groups-edit.php:191
2340
  msgid "pixel(s)"
2341
  msgstr "pixel(s)"
2342
 
2343
+ #: dashboard/publisher/adrotate-groups-edit.php:194
2344
  msgid "A transparent area outside the advert in pixels. Default: 0."
2345
  msgstr ""
2346
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
2347
  "défaut : 0."
2348
 
2349
+ #: dashboard/publisher/adrotate-groups-edit.php:194
2350
  msgid "Set to 0 to disable."
2351
  msgstr "Mettre 0 pour désactiver."
2352
 
2353
+ #: dashboard/publisher/adrotate-groups-edit.php:198
2354
+ msgid "Align the group"
2355
+ msgstr ""
2356
+
2357
+ #: dashboard/publisher/adrotate-groups-edit.php:201
2358
+ msgid "None (Default)"
2359
+ msgstr ""
2360
+
2361
+ #: dashboard/publisher/adrotate-groups-edit.php:202
2362
+ msgid "Left"
2363
+ msgstr ""
2364
+
2365
+ #: dashboard/publisher/adrotate-groups-edit.php:203
2366
+ msgid "Right"
2367
+ msgstr ""
2368
+
2369
+ #: dashboard/publisher/adrotate-groups-edit.php:204
2370
+ msgid "Center"
2371
+ msgstr ""
2372
+
2373
+ #: dashboard/publisher/adrotate-groups-edit.php:208
2374
+ msgid ""
2375
+ "Align the group in your post or page. Using 'center' may affect your margin "
2376
+ "setting. Not every theme supports this feature."
2377
+ msgstr ""
2378
+
2379
+ #: dashboard/publisher/adrotate-groups-edit.php:214
2380
  msgid "Leave empty or 0 to skip this. Will default to group id."
2381
  msgstr ""
2382
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2383
  "défaut de l'identifiant du groupe."
2384
 
2385
+ #: dashboard/publisher/adrotate-groups-edit.php:218
2386
  msgid "Set up a fallback group and use Geo Location in AdRotate Pro"
2387
  msgstr ""
2388
  "Mettre en place un groupe de secours, et utiliser la localisation "
2389
  "géographique dans AdRotate Pro"
2390
 
2391
+ #: dashboard/publisher/adrotate-groups-edit.php:221
2392
  msgid "Insert ads to the begin or end of a post/page."
2393
  msgstr "Insérer des publicités au début ou à la fin de l'article/page."
2394
 
2395
+ #: dashboard/publisher/adrotate-groups-edit.php:224
2396
  msgid "Include ads in categories?"
2397
  msgstr "Intégrer les publicités dans les catégories?"
2398
 
2399
+ #: dashboard/publisher/adrotate-groups-edit.php:228
2400
+ #: dashboard/publisher/adrotate-groups-edit.php:269
2401
  msgid "Disabled"
2402
  msgstr "Désactivé"
2403
 
2404
+ #: dashboard/publisher/adrotate-groups-edit.php:229
2405
+ #: dashboard/publisher/adrotate-groups-edit.php:270
2406
  msgid "Before content"
2407
  msgstr "Avant le contenu"
2408
 
2409
+ #: dashboard/publisher/adrotate-groups-edit.php:230
2410
+ #: dashboard/publisher/adrotate-groups-edit.php:271
2411
  msgid "After content"
2412
  msgstr "Après le contenu"
2413
 
2414
+ #: dashboard/publisher/adrotate-groups-edit.php:231
2415
+ #: dashboard/publisher/adrotate-groups-edit.php:272
2416
  msgid "Before and after content"
2417
  msgstr "Avant et après le contenu"
2418
 
2419
+ #: dashboard/publisher/adrotate-groups-edit.php:232
2420
+ #: dashboard/publisher/adrotate-groups-edit.php:273
2421
  msgid "After..."
2422
  msgstr "Après..."
2423
 
2424
+ #: dashboard/publisher/adrotate-groups-edit.php:238
2425
+ #: dashboard/publisher/adrotate-groups-edit.php:279
2426
  msgid "the first paragraph"
2427
  msgstr "le premier parapgraphe"
2428
 
2429
+ #: dashboard/publisher/adrotate-groups-edit.php:239
2430
+ #: dashboard/publisher/adrotate-groups-edit.php:280
2431
  msgid "the 2nd paragraph"
2432
  msgstr "le second paragraphe"
2433
 
2434
+ #: dashboard/publisher/adrotate-groups-edit.php:240
2435
+ #: dashboard/publisher/adrotate-groups-edit.php:281
2436
  msgid "the 3rd paragraph"
2437
  msgstr "le troisième paragraphe"
2438
 
2439
+ #: dashboard/publisher/adrotate-groups-edit.php:241
2440
+ #: dashboard/publisher/adrotate-groups-edit.php:282
2441
  msgid "the 4th paragraph"
2442
  msgstr "le quatrième paragraphe"
2443
 
2444
+ #: dashboard/publisher/adrotate-groups-edit.php:243
2445
+ #: dashboard/publisher/adrotate-groups-edit.php:284
2446
  msgid "every 2nd paragraph"
2447
  msgstr "chaque second paragraphe"
2448
 
2449
+ #: dashboard/publisher/adrotate-groups-edit.php:244
2450
+ #: dashboard/publisher/adrotate-groups-edit.php:285
2451
  msgid "every 3rd paragraph"
2452
  msgstr "chaque 3ème paragraphe"
2453
 
2454
+ #: dashboard/publisher/adrotate-groups-edit.php:245
2455
+ #: dashboard/publisher/adrotate-groups-edit.php:286
2456
  msgid "every 4th paragraph"
2457
  msgstr "chaque 4ème paragraphe"
2458
 
2459
+ #: dashboard/publisher/adrotate-groups-edit.php:246
2460
+ #: dashboard/publisher/adrotate-groups-edit.php:287
2461
  msgid "every 5th paragraph"
2462
  msgstr "chaque 5ème paragraphe"
2463
 
2464
+ #: dashboard/publisher/adrotate-groups-edit.php:247
2465
+ #: dashboard/publisher/adrotate-groups-edit.php:288
2466
  msgid "every 6th paragraph"
2467
  msgstr "chaque 6ème paragraphe"
2468
 
2469
+ #: dashboard/publisher/adrotate-groups-edit.php:248
2470
+ #: dashboard/publisher/adrotate-groups-edit.php:289
2471
  msgid "every 7th paragraph"
2472
  msgstr "chaque 7ème paragraphe"
2473
 
2474
+ #: dashboard/publisher/adrotate-groups-edit.php:249
2475
+ #: dashboard/publisher/adrotate-groups-edit.php:290
2476
  msgid "every 8th paragraph"
2477
  msgstr "chaque 8ème paragraphe"
2478
 
2479
+ #: dashboard/publisher/adrotate-groups-edit.php:255
2480
  msgid "Which categories?"
2481
  msgstr "Quelles catégories?"
2482
 
2483
+ #: dashboard/publisher/adrotate-groups-edit.php:260
2484
  msgid "Click the categories posts you want the adverts to show in."
2485
  msgstr ""
2486
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
2487
  "pulicités."
2488
 
2489
+ #: dashboard/publisher/adrotate-groups-edit.php:265
2490
  msgid "Include ads in pages?"
2491
  msgstr "Intégrer les publicités dans les pages?"
2492
 
2493
+ #: dashboard/publisher/adrotate-groups-edit.php:296
2494
  msgid "Which pages?"
2495
  msgstr "Quelles pages?"
2496
 
2497
+ #: dashboard/publisher/adrotate-groups-edit.php:301
2498
  msgid "Click the pages you want the adverts to show in."
2499
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2500
 
2501
+ #: dashboard/publisher/adrotate-groups-edit.php:326
2502
  msgid "Wrapper code"
2503
  msgstr "Code enveloppant"
2504
 
2505
+ #: dashboard/publisher/adrotate-groups-edit.php:327
2506
  msgid "Wraps around each ad."
2507
  msgstr "Code qui enveloppe chaque publicité."
2508
 
2509
+ #: dashboard/publisher/adrotate-groups-edit.php:331
2510
  msgid "Before ad"
2511
  msgstr "Avant la pub"
2512
 
2513
+ #: dashboard/publisher/adrotate-groups-edit.php:336
2514
  msgid "HTML/JavaScript allowed, use with care!"
2515
  msgstr "HTML/Javascript est authorisé, utiliser avec précaution!"
2516
 
2517
+ #: dashboard/publisher/adrotate-groups-edit.php:340
2518
  msgid "After ad"
2519
  msgstr "Après la pub"
2520
 
2521
+ #: dashboard/publisher/adrotate-groups-edit.php:349
2522
  msgid "Select Ads"
2523
  msgstr "Choisir les pubs"
2524
 
2525
+ #: dashboard/publisher/adrotate-groups-edit.php:358
2526
  msgid "Visible until"
2527
  msgstr "Visible jusqu'à"
2528
 
2529
+ #: dashboard/publisher/adrotate-groups-edit.php:391
2530
  msgid "No ads created!"
2531
  msgstr "Aucune pub créée!"
2532
 
2558
  msgid "Statistics for group"
2559
  msgstr "Statistiques pour le groupe"
2560
 
2561
+ #~ msgid "Block of Ads (Obsolete)"
2562
+ #~ msgstr "Bloc de publicité (obsolète)"
 
2563
 
2564
+ #~ msgid "AdRotate Server"
2565
+ #~ msgstr "Serveur AdRotate"
2566
+
2567
+ #~ msgid ""
2568
+ #~ "AdRotate server is currently in development and these menus are not "
2569
+ #~ "functional yet."
2570
+ #~ msgstr ""
2571
+ #~ "AdRotate Server est actuellement en développement et ces menus ne sont "
2572
+ #~ "pas encore fonctionels."
2573
 
2574
+ #~ msgid "Overview"
2575
+ #~ msgstr "Vue d'ensemble"
 
2576
 
2577
+ #, fuzzy
2578
+ #~ msgid "Default: 60. Set to 0 to disable this timer."
2579
+ #~ msgstr "Valeur par défaut : 10. Mettre à 0 pour désactiver la minuterie."
 
2580
 
2581
+ #~ msgid "This number may not be empty, negative or exceed 3600 (1 hour)."
2582
+ #~ msgstr ""
2583
+ #~ "Ce nombre ne peut pas être vide, négatif ou dépasser 3600 (1 heure)."
2584
 
2585
+ #~ msgid "Default: 86400. Set to 0 to disable this timer."
2586
+ #~ msgstr "Valeur par défaut: 86400. Mettre à 0 pour désaciver la minuterie."
 
2587
 
2588
+ #~ msgid "This number may not be empty, negative or exceed 86400 (24 hours)."
2589
+ #~ msgstr ""
2590
+ #~ "Ce nombre ne peut être vide, négatif, ou être supérieur à 86400 (24 "
2591
+ #~ "heures)."
2592
 
2593
+ #~ msgid "Javascript Libraries"
2594
+ #~ msgstr "Librairies Javascript"
 
2595
 
2596
+ #~ msgid "Load jQuery Clicktracking"
2597
+ #~ msgstr "Charger le clicktracking (nombre de clicks) de jQuery"
 
2598
 
2599
+ #~ msgid ""
2600
+ #~ "Required for jQuery Clicktracking. When disabled AdRotate falls back on "
2601
+ #~ "Redirect Tracking."
2602
+ #~ msgstr ""
2603
+ #~ "Requis pour le suivi des clics par jQuery. Quand cette option est "
2604
+ #~ "désactivée, AdRotate utilise le suivi par redirection."
2605
 
2606
+ #~ msgid "You are using"
2607
+ #~ msgstr "Vous utilisez"
 
 
 
 
 
2608
 
2609
+ #~ msgid "AdRotate Store"
2610
+ #~ msgstr "Magasin AdRotate"
 
2611
 
2612
+ #~ msgid "Get more features! Get AdRotate Pro."
2613
+ #~ msgstr "Besoin de plus de fonctionalités? Achetez AdRotate Pro. "
 
2614
 
2615
+ #~ msgid "More info"
2616
+ #~ msgstr "Plus d'infos"
 
2617
 
2618
+ #~ msgid "Get help with installations"
2619
+ #~ msgstr "Obtenez de l'aide pour les installations"
 
2620
 
2621
+ #~ msgid "Not sure how to set up AdRotate? Get me to do it!"
2622
+ #~ msgstr "Vous ne savez pas comment configurer AdRotate? Embauchez-moi!"
 
 
 
 
 
2623
 
2624
+ #~ msgid "Premium Support"
2625
+ #~ msgstr "Support Premium"
 
 
 
 
 
2626
 
2627
+ #~ msgid "Stuck with AdRotate? I'll help!"
2628
+ #~ msgstr "Bloqué avec AdRotate? Je peux vous aider!"
 
2629
 
2630
+ #~ msgid "Visit store to see all services and products"
2631
+ #~ msgstr "Aller au magasin pour voir tous les services et tous les produits"
 
2632
 
2633
+ #~ msgid "or go to the"
2634
+ #~ msgstr "ou allez au"
 
 
 
 
 
 
2635
 
2636
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2637
+ #~ msgstr "Votre don permettra d'assurer le développement continu de AdRotate!"
 
2638
 
2639
+ #~ msgid ""
2640
+ #~ "jQuery clicktracking is enabled but no valid link was found in the adcode!"
2641
+ #~ msgstr ""
2642
+ #~ "Le suivi des clicks par jQuery est activé, mais aucun lien valide n'a été "
2643
+ #~ "retrouvé dans le adcode!"
2644
+
2645
+ #~ msgid ""
2646
+ #~ "Redirect clicktracking is enabled but the %link% tag was not found in the "
2647
+ #~ "adcode!"
2648
+ #~ msgstr ""
2649
+ #~ "La redirection pour le suivi des clics est activée mais la balise %link% "
2650
+ #~ "n'a pas été trouvée dans le adcode!"
2651
+
2652
+ #~ msgid "Email or Remote page:"
2653
+ #~ msgstr "Email ou page distante :"
2654
+
2655
+ #~ msgid "Place the target URL in your adcode and enable clicktracking."
2656
+ #~ msgstr ""
2657
+ #~ "Insérez l'URL cible dans votre code de pub pour activer le suivi des "
2658
+ #~ "clicks."
2659
+
2660
+ #~ msgid ""
2661
+ #~ "Place the target URL in the field below, use %link% in the adcode instead "
2662
+ #~ "of the target URL and enable clicktracking."
2663
+ #~ msgstr ""
2664
+ #~ "Insérez le URL cible dans le champ ci-dessous, puis utilisez %link% dans "
2665
+ #~ "le code au lieux du lien cicle, et activez le suivi des clics."
2666
+
2667
+ #~ msgid "Enter the target URL for your advert here."
2668
+ #~ msgstr "Insérer l'URL cible de votre publicité ici."
2669
+
2670
+ #~ msgid ""
2671
+ #~ "Define the maximum size of the ads in pixels minus margin. Size can be "
2672
+ #~ "'auto' (Not recommended). Default: 125/125."
2673
+ #~ msgstr ""
2674
+ #~ "Definir les dimensions par défaut des pubs en pixel, sans compter les "
2675
+ #~ "marges. Si vous mettez 'auto', les dimensions seront automatiques (cici "
2676
+ #~ "n'est pas recommendé). Valeur par défaut : 125/125. "
2677
+
2678
+ #~ msgid "Adverts received from server"
2679
+ #~ msgstr "Publicités reçues du serveur"
2680
+
2681
+ #~ msgid ""
2682
+ #~ "These adverts are circulating in the pool of active adverts, served from "
2683
+ #~ "AdRotate server."
2684
+ #~ msgstr ""
2685
+ #~ "Ces publicités sont en circulation dans la séléction de publicités "
2686
+ #~ "actives servies par AdRotate server."
2687
+
2688
+ #~ msgid "Added / Updated"
2689
+ #~ msgstr "Ajouté / Mis à jour"
2690
+
2691
+ #~ msgid "No ads received yet!"
2692
+ #~ msgstr "Aucune publicité n'a été reçue pour le moment!"
2693
+
2694
+ #~ msgid "Erroneous ads from server"
2695
+ #~ msgstr "Publicités erronées parvenues du serveur"
2696
+
2697
+ #~ msgid "Adverts served from AdRotate server but having some issues."
2698
+ #~ msgstr "Publicités provenant du serveur AdRotate mais qui ont des soucis."
2699
+
2700
+ #~ msgid "Updated"
2701
+ #~ msgstr "Mis à jour"
2702
+
2703
+ #~ msgid "Show from"
2704
+ #~ msgstr "Montrer de "
2705
+
2706
+ #~ msgid "Show until"
2707
+ #~ msgstr "Montrer jusqu'à"
2708
+
2709
+ #~ msgid "AdRotate Server Settings"
2710
+ #~ msgstr "Paramètres du serveur AdRotate"
2711
+
2712
+ #~ msgid ""
2713
+ #~ "Link this website to an AdRotate server so your adverts and stats are "
2714
+ #~ "synchronised regularly."
2715
+ #~ msgstr ""
2716
+ #~ "Lier ce site web à un serveur Adrotate pour que vos publicités et vos "
2717
+ #~ "statistiques soient synchronisées regulièrement."
2718
+
2719
+ #~ msgid "Status"
2720
+ #~ msgstr "Statut"
2721
+
2722
+ #~ msgid "Linked - Adverts can be synced."
2723
+ #~ msgstr "Lié - Les publicités peuvent être synchronisées"
2724
+
2725
+ #~ msgid "Not linked - No adverts will be synced."
2726
+ #~ msgstr "Pas lié - Aucune publicité ne sera synchronisée"
2727
 
2728
+ #~ msgid "Server Key"
2729
+ #~ msgstr "Clé Serveur"
 
2730
 
2731
+ #~ msgid ""
2732
+ #~ "You can get your server key from your AdRotate Server installation or the "
2733
+ #~ "AdRollr website."
2734
+ #~ msgstr ""
2735
+ #~ "Vous pouvez recevoir votre clé de serveur de votre installation AdRotate "
2736
+ #~ "Server ou du site AdRollr."
2737
+
2738
+ #~ msgid ""
2739
+ #~ "You should not share your key with anyone you do not trust. Treat this "
2740
+ #~ "key as a password!"
2741
+ #~ msgstr ""
2742
+ #~ "Vous ne devez pas partager votre clé. Traitez cette clé comme un mot de "
2743
+ #~ "passe!"
2744
+
2745
+ #~ msgid "Make this site a puppet"
2746
+ #~ msgstr "Rendre ce site une \"cellule\""
2747
+
2748
+ #~ msgid "Have AdRotate use AdRotate Server adverts exclusively."
2749
+ #~ msgstr "Utilisez les publicités provenant de AdRotate Server uniquement."
2750
+
2751
+ #~ msgid ""
2752
+ #~ "Enabling this function will DISABLE ALL LOCAL MANAGEMENT and will make "
2753
+ #~ "this installation of AdRotate a puppet for your AdRotate Server."
2754
+ #~ msgstr ""
2755
+ #~ "L'activation de cette fonction permet de désactiver toute la gestion "
2756
+ #~ "locale et de rendre cette installation de AdRotate une cellule de votre "
2757
+ #~ "serveur AdRotate. "
2758
+
2759
+ #~ msgid "Hide Server Details"
2760
+ #~ msgstr "Cacher les détails du serveur"
2761
+
2762
+ #~ msgid ""
2763
+ #~ "If you have installed AdRotate Pro for a client or in a Multisite network "
2764
+ #~ "and want to hide the server details from your users or client."
2765
+ #~ msgstr ""
2766
+ #~ "Si vous avez installé AdRotate Pro pour un client ou dans une "
2767
+ #~ "installation réseau et vous voulez cacher les détails du serveur de vos "
2768
+ #~ "utilisateurs ou client. "
2769
+
2770
+ #~ msgid "Link to server"
2771
+ #~ msgstr "Lier au serveur"
2772
+
2773
+ #~ msgid "Unlink from server"
2774
+ #~ msgstr "Dissocier du serveur"
2775
 
2776
  #~ msgid "Useful links"
2777
  #~ msgstr "Liens utiles"
2779
  #~ msgid "Check out the"
2780
  #~ msgstr "Vérifier le/la"
2781
 
 
 
 
2782
  #~ msgid "and have the most popular features explained."
2783
  #~ msgstr ""
2784
  #~ "et recevez plus d'informations sur les fonctionalités les plus utilisées."
2798
  #~ msgid "Required for Dynamic Groups to rotate ads."
2799
  #~ msgstr "Requis pour les groupes Dynamiques."
2800
 
 
 
 
2801
  #~ msgid "Buy"
2802
  #~ msgstr "Acheter"
2803
 
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-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
@@ -13,22 +13,22 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.7.3\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:811
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
- #: adrotate-functions.php:814
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
- #: adrotate-output.php:759
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
- #: adrotate-output.php:760
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:761
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:762
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
- #: adrotate-output.php:780
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:782
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:789 adrotate-output.php:791
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:797
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
- #: adrotate-output.php:803
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
- #: adrotate-output.php:808
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
- #: adrotate-output.php:814
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,187 +99,164 @@ msgstr ""
99
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
100
  "して、再登録して下さい。"
101
 
102
- #: adrotate-output.php:814
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
- #: adrotate-output.php:820
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
- #: adrotate-output.php:846
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
- #: adrotate-output.php:846
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
- #: adrotate-output.php:848
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
- #: adrotate-output.php:848
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
- #: adrotate-output.php:850
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
- #: adrotate-output.php:850
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
- #: adrotate-output.php:852
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
- #: adrotate-output.php:852
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
- #: adrotate-output.php:852
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
- #: adrotate-output.php:852
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
- #: adrotate-output.php:864
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
- #: adrotate-output.php:866
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:867
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
- #: adrotate-output.php:867
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
- #: adrotate-output.php:889
173
  msgid ""
174
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
175
  "Pro is in this menu. Check out the"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:889
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
- #: adrotate-output.php:889 adrotate-output.php:985
183
  #: dashboard/publisher/adrotate-ads-edit.php:229
184
  msgid "and"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:889
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
- #: adrotate-output.php:925
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
- #: adrotate-output.php:926 adrotate-output.php:954
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
- #: adrotate-output.php:928
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
- #: adrotate-output.php:929
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
- #: adrotate-output.php:930
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
- #: adrotate-output.php:931
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
- #: adrotate-output.php:932
224
  msgid "WordPress.org Forum"
225
  msgstr ""
226
 
227
- #: adrotate-output.php:956
228
- #, fuzzy
229
- msgid "AdRotate Website."
230
- msgstr "AdRotate Blog"
231
-
232
- #: adrotate-output.php:957
233
- #, fuzzy
234
- msgid "AdRotate Getting Started."
235
- msgstr "AdRotate 設定"
236
-
237
- #: adrotate-output.php:958
238
- msgid "AdRotate Knoweledge base and manuals."
239
- msgstr ""
240
-
241
- #: adrotate-output.php:959
242
- #, fuzzy
243
- msgid "AdRotate Website Forum."
244
- msgstr "AdRotate Blog"
245
-
246
- #: adrotate-output.php:960
247
- msgid "WordPress.org Forum."
248
- msgstr ""
249
-
250
- #: adrotate-output.php:977
251
  #, fuzzy
252
  msgid "Help AdRotate Grow"
253
  msgstr "AdRotate Blog"
254
 
255
- #: adrotate-output.php:978
256
  msgid "Brought to you by"
257
  msgstr "サービス紹介"
258
 
259
- #: adrotate-output.php:985
260
  msgid ""
261
  "A lot of users only think to review AdRotate when something goes wrong while "
262
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
263
  msgstr ""
264
 
265
- #: adrotate-output.php:985
266
  msgid "If you find AdRotate useful please leave your honest"
267
  msgstr ""
268
 
269
- #: adrotate-output.php:985
270
  msgid "rating"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:985
274
  #, fuzzy
275
  msgid "review"
276
  msgstr "全般レポートを見れる権限"
277
 
278
- #: adrotate-output.php:985
279
  msgid "on WordPress.org to help AdRotate grow in a positive way"
280
  msgstr ""
281
 
282
- #: adrotate-output.php:988
283
  #, fuzzy
284
  msgid ""
285
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -289,7 +266,7 @@ msgstr ""
289
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
290
  "さい。英語ですが。"
291
 
292
- #: adrotate-output.php:988
293
  #, fuzzy
294
  msgid "Visit the"
295
  msgstr ""
@@ -297,27 +274,27 @@ msgstr ""
297
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
298
  "さい。英語ですが。"
299
 
300
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
301
  #, fuzzy
302
  msgid "website"
303
  msgstr "開発者のWEBサイトは以下です。"
304
 
305
- #: adrotate-output.php:1018
306
  #, fuzzy
307
  msgid "Available in AdRotate Pro"
308
  msgstr "AdRotate Blog"
309
 
310
- #: adrotate-output.php:1018
311
  #, fuzzy
312
  msgid "More information..."
313
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
314
 
315
- #: adrotate-output.php:1019
316
  #, fuzzy
317
  msgid "This feature is available in AdRotate Pro"
318
  msgstr "この機能は使いません。"
319
 
320
- #: adrotate-output.php:1019
321
  #, fuzzy
322
  msgid "Learn more"
323
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
@@ -399,46 +376,46 @@ msgstr ""
399
  msgid "No data to show!"
400
  msgstr "表示できるデータがありません。"
401
 
402
- #: adrotate-widget.php:114
403
  msgid "Title (optional):"
404
  msgstr "タイトル(オプション):"
405
 
406
- #: adrotate-widget.php:117
407
  msgid "HTML will be stripped out."
408
  msgstr "HTMLタグは取り除かれます。"
409
 
410
- #: adrotate-widget.php:120
411
  #, fuzzy
412
  msgid "Description (optional):"
413
  msgstr "タイトル(オプション):"
414
 
415
- #: adrotate-widget.php:123
416
  #, fuzzy
417
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
418
  msgstr "HTMLタグは取り除かれます。"
419
 
420
- #: adrotate-widget.php:126
421
  msgid "Type:"
422
  msgstr "タイプ:"
423
 
424
- #: adrotate-widget.php:128
425
  msgid "Single Ad - Use Ad ID"
426
  msgstr "広告 - 広告IDを使ってください。"
427
 
428
- #: adrotate-widget.php:129
429
  msgid "Group of Ads - Use group ID"
430
  msgstr "広告グループ - グループIDを使ってください。"
431
 
432
- #: adrotate-widget.php:132
433
  msgid "Choose what you want to use this widget for"
434
  msgstr "このウィジェットに使いたい物を選んで下さい。"
435
 
436
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
437
  #, fuzzy
438
  msgid "ID:"
439
  msgstr "広告ブロック - ブロックIDを使ってください。"
440
 
441
- #: adrotate-widget.php:138
442
  msgid "Fill in the ID of the type you want to display!"
443
  msgstr "表示したいタイプのIDを入力してください!"
444
 
@@ -942,7 +919,7 @@ msgstr ""
942
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
943
  "れます。"
944
 
945
- #: adrotate.php:724 dashboard/adrotate-info.php:175
946
  msgid "Learn more about"
947
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
948
 
@@ -1367,121 +1344,114 @@ msgstr "6ヶ月(180日)"
1367
 
1368
  #: dashboard/adrotate-info.php:132
1369
  #, fuzzy
1370
- msgid "You are using"
 
 
 
 
 
 
 
 
1371
  msgstr ""
1372
- "上記のオプションを使用してそれらを割り当てない限り、これらの権限は付与されま"
1373
- "せん。注意して、設定する必要があります。"
1374
 
1375
- #: dashboard/adrotate-info.php:138
1376
  #, fuzzy
1377
  msgid "AdRotate News and Developer Blog"
1378
  msgstr "AdRotate Blog"
1379
 
1380
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1381
  #, fuzzy
1382
  msgid "Buy AdRotate Professional"
1383
  msgstr "AdRotate Blog"
1384
 
1385
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1386
  msgid "Singe License"
1387
  msgstr ""
1388
 
1389
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1390
  msgid "For one WordPress installation."
1391
  msgstr ""
1392
 
1393
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1394
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1395
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1396
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1397
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1398
  #, fuzzy
1399
  msgid "Buy now"
1400
  msgstr "継続する場合は対応して下さい。"
1401
 
1402
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1403
  msgid "Duo License"
1404
  msgstr ""
1405
 
1406
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1407
  msgid "For two WordPress installations."
1408
  msgstr ""
1409
 
1410
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1411
  msgid "Multi License"
1412
  msgstr ""
1413
 
1414
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1415
  msgid " For up to five WordPress installations."
1416
  msgstr ""
1417
 
1418
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1419
  #, fuzzy
1420
  msgid "Developer License"
1421
  msgstr "開発者向けデバッグ"
1422
 
1423
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1424
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1425
  msgstr ""
1426
 
1427
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1428
  msgid "Network License"
1429
  msgstr ""
1430
 
1431
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1432
  msgid "Set up your own advertising network on a WordPress Multisite."
1433
  msgstr ""
1434
 
1435
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1436
  msgid "Compare licenses"
1437
  msgstr ""
1438
 
1439
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1440
  msgid "Not sure which license is for you? Compare them..."
1441
  msgstr ""
1442
 
1443
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1444
  #, fuzzy
1445
  msgid "All Licenses"
1446
  msgstr "すべての広告の再評価"
1447
 
1448
- #: dashboard/adrotate-info.php:171
1449
- #, fuzzy
1450
- msgid "Get more features with AdRotate Pro"
1451
- msgstr ""
1452
- "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1453
- "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1454
-
1455
- #: dashboard/adrotate-info.php:174
1456
- msgid ""
1457
- "Benefit from extra features to reinforce your income with advertising "
1458
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1459
- "Pro offers on top of the trusted features included in the free version."
1460
- msgstr ""
1461
-
1462
- #: dashboard/adrotate-info.php:175
1463
- #, fuzzy
1464
- msgid "or go to the"
1465
- msgstr "実行"
1466
-
1467
- #: dashboard/adrotate-info.php:179
1468
- #, fuzzy
1469
- msgid "Support AdRotate"
1470
- msgstr "AdRotate Blog"
1471
-
1472
- #: dashboard/adrotate-info.php:182
1473
- #, fuzzy
1474
- msgid "Your gift will ensure the continued development of AdRotate!"
1475
- msgstr ""
1476
- "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1477
- "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1478
-
1479
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1480
  #, fuzzy
1481
  msgid "AdRotate is brought to you by"
1482
  msgstr "サービス紹介"
1483
 
1484
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1485
  msgid ""
1486
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1487
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1491,12 +1461,12 @@ msgstr ""
1491
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1492
  "さい。英語ですが。"
1493
 
1494
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1495
  #, fuzzy
1496
  msgid "Find out more"
1497
  msgstr "以下のURLをチェック下さい。"
1498
 
1499
- #: dashboard/adrotate-info.php:193
1500
  msgid "Follow"
1501
  msgstr ""
1502
 
@@ -1558,6 +1528,10 @@ msgid ""
1558
  "miss an expiration date again."
1559
  msgstr ""
1560
 
 
 
 
 
1561
  #: dashboard/publisher/adrotate-ads-edit.php:46
1562
  msgid "The AdCode cannot be empty!"
1563
  msgstr "AdCodeを空にすることはできません!"
@@ -2665,6 +2639,35 @@ msgstr "グループがまだ作られていません。"
2665
  msgid "Statistics for group"
2666
  msgstr "統計 "
2667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2668
  #, fuzzy
2669
  #~ msgid "AdRotate Server"
2670
  #~ msgstr "AdRotate Blog"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:807
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:810
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-output.php:747
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
+ #: adrotate-output.php:748
32
  #, fuzzy
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
38
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
39
  "さい。英語ですが。"
40
 
41
+ #: adrotate-output.php:749
42
  #, fuzzy
43
  msgid ""
44
  "If you have received the url you want to visit via email, you are being "
45
  "tricked!"
46
  msgstr "このウィジェットに使いたい物を選んで下さい。"
47
 
48
+ #: adrotate-output.php:750
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
+ #: adrotate-output.php:768
56
  #, fuzzy
57
  msgid ""
58
  "Error, Ad is not available at this time due to schedule/geolocation "
59
  "restrictions or does not exist!"
60
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
61
 
62
+ #: adrotate-output.php:770
63
  #, fuzzy
64
  msgid ""
65
  "Error, Ad is not available at this time due to schedule/geolocation "
68
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
69
  "を再度保存してください!"
70
 
71
+ #: adrotate-output.php:777 adrotate-output.php:779
72
  msgid ""
73
  "Either there are no banners, they are disabled or none qualified for this "
74
  "location!"
75
  msgstr "バナーがないか、利用不可か適応されていません。"
76
 
77
+ #: adrotate-output.php:785
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
+ #: adrotate-output.php:791
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
+ #: adrotate-output.php:796
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
+ #: adrotate-output.php:802
95
  msgid ""
96
  "There was an error locating the database tables for AdRotate. Please "
97
  "deactivate and re-activate AdRotate from the plugin page!!"
99
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
100
  "して、再登録して下さい。"
101
 
102
+ #: adrotate-output.php:802
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
+ #: adrotate-output.php:808
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
+ #: adrotate-output.php:834
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
+ #: adrotate-output.php:834
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
+ #: adrotate-output.php:836
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
+ #: adrotate-output.php:836
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
+ #: adrotate-output.php:838
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
+ #: adrotate-output.php:838
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
+ #: adrotate-output.php:840
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
+ #: adrotate-output.php:840
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
+ #: adrotate-output.php:840
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
+ #: adrotate-output.php:840
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
+ #: adrotate-output.php:853
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
+ #: adrotate-output.php:855
158
  msgid ""
159
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
160
  "to the <strong>PRO</strong> version"
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:856
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
+ #: adrotate-output.php:856
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
+ #: adrotate-output.php:896
173
  msgid ""
174
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
175
  "Pro is in this menu. Check out the"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:896
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
+ #: adrotate-output.php:896 adrotate-output.php:973
183
  #: dashboard/publisher/adrotate-ads-edit.php:229
184
  msgid "and"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:896
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
+ #: adrotate-output.php:932
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
+ #: adrotate-output.php:933
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:935
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
+ #: adrotate-output.php:936
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
+ #: adrotate-output.php:937
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
+ #: adrotate-output.php:938
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
+ #: adrotate-output.php:939
224
  msgid "WordPress.org Forum"
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  #, fuzzy
229
  msgid "Help AdRotate Grow"
230
  msgstr "AdRotate Blog"
231
 
232
+ #: adrotate-output.php:966
233
  msgid "Brought to you by"
234
  msgstr "サービス紹介"
235
 
236
+ #: adrotate-output.php:973
237
  msgid ""
238
  "A lot of users only think to review AdRotate when something goes wrong while "
239
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:973
243
  msgid "If you find AdRotate useful please leave your honest"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:973
247
  msgid "rating"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:973
251
  #, fuzzy
252
  msgid "review"
253
  msgstr "全般レポートを見れる権限"
254
 
255
+ #: adrotate-output.php:973
256
  msgid "on WordPress.org to help AdRotate grow in a positive way"
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:976
260
  #, fuzzy
261
  msgid ""
262
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
266
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
267
  "さい。英語ですが。"
268
 
269
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
270
  #, fuzzy
271
  msgid "Visit the"
272
  msgstr ""
274
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
275
  "さい。英語ですが。"
276
 
277
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
278
  #, fuzzy
279
  msgid "website"
280
  msgstr "開発者のWEBサイトは以下です。"
281
 
282
+ #: adrotate-output.php:1006
283
  #, fuzzy
284
  msgid "Available in AdRotate Pro"
285
  msgstr "AdRotate Blog"
286
 
287
+ #: adrotate-output.php:1006
288
  #, fuzzy
289
  msgid "More information..."
290
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
291
 
292
+ #: adrotate-output.php:1007
293
  #, fuzzy
294
  msgid "This feature is available in AdRotate Pro"
295
  msgstr "この機能は使いません。"
296
 
297
+ #: adrotate-output.php:1007
298
  #, fuzzy
299
  msgid "Learn more"
300
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
376
  msgid "No data to show!"
377
  msgstr "表示できるデータがありません。"
378
 
379
+ #: adrotate-widget.php:116
380
  msgid "Title (optional):"
381
  msgstr "タイトル(オプション):"
382
 
383
+ #: adrotate-widget.php:119
384
  msgid "HTML will be stripped out."
385
  msgstr "HTMLタグは取り除かれます。"
386
 
387
+ #: adrotate-widget.php:122
388
  #, fuzzy
389
  msgid "Description (optional):"
390
  msgstr "タイトル(オプション):"
391
 
392
+ #: adrotate-widget.php:125
393
  #, fuzzy
394
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
395
  msgstr "HTMLタグは取り除かれます。"
396
 
397
+ #: adrotate-widget.php:128
398
  msgid "Type:"
399
  msgstr "タイプ:"
400
 
401
+ #: adrotate-widget.php:130
402
  msgid "Single Ad - Use Ad ID"
403
  msgstr "広告 - 広告IDを使ってください。"
404
 
405
+ #: adrotate-widget.php:131
406
  msgid "Group of Ads - Use group ID"
407
  msgstr "広告グループ - グループIDを使ってください。"
408
 
409
+ #: adrotate-widget.php:134
410
  msgid "Choose what you want to use this widget for"
411
  msgstr "このウィジェットに使いたい物を選んで下さい。"
412
 
413
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
414
  #, fuzzy
415
  msgid "ID:"
416
  msgstr "広告ブロック - ブロックIDを使ってください。"
417
 
418
+ #: adrotate-widget.php:140
419
  msgid "Fill in the ID of the type you want to display!"
420
  msgstr "表示したいタイプのIDを入力してください!"
421
 
919
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
920
  "れます。"
921
 
922
+ #: adrotate.php:724
923
  msgid "Learn more about"
924
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
925
 
1344
 
1345
  #: dashboard/adrotate-info.php:132
1346
  #, fuzzy
1347
+ msgid "Support AdRotate"
1348
+ msgstr "AdRotate Blog"
1349
+
1350
+ #: dashboard/adrotate-info.php:139
1351
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1352
+ msgstr ""
1353
+
1354
+ #: dashboard/adrotate-info.php:139
1355
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1356
  msgstr ""
 
 
1357
 
1358
+ #: dashboard/adrotate-info.php:148
1359
  #, fuzzy
1360
  msgid "AdRotate News and Developer Blog"
1361
  msgstr "AdRotate Blog"
1362
 
1363
+ #: dashboard/adrotate-info.php:168
1364
+ #, fuzzy
1365
+ msgid "Get more features with AdRotate Pro"
1366
+ msgstr ""
1367
+ "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1368
+ "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1369
+
1370
+ #: dashboard/adrotate-info.php:171
1371
+ msgid ""
1372
+ "Benefit from extra features to reinforce your income with advertising "
1373
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1374
+ "Pro offers on top of the trusted features included in the free version."
1375
+ msgstr ""
1376
+
1377
+ #: dashboard/adrotate-info.php:171
1378
+ msgid "Want to know more about"
1379
+ msgstr ""
1380
+
1381
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1382
  #, fuzzy
1383
  msgid "Buy AdRotate Professional"
1384
  msgstr "AdRotate Blog"
1385
 
1386
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1387
  msgid "Singe License"
1388
  msgstr ""
1389
 
1390
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1391
  msgid "For one WordPress installation."
1392
  msgstr ""
1393
 
1394
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1395
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1396
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1397
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1398
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1399
  #, fuzzy
1400
  msgid "Buy now"
1401
  msgstr "継続する場合は対応して下さい。"
1402
 
1403
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1404
  msgid "Duo License"
1405
  msgstr ""
1406
 
1407
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1408
  msgid "For two WordPress installations."
1409
  msgstr ""
1410
 
1411
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1412
  msgid "Multi License"
1413
  msgstr ""
1414
 
1415
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1416
  msgid " For up to five WordPress installations."
1417
  msgstr ""
1418
 
1419
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1420
  #, fuzzy
1421
  msgid "Developer License"
1422
  msgstr "開発者向けデバッグ"
1423
 
1424
+ #: dashboard/adrotate-info.php:182
1425
+ msgid "Unlimited WordPress installations and/or networks."
1426
  msgstr ""
1427
 
1428
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1429
  msgid "Network License"
1430
  msgstr ""
1431
 
1432
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1433
  msgid "Set up your own advertising network on a WordPress Multisite."
1434
  msgstr ""
1435
 
1436
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1437
  msgid "Compare licenses"
1438
  msgstr ""
1439
 
1440
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1441
  msgid "Not sure which license is for you? Compare them..."
1442
  msgstr ""
1443
 
1444
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1445
  #, fuzzy
1446
  msgid "All Licenses"
1447
  msgstr "すべての広告の再評価"
1448
 
1449
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1450
  #, fuzzy
1451
  msgid "AdRotate is brought to you by"
1452
  msgstr "サービス紹介"
1453
 
1454
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1455
  msgid ""
1456
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1457
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1461
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1462
  "さい。英語ですが。"
1463
 
1464
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1465
  #, fuzzy
1466
  msgid "Find out more"
1467
  msgstr "以下のURLをチェック下さい。"
1468
 
1469
+ #: dashboard/adrotate-info.php:194
1470
  msgid "Follow"
1471
  msgstr ""
1472
 
1528
  "miss an expiration date again."
1529
  msgstr ""
1530
 
1531
+ #: dashboard/adrotate-pro.php:83
1532
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1533
+ msgstr ""
1534
+
1535
  #: dashboard/publisher/adrotate-ads-edit.php:46
1536
  msgid "The AdCode cannot be empty!"
1537
  msgstr "AdCodeを空にすることはできません!"
2639
  msgid "Statistics for group"
2640
  msgstr "統計 "
2641
 
2642
+ #, fuzzy
2643
+ #~ msgid "AdRotate Website."
2644
+ #~ msgstr "AdRotate Blog"
2645
+
2646
+ #, fuzzy
2647
+ #~ msgid "AdRotate Getting Started."
2648
+ #~ msgstr "AdRotate 設定"
2649
+
2650
+ #, fuzzy
2651
+ #~ msgid "AdRotate Website Forum."
2652
+ #~ msgstr "AdRotate Blog"
2653
+
2654
+ #, fuzzy
2655
+ #~ msgid "You are using"
2656
+ #~ msgstr ""
2657
+ #~ "上記のオプションを使用してそれらを割り当てない限り、これらの権限は付与され"
2658
+ #~ "ません。注意して、設定する必要があります。"
2659
+
2660
+ #, fuzzy
2661
+ #~ msgid "or go to the"
2662
+ #~ msgstr "実行"
2663
+
2664
+ #, fuzzy
2665
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2666
+ #~ msgstr ""
2667
+ #~ "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーな"
2668
+ #~ "どにはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さ"
2669
+ #~ "い。"
2670
+
2671
  #, fuzzy
2672
  #~ msgid "AdRotate Server"
2673
  #~ msgstr "AdRotate Blog"
language/adrotate-pl_PL.mo CHANGED
Binary file
language/adrotate-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+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"
@@ -15,24 +15,24 @@ msgstr ""
15
  "_nx_noop:4c,1,2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Generator: Poedit 1.7.3\n"
19
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: adrotate-functions.php:811
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
- #: adrotate-functions.php:814
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
- #: adrotate-output.php:759
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
- #: adrotate-output.php:760
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:761
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:762
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:780
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:782
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:789 adrotate-output.php:791
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:797
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:803
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:808
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:814
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,184 +96,161 @@ msgstr ""
96
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
97
  "AdRote na panelu wtyczek."
98
 
99
- #: adrotate-output.php:814
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:820
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
- #: adrotate-output.php:846
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
- #: adrotate-output.php:846
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
- #: adrotate-output.php:848
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
- #: adrotate-output.php:848
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
- #: adrotate-output.php:850
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
- #: adrotate-output.php:850
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
- #: adrotate-output.php:852
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
- #: adrotate-output.php:852
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
- #: adrotate-output.php:852
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
- #: adrotate-output.php:852
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
- #: adrotate-output.php:864
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
- #: adrotate-output.php:866
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:867
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
- #: adrotate-output.php:867
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
- #: adrotate-output.php:889
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
171
  "Pro is in this menu. Check out the"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:889
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
- #: adrotate-output.php:889 adrotate-output.php:985
179
  #: dashboard/publisher/adrotate-ads-edit.php:229
180
  msgid "and"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:889
184
  msgid "forums"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:925
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
- #: adrotate-output.php:926 adrotate-output.php:954
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:928
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
- #: adrotate-output.php:929
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
- #: adrotate-output.php:930
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
- #: adrotate-output.php:931
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
- #: adrotate-output.php:932
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
- #: adrotate-output.php:956
221
- #, fuzzy
222
- msgid "AdRotate Website."
223
- msgstr "Sklep AdRotate"
224
-
225
- #: adrotate-output.php:957
226
- #, fuzzy
227
- msgid "AdRotate Getting Started."
228
- msgstr "Ustawienia AdRotate"
229
-
230
- #: adrotate-output.php:958
231
- msgid "AdRotate Knoweledge base and manuals."
232
- msgstr ""
233
-
234
- #: adrotate-output.php:959
235
- #, fuzzy
236
- msgid "AdRotate Website Forum."
237
- msgstr "Sklep AdRotate"
238
-
239
- #: adrotate-output.php:960
240
- msgid "WordPress.org Forum."
241
- msgstr ""
242
-
243
- #: adrotate-output.php:977
244
  #, fuzzy
245
  msgid "Help AdRotate Grow"
246
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
247
 
248
- #: adrotate-output.php:978
249
  msgid "Brought to you by"
250
  msgstr "Dostarczone przez "
251
 
252
- #: adrotate-output.php:985
253
  msgid ""
254
  "A lot of users only think to review AdRotate when something goes wrong while "
255
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
256
  msgstr ""
257
 
258
- #: adrotate-output.php:985
259
  msgid "If you find AdRotate useful please leave your honest"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:985
263
  msgid "rating"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:985
267
  #, fuzzy
268
  msgid "review"
269
  msgstr ""
270
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
271
 
272
- #: adrotate-output.php:985
273
  msgid "on WordPress.org to help AdRotate grow in a positive way"
274
  msgstr ""
275
 
276
- #: adrotate-output.php:988
277
  msgid ""
278
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
279
  "out more about what I can do for you!"
@@ -282,27 +259,27 @@ msgstr ""
282
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
283
  "więcej dla Wordpress'a."
284
 
285
- #: adrotate-output.php:988
286
  msgid "Visit the"
287
  msgstr "Odwiedź"
288
 
289
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
290
  msgid "website"
291
  msgstr "strone internetową"
292
 
293
- #: adrotate-output.php:1018
294
  msgid "Available in AdRotate Pro"
295
  msgstr "Dostępne w wersji AdRotate Pro"
296
 
297
- #: adrotate-output.php:1018
298
  msgid "More information..."
299
  msgstr "Więcej informacji"
300
 
301
- #: adrotate-output.php:1019
302
  msgid "This feature is available in AdRotate Pro"
303
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
304
 
305
- #: adrotate-output.php:1019
306
  msgid "Learn more"
307
  msgstr "Dowiedź się więcej"
308
 
@@ -382,43 +359,43 @@ msgstr "Następny"
382
  msgid "No data to show!"
383
  msgstr "Brak danych !"
384
 
385
- #: adrotate-widget.php:114
386
  msgid "Title (optional):"
387
  msgstr "Tytuł (opcjonalnie):"
388
 
389
- #: adrotate-widget.php:117
390
  msgid "HTML will be stripped out."
391
  msgstr "Znaczniki HTML będą wyrzucane."
392
 
393
- #: adrotate-widget.php:120
394
  msgid "Description (optional):"
395
  msgstr "Opis (opcjonalny):"
396
 
397
- #: adrotate-widget.php:123
398
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
399
  msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
400
 
401
- #: adrotate-widget.php:126
402
  msgid "Type:"
403
  msgstr "Typ:"
404
 
405
- #: adrotate-widget.php:128
406
  msgid "Single Ad - Use Ad ID"
407
  msgstr "Pojedyńcza Reklama - Użyj ID (numeru identyfikacyjnego) reklamy"
408
 
409
- #: adrotate-widget.php:129
410
  msgid "Group of Ads - Use group ID"
411
  msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
412
 
413
- #: adrotate-widget.php:132
414
  msgid "Choose what you want to use this widget for"
415
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
416
 
417
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
418
  msgid "ID:"
419
  msgstr "ID:"
420
 
421
- #: adrotate-widget.php:138
422
  msgid "Fill in the ID of the type you want to display!"
423
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
424
 
@@ -911,7 +888,7 @@ msgid ""
911
  "well."
912
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
913
 
914
- #: adrotate.php:724 dashboard/adrotate-info.php:175
915
  msgid "Learn more about"
916
  msgstr "Dowiedź się więcej o"
917
 
@@ -1326,109 +1303,109 @@ msgid "The last few days"
1326
  msgstr "Ostatnie dni"
1327
 
1328
  #: dashboard/adrotate-info.php:132
1329
- msgid "You are using"
1330
- msgstr "Używasz"
 
 
 
 
 
 
 
 
1331
 
1332
- #: dashboard/adrotate-info.php:138
1333
  msgid "AdRotate News and Developer Blog"
1334
  msgstr "AdRotere Wiadomości i Blog "
1335
 
1336
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1337
  msgid "Buy AdRotate Professional"
1338
  msgstr "Kup AdRotate Pro"
1339
 
1340
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1341
  msgid "Singe License"
1342
  msgstr "Pojedyńcza licencja"
1343
 
1344
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1345
  msgid "For one WordPress installation."
1346
  msgstr "dla jednej instalcji Wordpressa"
1347
 
1348
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1349
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1350
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1351
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1352
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1353
  #, fuzzy
1354
  msgid "Buy now"
1355
  msgstr "Kup"
1356
 
1357
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1358
  msgid "Duo License"
1359
  msgstr "Podwójna licencja"
1360
 
1361
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1362
  msgid "For two WordPress installations."
1363
  msgstr "dla dwóch instalcji Wordpressa"
1364
 
1365
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1366
  msgid "Multi License"
1367
  msgstr "Multi licencja"
1368
 
1369
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1370
  msgid " For up to five WordPress installations."
1371
  msgstr "dla 5 instalacji Wordpessa."
1372
 
1373
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1374
  msgid "Developer License"
1375
  msgstr "Licencja Programisty"
1376
 
1377
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1378
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1379
- msgstr "Aktywujesz AdRote na nielimitowanej ilości instalacji Wordpressa."
1380
 
1381
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1382
  msgid "Network License"
1383
  msgstr "Licencja sieciowa"
1384
 
1385
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1386
  msgid "Set up your own advertising network on a WordPress Multisite."
1387
  msgstr "Utwórz własną sieć reklamową dla multistrona Wordpressa."
1388
 
1389
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1390
  msgid "Compare licenses"
1391
  msgstr "Porównaj licencje."
1392
 
1393
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1394
  msgid "Not sure which license is for you? Compare them..."
1395
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
1396
 
1397
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1398
  msgid "All Licenses"
1399
  msgstr "Wszystkie licencje"
1400
 
1401
- #: dashboard/adrotate-info.php:171
1402
- msgid "Get more features with AdRotate Pro"
1403
- msgstr "Więcej ustawień z AdRotate Pro"
1404
-
1405
- #: dashboard/adrotate-info.php:174
1406
- msgid ""
1407
- "Benefit from extra features to reinforce your income with advertising "
1408
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1409
- "Pro offers on top of the trusted features included in the free version."
1410
- msgstr ""
1411
- "Zyski wynikające z dodatkowych funkcji powiększą twoje przychodzy z reklamy. "
1412
- "Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
1413
- "funkcjom."
1414
-
1415
- #: dashboard/adrotate-info.php:175
1416
- msgid "or go to the"
1417
- msgstr "albo zajrzyj na "
1418
-
1419
- #: dashboard/adrotate-info.php:179
1420
- msgid "Support AdRotate"
1421
- msgstr "Wesprzyj AdRotate"
1422
-
1423
- #: dashboard/adrotate-info.php:182
1424
- msgid "Your gift will ensure the continued development of AdRotate!"
1425
- msgstr "Dzięki twoim datkom możliwe będzie dalsze rozwijanie AdRotate!"
1426
-
1427
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1428
  msgid "AdRotate is brought to you by"
1429
  msgstr "Możesz koszystać z AdRotate dzięki"
1430
 
1431
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1432
  msgid ""
1433
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1434
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1439,11 +1416,11 @@ msgstr ""
1439
  "potrzebujesz dedykowanej wtyczki, przerobienia twojego szablonu lub "
1440
  "przenosisz strone pomoc znajdziesz na mojej stronie!"
1441
 
1442
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1443
  msgid "Find out more"
1444
  msgstr "Dowiedź się więcej"
1445
 
1446
- #: dashboard/adrotate-info.php:193
1447
  msgid "Follow"
1448
  msgstr "Obserwuj"
1449
 
@@ -1522,6 +1499,10 @@ msgstr ""
1522
  "wygaśnie, posiada błędy lub gdy reklamodawcy utworzą nową reklamę. Już nigdy "
1523
  "niczego nie przeoczysz !!"
1524
 
 
 
 
 
1525
  #: dashboard/publisher/adrotate-ads-edit.php:46
1526
  msgid "The AdCode cannot be empty!"
1527
  msgstr "Kod reklamy nie może być pusty!"
@@ -2575,6 +2556,27 @@ msgstr "Nie utworzono grupy!"
2575
  msgid "Statistics for group"
2576
  msgstr "Statystyki dla grupy"
2577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2578
  #~ msgid "AdRotate Server"
2579
  #~ msgstr "AdRotate Serwer"
2580
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:52+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:52+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
9
  "Language: pl_PL\n"
15
  "_nx_noop:4c,1,2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Generator: Poedit 1.7.5\n"
19
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: adrotate-functions.php:807
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:810
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-output.php:747
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
+ #: adrotate-output.php:748
36
  msgid ""
37
  "WordPress was unable to verify the authenticity of the url you have clicked. "
38
  "Verify if the url used is valid or log in via your browser."
40
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
41
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
42
 
43
+ #: adrotate-output.php:749
44
  msgid ""
45
  "If you have received the url you want to visit via email, you are being "
46
  "tricked!"
48
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
49
  "zostałeś oszukany. "
50
 
51
+ #: adrotate-output.php:750
52
  msgid "Contact support if the issue persists:"
53
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
54
 
55
+ #: adrotate-output.php:768
56
  msgid ""
57
  "Error, Ad is not available at this time due to schedule/geolocation "
58
  "restrictions or does not exist!"
60
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
61
  "harmonogramie lub geolokalizacji lub może nie istnieć."
62
 
63
+ #: adrotate-output.php:770
64
  msgid ""
65
  "Error, Ad is not available at this time due to schedule/geolocation "
66
  "restrictions!"
68
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
69
  "harmonogramie lub geolokalizacji."
70
 
71
+ #: adrotate-output.php:777 adrotate-output.php:779
72
  msgid ""
73
  "Either there are no banners, they are disabled or none qualified for this "
74
  "location!"
76
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
77
  "lokalizacji!"
78
 
79
+ #: adrotate-output.php:785
80
  msgid "Error, no Ad ID set! Check your syntax!"
81
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
82
 
83
+ #: adrotate-output.php:791
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
86
 
87
+ #: adrotate-output.php:796
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
90
 
91
+ #: adrotate-output.php:802
92
  msgid ""
93
  "There was an error locating the database tables for AdRotate. Please "
94
  "deactivate and re-activate AdRotate from the plugin page!!"
96
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
97
  "AdRote na panelu wtyczek."
98
 
99
+ #: adrotate-output.php:802
100
  msgid "If this does not solve the issue please seek support at"
101
  msgstr ""
102
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
103
 
104
+ #: adrotate-output.php:808
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
+ #: adrotate-output.php:834
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
+ #: adrotate-output.php:834
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
+ #: adrotate-output.php:836
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
+ #: adrotate-output.php:836
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
+ #: adrotate-output.php:838
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
+ #: adrotate-output.php:838
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
+ #: adrotate-output.php:840
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
+ #: adrotate-output.php:840
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
+ #: adrotate-output.php:840
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
+ #: adrotate-output.php:840
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
+ #: adrotate-output.php:853
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
+ #: adrotate-output.php:855
154
  msgid ""
155
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
156
  "to the <strong>PRO</strong> version"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:856
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:856
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
+ #: adrotate-output.php:896
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
171
  "Pro is in this menu. Check out the"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:896
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
+ #: adrotate-output.php:896 adrotate-output.php:973
179
  #: dashboard/publisher/adrotate-ads-edit.php:229
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:896
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:932
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
+ #: adrotate-output.php:933
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:935
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:936
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
+ #: adrotate-output.php:937
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
+ #: adrotate-output.php:938
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
+ #: adrotate-output.php:939
217
  msgid "WordPress.org Forum"
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  #, fuzzy
222
  msgid "Help AdRotate Grow"
223
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
224
 
225
+ #: adrotate-output.php:966
226
  msgid "Brought to you by"
227
  msgstr "Dostarczone przez "
228
 
229
+ #: adrotate-output.php:973
230
  msgid ""
231
  "A lot of users only think to review AdRotate when something goes wrong while "
232
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:973
236
  msgid "If you find AdRotate useful please leave your honest"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:973
240
  msgid "rating"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:973
244
  #, fuzzy
245
  msgid "review"
246
  msgstr ""
247
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
248
 
249
+ #: adrotate-output.php:973
250
  msgid "on WordPress.org to help AdRotate grow in a positive way"
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:976
254
  msgid ""
255
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
256
  "out more about what I can do for you!"
259
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
260
  "więcej dla Wordpress'a."
261
 
262
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
263
  msgid "Visit the"
264
  msgstr "Odwiedź"
265
 
266
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
267
  msgid "website"
268
  msgstr "strone internetową"
269
 
270
+ #: adrotate-output.php:1006
271
  msgid "Available in AdRotate Pro"
272
  msgstr "Dostępne w wersji AdRotate Pro"
273
 
274
+ #: adrotate-output.php:1006
275
  msgid "More information..."
276
  msgstr "Więcej informacji"
277
 
278
+ #: adrotate-output.php:1007
279
  msgid "This feature is available in AdRotate Pro"
280
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
281
 
282
+ #: adrotate-output.php:1007
283
  msgid "Learn more"
284
  msgstr "Dowiedź się więcej"
285
 
359
  msgid "No data to show!"
360
  msgstr "Brak danych !"
361
 
362
+ #: adrotate-widget.php:116
363
  msgid "Title (optional):"
364
  msgstr "Tytuł (opcjonalnie):"
365
 
366
+ #: adrotate-widget.php:119
367
  msgid "HTML will be stripped out."
368
  msgstr "Znaczniki HTML będą wyrzucane."
369
 
370
+ #: adrotate-widget.php:122
371
  msgid "Description (optional):"
372
  msgstr "Opis (opcjonalny):"
373
 
374
+ #: adrotate-widget.php:125
375
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
376
  msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
377
 
378
+ #: adrotate-widget.php:128
379
  msgid "Type:"
380
  msgstr "Typ:"
381
 
382
+ #: adrotate-widget.php:130
383
  msgid "Single Ad - Use Ad ID"
384
  msgstr "Pojedyńcza Reklama - Użyj ID (numeru identyfikacyjnego) reklamy"
385
 
386
+ #: adrotate-widget.php:131
387
  msgid "Group of Ads - Use group ID"
388
  msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
389
 
390
+ #: adrotate-widget.php:134
391
  msgid "Choose what you want to use this widget for"
392
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
393
 
394
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
395
  msgid "ID:"
396
  msgstr "ID:"
397
 
398
+ #: adrotate-widget.php:140
399
  msgid "Fill in the ID of the type you want to display!"
400
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
401
 
888
  "well."
889
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
890
 
891
+ #: adrotate.php:724
892
  msgid "Learn more about"
893
  msgstr "Dowiedź się więcej o"
894
 
1303
  msgstr "Ostatnie dni"
1304
 
1305
  #: dashboard/adrotate-info.php:132
1306
+ msgid "Support AdRotate"
1307
+ msgstr "Wesprzyj AdRotate"
1308
+
1309
+ #: dashboard/adrotate-info.php:139
1310
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1311
+ msgstr ""
1312
+
1313
+ #: dashboard/adrotate-info.php:139
1314
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1315
+ msgstr ""
1316
 
1317
+ #: dashboard/adrotate-info.php:148
1318
  msgid "AdRotate News and Developer Blog"
1319
  msgstr "AdRotere Wiadomości i Blog "
1320
 
1321
+ #: dashboard/adrotate-info.php:168
1322
+ msgid "Get more features with AdRotate Pro"
1323
+ msgstr "Więcej ustawień z AdRotate Pro"
1324
+
1325
+ #: dashboard/adrotate-info.php:171
1326
+ msgid ""
1327
+ "Benefit from extra features to reinforce your income with advertising "
1328
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1329
+ "Pro offers on top of the trusted features included in the free version."
1330
+ msgstr ""
1331
+ "Zyski wynikające z dodatkowych funkcji powiększą twoje przychodzy z reklamy. "
1332
+ "Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
1333
+ "funkcjom."
1334
+
1335
+ #: dashboard/adrotate-info.php:171
1336
+ msgid "Want to know more about"
1337
+ msgstr ""
1338
+
1339
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1340
  msgid "Buy AdRotate Professional"
1341
  msgstr "Kup AdRotate Pro"
1342
 
1343
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1344
  msgid "Singe License"
1345
  msgstr "Pojedyńcza licencja"
1346
 
1347
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1348
  msgid "For one WordPress installation."
1349
  msgstr "dla jednej instalcji Wordpressa"
1350
 
1351
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1352
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1353
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1354
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1355
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1356
  #, fuzzy
1357
  msgid "Buy now"
1358
  msgstr "Kup"
1359
 
1360
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1361
  msgid "Duo License"
1362
  msgstr "Podwójna licencja"
1363
 
1364
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1365
  msgid "For two WordPress installations."
1366
  msgstr "dla dwóch instalcji Wordpressa"
1367
 
1368
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1369
  msgid "Multi License"
1370
  msgstr "Multi licencja"
1371
 
1372
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1373
  msgid " For up to five WordPress installations."
1374
  msgstr "dla 5 instalacji Wordpessa."
1375
 
1376
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1377
  msgid "Developer License"
1378
  msgstr "Licencja Programisty"
1379
 
1380
+ #: dashboard/adrotate-info.php:182
1381
+ msgid "Unlimited WordPress installations and/or networks."
1382
+ msgstr ""
1383
 
1384
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1385
  msgid "Network License"
1386
  msgstr "Licencja sieciowa"
1387
 
1388
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1389
  msgid "Set up your own advertising network on a WordPress Multisite."
1390
  msgstr "Utwórz własną sieć reklamową dla multistrona Wordpressa."
1391
 
1392
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1393
  msgid "Compare licenses"
1394
  msgstr "Porównaj licencje."
1395
 
1396
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1397
  msgid "Not sure which license is for you? Compare them..."
1398
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
1399
 
1400
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1401
  msgid "All Licenses"
1402
  msgstr "Wszystkie licencje"
1403
 
1404
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1405
  msgid "AdRotate is brought to you by"
1406
  msgstr "Możesz koszystać z AdRotate dzięki"
1407
 
1408
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1409
  msgid ""
1410
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1411
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1416
  "potrzebujesz dedykowanej wtyczki, przerobienia twojego szablonu lub "
1417
  "przenosisz strone pomoc znajdziesz na mojej stronie!"
1418
 
1419
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1420
  msgid "Find out more"
1421
  msgstr "Dowiedź się więcej"
1422
 
1423
+ #: dashboard/adrotate-info.php:194
1424
  msgid "Follow"
1425
  msgstr "Obserwuj"
1426
 
1499
  "wygaśnie, posiada błędy lub gdy reklamodawcy utworzą nową reklamę. Już nigdy "
1500
  "niczego nie przeoczysz !!"
1501
 
1502
+ #: dashboard/adrotate-pro.php:83
1503
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1504
+ msgstr "Aktywujesz AdRote na nielimitowanej ilości instalacji Wordpressa."
1505
+
1506
  #: dashboard/publisher/adrotate-ads-edit.php:46
1507
  msgid "The AdCode cannot be empty!"
1508
  msgstr "Kod reklamy nie może być pusty!"
2556
  msgid "Statistics for group"
2557
  msgstr "Statystyki dla grupy"
2558
 
2559
+ #, fuzzy
2560
+ #~ msgid "AdRotate Website."
2561
+ #~ msgstr "Sklep AdRotate"
2562
+
2563
+ #, fuzzy
2564
+ #~ msgid "AdRotate Getting Started."
2565
+ #~ msgstr "Ustawienia AdRotate"
2566
+
2567
+ #, fuzzy
2568
+ #~ msgid "AdRotate Website Forum."
2569
+ #~ msgstr "Sklep AdRotate"
2570
+
2571
+ #~ msgid "You are using"
2572
+ #~ msgstr "Używasz"
2573
+
2574
+ #~ msgid "or go to the"
2575
+ #~ msgstr "albo zajrzyj na "
2576
+
2577
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2578
+ #~ msgstr "Dzięki twoim datkom możliwe będzie dalsze rozwijanie AdRotate!"
2579
+
2580
  #~ msgid "AdRotate Server"
2581
  #~ msgstr "AdRotate Serwer"
2582
 
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-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
@@ -13,22 +13,22 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.7.3\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:811
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
- #: adrotate-functions.php:814
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
- #: adrotate-output.php:759
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
- #: adrotate-output.php:760
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:761
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:762
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
- #: adrotate-output.php:780
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:782
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:789 adrotate-output.php:791
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:797
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:803
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:808
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:814
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,181 +89,158 @@ msgstr ""
89
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
90
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
91
 
92
- #: adrotate-output.php:814
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:820
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
- #: adrotate-output.php:846
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
- #: adrotate-output.php:846
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
- #: adrotate-output.php:848
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
- #: adrotate-output.php:848
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
- #: adrotate-output.php:850
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
- #: adrotate-output.php:850
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
- #: adrotate-output.php:852
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
- #: adrotate-output.php:852
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
- #: adrotate-output.php:852
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
- #: adrotate-output.php:852
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
- #: adrotate-output.php:864
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
- #: adrotate-output.php:866
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:867
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
- #: adrotate-output.php:867
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
- #: adrotate-output.php:889
160
  msgid ""
161
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
162
  "Pro is in this menu. Check out the"
163
  msgstr ""
164
 
165
- #: adrotate-output.php:889
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
- #: adrotate-output.php:889 adrotate-output.php:985
170
  #: dashboard/publisher/adrotate-ads-edit.php:229
171
  msgid "and"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:889
175
  msgid "forums"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:925
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
- #: adrotate-output.php:926 adrotate-output.php:954
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:928
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
- #: adrotate-output.php:929
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
- #: adrotate-output.php:930
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
- #: adrotate-output.php:931
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
- #: adrotate-output.php:932
208
  msgid "WordPress.org Forum"
209
  msgstr ""
210
 
211
- #: adrotate-output.php:956
212
- #, fuzzy
213
- msgid "AdRotate Website."
214
- msgstr "AdRotate prodavnica"
215
-
216
- #: adrotate-output.php:957
217
- #, fuzzy
218
- msgid "AdRotate Getting Started."
219
- msgstr "AdRotate postavke"
220
-
221
- #: adrotate-output.php:958
222
- msgid "AdRotate Knoweledge base and manuals."
223
- msgstr ""
224
-
225
- #: adrotate-output.php:959
226
- #, fuzzy
227
- msgid "AdRotate Website Forum."
228
- msgstr "AdRotate prodavnica"
229
-
230
- #: adrotate-output.php:960
231
- msgid "WordPress.org Forum."
232
- msgstr ""
233
-
234
- #: adrotate-output.php:977
235
  #, fuzzy
236
  msgid "Help AdRotate Grow"
237
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
238
 
239
- #: adrotate-output.php:978
240
  msgid "Brought to you by"
241
  msgstr "Za tebe od"
242
 
243
- #: adrotate-output.php:985
244
  msgid ""
245
  "A lot of users only think to review AdRotate when something goes wrong while "
246
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
247
  msgstr ""
248
 
249
- #: adrotate-output.php:985
250
  msgid "If you find AdRotate useful please leave your honest"
251
  msgstr ""
252
 
253
- #: adrotate-output.php:985
254
  msgid "rating"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:985
258
  #, fuzzy
259
  msgid "review"
260
  msgstr "Dajte ocenu i komentar"
261
 
262
- #: adrotate-output.php:985
263
  msgid "on WordPress.org to help AdRotate grow in a positive way"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:988
267
  #, fuzzy
268
  msgid ""
269
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -274,28 +251,28 @@ msgstr ""
274
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
275
  "detalja !"
276
 
277
- #: adrotate-output.php:988
278
  msgid "Visit the"
279
  msgstr "Posetite"
280
 
281
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
282
  msgid "website"
283
  msgstr "websajt"
284
 
285
- #: adrotate-output.php:1018
286
  msgid "Available in AdRotate Pro"
287
  msgstr "Dostupno u AdRotate Pro"
288
 
289
- #: adrotate-output.php:1018
290
  #, fuzzy
291
  msgid "More information..."
292
  msgstr "Saznajte više"
293
 
294
- #: adrotate-output.php:1019
295
  msgid "This feature is available in AdRotate Pro"
296
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
297
 
298
- #: adrotate-output.php:1019
299
  msgid "Learn more"
300
  msgstr "Saznajte više"
301
 
@@ -375,45 +352,45 @@ msgstr "Sledeći"
375
  msgid "No data to show!"
376
  msgstr "Nema podataka za prikaz!"
377
 
378
- #: adrotate-widget.php:114
379
  msgid "Title (optional):"
380
  msgstr "Naslov (opcionalno):"
381
 
382
- #: adrotate-widget.php:117
383
  msgid "HTML will be stripped out."
384
  msgstr "HTML će biti skinut."
385
 
386
- #: adrotate-widget.php:120
387
  #, fuzzy
388
  msgid "Description (optional):"
389
  msgstr "Naslov (opcionalno):"
390
 
391
- #: adrotate-widget.php:123
392
  #, fuzzy
393
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
394
  msgstr "HTML će biti skinut."
395
 
396
- #: adrotate-widget.php:126
397
  msgid "Type:"
398
  msgstr "Tip:"
399
 
400
- #: adrotate-widget.php:128
401
  msgid "Single Ad - Use Ad ID"
402
  msgstr "Single oglas- koristi Ad ID"
403
 
404
- #: adrotate-widget.php:129
405
  msgid "Group of Ads - Use group ID"
406
  msgstr "Gupni oglasi - Koristite grupni ID"
407
 
408
- #: adrotate-widget.php:132
409
  msgid "Choose what you want to use this widget for"
410
  msgstr "Izaberite za šta želite da koristite ovaj widget "
411
 
412
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
413
  msgid "ID:"
414
  msgstr "ID:"
415
 
416
- #: adrotate-widget.php:138
417
  msgid "Fill in the ID of the type you want to display!"
418
  msgstr "Popunite ID tipa koji želite da prikažete!"
419
 
@@ -909,7 +886,7 @@ msgstr ""
909
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
910
  "dobro."
911
 
912
- #: adrotate.php:724 dashboard/adrotate-info.php:175
913
  msgid "Learn more about"
914
  msgstr "Saznajte više o"
915
 
@@ -1342,114 +1319,113 @@ msgid "The last few days"
1342
  msgstr "Poslednjih nekoliko dana"
1343
 
1344
  #: dashboard/adrotate-info.php:132
1345
- msgid "You are using"
1346
- msgstr "Koristite"
 
 
 
 
 
 
 
 
1347
 
1348
- #: dashboard/adrotate-info.php:138
1349
  msgid "AdRotate News and Developer Blog"
1350
  msgstr "AdRotate novosti i blog za programere"
1351
 
1352
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1353
  #, fuzzy
1354
  msgid "Buy AdRotate Professional"
1355
  msgstr "Kupite odmah"
1356
 
1357
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1358
  msgid "Singe License"
1359
  msgstr ""
1360
 
1361
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1362
  #, fuzzy
1363
  msgid "For one WordPress installation."
1364
  msgstr "Instalacije"
1365
 
1366
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1367
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1368
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1369
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1370
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1371
  #, fuzzy
1372
  msgid "Buy now"
1373
  msgstr "Kupite odmah"
1374
 
1375
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1376
  msgid "Duo License"
1377
  msgstr ""
1378
 
1379
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1380
  #, fuzzy
1381
  msgid "For two WordPress installations."
1382
  msgstr "Instalacije"
1383
 
1384
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1385
  msgid "Multi License"
1386
  msgstr ""
1387
 
1388
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1389
  #, fuzzy
1390
  msgid " For up to five WordPress installations."
1391
  msgstr "Instalacije"
1392
 
1393
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1394
  #, fuzzy
1395
  msgid "Developer License"
1396
  msgstr "Debug za programera"
1397
 
1398
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1399
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1400
  msgstr ""
1401
 
1402
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1403
  msgid "Network License"
1404
  msgstr ""
1405
 
1406
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1407
  msgid "Set up your own advertising network on a WordPress Multisite."
1408
  msgstr ""
1409
 
1410
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1411
  msgid "Compare licenses"
1412
  msgstr ""
1413
 
1414
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1415
  msgid "Not sure which license is for you? Compare them..."
1416
  msgstr ""
1417
 
1418
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1419
  #, fuzzy
1420
  msgid "All Licenses"
1421
  msgstr "Ponovo ocenite sve oglase"
1422
 
1423
- #: dashboard/adrotate-info.php:171
1424
- #, fuzzy
1425
- msgid "Get more features with AdRotate Pro"
1426
- msgstr "Nabvite jos karakteristika! AdRotate Pro."
1427
-
1428
- #: dashboard/adrotate-info.php:174
1429
- msgid ""
1430
- "Benefit from extra features to reinforce your income with advertising "
1431
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1432
- "Pro offers on top of the trusted features included in the free version."
1433
- msgstr ""
1434
-
1435
- #: dashboard/adrotate-info.php:175
1436
- #, fuzzy
1437
- msgid "or go to the"
1438
- msgstr "Kreni"
1439
-
1440
- #: dashboard/adrotate-info.php:179
1441
- msgid "Support AdRotate"
1442
- msgstr "AdRotate podrška"
1443
-
1444
- #: dashboard/adrotate-info.php:182
1445
- msgid "Your gift will ensure the continued development of AdRotate!"
1446
- msgstr "Vaš poklon će obezbediti kontinuirani razvoj AdRotate !"
1447
-
1448
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1449
  msgid "AdRotate is brought to you by"
1450
  msgstr "AdRotate vam je omogućio"
1451
 
1452
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1453
  msgid ""
1454
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1455
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1460,11 +1436,11 @@ msgstr ""
1460
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1461
  "detalja !"
1462
 
1463
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1464
  msgid "Find out more"
1465
  msgstr "Saznajte više"
1466
 
1467
- #: dashboard/adrotate-info.php:193
1468
  msgid "Follow"
1469
  msgstr ""
1470
 
@@ -1526,6 +1502,10 @@ msgid ""
1526
  "miss an expiration date again."
1527
  msgstr ""
1528
 
 
 
 
 
1529
  #: dashboard/publisher/adrotate-ads-edit.php:46
1530
  msgid "The AdCode cannot be empty!"
1531
  msgstr "AdCode ne može biti prazan !"
@@ -2625,6 +2605,28 @@ msgstr "Grupa nije napravljena!"
2625
  msgid "Statistics for group"
2626
  msgstr "Sttistike za"
2627
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2628
  #, fuzzy
2629
  #~ msgid "AdRotate Server"
2630
  #~ msgstr "AdRotate promocije"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:51+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:51+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:807
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:810
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-output.php:747
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
+ #: adrotate-output.php:748
32
  msgid ""
33
  "WordPress was unable to verify the authenticity of the url you have clicked. "
34
  "Verify if the url used is valid or log in via your browser."
37
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
38
  "pretraživača."
39
 
40
+ #: adrotate-output.php:749
41
  msgid ""
42
  "If you have received the url you want to visit via email, you are being "
43
  "tricked!"
44
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
45
 
46
+ #: adrotate-output.php:750
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
+ #: adrotate-output.php:768
51
  #, fuzzy
52
  msgid ""
53
  "Error, Ad is not available at this time due to schedule/geolocation "
54
  "restrictions or does not exist!"
55
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
56
 
57
+ #: adrotate-output.php:770
58
  #, fuzzy
59
  msgid ""
60
  "Error, Ad is not available at this time due to schedule/geolocation "
61
  "restrictions!"
62
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
63
 
64
+ #: adrotate-output.php:777 adrotate-output.php:779
65
  msgid ""
66
  "Either there are no banners, they are disabled or none qualified for this "
67
  "location!"
68
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
69
 
70
+ #: adrotate-output.php:785
71
  msgid "Error, no Ad ID set! Check your syntax!"
72
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
73
 
74
+ #: adrotate-output.php:791
75
  #, fuzzy
76
  msgid "Error, no group ID set! Check your syntax!"
77
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
78
 
79
+ #: adrotate-output.php:796
80
  #, fuzzy
81
  msgid "Error, group does not exist! Check your syntax!"
82
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
83
 
84
+ #: adrotate-output.php:802
85
  msgid ""
86
  "There was an error locating the database tables for AdRotate. Please "
87
  "deactivate and re-activate AdRotate from the plugin page!!"
89
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
90
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
91
 
92
+ #: adrotate-output.php:802
93
  msgid "If this does not solve the issue please seek support at"
94
  msgstr "Ako ne reši problem potražite podršku na"
95
 
96
+ #: adrotate-output.php:808
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
+ #: adrotate-output.php:834
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
+ #: adrotate-output.php:834
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
+ #: adrotate-output.php:836
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
+ #: adrotate-output.php:836
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
+ #: adrotate-output.php:838
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
+ #: adrotate-output.php:838
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
+ #: adrotate-output.php:840
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
+ #: adrotate-output.php:840
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
+ #: adrotate-output.php:840
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
+ #: adrotate-output.php:840
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
+ #: adrotate-output.php:853
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
+ #: adrotate-output.php:855
146
  msgid ""
147
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
148
  "to the <strong>PRO</strong> version"
149
  msgstr ""
150
 
151
+ #: adrotate-output.php:856
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:856
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:896
160
  msgid ""
161
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
162
  "Pro is in this menu. Check out the"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:896
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
+ #: adrotate-output.php:896 adrotate-output.php:973
170
  #: dashboard/publisher/adrotate-ads-edit.php:229
171
  msgid "and"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:896
175
  msgid "forums"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:932
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
+ #: adrotate-output.php:933
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:935
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
+ #: adrotate-output.php:936
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
+ #: adrotate-output.php:937
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
+ #: adrotate-output.php:938
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
+ #: adrotate-output.php:939
208
  msgid "WordPress.org Forum"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  #, fuzzy
213
  msgid "Help AdRotate Grow"
214
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
215
 
216
+ #: adrotate-output.php:966
217
  msgid "Brought to you by"
218
  msgstr "Za tebe od"
219
 
220
+ #: adrotate-output.php:973
221
  msgid ""
222
  "A lot of users only think to review AdRotate when something goes wrong while "
223
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
224
  msgstr ""
225
 
226
+ #: adrotate-output.php:973
227
  msgid "If you find AdRotate useful please leave your honest"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:973
231
  msgid "rating"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:973
235
  #, fuzzy
236
  msgid "review"
237
  msgstr "Dajte ocenu i komentar"
238
 
239
+ #: adrotate-output.php:973
240
  msgid "on WordPress.org to help AdRotate grow in a positive way"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:976
244
  #, fuzzy
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
252
  "detalja !"
253
 
254
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
255
  msgid "Visit the"
256
  msgstr "Posetite"
257
 
258
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
259
  msgid "website"
260
  msgstr "websajt"
261
 
262
+ #: adrotate-output.php:1006
263
  msgid "Available in AdRotate Pro"
264
  msgstr "Dostupno u AdRotate Pro"
265
 
266
+ #: adrotate-output.php:1006
267
  #, fuzzy
268
  msgid "More information..."
269
  msgstr "Saznajte više"
270
 
271
+ #: adrotate-output.php:1007
272
  msgid "This feature is available in AdRotate Pro"
273
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
274
 
275
+ #: adrotate-output.php:1007
276
  msgid "Learn more"
277
  msgstr "Saznajte više"
278
 
352
  msgid "No data to show!"
353
  msgstr "Nema podataka za prikaz!"
354
 
355
+ #: adrotate-widget.php:116
356
  msgid "Title (optional):"
357
  msgstr "Naslov (opcionalno):"
358
 
359
+ #: adrotate-widget.php:119
360
  msgid "HTML will be stripped out."
361
  msgstr "HTML će biti skinut."
362
 
363
+ #: adrotate-widget.php:122
364
  #, fuzzy
365
  msgid "Description (optional):"
366
  msgstr "Naslov (opcionalno):"
367
 
368
+ #: adrotate-widget.php:125
369
  #, fuzzy
370
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
371
  msgstr "HTML će biti skinut."
372
 
373
+ #: adrotate-widget.php:128
374
  msgid "Type:"
375
  msgstr "Tip:"
376
 
377
+ #: adrotate-widget.php:130
378
  msgid "Single Ad - Use Ad ID"
379
  msgstr "Single oglas- koristi Ad ID"
380
 
381
+ #: adrotate-widget.php:131
382
  msgid "Group of Ads - Use group ID"
383
  msgstr "Gupni oglasi - Koristite grupni ID"
384
 
385
+ #: adrotate-widget.php:134
386
  msgid "Choose what you want to use this widget for"
387
  msgstr "Izaberite za šta želite da koristite ovaj widget "
388
 
389
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
390
  msgid "ID:"
391
  msgstr "ID:"
392
 
393
+ #: adrotate-widget.php:140
394
  msgid "Fill in the ID of the type you want to display!"
395
  msgstr "Popunite ID tipa koji želite da prikažete!"
396
 
886
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
887
  "dobro."
888
 
889
+ #: adrotate.php:724
890
  msgid "Learn more about"
891
  msgstr "Saznajte više o"
892
 
1319
  msgstr "Poslednjih nekoliko dana"
1320
 
1321
  #: dashboard/adrotate-info.php:132
1322
+ msgid "Support AdRotate"
1323
+ msgstr "AdRotate podrška"
1324
+
1325
+ #: dashboard/adrotate-info.php:139
1326
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1327
+ msgstr ""
1328
+
1329
+ #: dashboard/adrotate-info.php:139
1330
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1331
+ msgstr ""
1332
 
1333
+ #: dashboard/adrotate-info.php:148
1334
  msgid "AdRotate News and Developer Blog"
1335
  msgstr "AdRotate novosti i blog za programere"
1336
 
1337
+ #: dashboard/adrotate-info.php:168
1338
+ #, fuzzy
1339
+ msgid "Get more features with AdRotate Pro"
1340
+ msgstr "Nabvite jos karakteristika! AdRotate Pro."
1341
+
1342
+ #: dashboard/adrotate-info.php:171
1343
+ msgid ""
1344
+ "Benefit from extra features to reinforce your income with advertising "
1345
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1346
+ "Pro offers on top of the trusted features included in the free version."
1347
+ msgstr ""
1348
+
1349
+ #: dashboard/adrotate-info.php:171
1350
+ msgid "Want to know more about"
1351
+ msgstr ""
1352
+
1353
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1354
  #, fuzzy
1355
  msgid "Buy AdRotate Professional"
1356
  msgstr "Kupite odmah"
1357
 
1358
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1359
  msgid "Singe License"
1360
  msgstr ""
1361
 
1362
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1363
  #, fuzzy
1364
  msgid "For one WordPress installation."
1365
  msgstr "Instalacije"
1366
 
1367
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1368
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1369
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1370
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1371
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1372
  #, fuzzy
1373
  msgid "Buy now"
1374
  msgstr "Kupite odmah"
1375
 
1376
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1377
  msgid "Duo License"
1378
  msgstr ""
1379
 
1380
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1381
  #, fuzzy
1382
  msgid "For two WordPress installations."
1383
  msgstr "Instalacije"
1384
 
1385
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1386
  msgid "Multi License"
1387
  msgstr ""
1388
 
1389
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1390
  #, fuzzy
1391
  msgid " For up to five WordPress installations."
1392
  msgstr "Instalacije"
1393
 
1394
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1395
  #, fuzzy
1396
  msgid "Developer License"
1397
  msgstr "Debug za programera"
1398
 
1399
+ #: dashboard/adrotate-info.php:182
1400
+ msgid "Unlimited WordPress installations and/or networks."
1401
  msgstr ""
1402
 
1403
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1404
  msgid "Network License"
1405
  msgstr ""
1406
 
1407
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1408
  msgid "Set up your own advertising network on a WordPress Multisite."
1409
  msgstr ""
1410
 
1411
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1412
  msgid "Compare licenses"
1413
  msgstr ""
1414
 
1415
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1416
  msgid "Not sure which license is for you? Compare them..."
1417
  msgstr ""
1418
 
1419
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1420
  #, fuzzy
1421
  msgid "All Licenses"
1422
  msgstr "Ponovo ocenite sve oglase"
1423
 
1424
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1425
  msgid "AdRotate is brought to you by"
1426
  msgstr "AdRotate vam je omogućio"
1427
 
1428
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1429
  msgid ""
1430
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1431
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1436
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1437
  "detalja !"
1438
 
1439
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1440
  msgid "Find out more"
1441
  msgstr "Saznajte više"
1442
 
1443
+ #: dashboard/adrotate-info.php:194
1444
  msgid "Follow"
1445
  msgstr ""
1446
 
1502
  "miss an expiration date again."
1503
  msgstr ""
1504
 
1505
+ #: dashboard/adrotate-pro.php:83
1506
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1507
+ msgstr ""
1508
+
1509
  #: dashboard/publisher/adrotate-ads-edit.php:46
1510
  msgid "The AdCode cannot be empty!"
1511
  msgstr "AdCode ne može biti prazan !"
2605
  msgid "Statistics for group"
2606
  msgstr "Sttistike za"
2607
 
2608
+ #, fuzzy
2609
+ #~ msgid "AdRotate Website."
2610
+ #~ msgstr "AdRotate prodavnica"
2611
+
2612
+ #, fuzzy
2613
+ #~ msgid "AdRotate Getting Started."
2614
+ #~ msgstr "AdRotate postavke"
2615
+
2616
+ #, fuzzy
2617
+ #~ msgid "AdRotate Website Forum."
2618
+ #~ msgstr "AdRotate prodavnica"
2619
+
2620
+ #~ msgid "You are using"
2621
+ #~ msgstr "Koristite"
2622
+
2623
+ #, fuzzy
2624
+ #~ msgid "or go to the"
2625
+ #~ msgstr "Kreni"
2626
+
2627
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2628
+ #~ msgstr "Vaš poklon će obezbediti kontinuirani razvoj AdRotate !"
2629
+
2630
  #, fuzzy
2631
  #~ msgid "AdRotate Server"
2632
  #~ msgstr "AdRotate promocije"
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-02-15 02:51+0100\n"
6
- "PO-Revision-Date: 2015-02-15 02:51+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
@@ -13,23 +13,23 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.7.3\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:811
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
- #: adrotate-functions.php:814
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
- #: adrotate-output.php:759
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
- #: adrotate-output.php:760
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:761
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:762
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
- #: adrotate-output.php:780
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:782
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:789 adrotate-output.php:791
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:797
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:803
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:808
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
- #: adrotate-output.php:814
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,182 +93,159 @@ msgstr ""
93
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
94
  "avaktivera och återaktivera AdRotate från plugin sidan!"
95
 
96
- #: adrotate-output.php:814
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:820
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
- #: adrotate-output.php:846
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
- #: adrotate-output.php:846
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
- #: adrotate-output.php:848
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:848
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
- #: adrotate-output.php:850
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
- #: adrotate-output.php:850
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
- #: adrotate-output.php:852
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
- #: adrotate-output.php:852
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:852
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
- #: adrotate-output.php:852
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:864
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
- #: adrotate-output.php:866
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:867
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
- #: adrotate-output.php:867
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
- #: adrotate-output.php:889
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
167
  "Pro is in this menu. Check out the"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:889
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
- #: adrotate-output.php:889 adrotate-output.php:985
175
  #: dashboard/publisher/adrotate-ads-edit.php:229
176
  msgid "and"
177
  msgstr ""
178
 
179
- #: adrotate-output.php:889
180
  msgid "forums"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:925
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
- #: adrotate-output.php:926 adrotate-output.php:954
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:928
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
- #: adrotate-output.php:929
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
- #: adrotate-output.php:930
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
- #: adrotate-output.php:931
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
- #: adrotate-output.php:932
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:956
217
- #, fuzzy
218
- msgid "AdRotate Website."
219
- msgstr "AdRotate butik"
220
-
221
- #: adrotate-output.php:957
222
- #, fuzzy
223
- msgid "AdRotate Getting Started."
224
- msgstr "AdRotate Inställningar"
225
-
226
- #: adrotate-output.php:958
227
- msgid "AdRotate Knoweledge base and manuals."
228
- msgstr ""
229
-
230
- #: adrotate-output.php:959
231
- #, fuzzy
232
- msgid "AdRotate Website Forum."
233
- msgstr "AdRotate butik"
234
-
235
- #: adrotate-output.php:960
236
- msgid "WordPress.org Forum."
237
- msgstr ""
238
-
239
- #: adrotate-output.php:977
240
  #, fuzzy
241
  msgid "Help AdRotate Grow"
242
  msgstr "Fastnat med AdRotate? Jag hjälper!"
243
 
244
- #: adrotate-output.php:978
245
  msgid "Brought to you by"
246
  msgstr "Presenteras av"
247
 
248
- #: adrotate-output.php:985
249
  msgid ""
250
  "A lot of users only think to review AdRotate when something goes wrong while "
251
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
252
  msgstr ""
253
 
254
- #: adrotate-output.php:985
255
  msgid "If you find AdRotate useful please leave your honest"
256
  msgstr ""
257
 
258
- #: adrotate-output.php:985
259
  msgid "rating"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:985
263
  #, fuzzy
264
  msgid "review"
265
  msgstr "Betygsätt och omdöme"
266
 
267
- #: adrotate-output.php:985
268
  msgid "on WordPress.org to help AdRotate grow in a positive way"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:988
272
  msgid ""
273
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
274
  "out more about what I can do for you!"
@@ -276,28 +253,28 @@ msgstr ""
276
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
277
  "mer om vad jag kan göra för dig!"
278
 
279
- #: adrotate-output.php:988
280
  msgid "Visit the"
281
  msgstr "Besök"
282
 
283
- #: adrotate-output.php:988 dashboard/adrotate-info.php:175
284
  msgid "website"
285
  msgstr "hemsida"
286
 
287
- #: adrotate-output.php:1018
288
  msgid "Available in AdRotate Pro"
289
  msgstr "Tillgänglig i AdRotate Pro"
290
 
291
- #: adrotate-output.php:1018
292
  #, fuzzy
293
  msgid "More information..."
294
  msgstr "Mer info"
295
 
296
- #: adrotate-output.php:1019
297
  msgid "This feature is available in AdRotate Pro"
298
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
299
 
300
- #: adrotate-output.php:1019
301
  #, fuzzy
302
  msgid "Learn more"
303
  msgstr "Läs mer om"
@@ -378,44 +355,44 @@ msgstr "Nästa"
378
  msgid "No data to show!"
379
  msgstr "Inga data att visa!"
380
 
381
- #: adrotate-widget.php:114
382
  msgid "Title (optional):"
383
  msgstr "Titel (valfritt):"
384
 
385
- #: adrotate-widget.php:117
386
  msgid "HTML will be stripped out."
387
  msgstr "HTML kommer att demonteras ut."
388
 
389
- #: adrotate-widget.php:120
390
  msgid "Description (optional):"
391
  msgstr "Beskrivning (valfritt):"
392
 
393
- #: adrotate-widget.php:123
394
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
395
  msgstr ""
396
  "Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
397
 
398
- #: adrotate-widget.php:126
399
  msgid "Type:"
400
  msgstr "Typ:"
401
 
402
- #: adrotate-widget.php:128
403
  msgid "Single Ad - Use Ad ID"
404
  msgstr "Singel annons - Användare och ID"
405
 
406
- #: adrotate-widget.php:129
407
  msgid "Group of Ads - Use group ID"
408
  msgstr "Grupp av annonser - Använd grupp-ID"
409
 
410
- #: adrotate-widget.php:132
411
  msgid "Choose what you want to use this widget for"
412
  msgstr "Välj vad du vill använda denna widget för"
413
 
414
- #: adrotate-widget.php:135 dashboard/publisher/adrotate-groups-edit.php:52
415
  msgid "ID:"
416
  msgstr "ID:"
417
 
418
- #: adrotate-widget.php:138
419
  msgid "Fill in the ID of the type you want to display!"
420
  msgstr "Fyll i ID för den typ som du vill visa!"
421
 
@@ -905,7 +882,7 @@ msgid ""
905
  msgstr ""
906
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
907
 
908
- #: adrotate.php:724 dashboard/adrotate-info.php:175
909
  msgid "Learn more about"
910
  msgstr "Läs mer om"
911
 
@@ -1321,118 +1298,116 @@ msgid "The last few days"
1321
  msgstr "De senaste dagarna"
1322
 
1323
  #: dashboard/adrotate-info.php:132
1324
- msgid "You are using"
1325
- msgstr "Du använder"
 
 
 
 
 
 
 
 
1326
 
1327
- #: dashboard/adrotate-info.php:138
1328
  msgid "AdRotate News and Developer Blog"
1329
  msgstr "AdRotate Nyheter och Utvecklar Blog"
1330
 
1331
- #: dashboard/adrotate-info.php:158 dashboard/adrotate-pro.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1332
  #, fuzzy
1333
  msgid "Buy AdRotate Professional"
1334
  msgstr "Köp nu"
1335
 
1336
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1337
  #, fuzzy
1338
  msgid "Singe License"
1339
  msgstr "AdRotate Licens"
1340
 
1341
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-pro.php:80
1342
  #, fuzzy
1343
  msgid "For one WordPress installation."
1344
  msgstr "Installation"
1345
 
1346
- #: dashboard/adrotate-info.php:162 dashboard/adrotate-info.php:163
1347
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-info.php:165
1348
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:80
1349
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1350
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1351
  #, fuzzy
1352
  msgid "Buy now"
1353
  msgstr "Köp nu"
1354
 
1355
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1356
  #, fuzzy
1357
  msgid "Duo License"
1358
  msgstr "AdRotate Licens"
1359
 
1360
- #: dashboard/adrotate-info.php:163 dashboard/adrotate-pro.php:81
1361
  #, fuzzy
1362
  msgid "For two WordPress installations."
1363
  msgstr "Installation"
1364
 
1365
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1366
  #, fuzzy
1367
  msgid "Multi License"
1368
  msgstr "AdRotate Licens"
1369
 
1370
- #: dashboard/adrotate-info.php:164 dashboard/adrotate-pro.php:82
1371
  #, fuzzy
1372
  msgid " For up to five WordPress installations."
1373
  msgstr "Installation"
1374
 
1375
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1376
  #, fuzzy
1377
  msgid "Developer License"
1378
  msgstr "Utvecklar Debug"
1379
 
1380
- #: dashboard/adrotate-info.php:165 dashboard/adrotate-pro.php:83
1381
- msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1382
  msgstr ""
1383
 
1384
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1385
  #, fuzzy
1386
  msgid "Network License"
1387
  msgstr "AdRotate Licens"
1388
 
1389
- #: dashboard/adrotate-info.php:166 dashboard/adrotate-pro.php:84
1390
  msgid "Set up your own advertising network on a WordPress Multisite."
1391
  msgstr ""
1392
 
1393
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1394
  msgid "Compare licenses"
1395
  msgstr ""
1396
 
1397
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1398
  msgid "Not sure which license is for you? Compare them..."
1399
  msgstr ""
1400
 
1401
- #: dashboard/adrotate-info.php:167 dashboard/adrotate-pro.php:85
1402
  msgid "All Licenses"
1403
  msgstr ""
1404
 
1405
- #: dashboard/adrotate-info.php:171
1406
- #, fuzzy
1407
- msgid "Get more features with AdRotate Pro"
1408
- msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1409
-
1410
- #: dashboard/adrotate-info.php:174
1411
- msgid ""
1412
- "Benefit from extra features to reinforce your income with advertising "
1413
- "campaigns. Make the most of your website with the powerful tools AdRotate "
1414
- "Pro offers on top of the trusted features included in the free version."
1415
- msgstr ""
1416
-
1417
- #: dashboard/adrotate-info.php:175
1418
- #, fuzzy
1419
- msgid "or go to the"
1420
- msgstr "Gå"
1421
-
1422
- #: dashboard/adrotate-info.php:179
1423
- msgid "Support AdRotate"
1424
- msgstr "Support AdRotate"
1425
-
1426
- #: dashboard/adrotate-info.php:182
1427
- msgid "Your gift will ensure the continued development of AdRotate!"
1428
- msgstr ""
1429
- "Din gåva kommer att säkerställa den fortsatta utvecklingen av AdRotate!"
1430
-
1431
- #: dashboard/adrotate-info.php:187 dashboard/adrotate-pro.php:43
1432
  msgid "AdRotate is brought to you by"
1433
  msgstr "AdRotate kommer till dig genom"
1434
 
1435
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1436
  msgid ""
1437
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1438
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1442,11 +1417,11 @@ msgstr ""
1442
  "behöver en anpassad plugin. Tema anpassningar eller har din webbplats "
1443
  "flyttas / migreras helt. Besök min hemsida för mer information!"
1444
 
1445
- #: dashboard/adrotate-info.php:191 dashboard/adrotate-pro.php:47
1446
  msgid "Find out more"
1447
  msgstr "Läs mer"
1448
 
1449
- #: dashboard/adrotate-info.php:193
1450
  msgid "Follow"
1451
  msgstr ""
1452
 
@@ -1508,6 +1483,10 @@ msgid ""
1508
  "miss an expiration date again."
1509
  msgstr ""
1510
 
 
 
 
 
1511
  #: dashboard/publisher/adrotate-ads-edit.php:46
1512
  msgid "The AdCode cannot be empty!"
1513
  msgstr "Den AdCode kan inte vara tomt!"
@@ -2581,6 +2560,29 @@ msgstr "Inga grupper skapas!"
2581
  msgid "Statistics for group"
2582
  msgstr "Statistik för grupp"
2583
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2584
  #, fuzzy
2585
  #~ msgid "AdRotate Server"
2586
  #~ msgstr "AdRotate"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-02 01:51+0100\n"
6
+ "PO-Revision-Date: 2015-04-02 01:51+0100\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:807
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:810
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-output.php:747
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
+ #: adrotate-output.php:748
33
  msgid ""
34
  "WordPress was unable to verify the authenticity of the url you have clicked. "
35
  "Verify if the url used is valid or log in via your browser."
38
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
39
  "via webbläsaren."
40
 
41
+ #: adrotate-output.php:749
42
  msgid ""
43
  "If you have received the url you want to visit via email, you are being "
44
  "tricked!"
45
  msgstr ""
46
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
47
 
48
+ #: adrotate-output.php:750
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
+ #: adrotate-output.php:768
53
  msgid ""
54
  "Error, Ad is not available at this time due to schedule/geolocation "
55
  "restrictions or does not exist!"
57
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
58
  "geolokalisering restriktioner eller finns inte!"
59
 
60
+ #: adrotate-output.php:770
61
  msgid ""
62
  "Error, Ad is not available at this time due to schedule/geolocation "
63
  "restrictions!"
65
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
66
  "geolokalisering begränsningar!"
67
 
68
+ #: adrotate-output.php:777 adrotate-output.php:779
69
  msgid ""
70
  "Either there are no banners, they are disabled or none qualified for this "
71
  "location!"
73
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
74
  "kvalificerade för den här platsen!"
75
 
76
+ #: adrotate-output.php:785
77
  msgid "Error, no Ad ID set! Check your syntax!"
78
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
79
 
80
+ #: adrotate-output.php:791
81
  msgid "Error, no group ID set! Check your syntax!"
82
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
83
 
84
+ #: adrotate-output.php:796
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
+ #: adrotate-output.php:802
89
  msgid ""
90
  "There was an error locating the database tables for AdRotate. Please "
91
  "deactivate and re-activate AdRotate from the plugin page!!"
93
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
94
  "avaktivera och återaktivera AdRotate från plugin sidan!"
95
 
96
+ #: adrotate-output.php:802
97
  msgid "If this does not solve the issue please seek support at"
98
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
99
 
100
+ #: adrotate-output.php:808
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
+ #: adrotate-output.php:834
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
+ #: adrotate-output.php:834
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
+ #: adrotate-output.php:836
113
  msgid "active ad(s) are about to expire."
114
  msgstr "aktiv annons(er) är på väg att löpa ut."
115
 
116
+ #: adrotate-output.php:836
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
+ #: adrotate-output.php:838
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
+ #: adrotate-output.php:838
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
+ #: adrotate-output.php:840
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
+ #: adrotate-output.php:840
133
  msgid "ad(s) are about to expire."
134
  msgstr "annons(er) är på väg att löpa ut."
135
 
136
+ #: adrotate-output.php:840
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
+ #: adrotate-output.php:840
141
  msgid "Fix this as soon as possible"
142
  msgstr "Lös det här så fort som möjligt"
143
 
144
+ #: adrotate-output.php:853
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
+ #: adrotate-output.php:855
150
  msgid ""
151
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
152
  "to the <strong>PRO</strong> version"
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:856
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:856
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
+ #: adrotate-output.php:896
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate Pro. Everything related to AdRotate "
167
  "Pro is in this menu. Check out the"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:896
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
+ #: adrotate-output.php:896 adrotate-output.php:973
175
  #: dashboard/publisher/adrotate-ads-edit.php:229
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:896
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:932
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
+ #: adrotate-output.php:933
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:935
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:936
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
+ #: adrotate-output.php:937
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
+ #: adrotate-output.php:938
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
+ #: adrotate-output.php:939
213
  msgid "WordPress.org Forum"
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Fastnat med AdRotate? Jag hjälper!"
220
 
221
+ #: adrotate-output.php:966
222
  msgid "Brought to you by"
223
  msgstr "Presenteras av"
224
 
225
+ #: adrotate-output.php:973
226
  msgid ""
227
  "A lot of users only think to review AdRotate when something goes wrong while "
228
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:973
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:973
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:973
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Betygsätt och omdöme"
243
 
244
+ #: adrotate-output.php:973
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:976
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
253
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
254
  "mer om vad jag kan göra för dig!"
255
 
256
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Besök"
259
 
260
+ #: adrotate-output.php:976 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "hemsida"
263
 
264
+ #: adrotate-output.php:1006
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Tillgänglig i AdRotate Pro"
267
 
268
+ #: adrotate-output.php:1006
269
  #, fuzzy
270
  msgid "More information..."
271
  msgstr "Mer info"
272
 
273
+ #: adrotate-output.php:1007
274
  msgid "This feature is available in AdRotate Pro"
275
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
276
 
277
+ #: adrotate-output.php:1007
278
  #, fuzzy
279
  msgid "Learn more"
280
  msgstr "Läs mer om"
355
  msgid "No data to show!"
356
  msgstr "Inga data att visa!"
357
 
358
+ #: adrotate-widget.php:116
359
  msgid "Title (optional):"
360
  msgstr "Titel (valfritt):"
361
 
362
+ #: adrotate-widget.php:119
363
  msgid "HTML will be stripped out."
364
  msgstr "HTML kommer att demonteras ut."
365
 
366
+ #: adrotate-widget.php:122
367
  msgid "Description (optional):"
368
  msgstr "Beskrivning (valfritt):"
369
 
370
+ #: adrotate-widget.php:125
371
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
372
  msgstr ""
373
  "Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
374
 
375
+ #: adrotate-widget.php:128
376
  msgid "Type:"
377
  msgstr "Typ:"
378
 
379
+ #: adrotate-widget.php:130
380
  msgid "Single Ad - Use Ad ID"
381
  msgstr "Singel annons - Användare och ID"
382
 
383
+ #: adrotate-widget.php:131
384
  msgid "Group of Ads - Use group ID"
385
  msgstr "Grupp av annonser - Använd grupp-ID"
386
 
387
+ #: adrotate-widget.php:134
388
  msgid "Choose what you want to use this widget for"
389
  msgstr "Välj vad du vill använda denna widget för"
390
 
391
+ #: adrotate-widget.php:137 dashboard/publisher/adrotate-groups-edit.php:52
392
  msgid "ID:"
393
  msgstr "ID:"
394
 
395
+ #: adrotate-widget.php:140
396
  msgid "Fill in the ID of the type you want to display!"
397
  msgstr "Fyll i ID för den typ som du vill visa!"
398
 
882
  msgstr ""
883
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
884
 
885
+ #: adrotate.php:724
886
  msgid "Learn more about"
887
  msgstr "Läs mer om"
888
 
1298
  msgstr "De senaste dagarna"
1299
 
1300
  #: dashboard/adrotate-info.php:132
1301
+ msgid "Support AdRotate"
1302
+ msgstr "Support AdRotate"
1303
+
1304
+ #: dashboard/adrotate-info.php:139
1305
+ msgid "Your gift helps ensure the continued development of AdRotate!"
1306
+ msgstr ""
1307
+
1308
+ #: dashboard/adrotate-info.php:139
1309
+ msgid "Can't donate funds? Consider writing a review instead. Thank you!"
1310
+ msgstr ""
1311
 
1312
+ #: dashboard/adrotate-info.php:148
1313
  msgid "AdRotate News and Developer Blog"
1314
  msgstr "AdRotate Nyheter och Utvecklar Blog"
1315
 
1316
+ #: dashboard/adrotate-info.php:168
1317
+ #, fuzzy
1318
+ msgid "Get more features with AdRotate Pro"
1319
+ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1320
+
1321
+ #: dashboard/adrotate-info.php:171
1322
+ msgid ""
1323
+ "Benefit from extra features to reinforce your income with advertising "
1324
+ "campaigns. Make the most of your website with the powerful tools AdRotate "
1325
+ "Pro offers on top of the trusted features included in the free version."
1326
+ msgstr ""
1327
+
1328
+ #: dashboard/adrotate-info.php:171
1329
+ msgid "Want to know more about"
1330
+ msgstr ""
1331
+
1332
+ #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1333
  #, fuzzy
1334
  msgid "Buy AdRotate Professional"
1335
  msgstr "Köp nu"
1336
 
1337
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1338
  #, fuzzy
1339
  msgid "Singe License"
1340
  msgstr "AdRotate Licens"
1341
 
1342
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1343
  #, fuzzy
1344
  msgid "For one WordPress installation."
1345
  msgstr "Installation"
1346
 
1347
+ #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1348
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1349
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1350
  #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1351
  #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1352
  #, fuzzy
1353
  msgid "Buy now"
1354
  msgstr "Köp nu"
1355
 
1356
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1357
  #, fuzzy
1358
  msgid "Duo License"
1359
  msgstr "AdRotate Licens"
1360
 
1361
+ #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1362
  #, fuzzy
1363
  msgid "For two WordPress installations."
1364
  msgstr "Installation"
1365
 
1366
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1367
  #, fuzzy
1368
  msgid "Multi License"
1369
  msgstr "AdRotate Licens"
1370
 
1371
+ #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1372
  #, fuzzy
1373
  msgid " For up to five WordPress installations."
1374
  msgstr "Installation"
1375
 
1376
+ #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1377
  #, fuzzy
1378
  msgid "Developer License"
1379
  msgstr "Utvecklar Debug"
1380
 
1381
+ #: dashboard/adrotate-info.php:182
1382
+ msgid "Unlimited WordPress installations and/or networks."
1383
  msgstr ""
1384
 
1385
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1386
  #, fuzzy
1387
  msgid "Network License"
1388
  msgstr "AdRotate Licens"
1389
 
1390
+ #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1391
  msgid "Set up your own advertising network on a WordPress Multisite."
1392
  msgstr ""
1393
 
1394
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1395
  msgid "Compare licenses"
1396
  msgstr ""
1397
 
1398
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1399
  msgid "Not sure which license is for you? Compare them..."
1400
  msgstr ""
1401
 
1402
+ #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1403
  msgid "All Licenses"
1404
  msgstr ""
1405
 
1406
+ #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1407
  msgid "AdRotate is brought to you by"
1408
  msgstr "AdRotate kommer till dig genom"
1409
 
1410
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1411
  msgid ""
1412
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1413
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1417
  "behöver en anpassad plugin. Tema anpassningar eller har din webbplats "
1418
  "flyttas / migreras helt. Besök min hemsida för mer information!"
1419
 
1420
+ #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1421
  msgid "Find out more"
1422
  msgstr "Läs mer"
1423
 
1424
+ #: dashboard/adrotate-info.php:194
1425
  msgid "Follow"
1426
  msgstr ""
1427
 
1483
  "miss an expiration date again."
1484
  msgstr ""
1485
 
1486
+ #: dashboard/adrotate-pro.php:83
1487
+ msgid "Activate AdRotate on unlimited WordPress installations and/or networks."
1488
+ msgstr ""
1489
+
1490
  #: dashboard/publisher/adrotate-ads-edit.php:46
1491
  msgid "The AdCode cannot be empty!"
1492
  msgstr "Den AdCode kan inte vara tomt!"
2560
  msgid "Statistics for group"
2561
  msgstr "Statistik för grupp"
2562
 
2563
+ #, fuzzy
2564
+ #~ msgid "AdRotate Website."
2565
+ #~ msgstr "AdRotate butik"
2566
+
2567
+ #, fuzzy
2568
+ #~ msgid "AdRotate Getting Started."
2569
+ #~ msgstr "AdRotate Inställningar"
2570
+
2571
+ #, fuzzy
2572
+ #~ msgid "AdRotate Website Forum."
2573
+ #~ msgstr "AdRotate butik"
2574
+
2575
+ #~ msgid "You are using"
2576
+ #~ msgstr "Du använder"
2577
+
2578
+ #, fuzzy
2579
+ #~ msgid "or go to the"
2580
+ #~ msgstr "Gå"
2581
+
2582
+ #~ msgid "Your gift will ensure the continued development of AdRotate!"
2583
+ #~ msgstr ""
2584
+ #~ "Din gåva kommer att säkerställa den fortsatta utvecklingen av AdRotate!"
2585
+
2586
  #, fuzzy
2587
  #~ msgid "AdRotate Server"
2588
  #~ msgstr "AdRotate"
library/dashboard.css CHANGED
@@ -14,13 +14,13 @@
14
  .adrotate-select { padding:3px; border:1px solid #ccc; max-width:500px; max-height:200px; overflow-y:scroll; background-color:#fff; }
15
 
16
  /* Banner styles */
17
- .adrotate_pro_banner { margin:12px 0; position:relative; overflow:hidden; }
18
- .adrotate_pro_banner .text { color:#000; font-size:15px; line-height:26px; margin:18px 18px 14px; float:left; width:auto; max-width:80%; }
19
- .adrotate_pro_banner .text span { font-size:12px; opacity:0.7; }
20
- .adrotate_pro_banner .button { float:left; border:none; font-size:14px; margin:18px 0 18px 16px; padding:12px 0; color:#FFF; text-shadow:none; font-weight:bold; background:#86c351; -moz-border-radius:3px; border-radius:3px; -webkit-border-radius:3px; text-decoration:none; height:50px; text-align:center; text-transform:uppercase; width:147px; box-shadow:none; line-height:26px; }
21
- .adrotate_pro_banner .button:hover, .adrotate_pro_banner .button:focus { background:#0074A2; color:#FFF; }
22
- .adrotate_pro_banner .icon { float:right; margin:12px 8px 8px 8px; }
23
- .adrotate_pro_banner .close_banner { float:right; margin:8px; cursor:pointer; }
24
 
25
  /* Dashboard styles */
26
  .postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
14
  .adrotate-select { padding:3px; border:1px solid #ccc; max-width:500px; max-height:200px; overflow-y:scroll; background-color:#fff; }
15
 
16
  /* Banner styles */
17
+ .adrotate_banner { margin:12px 0; position:relative; overflow:hidden; }
18
+ .adrotate_banner .text { color:#000; font-size:15px; line-height:26px; margin:18px 18px 14px; float:left; width:auto; max-width:80%; }
19
+ .adrotate_banner .text span { font-size:12px; opacity:0.7; }
20
+ .adrotate_banner .button { float:left; border:none; font-size:14px; margin:18px 0 18px 16px; padding:12px 0; color:#FFF; text-shadow:none; font-weight:bold; background:#86c351; -moz-border-radius:3px; border-radius:3px; -webkit-border-radius:3px; text-decoration:none; height:50px; text-align:center; text-transform:uppercase; width:147px; box-shadow:none; line-height:26px; }
21
+ .adrotate_banner .button:hover, .adrotate_pro_banner .button:focus { background:#0074A2; color:#FFF; }
22
+ .adrotate_banner .icon { float:right; margin:12px 8px 8px 8px; }
23
+ .adrotate_banner .close_banner { float:right; margin:8px; cursor:pointer; }
24
 
25
  /* Dashboard styles */
26
  .postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
readme.txt CHANGED
@@ -4,24 +4,23 @@ Donate link: http://meandmymac.net/donate/
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
5
  Requires at least: 3.8, PHP5.3
6
  Tested up to: 4.1.1
7
- Stable tag: 3.11.1
8
 
9
- Make it easy on yourself and use AdRotate to place your adverts on your site... Make making money easy!
10
 
11
  == Description ==
12
 
13
- Get the most extensive ad manager and start making money with your website.
14
- Add and manage the ads from the dashboard and show a random banner, or multiple, on your site.
15
- Easy management from the dashboard allows you to quickly oversee, add and edit banner code or renew/delete and add new ads.
16
- Preview banners when editing them.
17
-
18
  AdRotate supports unlimited groups for banners allowing you to tie certain banners to different areas of the website.
19
- On top of that with GeoLocation you can tie adverts to certain areas of the world.
20
 
21
- AdRotate makes managing your adverts easy with it's easy to use dashboard. AdRotate looks and feels similar to the dashboard you already know, so you're already familiar with AdRotate before you've even started. The well thought out menu structures and features make advert management very easy and straightforward.
 
22
 
23
- AdRotate is also available as a premium plugin for a low price. Offering extra and more extensive features and faster support!
24
- Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/)!
25
 
26
  **Important links**
27
 
@@ -31,29 +30,30 @@ Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.so
31
 
32
  **Some Features**
33
 
34
- * Super easy management of ads and groups of ads
35
  * Automated Javascript cycles of ads with Dynamic Groups
36
  * Have your advertisers add/edit/manage their own ads
37
- * Geo location for adverts
38
  * Detect ad blockers in browser and nag visitors about it
39
- * Works with Google Ads and most other referrer/ad servers
40
- * Get push notifications right on your iOS or Android device about adverts
41
  * Get email notifications when your ads need you
42
  * Perfectly suited for any size of advertisement, including 125x125, 468x60, 729x90, 160x600 and much more
43
- * Simple to use stats so you can follow which ad is working the best, worst
44
- * Daily and monthly stats
45
  * Couple ads to users so that user can follow his personalized stats
46
  * Advertisers can easily contact you from their dashboard
47
  * Track how many times a banner is clicked and show it's Cick-Through-Ratio
48
  * Put random, or selected, banners in pages or posts
49
  * Preview banners on edit
50
  * Advanced time schedules and restrictions
 
51
  * CSV Exports of statistics
52
  * Multiple groups per banner location
53
  * Unlimited widgets
54
- * Adblocks (blocks of banners)
55
- * Auto disable ads after X views / clicks / period of time
56
- * Warns you on the dashboard when ads are about to expire
57
  * Use shortcodes, widgets or PHP to put ads on your site
58
 
59
  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/).
@@ -82,27 +82,46 @@ Looking to switch from another plugin? Check out [AdRotate Switch](https://wordp
82
  == Frequently Asked Questions ==
83
 
84
  = Can I migrate my data from another plugin to AdRotate? =
85
- **Answer:**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.1 FREE =
93
  * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
94
- * [tweak] Load max. 10 ads for a dynamic group
95
- * [tweak] Dynamic groups now hide all ads but one on page load
96
- * [change] Removed obsolete AdRotate Server code
97
- * [i18n] New and obsolete strings in translation files
 
 
 
 
 
98
 
99
  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).
100
 
101
- = 3.12.3 PRO =
102
  * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
103
- * [tweak] Load max. 10 ads for a dynamic group
104
- * [change] Removed obsolete AdRotate Server code
105
- * [i18n] New and obsolete strings in translation files
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
107
  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).
108
  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)!
@@ -111,12 +130,17 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
111
 
112
  == Upgrade Notice ==
113
 
114
- = 3.11.1 FREE =
115
  * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
116
- * [tweak] Load max. 10 ads for a dynamic group
117
- * [tweak] Dynamic groups now hide all ads but one on page load
118
- * [change] Removed obsolete AdRotate Server code
119
- * [i18n] New and obsolete strings in translation files
 
 
 
 
 
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)!
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
5
  Requires at least: 3.8, PHP5.3
6
  Tested up to: 4.1.1
7
+ Stable tag: 3.11.2
8
 
9
+ Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
10
 
11
  == Description ==
12
 
13
+ Thinking of making some money with your website? Try AdRotate. Using AdRotate you can easy place advertising banners pretty much anywhere on your site while managing almost everything from your dashboard. No fussing with your themes code if you don't want to.
14
+ Create your own adverts with basic HTML/Javascript code or use adverts from your favorite Ad Server such as DFP, AdSense, Chitika or other similar services.
15
+ Manage your advertising campaigns with ease, right from your dashboard. Check up on performance and make use of the myriad of features AdRotate has to offer.
16
+ You can host your banners locally, in your CDN or on a remote server.
 
17
  AdRotate supports unlimited groups for banners allowing you to tie certain banners to different areas of the website.
 
18
 
19
+ AdRotate looks and feels similar to the dashboard you already know, so you're already familiar with AdRotate before you've even started.
20
+ The well thought out menu structures and features make advert management very easy and straightforward.
21
 
22
+ AdRotate is also available as a premium plugin for a very low price. Offering extra and more extensive features and faster support!
23
+ Check out the benefits of AdRotate Pro! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=details)!
24
 
25
  **Important links**
26
 
30
 
31
  **Some Features**
32
 
33
+ * Easy management of ads and groups of ads
34
  * Automated Javascript cycles of ads with Dynamic Groups
35
  * Have your advertisers add/edit/manage their own ads
36
+ * Geo Targeting for adverts
37
  * Detect ad blockers in browser and nag visitors about it
38
+ * Works with Google AdSense, DFP and most other referrer/ad servers
39
+ * Get push notifications right on your iOS or Android device about adverts and important events
40
  * Get email notifications when your ads need you
41
  * Perfectly suited for any size of advertisement, including 125x125, 468x60, 729x90, 160x600 and much more
42
+ * Easy to use stats so you can follow how each advert is performing
43
+ * Daily, monthly and yearly stats
44
  * Couple ads to users so that user can follow his personalized stats
45
  * Advertisers can easily contact you from their dashboard
46
  * Track how many times a banner is clicked and show it's Cick-Through-Ratio
47
  * Put random, or selected, banners in pages or posts
48
  * Preview banners on edit
49
  * Advanced time schedules and restrictions
50
+ * Free use of AdRotate Geo, AJdG Solutions' exclusive Geo Targeting service
51
  * CSV Exports of statistics
52
  * Multiple groups per banner location
53
  * Unlimited widgets
54
+ * Show multiple ads at once in a grid with Ad Blocks
55
+ * Automagically disable ads after certain requirements you set are reached
56
+ * Warns you on the dashboard when ads are about to expire or need attention
57
  * Use shortcodes, widgets or PHP to put ads on your site
58
 
59
  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/).
82
  == Frequently Asked Questions ==
83
 
84
  = Can I migrate my data from another plugin to AdRotate? =
85
+ **Answer:**
86
+ 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!
87
 
88
  There are [manual](https://ajdg.solutions/manuals/adrotate/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=manuals) with every feature explained.
89
  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!
90
 
91
  == Changelog ==
92
 
93
+ = 3.11.2 FREE =
94
  * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
95
+ * [fix] Query error when cleaning database manually
96
+ * [fix] Self-repairing database function now actually works
97
+ * [tweak] Load max. 20 ads for a dynamic group
98
+ * [tweak] Impression counting excluded from popular caching plugins
99
+ * [tweak] Click counting excluded from popular caching plugins
100
+ * [change] Upgrade script cleaned up
101
+ * [change] Removed unnecessary indexes from database
102
+ * [change] Removed obsolete 'block' columns from database
103
+ * [change] Improved INT() unsigned datatypes in MySQL
104
 
105
  NOTE: Certain features are exclusive to AdRotate PRO. If you need these features please consider upgrading to [AdRotate PRO](https://ajdg.solutions/products/adrotate-for-wordpress/features/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=features).
106
 
107
+ = 3.12.4 PRO =
108
  * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
109
+ * [fix] Query error when cleaning database manually
110
+ * [fix] Stats exports not working on certain versions of PHP
111
+ * [fix] Adblock nag countdown not saving
112
+ * [fix] 'Strict standards' error when uploading a file on some systems
113
+ * [fix] Geo Targeting better filtering for locations with capitals
114
+ * [fix] Self-repairing database function now actually works
115
+ * [tweak] Geo Lookups no longer leading in Geo Service availability
116
+ * [tweak] Geo Targeting warning emails removed
117
+ * [tweak] Load max. 20 ads for a dynamic group
118
+ * [tweak] Impression counting excluded from popular caching plugins
119
+ * [tweak] Click counting excluded from popular caching plugins
120
+ * [change] GeoBytes no longer supported for Geo Targeting
121
+ * [change] Upgrade script cleaned up
122
+ * [change] Removed unnecessary indexes from database
123
+ * [change] Removed obsolete 'block' columns from database
124
+ * [change] Improved INT() unsigned datatypes in MySQL
125
 
126
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
127
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!
130
 
131
  == Upgrade Notice ==
132
 
133
+ = 3.11.2 FREE =
134
  * NOTE: Due to an earlier bugfix you may need to open/edit each AdRotate widget and click 'Save'
135
+ * [fix] Query error when cleaning database manually
136
+ * [fix] Self-repairing database function now actually works
137
+ * [tweak] Load max. 20 ads for a dynamic group
138
+ * [tweak] Impression counting excluded from popular caching plugins
139
+ * [tweak] Click counting excluded from popular caching plugins
140
+ * [change] Upgrade script cleaned up
141
+ * [change] Removed unnecessary indexes from database
142
+ * [change] Removed obsolete 'block' columns from database
143
+ * [change] Improved INT() unsigned datatypes in MySQL
144
 
145
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=changelog).
146
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_source=wordpress.org&utm_medium=adrotate_free_readme&utm_campaign=buyadrotatepro)!